diff --git a/.gitignore b/.gitignore index 394fabdc..0d253e33 100644 --- a/.gitignore +++ b/.gitignore @@ -55,3 +55,4 @@ missalemeum/__version__ node_modules deploy *.tar.gz +.DS_Store diff --git a/README.md b/README.md index da7e33e6..b2540b8a 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,8 @@ $ python missalemeum/cli.py proper sancti:09-15:2:w ## Localization +### Backend + 1. Copy folder `missalemeum/constants/en` into `missalemeum/constants/` and translate the files 2. Add mapping between your language ISO-639-1 code and [Divinum Officium language folder](https://github.com/DivinumOfficium/divinum-officium/tree/master/web/www/missa) in `LANGUAGES` in `missalemeum/constants/common.py` 3. Generate Babel language files: @@ -121,11 +123,18 @@ $ python missalemeum/cli.py proper sancti:09-15:2:w - Provide translations in file generated in `missalemeum/translations//LC_MESSAGES/messages.po` - Compile babel files: `pybabel compile -d translations` 4. Copy folder `missalemeum/templates/en` into `missalemeum/templates/` and translate the files -5. Copy folder `missalemeum/static/data/en` into `missalemeum/static/data/` and translate the files -6. Copy folder `missalemeum/static/js/en` into `missalemeum/static/js/` and translate the files -7. Run the application and verify everything is being displayed properly. Check at least one full year from now. Most likely you'll encounter some issues with Divinum Officium source files. In such case correct them in Divinum Officium project and update the submodule. -8. Add source files for non-regular Masses, like Ash Wednesday or Maundy Thursday in `resources/divinum-officium-custom/web/www/missa/` +5. Add source files for non-regular propers, like Ash Wednesday or Maundy Thursday in `resources/divinum-officium-custom/web/www/missa/` +6. Add tests in [test_propers.py](tests/test_propers.py) + +### Frontend + +1. Add your language to `supportedLanguages` array in [App.js](frontend/src/App.js) +2. Provide translation of fronted elements in [intl.js](frontend/src/intl.js) + +### Verification +Run the application and verify everything is being displayed properly. Check at least one full year from now. Most likely you'll encounter +some issues with Divinum Officium source files. In such case correct them in Divinum Officium project and update the submodule. ## Dev info diff --git a/missalemeum/cli.py b/missalemeum/cli.py index 91a2e39b..532ec674 100755 --- a/missalemeum/cli.py +++ b/missalemeum/cli.py @@ -34,29 +34,40 @@ def _print_proper(language, proper): @click.command() @click.argument('year', default=datetime.datetime.utcnow().year, type=int) +@click.option('--month', default=None, type=int) @click.option('--language', default=LANGUAGE_ENGLISH) -def calendar(year, language): +def calendar(year, language, month): def _print_all(missal): for date_, day in missal.items(): + if month and date_.month != month: + continue if date_.weekday() == 6: click.echo("---") if date_.day == 1: click.echo(f"\n\n# {date_.month}\n") - collect = [] + padding = 40 - for i in ('tempora', 'celebration', 'commemoration'): - items = getattr(day, i, None) - if not items: - collect.append('-') - else: - repr_ = f"[{items[0].name}:{items[0].rank}] {items[0].title}" - if len(repr_) > padding: - repr_ = repr_[:padding - 3] + '…' - collect.append(repr_) - te, ce, co = collect - click.echo(f"{date_.strftime('%A %Y-%m-%d').ljust(padding)} " - f"{te.ljust(padding)} {ce.ljust(padding)} {co.ljust(padding)}") + tempora = day.tempora + celebration = day.celebration + commemoration = day.commemoration + rows_count = max([len(tempora), len(celebration), len(commemoration)]) + for row_number in range(0, rows_count): + collect = [] + for items in (tempora, celebration, commemoration): + if not items: + collect.append('-') + elif len(items) - 1 < row_number: + collect.append("") + else: + repr_ = f"[{items[row_number].name}:{items[row_number].rank}] {items[row_number].title}" + if len(repr_) > padding: + repr_ = repr_[:padding - 3] + '…' + collect.append(repr_) + te, ce, co = collect + datestr = date_.strftime('%A %Y-%m-%d') if row_number == 0 else "" + click.echo(f"{datestr.ljust(22)} class:{str(day.get_celebration_rank()).ljust(6)}" + f"{te.ljust(padding)} {ce.ljust(padding)} {co.ljust(padding)}") missal: Calendar = controller.get_calendar(year, language) _print_all(missal) @@ -68,6 +79,9 @@ def _print_all(missal): def proper(proper_id: str, language: str): try: proper_vernacular, proper_latin = controller.get_proper_by_id(proper_id, language) + click.echo('# title Latin: {}'.format(proper_latin.title)) + click.echo('# title vernacular: {}'.format(proper_vernacular.title)) + click.echo('class: {}'.format(proper_latin.rank)) _print_proper(language, proper_vernacular) _print_proper('Latin', proper_latin) except (InvalidInput, ProperNotFound) as e: @@ -86,6 +100,7 @@ def date(date: str, language: str): click.echo(f'# {date}') click.echo('- tempora: {}'.format(day.get_tempora_name())) click.echo('- celebration: {}'.format(day.get_celebration_name())) + click.echo('- class: {}'.format(day.get_celebration_rank())) for itr, (proper_vernacular, proper_latin) in enumerate(propers, 1): if len(propers) > 1: click.echo(f'\n--- Missa {itr} ---') diff --git a/missalemeum/constants/common.py b/missalemeum/constants/common.py index 10868c18..f6d9386d 100644 --- a/missalemeum/constants/common.py +++ b/missalemeum/constants/common.py @@ -43,8 +43,8 @@ PATTERN_EASTER_PREFATIO = re.compile(r'^tempora:Pasc([0-4]|5-0|5-1|5-2|5-3)') PATTERN_ASCENSION_PREFATIO = re.compile(r'^tempora:Pasc(5-4|5-5|5-6|6-0|6-1|6-2|6-3|6-4|6-5)') PATTERN_LENT_SUNDAY = re.compile(r'^tempora:Quad\d-0.*') -PATTERN_TEMPORA_SUNDAY = re.compile(r'^tempora:.*-0r*:\d:\w$') -PATTERN_TEMPORA_SUNDAY_CLASS_1 = re.compile(r'^tempora:.*-0r*:1:\w$') +PATTERN_TEMPORA_SUNDAY = re.compile(r'^tempora:.*-0r*:\d:\w{1,2}$') +PATTERN_TEMPORA_SUNDAY_CLASS_1 = re.compile(r'^tempora:.*-0r*:1:\w{1,2}$') PATTERN_TEMPORA_SUNDAY_CLASS_2 = re.compile(r'^tempora:(.*-0r*:2|Nat1-0):\w$') PATTERN_TEMPORA_CLASS_1 = re.compile(r'^tempora:.*:1:\w$') PATTERN_TEMPORA_CLASS_2 = re.compile(r'^tempora:.*:2:\w$') @@ -55,7 +55,7 @@ PATTERN_SANCTI_CLASS_2 = re.compile(r'^sancti:.*:2:\w$') PATTERN_SANCTI_CLASS_3 = re.compile(r'^sancti:.*:3:\w$') PATTERN_SANCTI_CLASS_3_LOCAL = re.compile(r'^sancti:.*(?:' + r"|".join(LANGUAGES.keys()) + r'):3:\w$') -PATTERN_SANCTI_CLASS_4 = re.compile(r'^sancti:.*:4:\w$') +PATTERN_SANCTI_CLASS_4 = re.compile(r'^sancti:.*:4c?:\w$') PATTERN_SANCTI_CLASS_1_OR_2 = re.compile(r'^sancti:.*:[12]:\w$') PATTERN_CLASS_1 = re.compile(r'^[a-z]+:.*:1:\w$') PATTERN_CLASS_2 = re.compile(r'^[a-z]+:.*:2:\w$') @@ -283,6 +283,7 @@ TEMPORA_QUAD5_3 = 'tempora:Quad5-3:3:v' TEMPORA_QUAD5_4 = 'tempora:Quad5-4:3:v' TEMPORA_QUAD5_5 = 'tempora:Quad5-5Feria:3:v' +TEMPORA_QUAD5_5C = 'tempora:Quad5-5Feriac:4:w' TEMPORA_QUAD5_6 = 'tempora:Quad5-6:3:v' TEMPORA_QUAD6_0 = 'tempora:Quad6-0r:1:rv' # 2nd Passion Sunday (Palm Sunday) TEMPORA_QUAD6_1 = 'tempora:Quad6-1:1:v' @@ -565,23 +566,31 @@ # SANCTI - days which have fixed date SANCTI_10_DU = 'sancti:10-DU:1:w' # Feast of Christ the King; last Sunday of October SANCTI_01_01 = 'sancti:01-01:1:w' # Octave of the Nativity +SANCTI_01_05 = 'sancti:01-05:4:r' # commemoratio S. Telesphori SANCTI_01_06 = 'sancti:01-06:1:w' # Epiphany +SANCTI_01_11 = 'sancti:01-11:4:r' # commemoratio S. Hyginus SANCTI_01_13 = 'sancti:01-13:2:w' # Baptism of the Lord -SANCTI_01_14 = 'sancti:01-14:3:w' +SANCTI_01_14 = 'sancti:01-14:3:w' # S. Hilarii +SANCTI_01_14C = 'sancti:01-14c:4:r' # commemoratio S. Felicis SANCTI_01_15 = 'sancti:01-15:3:w' +SANCTI_01_15C = 'sancti:01-15c:4:w' # Pro S. Mauro Abbate SANCTI_01_16 = 'sancti:01-16:3:r' SANCTI_01_17 = 'sancti:01-17:3:w' SANCTI_01_18 = 'sancti:01-18r:4:w' SANCTI_01_19 = 'sancti:01-19:4:r' +SANCTI_01_19C = 'sancti:01-19c:4:r' # Pro S. Canuto Regi Mart. SANCTI_01_20 = 'sancti:01-20:3:r' SANCTI_01_21 = 'sancti:01-21:3:r' SANCTI_01_22 = 'sancti:01-22:3:r' SANCTI_01_23 = 'sancti:01-23:3:w' +SANCTI_01_23C = 'sancti:01-23c:4:r' # Pro S. Emerentianæ Virg. et Mart. SANCTI_01_24 = 'sancti:01-24:3:r' SANCTI_01_25 = 'sancti:01-25r:3:w' +SANCTI_01_25C = 'sancti:01-25c:4:w' # Pro S. Petro SANCTI_01_26 = 'sancti:01-26:3:r' SANCTI_01_27 = 'sancti:01-27:3:w' SANCTI_01_28 = 'sancti:01-28:3:w' +SANCTI_01_28C = 'sancti:01-28c:4:r' SANCTI_01_29 = 'sancti:01-29:3:w' SANCTI_01_30 = 'sancti:01-30:3:r' SANCTI_01_31 = 'sancti:01-31:3:w' @@ -592,9 +601,11 @@ SANCTI_02_04 = 'sancti:02-04:3:w' SANCTI_02_05 = 'sancti:02-05:3:r' SANCTI_02_06 = 'sancti:02-06:3:w' +SANCTI_02_06C = 'sancti:02-06c:4:r' # św. Doroty SANCTI_02_07 = 'sancti:02-07:3:w' SANCTI_02_08 = 'sancti:02-08:3:w' SANCTI_02_09 = 'sancti:02-09:3:w' +SANCTI_02_09C = 'sancti:02-09c:4:r' # św Apolonii SANCTI_02_10 = 'sancti:02-10:3:w' SANCTI_02_11 = 'sancti:02-11:3:w' SANCTI_02_12 = 'sancti:02-12:3:w' @@ -602,6 +613,7 @@ SANCTI_02_15 = 'sancti:02-15:4:r' SANCTI_02_18 = 'sancti:02-18:4:r' SANCTI_02_22 = 'sancti:02-22:2:w' # Feast of the Chair of Saint Peter +SANCTI_02_22C = 'sancti:02-22c:4:r' # St. Paul SANCTI_02_23 = 'sancti:02-23r:3:w' SANCTI_02_24 = 'sancti:02-24:2:r' # St. Matthias, Apostle SANCTI_02_27 = 'sancti:02-27:3:w' @@ -636,6 +648,7 @@ SANCTI_04_23PL = 'sancti:04-23pl:1:r' SANCTI_04_24 = 'sancti:04-24:3:r' SANCTI_04_25 = 'sancti:04-25:2:r' # St. Mark, Evangelist +SANCTI_04_25C = 'sancti:04-25c:4:r' # SANCTI_04_26 = 'sancti:04-26:3:r' SANCTI_04_27 = 'sancti:04-27:3:w' SANCTI_04_28 = 'sancti:04-28:3:w' @@ -653,6 +666,7 @@ SANCTI_05_08PL = 'sancti:05-08pl:1:r' SANCTI_05_09 = 'sancti:05-09:3:w' SANCTI_05_10 = 'sancti:05-10:3:w' +SANCTI_05_10C = 'sancti:05-10c:4:r' # SANCTI_05_11 = 'sancti:05-11r:2:r' # SS. Philip and James, Apostles SANCTI_05_12 = 'sancti:05-12:3:r' SANCTI_05_13 = 'sancti:05-13:3:w' @@ -668,10 +682,12 @@ SANCTI_05_25 = 'sancti:05-25:3:w' SANCTI_05_26 = 'sancti:05-26:3:w' SANCTI_05_27 = 'sancti:05-27:3:w' +SANCTI_05_27C = 'sancti:05-27c:4:r' # SANCTI_05_28 = 'sancti:05-28:3:w' SANCTI_05_29 = 'sancti:05-29:3:w' SANCTI_05_30 = 'sancti:05-30:4:r' SANCTI_05_31 = 'sancti:05-31:2:w' # Mary the Queen +SANCTI_05_31C = 'sancti:05-31c:4:w' # Petronela SANCTI_06_01 = 'sancti:06-01:3:w' SANCTI_06_02 = 'sancti:06-02:4:r' @@ -683,13 +699,16 @@ SANCTI_06_10PL = 'sancti:06-10pl:3:w' SANCTI_06_11 = 'sancti:06-11:3:r' SANCTI_06_12 = 'sancti:06-12:3:r' +SANCTI_06_12C = 'sancti:06-12c:4:r' # Bazylides SANCTI_06_13 = 'sancti:06-13:3:w' SANCTI_06_14 = 'sancti:06-14:3:w' SANCTI_06_15 = 'sancti:06-15:4:w' SANCTI_06_15PL = 'sancti:06-15pl:3:w' SANCTI_06_17 = 'sancti:06-17r:3:w' SANCTI_06_18 = 'sancti:06-18:3:r' +SANCTI_06_18C = 'sancti:06-18c:4:r' # SANCTI_06_19 = 'sancti:06-19:3:r' +SANCTI_06_19C = 'sancti:06-19c:4:r' # SANCTI_06_20 = 'sancti:06-20:4:r' SANCTI_06_21 = 'sancti:06-21:3:w' SANCTI_06_22 = 'sancti:06-22:3:w' @@ -703,6 +722,7 @@ SANCTI_07_01 = 'sancti:07-01:1:r' # Feast of the Most Precious Blood SANCTI_07_02 = 'sancti:07-02:2:w' # Feast of the Visitation of the Blessed Virgin Mary +SANCTI_07_02C = 'sancti:07-02cc:4:r' # Ss. Processi et Martiniani SANCTI_07_03 = 'sancti:07-03r:3:r' SANCTI_07_05 = 'sancti:07-05:3:w' SANCTI_07_07 = 'sancti:07-07:3:w' @@ -710,6 +730,7 @@ SANCTI_07_10 = 'sancti:07-10:3:r' SANCTI_07_11 = 'sancti:07-11:4:r' SANCTI_07_12 = 'sancti:07-12:3:r' +SANCTI_07_12C = 'sancti:07-12c:4:r' # Ss. Naboris et Felicis SANCTI_07_13PL = 'sancti:07-13pl:3:w' SANCTI_07_14 = 'sancti:07-14:3:w' SANCTI_07_15 = 'sancti:07-15:3:w' @@ -724,29 +745,38 @@ SANCTI_07_21 = 'sancti:07-21r:3:w' SANCTI_07_22 = 'sancti:07-22:3:w' SANCTI_07_23 = 'sancti:07-23:3:w' +SANCTI_07_23C = 'sancti:07-23c:4:r' # SANCTI_07_24 = 'sancti:07-24r:4:r' SANCTI_07_24PL = 'sancti:07-24pl:3:w' SANCTI_07_25 = 'sancti:07-25:2:r' # St. James, Apostle +SANCTI_07_25C = 'sancti:07-25c:4:r' # St. Christopher SANCTI_07_26 = 'sancti:07-26:2:w' # St. Anna, Mary's Mother SANCTI_07_27 = 'sancti:07-27:4:r' SANCTI_07_28 = 'sancti:07-28:3:r' SANCTI_07_29 = 'sancti:07-29:3:r' +SANCTI_07_29C = 'sancti:07-29c:4:r' # śś. Feliksa, Symplicjusza, Faustyna i Beatryczy SANCTI_07_30 = 'sancti:07-30:4:r' SANCTI_07_31 = 'sancti:07-31:3:w' SANCTI_08_01 = 'sancti:08-01r:4:r' SANCTI_08_02 = 'sancti:08-02:3:r' +SANCTI_08_02C = 'sancti:08-02c:4:r' # SANCTI_08_04 = 'sancti:08-04:3:w' SANCTI_08_05 = 'sancti:08-05:3:w' SANCTI_08_06 = 'sancti:08-06:2:r' # Transfiguration +SANCTI_08_06C = 'sancti:08-06c:4:r' # SANCTI_08_07 = 'sancti:08-07:3:r' +SANCTI_08_07C = 'sancti:08-07c:4:r' # SANCTI_08_08 = 'sancti:08-08r:3:r' +SANCTI_08_08C = 'sancti:08-08c:4:r' # SANCTI_08_09 = 'sancti:08-09t:3:r' # Vigil of st. Laurent +SANCTI_08_09C = 'sancti:08-09c:4:r' # SANCTI_08_10 = 'sancti:08-10:2:r' # St. Laurent SANCTI_08_11 = 'sancti:08-11:4:r' SANCTI_08_12 = 'sancti:08-12:3:w' SANCTI_08_13 = 'sancti:08-13:4:r' SANCTI_08_14 = 'sancti:08-14:2:w' # Vigil of Assumption of Mary +SANCTI_08_14C = 'sancti:08-14c:4:r' # SANCTI_08_15 = 'sancti:08-15r:1:w' # Assumption of Mary SANCTI_08_16 = 'sancti:08-16:2:w' # St. Joachim SANCTI_08_17 = 'sancti:08-17:3:w' @@ -755,6 +785,7 @@ SANCTI_08_20 = 'sancti:08-20:3:w' SANCTI_08_21 = 'sancti:08-21:3:w' SANCTI_08_22 = 'sancti:08-22:2:w' # Immaculate Heart of Mary +SANCTI_08_22C = 'sancti:08-22c:4:r' # SANCTI_08_23 = 'sancti:08-23:3:w' SANCTI_08_24 = 'sancti:08-24:2:r' # St. Bartholomew, Apostle SANCTI_08_25 = 'sancti:08-25:3:w' @@ -762,8 +793,11 @@ SANCTI_08_26PL = 'sancti:08-26pl:1:w' SANCTI_08_27 = 'sancti:08-27:3:w' SANCTI_08_28 = 'sancti:08-28:3:r' +SANCTI_08_28C = 'sancti:08-28c:4:r' # SANCTI_08_29 = 'sancti:08-29:3:r' +SANCTI_08_29C = 'sancti:08-29c:4:r' # SANCTI_08_30 = 'sancti:08-30:3:r' +SANCTI_08_30C = 'sancti:08-30c:4:r' # SANCTI_08_31 = 'sancti:08-31:3:w' SANCTI_09_01 = 'sancti:09-01:4:w' @@ -780,6 +814,7 @@ SANCTI_09_14 = 'sancti:09-14:2:r' # Exaltation of the Cross SANCTI_09_15 = 'sancti:09-15:2:w' # The Seven Dolors of the Blessed Virgin Mary SANCTI_09_16 = 'sancti:09-16:3:r' +SANCTI_09_16C = 'sancti:09-16c:4:r' # SANCTI_09_17 = 'sancti:09-17:4:w' SANCTI_09_18 = 'sancti:09-18r:3:w' SANCTI_09_19 = 'sancti:09-19:3:r' @@ -787,6 +822,7 @@ SANCTI_09_21 = 'sancti:09-21:2:r' # St. Matthew, Apostle and Evangelist SANCTI_09_22 = 'sancti:09-22:3:w' SANCTI_09_23 = 'sancti:09-23:3:r' +SANCTI_09_23C = 'sancti:09-23c:4:r' # SANCTI_09_24 = 'sancti:09-24:4:w' SANCTI_09_25PL = 'sancti:09-25pl:3:w' SANCTI_09_26 = 'sancti:09-26:4:r' @@ -803,7 +839,9 @@ SANCTI_10_05 = 'sancti:10-05:4:r' SANCTI_10_06 = 'sancti:10-06:3:w' SANCTI_10_07 = 'sancti:10-07r:2:w' # Our Lady of the Rosary +SANCTI_10_07C = 'sancti:10-07c:4:r' # St. Mark I SANCTI_10_08 = 'sancti:10-08r:3:w' +SANCTI_10_08C = 'sancti:10-08c:4:r' # Pro Ss. Sergio, Baccho, Marcello et Apulejo Martyribus SANCTI_10_09 = 'sancti:10-09:3:w' SANCTI_10_09PL = 'sancti:10-09pl:3:w' SANCTI_10_10 = 'sancti:10-10:3:w' @@ -1034,7 +1072,6 @@ (SANCTI_06_30, COMMEMORATION_SECTIONS), (SANCTI_07_01, COMMEMORATION_SECTIONS), (SANCTI_07_05, COMMEMORATION_SECTIONS), - (SANCTI_08_06, COMMEMORATION_SECTIONS), (SANCTI_08_17, COMMEMORATION_SECTIONS), (SANCTI_08_19, COMMEMORATION_SECTIONS), (SANCTI_08_20, COMMEMORATION_SECTIONS), diff --git a/missalemeum/constants/en/translation.py b/missalemeum/constants/en/translation.py index 862b9903..af549842 100644 --- a/missalemeum/constants/en/translation.py +++ b/missalemeum/constants/en/translation.py @@ -101,6 +101,7 @@ constants.TEMPORA_QUAD5_3: 'Feria IV of Passion Week', constants.TEMPORA_QUAD5_4: 'Feria V of Passion Week', constants.TEMPORA_QUAD5_5: 'Feria VI of Passion Week', + constants.TEMPORA_QUAD5_5C: 'For Our Lady of the Seven Sorrows', constants.TEMPORA_QUAD5_6: 'Saturday of Passion Week', constants.TEMPORA_QUAD6_0: 'Palm Sunday', constants.TEMPORA_QUAD6_1: 'Feria II of Holy Week', @@ -380,23 +381,31 @@ constants.COMMUNE_C_10PASC: 'IV Mass of the B. V. M. – Salve, Sancta Parens', constants.COMMUNE_C_10T: 'V Mass of the B. V. M. – Salve, Sancta Parens', constants.SANCTI_01_01: 'Octave Day of Christmas', + constants.SANCTI_01_05: 'St. Telesphorus Pope and Martyr', constants.SANCTI_01_06: 'Epiphany of the Lord', + constants.SANCTI_01_11: 'St. Hyginus Pope and Martyr', constants.SANCTI_01_13: 'Commemoration of the Baptism of the Lord', constants.SANCTI_01_14: 'St. Hilary', + constants.SANCTI_01_14C: 'S. Felicis', constants.SANCTI_01_15: 'St. Paul, the First Hermit', + constants.SANCTI_01_15C: 'St. Maur, Abbot', constants.SANCTI_01_16: 'St. Marcellus I', constants.SANCTI_01_17: 'St. Anthony', constants.SANCTI_01_18: 'St. Prisca', constants.SANCTI_01_19: 'Sts. Marius, Martha, Audifax & Abachum', + constants.SANCTI_01_19C: 'St. Canute, Martyr', constants.SANCTI_01_20: 'Sts. Fabian & Sebastian', constants.SANCTI_01_21: 'St. Agnes', constants.SANCTI_01_22: 'Sts. Vincent & Anastasius ', constants.SANCTI_01_23: 'St. Raymond of Peñafort', + constants.SANCTI_01_23C: 'St. Emerentiana', constants.SANCTI_01_24: 'St. Timothy', constants.SANCTI_01_25: 'Conversion of St. Paul', + constants.SANCTI_01_25C: 'St. Peter', constants.SANCTI_01_26: 'St. Polycarp', constants.SANCTI_01_27: 'St. John Chrysostom', constants.SANCTI_01_28: 'St. Peter Nolasco', + constants.SANCTI_01_28C: 'St. Agnes', constants.SANCTI_01_29: 'St. Francis de Sales', constants.SANCTI_01_30: 'St. Martina', constants.SANCTI_01_31: 'St. John Bosco', @@ -406,9 +415,11 @@ constants.SANCTI_02_04: 'St. Andrew Corsini', constants.SANCTI_02_05: 'St. Agatha', constants.SANCTI_02_06: 'St. Titus', + constants.SANCTI_02_06C: 'St. Dorothy', constants.SANCTI_02_07: 'St. Romuald ', constants.SANCTI_02_08: 'St. John of Matha', constants.SANCTI_02_09: 'St. Cyril of Alexandria', + constants.SANCTI_02_09C: 'St. Appollonia', constants.SANCTI_02_10: 'St. Scholastica', constants.SANCTI_02_11: 'Our Lady of Lourdes', constants.SANCTI_02_12: 'Seven Holy Servite Founders', @@ -416,6 +427,7 @@ constants.SANCTI_02_15: 'Sts. Faustinus & Jovita', constants.SANCTI_02_18: 'St. Simeon', constants.SANCTI_02_22: 'Chair of St. Peter ', + constants.SANCTI_02_22C: 'St. Paul', constants.SANCTI_02_23: 'St. Peter Damien', constants.SANCTI_02_24: 'St. Matthias', constants.SANCTI_02_27: 'St. Gabriel of Our Lady of Sorrows', @@ -446,6 +458,7 @@ constants.SANCTI_04_23: 'St. George', constants.SANCTI_04_24: 'St. Fidelis of Sigmaringen', constants.SANCTI_04_25: 'St. Mark', + constants.SANCTI_04_25C: 'Pro rogationibus', constants.SANCTI_04_26: 'Sts. Cletus & Marcellinus', constants.SANCTI_04_27: 'St. Peter Canisius', constants.SANCTI_04_28: 'St. Paul of the Cross', @@ -459,6 +472,7 @@ constants.SANCTI_05_07: 'St. Stanislaus', constants.SANCTI_05_09: 'St. Gregory of Nazianzen', constants.SANCTI_05_10: 'St. Antoninus', + constants.SANCTI_05_10C: 'St. Gordiano and Epimacho', constants.SANCTI_05_11: 'Sts. Philip & James', constants.SANCTI_05_12: 'Sts. Nereus, Achilleus, Domitilla, & Pancras', constants.SANCTI_05_13: 'St. Robert Bellarmine', @@ -472,10 +486,12 @@ constants.SANCTI_05_25: 'St. Gregory VII', constants.SANCTI_05_26: 'St. Philip Neri', constants.SANCTI_05_27: 'St. Bede the Venerable ', + constants.SANCTI_05_27C: 'St. John I', constants.SANCTI_05_28: 'St. Augustine of Canterbury', constants.SANCTI_05_29: 'St. Mary Magdalene de Pazzi', constants.SANCTI_05_30: 'St. Felix I', constants.SANCTI_05_31: 'Queenship of the Blessed Virgin Mary', + constants.SANCTI_05_31C: 'St. Petronilla', constants.SANCTI_06_01: 'St. Angela Merici ', constants.SANCTI_06_02: 'Sts. Marcellinus, Peter, & Erasmus ', constants.SANCTI_06_04: 'St. Francis Caracciolo', @@ -485,12 +501,15 @@ constants.SANCTI_06_10: 'St. Margaret of Scotland', constants.SANCTI_06_11: 'St. Barnabas', constants.SANCTI_06_12: 'St. John of San Fecundo', + constants.SANCTI_06_12C: 'St. Basilidus', constants.SANCTI_06_13: 'St. Anthony of Padua', constants.SANCTI_06_14: 'St. Basil the Great', constants.SANCTI_06_15: 'St. Vitus', constants.SANCTI_06_17: 'St. Gregory Barbarigo', constants.SANCTI_06_18: 'St. Ephrem of Syria', + constants.SANCTI_06_18C: 'Ss. Marcus and Marcellianus', constants.SANCTI_06_19: 'St. Julia of Falconieri', + constants.SANCTI_06_19C: 'Sts. Gervasius and Protasius', constants.SANCTI_06_20: 'St. Silverius', constants.SANCTI_06_21: 'St. Aloysius Gongzaga', constants.SANCTI_06_22: 'St. Paulinus of Nola', @@ -503,6 +522,7 @@ constants.SANCTI_06_30: 'In Commemoratione Sancti Pauli Apostoli', constants.SANCTI_07_01: 'The Precious Blood of Our Lord Jesus Christ', constants.SANCTI_07_02: 'Visitation of the Blessed Virgin Mary', + constants.SANCTI_07_02C: 'SS. Processus and Martinian', constants.SANCTI_07_03: 'St. Irenaeus', constants.SANCTI_07_05: 'St. Anthony Mary Zaccariah ', constants.SANCTI_07_07: 'Sts. Cyril & Methodius', @@ -510,6 +530,7 @@ constants.SANCTI_07_10: 'Seven Holy Brothers and Sts. Rufina & Secunda', constants.SANCTI_07_11: 'St. Pius I', constants.SANCTI_07_12: 'St. John Gualbert', + constants.SANCTI_07_12C: 'Ss. Naboris et Felicis', constants.SANCTI_07_14: 'St. Bonaventure', constants.SANCTI_07_15: 'St. Henry the Emperor', constants.SANCTI_07_16: 'Our Lady of Mt. Carmel', @@ -520,27 +541,36 @@ constants.SANCTI_07_21: 'St. Laurence of Brindisi', constants.SANCTI_07_22: 'St. Mary Magdalene', constants.SANCTI_07_23: 'St. Apollinaris', + constants.SANCTI_07_23C: 'S. Liborii', constants.SANCTI_07_24: 'St. Christina', constants.SANCTI_07_25: 'St. James the Greater', + constants.SANCTI_07_25C: 'St. Christopher', constants.SANCTI_07_26: 'St. Anne, Mother of the Blessed Virgin', constants.SANCTI_07_27: 'St. Pantaleon', constants.SANCTI_07_28: 'Sts. Nazarius & Celsus, St. Victor I & St. Innocent I', constants.SANCTI_07_29: 'St. Martha', + constants.SANCTI_07_29C: 'Ss. Felicis, Simplicii, Faustini et Beatricis', constants.SANCTI_07_30: 'Sts. Abdon & Sennen', constants.SANCTI_07_31: 'St. Ignatius Loyola', constants.SANCTI_08_01: 'Holy Machabees ', constants.SANCTI_08_02: 'St. Alphonsus Liguori ', + constants.SANCTI_08_02C: 'St. Stephen I, Pope and Martyr', constants.SANCTI_08_04: 'St. Dominic', constants.SANCTI_08_05: 'Dedication of the Basilica of St. Mary Major', constants.SANCTI_08_06: 'Transfiguration of Our Lord', + constants.SANCTI_08_06C: 'Pope Sixtus II, Felicissimus and Agapitus, Martyrs', constants.SANCTI_08_07: 'St. Cajetan', + constants.SANCTI_08_07C: 'St. Donatus', constants.SANCTI_08_08: 'St. John Mary Vianney', + constants.SANCTI_08_08C: 'Ss. Cyriacus, Largus and Smaragdus, Martyrs', constants.SANCTI_08_09: 'Vigil of St. Lawrence', + constants.SANCTI_08_09C: 'St. Romanus', constants.SANCTI_08_10: 'St. Lawrence', constants.SANCTI_08_11: 'Sts. Tiburtius & Susanna', constants.SANCTI_08_12: 'St. Clare', constants.SANCTI_08_13: 'Sts. Hippolytus & Cassian', constants.SANCTI_08_14: 'Vigil of the Assumption', + constants.SANCTI_08_14C: 'St. Eusebius', constants.SANCTI_08_15: 'Assumption of the Blessed Virgin Mary', constants.SANCTI_08_16: 'St. Joachim, Father of the Blessed Virgin', constants.SANCTI_08_17: 'St. Hyacinth', @@ -549,14 +579,18 @@ constants.SANCTI_08_20: 'St. Bernard of Clairvaux', constants.SANCTI_08_21: 'St. Jane Frances de Chantal', constants.SANCTI_08_22: 'Immaculate Heart of Mary', + constants.SANCTI_08_22C: 'Sts. Timothy, Hippolytus and Symphorianus, Martyrs', constants.SANCTI_08_23: 'St. Philip Benizi', constants.SANCTI_08_24: 'St. Bartholomew', constants.SANCTI_08_25: 'St. Louis IX', constants.SANCTI_08_26: 'St. Zephyrinus', constants.SANCTI_08_27: 'St. Joseph Calasance', constants.SANCTI_08_28: 'St. Augustine', + constants.SANCTI_08_28C: 'St. Hermes', constants.SANCTI_08_29: 'Beheading of St. John the Baptist', + constants.SANCTI_08_29C: 'St. Sabina', constants.SANCTI_08_30: 'St. Rose of Lima', + constants.SANCTI_08_30C: 'Sts. Felix and Adauctus', constants.SANCTI_08_31: 'St. Raymond Nonnatus', constants.SANCTI_09_01: 'St. Giles', constants.SANCTI_09_02: 'St. Stephen of Hungary', @@ -570,6 +604,7 @@ constants.SANCTI_09_14: 'Exaltation of the Holy Cross', constants.SANCTI_09_15: 'Seven Sorrows of the Blessed Virgin Mary', constants.SANCTI_09_16: 'Sts. Cornelius & Cyprian', + constants.SANCTI_09_16C: 'Sts. Euphemia, Lucy and Geminianus', constants.SANCTI_09_17: 'Stigmata of St. Francis', constants.SANCTI_09_18: 'St. Joseph of Cupertino', constants.SANCTI_09_19: 'St. Januarius & Companions', @@ -577,6 +612,7 @@ constants.SANCTI_09_21: 'St. Matthew', constants.SANCTI_09_22: 'St. Thomas of Villanova', constants.SANCTI_09_23: 'St. Linus', + constants.SANCTI_09_23C: 'St. Thecla', constants.SANCTI_09_24: 'Our Lady of Ransom', constants.SANCTI_09_26: 'Sts. Cyprian & Justina ', constants.SANCTI_09_27: 'Sts. Cosmas & Damian', @@ -590,7 +626,9 @@ constants.SANCTI_10_05: 'St. Placid & Companions ', constants.SANCTI_10_06: 'St. Bruno', constants.SANCTI_10_07: 'Our Lady of the Rosary', + constants.SANCTI_10_07C: 'St. Mark I', constants.SANCTI_10_08: 'St. Bridget of Sweden', + constants.SANCTI_10_08C: 'Ss. Sergio, Baccho, Marcello and Apulejo Martyrs', constants.SANCTI_10_09: 'St. John Leonardi', constants.SANCTI_10_10: 'St. Francis Borgia', constants.SANCTI_10_11: 'Maternity of the Blessed Virgin Mary', diff --git a/missalemeum/constants/la/blocks.py b/missalemeum/constants/la/blocks.py index e0e6e901..34bb228c 100644 --- a/missalemeum/constants/la/blocks.py +++ b/missalemeum/constants/la/blocks.py @@ -102,7 +102,7 @@ (constants.TEMPORA_QUAD5_2,), (constants.TEMPORA_QUAD5_3,), (constants.TEMPORA_QUAD5_4,), - (constants.TEMPORA_QUAD5_5,), + (constants.TEMPORA_QUAD5_5, constants.TEMPORA_QUAD5_5C), (constants.TEMPORA_QUAD5_6,), (constants.TEMPORA_QUAD6_0,), (constants.TEMPORA_QUAD6_1,), @@ -399,23 +399,31 @@ SANCTI = ( constants.SANCTI_01_01, + constants.SANCTI_01_05, constants.SANCTI_01_06, + constants.SANCTI_01_11, constants.SANCTI_01_13, constants.SANCTI_01_14, + constants.SANCTI_01_14C, constants.SANCTI_01_15, + constants.SANCTI_01_15C, constants.SANCTI_01_16, constants.SANCTI_01_17, constants.SANCTI_01_18, constants.SANCTI_01_19, + constants.SANCTI_01_19C, constants.SANCTI_01_20, constants.SANCTI_01_21, constants.SANCTI_01_22, constants.SANCTI_01_23, + constants.SANCTI_01_23C, constants.SANCTI_01_24, constants.SANCTI_01_25, + constants.SANCTI_01_25C, constants.SANCTI_01_26, constants.SANCTI_01_27, constants.SANCTI_01_28, + constants.SANCTI_01_28C, constants.SANCTI_01_29, constants.SANCTI_01_30, constants.SANCTI_01_31, @@ -425,9 +433,11 @@ constants.SANCTI_02_04, constants.SANCTI_02_05, constants.SANCTI_02_06, + constants.SANCTI_02_06C, constants.SANCTI_02_07, constants.SANCTI_02_08, constants.SANCTI_02_09, + constants.SANCTI_02_09C, constants.SANCTI_02_10, constants.SANCTI_02_11, constants.SANCTI_02_12, @@ -435,6 +445,7 @@ constants.SANCTI_02_15, constants.SANCTI_02_18, constants.SANCTI_02_22, + constants.SANCTI_02_22C, constants.SANCTI_02_23, constants.SANCTI_02_24, constants.SANCTI_02_27, @@ -462,6 +473,7 @@ constants.SANCTI_04_23, constants.SANCTI_04_24, constants.SANCTI_04_25, + constants.SANCTI_04_25C, constants.SANCTI_04_26, constants.SANCTI_04_27, constants.SANCTI_04_28, @@ -475,11 +487,13 @@ constants.SANCTI_05_07, constants.SANCTI_05_09, constants.SANCTI_05_10, + constants.SANCTI_05_10C, constants.SANCTI_05_11, constants.SANCTI_05_12, constants.SANCTI_05_13, constants.SANCTI_05_14, constants.SANCTI_05_15, + constants.SANCTI_05_16, constants.SANCTI_05_17, constants.SANCTI_05_18, constants.SANCTI_05_19, @@ -487,10 +501,14 @@ constants.SANCTI_05_25, constants.SANCTI_05_26, constants.SANCTI_05_27, + constants.SANCTI_05_27C, + constants.SANCTI_05_27C, + constants.SANCTI_05_27C, constants.SANCTI_05_28, constants.SANCTI_05_29, constants.SANCTI_05_30, constants.SANCTI_05_31, + constants.SANCTI_05_31C, constants.SANCTI_06_01, constants.SANCTI_06_02, constants.SANCTI_06_04, @@ -500,12 +518,15 @@ constants.SANCTI_06_10, constants.SANCTI_06_11, constants.SANCTI_06_12, + constants.SANCTI_06_12C, constants.SANCTI_06_13, constants.SANCTI_06_14, constants.SANCTI_06_15, constants.SANCTI_06_17, constants.SANCTI_06_18, + constants.SANCTI_06_18C, constants.SANCTI_06_19, + constants.SANCTI_06_19C, constants.SANCTI_06_20, constants.SANCTI_06_21, constants.SANCTI_06_22, @@ -518,6 +539,7 @@ constants.SANCTI_06_30, constants.SANCTI_07_01, constants.SANCTI_07_02, + constants.SANCTI_07_02C, constants.SANCTI_07_03, constants.SANCTI_07_05, constants.SANCTI_07_07, @@ -525,6 +547,7 @@ constants.SANCTI_07_10, constants.SANCTI_07_11, constants.SANCTI_07_12, + constants.SANCTI_07_12C, constants.SANCTI_07_14, constants.SANCTI_07_15, constants.SANCTI_07_16, @@ -535,27 +558,36 @@ constants.SANCTI_07_21, constants.SANCTI_07_22, constants.SANCTI_07_23, + constants.SANCTI_07_23C, constants.SANCTI_07_24, constants.SANCTI_07_25, + constants.SANCTI_07_25C, constants.SANCTI_07_26, constants.SANCTI_07_27, constants.SANCTI_07_28, constants.SANCTI_07_29, + constants.SANCTI_07_29C, constants.SANCTI_07_30, constants.SANCTI_07_31, constants.SANCTI_08_01, constants.SANCTI_08_02, + constants.SANCTI_08_02C, constants.SANCTI_08_04, constants.SANCTI_08_05, constants.SANCTI_08_06, + constants.SANCTI_08_06C, constants.SANCTI_08_07, + constants.SANCTI_08_07C, constants.SANCTI_08_08, + constants.SANCTI_08_08C, constants.SANCTI_08_09, + constants.SANCTI_08_09C, constants.SANCTI_08_10, constants.SANCTI_08_11, constants.SANCTI_08_12, constants.SANCTI_08_13, constants.SANCTI_08_14, + constants.SANCTI_08_14C, constants.SANCTI_08_15, constants.SANCTI_08_16, constants.SANCTI_08_17, @@ -564,14 +596,18 @@ constants.SANCTI_08_20, constants.SANCTI_08_21, constants.SANCTI_08_22, + constants.SANCTI_08_22C, constants.SANCTI_08_23, constants.SANCTI_08_24, constants.SANCTI_08_25, constants.SANCTI_08_26, constants.SANCTI_08_27, constants.SANCTI_08_28, + constants.SANCTI_08_28C, constants.SANCTI_08_29, + constants.SANCTI_08_29C, constants.SANCTI_08_30, + constants.SANCTI_08_30C, constants.SANCTI_08_31, constants.SANCTI_09_01, constants.SANCTI_09_02, @@ -585,6 +621,7 @@ constants.SANCTI_09_14, constants.SANCTI_09_15, constants.SANCTI_09_16, + constants.SANCTI_09_16C, constants.SANCTI_09_17, constants.SANCTI_09_18, constants.SANCTI_09_19, @@ -592,6 +629,7 @@ constants.SANCTI_09_21, constants.SANCTI_09_22, constants.SANCTI_09_23, + constants.SANCTI_09_23C, constants.SANCTI_09_24, constants.SANCTI_09_26, constants.SANCTI_09_27, @@ -605,7 +643,9 @@ constants.SANCTI_10_05, constants.SANCTI_10_06, constants.SANCTI_10_07, + constants.SANCTI_10_07C, constants.SANCTI_10_08, + constants.SANCTI_10_08C, constants.SANCTI_10_09, constants.SANCTI_10_10, constants.SANCTI_10_11, diff --git a/missalemeum/constants/la/translation.py b/missalemeum/constants/la/translation.py index 813ed523..ca7cb5a3 100644 --- a/missalemeum/constants/la/translation.py +++ b/missalemeum/constants/la/translation.py @@ -2,6 +2,7 @@ from constants import common as constants + TITLES = { constants.FERIA: 'Feria', constants.TEMPORA_EPI1_0: 'Sanctæ Familiæ Jesu Mariæ Joseph', @@ -101,6 +102,7 @@ constants.TEMPORA_QUAD5_3: 'Feria IV infra Hebd Passionis', constants.TEMPORA_QUAD5_4: 'Feria V infra Hebd Passionis', constants.TEMPORA_QUAD5_5: 'Feria VI infra Hebd Passionis', + constants.TEMPORA_QUAD5_5C: 'Commemoratio Septem Dolorum B. M. V.', constants.TEMPORA_QUAD5_6: 'Sabbato infra Hebd Passionis', constants.TEMPORA_QUAD6_0: 'Dominica II Passionis seu in Palmis', constants.TEMPORA_QUAD6_1: 'Feria II Hebdomadæ Sanctæ', @@ -385,22 +387,30 @@ constants.COMMUNE_C2B: 'Commune Unius Martyris Pontificis, Sacerdotes Dei', constants.SANCTI_01_01: 'Die Octavæ Nativitatis Domini', constants.SANCTI_01_06: 'In Epiphania Domini', + constants.SANCTI_01_05: 'S. Telesphori Papæ et Mart.', constants.SANCTI_01_13: 'In Commemoratione Baptismatis Domini Nostri Jesu Christi', + constants.SANCTI_01_11: 'S. Hyginus Papæ et Mart.', constants.SANCTI_01_14: 'S. Hilarii Episcopi Confessoris Ecclesiæ Doctoris', + constants.SANCTI_01_14C: 'S. Felicis Mart.', constants.SANCTI_01_15: 'S. Pauli Primi Eremitæ et Confessoris', + constants.SANCTI_01_15C: 'S. Mauro Abbate', constants.SANCTI_01_16: 'S. Marcelli Papæ et Martyris', constants.SANCTI_01_17: 'S. S. Antonii Abbatis', constants.SANCTI_01_18: 'S. Priscæ Virginis', constants.SANCTI_01_19: 'S. Marii et Soc. Mart.', + constants.SANCTI_01_19C: 'S. Canuto Regi Mart.', constants.SANCTI_01_20: 'Ss. Fabiani et Sebastiani Martyrum', constants.SANCTI_01_21: 'S. Agnetis Virginis et Martyris', constants.SANCTI_01_22: 'Ss. Vincentii et Anastasii Martyrum', constants.SANCTI_01_23: 'S. Raymundi de Penafort Confessoris', + constants.SANCTI_01_23C: 'S. Emerentiana Virg. et Mart.', constants.SANCTI_01_24: 'S. Timothei Episcopi et Martyris', constants.SANCTI_01_25: 'In Conversione S. Pauli Apostoli', + constants.SANCTI_01_25C: 'S. Petri Ap.', constants.SANCTI_01_26: 'S. Polycarpi Episcopi et Martyris', constants.SANCTI_01_27: 'S. Joannis Chrysostomi Episcopi Confessoris Ecclesiæ Doctoris', constants.SANCTI_01_28: 'S. Petri Nolasci Confessoris', + constants.SANCTI_01_28C: 'S. Agnetis', constants.SANCTI_01_29: 'S. Francisci Salesii Episcopi Confessoris Ecclesiæ Doctoris', constants.SANCTI_01_30: 'S. Martinæ Virginis et Martyris', constants.SANCTI_01_31: 'S. Joannis Bosco Confessoris', @@ -410,16 +420,19 @@ constants.SANCTI_02_04: 'S. Andreæ Corsini Episcopi et Confessoris', constants.SANCTI_02_05: 'S. Agathæ Virginis et Martyris', constants.SANCTI_02_06: 'S. Titi Episc. et Confessoris', + constants.SANCTI_02_06C: 'S. Dorotheæ Virg. et Mart.', constants.SANCTI_02_07: 'S. Romualdi Abbatis', constants.SANCTI_02_08: 'S. Joannis de Matha Confessoris', constants.SANCTI_02_09: 'S. Cyrilli Episc. Alexandrini Confessoris Ecclesiæ Doctoris', + constants.SANCTI_02_09C: 'S. Appolloniæ Virginis et Martyris', constants.SANCTI_02_10: 'S. Scholasticæ Virginis', constants.SANCTI_02_11: 'In Apparitione Beatæ Mariæ Virginis', constants.SANCTI_02_12: 'Ss. Septem Fundat. Ord. Servorum B. M. V.', constants.SANCTI_02_14: 'S. Valentini', constants.SANCTI_02_15: 'SS. Faustini et Jovitæ', constants.SANCTI_02_18: 'S. Simeonis Faustini Episcopi et Martyris', - constants.SANCTI_02_22: 'In Cathedra S. Petri Ap. ', + constants.SANCTI_02_22: 'In Cathedra S. Petri Ap.', + constants.SANCTI_02_22C: 'S. Pauli', constants.SANCTI_02_23: 'S. Petri Damiani', constants.SANCTI_02_24: 'S. Matthiæ Apostoli', constants.SANCTI_02_27: 'S. Gabrielis a Virgine Perdolente Confessoris', @@ -452,6 +465,7 @@ constants.SANCTI_04_23PL: 'S. Adalberti, Episcopi et Martyris', constants.SANCTI_04_24: 'S. Fidelis de Sigmaringa Martyris', constants.SANCTI_04_25: 'S. Marci Evangelistæ', + constants.SANCTI_04_25C: 'Pro rogationibus', constants.SANCTI_04_26: 'SS. Cleti et Marcellini Summorum Pontificum et Martyrum', constants.SANCTI_04_27: 'S. Petri Canisii Confessoris et Ecclesiæ Doctoris', constants.SANCTI_04_28: 'S. Pauli a Cruce Confessoris', @@ -468,6 +482,7 @@ constants.SANCTI_05_08PL: 'S. Stanislai Episcopi et Martyris', constants.SANCTI_05_09: 'S. Gregorii Nazianzeni Episcopi Confessoris Ecclesiæ Doctoris', constants.SANCTI_05_10: 'S. Antonii Episcopi Confessoris', + constants.SANCTI_05_10C: 'Ss. Gordiano et Epimacho Martyribus', constants.SANCTI_05_11: 'Ss. Philippi et Jacobi Apostolorum', constants.SANCTI_05_12: 'Ss. Nerei, Achillei et Domitillæ Virginis atque Pancratii Martyrum', constants.SANCTI_05_13: 'S. Roberti Bellarmino Episcopi Confessoris et Ecclesiæ Doctoris', @@ -483,10 +498,12 @@ constants.SANCTI_05_25: 'S. Gregorii VII Papæ Confessoris', constants.SANCTI_05_26: 'S. Philippi Neri Confessoris', constants.SANCTI_05_27: 'S. Bedæ Venerabilis Confessoris et Ecclesiæ Doctoris', + constants.SANCTI_05_27C: 'S. Joanne', constants.SANCTI_05_28: 'S. Augustini Episcopi Confessoris', constants.SANCTI_05_29: 'S. Mariæ Magdalenæ de Pazzis Virginis', constants.SANCTI_05_30: 'S. Felicis Papæ et Martyris', constants.SANCTI_05_31: 'Beatæ Mariæ Virginis Reginæ', + constants.SANCTI_05_31C: 'S. Petronilla', constants.SANCTI_06_01: 'S. Angelæ Mericiæ Virginis', constants.SANCTI_06_02: 'Ss. Marcellini, Petri, atque Erasmi Martyrum', constants.SANCTI_06_04: 'S. Francisci Caracciolo Confessoris', @@ -497,13 +514,16 @@ constants.SANCTI_06_10PL: 'B. Bogumilai Episcopi et Confessoris', constants.SANCTI_06_11: 'S. Barnabæ Apostoli', constants.SANCTI_06_12: 'S. Joannis a S. Facundo Confessoris', + constants.SANCTI_06_12C: 'S Basilidus', constants.SANCTI_06_13: 'S. Antonii de Padua Confessoris', constants.SANCTI_06_14: 'S. Basilii Magni Confessoris et Ecclesiæ Doctoris', constants.SANCTI_06_15: 'Ss. Viti, Modesti atque Crescentiæ Martyrum', constants.SANCTI_06_15PL: 'b. Jolantae Viduae', constants.SANCTI_06_17: 'S. Gregorii Barbadici Episcopi Confessoris', constants.SANCTI_06_18: 'S. Ephræm Syri Confessoris et Ecclesiæ Doctorem', + constants.SANCTI_06_18C: 'SS. Marci et Marcelliani', constants.SANCTI_06_19: 'S. Julianæ de Falconeriis Virginis', + constants.SANCTI_06_19C: 'Ss. Gervasio et Protasio', constants.SANCTI_06_20: 'S. Silverii Papæ et Martyri', constants.SANCTI_06_21: 'S. Aloisii Gonzagæ Confessoris', constants.SANCTI_06_22: 'S. Paulini Episcopi et Confessoris', @@ -516,6 +536,7 @@ constants.SANCTI_06_30: 'In Commemoratione Sancti Pauli Apostoli', constants.SANCTI_07_01: 'Pretiosissimi Sanguinis Domini Nostri Jesu Christi', constants.SANCTI_07_02: 'In Visitatione B. Mariæ Virginis', + constants.SANCTI_07_02C: 'Ss. Processi et Martiniani', constants.SANCTI_07_03: 'S. Irenæi Episcopi et Martyris', constants.SANCTI_07_05: 'S. Antonii Mariæ Zaccaria Confessoris', constants.SANCTI_07_07: 'Ss. Cyrilli et Methodii Pont. et Conf. ', @@ -523,6 +544,7 @@ constants.SANCTI_07_10: 'Ss. Septem Fratrum Martyrum, ac Rufinæ et Secundæ Virginum et Martyrum', constants.SANCTI_07_11: 'S. Pii I Papæ et Martyris', constants.SANCTI_07_12: 'S. Joannis Gualberti Abbatis', + constants.SANCTI_07_12C: 'Ss. Naboris et Felicis', constants.SANCTI_07_13PL: 'Śś. Andreæ et Benedicti', constants.SANCTI_07_14: 'S. Bonaventuræ Episcopi Confessoris et Ecclesiæ Doctoris', constants.SANCTI_07_15: 'S. Henrici Imperatoris Confessoris', @@ -537,28 +559,37 @@ constants.SANCTI_07_21: 'S. Laurentii a Brundusio Confessoris', constants.SANCTI_07_22: 'S. Mariæ Magdalenæ Poenitentis', constants.SANCTI_07_23: 'S. Apollinaris Episcopi et Martyris', + constants.SANCTI_07_23C: 'S. Liborii ', constants.SANCTI_07_24: 'S. Christinæ Virginis et Martyris', constants.SANCTI_07_24PL: 'S. Kingæ Virginis', constants.SANCTI_07_25: 'S. Jacobi Apostoli', + constants.SANCTI_07_25C: 'S. Christophori', constants.SANCTI_07_26: 'S. Annæ Matris B.M.V. ', constants.SANCTI_07_27: 'S. Pantaleonis Martyris', constants.SANCTI_07_28: 'Ss. Nazarii et Celsi Martyrum, Victoris I Papæ et Martyris ac Innocentii I Papæ et Confessoris ', constants.SANCTI_07_29: 'S. Marthæ Virginis', + constants.SANCTI_07_29C: 'Ss. Felicis, Simplicii, Faustini et Beatricis', constants.SANCTI_07_30: 'S. Abdon et Sennen Martyrum', constants.SANCTI_07_31: 'S. Ignatii Confessoris', constants.SANCTI_08_01: 'Ss. Martyrum Machabæorum', constants.SANCTI_08_02: 'S. Alfonsi Mariæ de Ligorio Episcopi Confessoris et Ecclesiæ Doctoris', + constants.SANCTI_08_02C: 'S. Stephani Papæ et Martyris', constants.SANCTI_08_04: 'S. Dominici Confessoris', constants.SANCTI_08_05: 'S. Mariæ ad Nives ', constants.SANCTI_08_06: 'In Transfiguratione Domini Nostri Jesu Christi', + constants.SANCTI_08_06C: 'Ss. Xysti II Papæ, Felicissimi et Agapiti Martyrum', constants.SANCTI_08_07: 'S. Cajetani Confessoris', + constants.SANCTI_08_07C: 'S. Donati, Episcopi et Martyris', constants.SANCTI_08_08: 'S. Joannis Mariæ Vianney Confessoris', + constants.SANCTI_08_08C: 'Ss. Cyriaci, Largi et Smaragdi Martyrum', constants.SANCTI_08_09: 'Vigilia S. Laurentii Martyris', + constants.SANCTI_08_09C: 'S. Romano Martyre', constants.SANCTI_08_10: 'S. Laurentii Martyris', constants.SANCTI_08_11: 'Ss. Tiburtii et Susannæ Virginum et Martyrum', constants.SANCTI_08_12: 'S. Claræ Virginis', constants.SANCTI_08_13: 'Ss. Hippolyti et Cassiani Martyrum', constants.SANCTI_08_14: 'Vigilia Assumptionis B.M.V.', + constants.SANCTI_08_14C: 'S. Eusebio Confessore', constants.SANCTI_08_15: 'In Assumptione Beatæ Mariæ Virginis', constants.SANCTI_08_16: 'S. Joachim Confessoris, Patris B. Mariæ Virginis', constants.SANCTI_08_17: 'S. Hyacinthi Confessoris', @@ -567,6 +598,7 @@ constants.SANCTI_08_20: 'S. Bernardi Abbatis et Ecclesiæ Doctoris', constants.SANCTI_08_21: 'S. Joannæ Franciscæ Frémiot de Chantal Viduæ', constants.SANCTI_08_22: 'Immaculati Cordis Beatæ Mariæ Virginis', + constants.SANCTI_08_22C: 'Ss. Timotheo, Hippolyto et Symphoriano, Martyribus', constants.SANCTI_08_23: 'S. Philippi Benitii Confessoris', constants.SANCTI_08_24: 'S. Bartholomæi Apostoli', constants.SANCTI_08_25: 'S. Ludovici Confessoris', @@ -574,8 +606,11 @@ constants.SANCTI_08_26PL: 'Beate Mariae Virginis Claromontane Czestochoviensis', constants.SANCTI_08_27: 'S. Josephi Calasanctii Confessoris', constants.SANCTI_08_28: 'S. Augustini Episcopi et Confessoris et Ecclesiæ Doctoris', + constants.SANCTI_08_28C: 'S. Hermete Martyre', constants.SANCTI_08_29: 'Decollatione S. Joannis Baptistæ', + constants.SANCTI_08_29C: 'S. Sabina Martyre', constants.SANCTI_08_30: 'S. Rosæ a Sancta Maria Limange Virginis', + constants.SANCTI_08_30C: 'Ss. Felice et Adaucto', constants.SANCTI_08_31: 'S. Raymundi Nonnati Confessoris', constants.SANCTI_09_01: 'S. Ægidii Abbatis', constants.SANCTI_09_01PL: 'B. Bronislauæ Virginins', @@ -591,6 +626,7 @@ constants.SANCTI_09_14: 'In Exaltatione Sanctæ crucis', constants.SANCTI_09_15: 'Septem Dolorum Beatæ Mariæ Virginis', constants.SANCTI_09_16: 'Ss. Cornelii Papæ et Cypriani Episcopi, Martyrum', + constants.SANCTI_09_16C: 'S. Euphemia', constants.SANCTI_09_17: 'Impressionis Stigmatum S. Francisci', constants.SANCTI_09_18: 'S. Josephi de Cupertino Confessoris', constants.SANCTI_09_19: 'S. Januarii Episcopi et Sociorum Martyrum', @@ -598,6 +634,7 @@ constants.SANCTI_09_21: 'S. Matthæi Apostoli et Evangelistæ', constants.SANCTI_09_22: 'S. Thomæ de Villanove Episcopi et Confessoris', constants.SANCTI_09_23: 'S. Lini Papæ et Martyris', + constants.SANCTI_09_23C: 'S. Thecla Virg. et Mart.', constants.SANCTI_09_24: 'Beatæ Mariæ Virginis de Mercede', constants.SANCTI_09_25PL: 'B. Ladislai Confessoris', constants.SANCTI_09_26: 'Ss. Cypriani et Justinæ Martyrum', @@ -613,7 +650,9 @@ constants.SANCTI_10_05: 'Ss. Placidi et Sociorum Martyrum', constants.SANCTI_10_06: 'S. Brunonis Confessoris', constants.SANCTI_10_07: 'Festum Beatæ Mariæ Virginis a Rosario', + constants.SANCTI_10_07C: 'S. Marco Papa et Conf.', constants.SANCTI_10_08: 'S. Birgittæ Viduæ', + constants.SANCTI_10_08C: 'Pro Ss. Sergio, Baccho, Marcello et Apulejo Martyribus', constants.SANCTI_10_09: 'S. Joannis Leonardi Confessoris', constants.SANCTI_10_09PL: 'b. Vincenti Episcopi et Confessoris', constants.SANCTI_10_10: 'S. Francisci Borgiæ Confessoris', @@ -706,7 +745,6 @@ constants.VOTIVE_FIDEI_PROPAGATIONE: 'Missa pro Fidei Propagatione', constants.VOTIVE_TERRIBILIS: 'Missa de Communi Dedicationis Ecclesiae.' } - VOTIVE_MASSES = [] SECTION_LABELS = { diff --git a/missalemeum/constants/pl/blocks.py b/missalemeum/constants/pl/blocks.py index 7e5d9f67..562f8fc4 100644 --- a/missalemeum/constants/pl/blocks.py +++ b/missalemeum/constants/pl/blocks.py @@ -3,23 +3,31 @@ SANCTI = ( constants.SANCTI_01_01, + constants.SANCTI_01_05, constants.SANCTI_01_06, + constants.SANCTI_01_11, constants.SANCTI_01_13, constants.SANCTI_01_14, + constants.SANCTI_01_14C, constants.SANCTI_01_15, + constants.SANCTI_01_15C, constants.SANCTI_01_16, constants.SANCTI_01_17, constants.SANCTI_01_18, constants.SANCTI_01_19, + constants.SANCTI_01_19C, constants.SANCTI_01_20, constants.SANCTI_01_21, constants.SANCTI_01_22, constants.SANCTI_01_23, + constants.SANCTI_01_23C, constants.SANCTI_01_24, constants.SANCTI_01_25, + constants.SANCTI_01_25C, constants.SANCTI_01_26, constants.SANCTI_01_27, constants.SANCTI_01_28, + constants.SANCTI_01_28C, constants.SANCTI_01_29, constants.SANCTI_01_30, constants.SANCTI_01_31, @@ -29,9 +37,11 @@ constants.SANCTI_02_04, constants.SANCTI_02_05, constants.SANCTI_02_06, + constants.SANCTI_02_06C, constants.SANCTI_02_07, constants.SANCTI_02_08, constants.SANCTI_02_09, + constants.SANCTI_02_09C, constants.SANCTI_02_10, constants.SANCTI_02_11, constants.SANCTI_02_12, @@ -39,6 +49,7 @@ constants.SANCTI_02_15, constants.SANCTI_02_18, constants.SANCTI_02_22, + constants.SANCTI_02_22C, constants.SANCTI_02_23, constants.SANCTI_02_24, constants.SANCTI_02_27, @@ -67,6 +78,7 @@ constants.SANCTI_04_23PL, constants.SANCTI_04_24, constants.SANCTI_04_25, + constants.SANCTI_04_25C, constants.SANCTI_04_26, constants.SANCTI_04_27, constants.SANCTI_04_28, @@ -81,11 +93,13 @@ constants.SANCTI_05_08PL, constants.SANCTI_05_09, constants.SANCTI_05_10, + constants.SANCTI_05_10C, constants.SANCTI_05_11, constants.SANCTI_05_12, constants.SANCTI_05_13, constants.SANCTI_05_14, constants.SANCTI_05_15, + constants.SANCTI_05_16, constants.SANCTI_05_16PL, constants.SANCTI_05_17, constants.SANCTI_05_18, @@ -95,25 +109,31 @@ constants.SANCTI_05_25, constants.SANCTI_05_26, constants.SANCTI_05_27, + constants.SANCTI_05_27C, constants.SANCTI_05_28, constants.SANCTI_05_29, constants.SANCTI_05_30, constants.SANCTI_05_31, + constants.SANCTI_05_31C, constants.SANCTI_06_02, constants.SANCTI_06_04, constants.SANCTI_06_05, constants.SANCTI_06_06, constants.SANCTI_06_09, + constants.SANCTI_06_10, constants.SANCTI_06_10PL, constants.SANCTI_06_11, constants.SANCTI_06_12, + constants.SANCTI_06_12C, constants.SANCTI_06_13, constants.SANCTI_06_14, constants.SANCTI_06_15PL, constants.SANCTI_06_15, constants.SANCTI_06_17, constants.SANCTI_06_18, + constants.SANCTI_06_18C, constants.SANCTI_06_19, + constants.SANCTI_06_19C, constants.SANCTI_06_20, constants.SANCTI_06_21, constants.SANCTI_06_22, @@ -126,6 +146,7 @@ constants.SANCTI_06_30, constants.SANCTI_07_01, constants.SANCTI_07_02, + constants.SANCTI_07_02C, constants.SANCTI_07_03, constants.SANCTI_07_05, constants.SANCTI_07_07, @@ -133,6 +154,7 @@ constants.SANCTI_07_10, constants.SANCTI_07_11, constants.SANCTI_07_12, + constants.SANCTI_07_12C, constants.SANCTI_07_13PL, constants.SANCTI_07_14, constants.SANCTI_07_15PL, @@ -140,32 +162,44 @@ constants.SANCTI_07_16, constants.SANCTI_07_17, constants.SANCTI_07_18PL, + constants.SANCTI_07_18, constants.SANCTI_07_19, constants.SANCTI_07_20PL, + constants.SANCTI_07_20, constants.SANCTI_07_21, constants.SANCTI_07_22, constants.SANCTI_07_23, + constants.SANCTI_07_23C, + constants.SANCTI_07_24, constants.SANCTI_07_24PL, constants.SANCTI_07_25, + constants.SANCTI_07_25C, constants.SANCTI_07_26, constants.SANCTI_07_27, constants.SANCTI_07_28, constants.SANCTI_07_29, + constants.SANCTI_07_29C, constants.SANCTI_07_30, constants.SANCTI_07_31, constants.SANCTI_08_01, constants.SANCTI_08_02, + constants.SANCTI_08_02C, constants.SANCTI_08_04, constants.SANCTI_08_05, constants.SANCTI_08_06, + constants.SANCTI_08_06C, constants.SANCTI_08_07, + constants.SANCTI_08_07C, constants.SANCTI_08_08, + constants.SANCTI_08_08C, constants.SANCTI_08_09, + constants.SANCTI_08_09C, constants.SANCTI_08_10, constants.SANCTI_08_11, constants.SANCTI_08_12, constants.SANCTI_08_13, constants.SANCTI_08_14, + constants.SANCTI_08_14C, constants.SANCTI_08_15, constants.SANCTI_08_16, constants.SANCTI_08_17, @@ -174,14 +208,18 @@ constants.SANCTI_08_20, constants.SANCTI_08_21, constants.SANCTI_08_22, + constants.SANCTI_08_22C, constants.SANCTI_08_23, constants.SANCTI_08_24, constants.SANCTI_08_25, constants.SANCTI_08_26PL, constants.SANCTI_08_27, constants.SANCTI_08_28, + constants.SANCTI_08_28C, constants.SANCTI_08_29, + constants.SANCTI_08_29C, constants.SANCTI_08_30, + constants.SANCTI_08_30C, constants.SANCTI_08_31, constants.SANCTI_09_01PL, constants.SANCTI_09_02, @@ -196,6 +234,7 @@ constants.SANCTI_09_14, constants.SANCTI_09_15, constants.SANCTI_09_16, + constants.SANCTI_09_16C, constants.SANCTI_09_17, constants.SANCTI_09_18, constants.SANCTI_09_19, @@ -203,6 +242,7 @@ constants.SANCTI_09_21, constants.SANCTI_09_22, constants.SANCTI_09_23, + constants.SANCTI_09_23C, constants.SANCTI_09_24, constants.SANCTI_09_25PL, constants.SANCTI_09_26, @@ -210,6 +250,7 @@ constants.SANCTI_09_28, constants.SANCTI_09_29, constants.SANCTI_09_30, + constants.SANCTI_10_01, constants.SANCTI_10_01PL, constants.SANCTI_10_02, constants.SANCTI_10_03, @@ -217,7 +258,9 @@ constants.SANCTI_10_05, constants.SANCTI_10_06, constants.SANCTI_10_07, + constants.SANCTI_10_07C, constants.SANCTI_10_08, + constants.SANCTI_10_08C, constants.SANCTI_10_09, constants.SANCTI_10_09PL, constants.SANCTI_10_10, diff --git a/missalemeum/constants/pl/translation.py b/missalemeum/constants/pl/translation.py index 23684fe3..ed319792 100644 --- a/missalemeum/constants/pl/translation.py +++ b/missalemeum/constants/pl/translation.py @@ -103,6 +103,7 @@ constants.TEMPORA_QUAD5_3: 'Środa po Niedzieli Męki Pańskiej', constants.TEMPORA_QUAD5_4: 'Czwartek po Niedzieli Męki Pańskiej', constants.TEMPORA_QUAD5_5: 'Piątek po Niedzieli Męki Pańskiej', + constants.TEMPORA_QUAD5_5C: 'Wspomnienie Siedmiu Boleści N. M. P.', constants.TEMPORA_QUAD5_6: 'Sobota po Niedzieli Męki Pańskiej', constants.TEMPORA_QUAD6_0: 'Niedziela Palmowa', constants.TEMPORA_QUAD6_1: 'Wielki Poniedziałek', @@ -386,23 +387,31 @@ constants.COMMUNE_C2C: '1 Msza o Męczenniku Biskupie – Statuit', constants.COMMUNE_C2B: '2 Msza o Męczenniku Biskupie – Sacerdotes Dei', constants.SANCTI_01_01: 'Oktawa Bożego Narodzenia', + constants.SANCTI_01_05: 'Św. Telesfora, Papieża i Męczennika', constants.SANCTI_01_06: 'Objawienie Pańskie', + constants.SANCTI_01_11: 'Św. Hygina, Papieża i Męczennika', constants.SANCTI_01_13: 'Wspomnienie Chrztu Pańskiego', constants.SANCTI_01_14: 'Św. Hilarego, Biskupa, Wyznawcy i Doktora Kościoła', + constants.SANCTI_01_14C: 'Św. Feliksa, Kapłana i Męczennika', constants.SANCTI_01_15: 'Św. Pawła, Pierwszego Pustelnika, Wyznawcy', + constants.SANCTI_01_15C: 'Św. Maura, Opata', constants.SANCTI_01_16: 'Św. Marcelego I, Papieża i Męczennika', constants.SANCTI_01_17: 'Św. Antoniego, Opata', constants.SANCTI_01_18: 'Św. Pryski, Dziewicy', constants.SANCTI_01_19: 'Śś. Mariusza, Marty, Audifaksa i Abachuma', + constants.SANCTI_01_19C: 'św. Kanuta, Króla i Męczennika', constants.SANCTI_01_20: 'Śś. Fabiana, Papieża i Sebastiana, Męczenników', constants.SANCTI_01_21: 'Św. Agnieszki, Dziewicy i Męczennicy', constants.SANCTI_01_22: 'Śś. Wincentego i Anastazego, Męczenników', constants.SANCTI_01_23: 'Św. Rajmunda z Pennafort, Wyznawcy', + constants.SANCTI_01_23C: 'Św. Emercjanny, Dziewicy i Męczennicy', constants.SANCTI_01_24: 'Św. Tymoteusza, Biskupa i Męczennika', constants.SANCTI_01_25: 'Nawrócenie św. Pawła, Apostoła', + constants.SANCTI_01_25C: 'Św. Piotra, Apostoła', constants.SANCTI_01_26: 'Św. Polikarpa, Biskupa i Męczennika', constants.SANCTI_01_27: 'Św. Jana Chryzostoma, Wyznawcy, Biskupa i Doktora Kościoła', constants.SANCTI_01_28: 'Św. Piotra Nolasco, Wyznawcy', + constants.SANCTI_01_28C: 'Św. Agnieszki', constants.SANCTI_01_29: 'Św. Franciszka Salezego, Biskupa, Wyznawcy i Doktora Kościoła', constants.SANCTI_01_30: 'Św. Martyny, Dziewicy i Męczennicy', constants.SANCTI_01_31: 'Św. Jana Bosco, Wyznawcy', @@ -412,9 +421,11 @@ constants.SANCTI_02_04: 'Św. Andrzeja Corsini, Biskupa i Wyznawcy', constants.SANCTI_02_05: 'Św. Agaty, Dziewicy i Męczennicy', constants.SANCTI_02_06: 'Św. Tytusa, Biskupa i Wyznawcy', + constants.SANCTI_02_06C: 'Św. Doroty, Dziewicy i Męczennicy', constants.SANCTI_02_07: 'Św. Romualda, Opata', constants.SANCTI_02_08: 'Św. Jana z Maty, Wyznawcy', constants.SANCTI_02_09: 'Św. Cyryla Aleksandryjskiego, Biskupa, Wyznawcy i Doktora Kościoła', + constants.SANCTI_02_09C: 'Św. Apolonii, Dziewicy i Męczennicy', constants.SANCTI_02_10: 'Św. Scholastyki', constants.SANCTI_02_11: 'Objawienie się N. M. P. Niepokalanie Poczętej w Lourdes', constants.SANCTI_02_12: 'Siedmiu Założycieli Zakonu Serwitów N. M. P., Wyznawców', @@ -422,6 +433,7 @@ constants.SANCTI_02_15: 'Śś. Faustyna i Jowity, Męczenników', constants.SANCTI_02_18: 'Św. Symeona, Biskupa i Męczennika', constants.SANCTI_02_22: 'Katedry św. Piotra Apostoła', + constants.SANCTI_02_22C: 'Św. Pawła', constants.SANCTI_02_23: 'Św. Piotra Damiana, Biskupa, Wyznawcy i Doktora Kościoła', constants.SANCTI_02_24: 'Św. Macieja Apostoła', constants.SANCTI_02_27: 'Św. Gabriela od Matki Bożej Bolesnej', @@ -454,6 +466,7 @@ constants.SANCTI_04_23PL: 'Św. Wojciecha, Biskupa i Męczennika', constants.SANCTI_04_24: 'Św. Fidelisa z Sigmaringen, Męczennika', constants.SANCTI_04_25: 'Św. Marka Ewangelisty', + constants.SANCTI_04_25C: 'Litania Większa', constants.SANCTI_04_26: 'Śś. Kleta i Marcelina, Papieży i Męczenników', constants.SANCTI_04_27: 'Św. Piotra Kanizjusza, Wyznawcy i Doktora Kościoła', constants.SANCTI_04_28: 'Św. Pawła od Krzyża, Wyznawcy', @@ -470,6 +483,7 @@ constants.SANCTI_05_08PL: 'Św. Stanisława, Biskupa i Męczennika', constants.SANCTI_05_09: 'Św. Grzegorza z Nazjanu, Biskupa, Wyznawcy i Doktora Kościoła', constants.SANCTI_05_10: 'Św. Antonina, Biskupa i Wyznawcy', + constants.SANCTI_05_10C: 'Śś. Gordiana i Epimacha, Męczenników', constants.SANCTI_05_11: 'Świętych Filipa i Jakuba, Apostołów', constants.SANCTI_05_12: 'Świętych Nereusza, Achillesa, Domicylli i Pankracego, Męczenników', constants.SANCTI_05_13: 'Św. Roberta Bellarmina, Biskupa, Wyznawcy i Doktora Kościoła', @@ -485,10 +499,12 @@ constants.SANCTI_05_25: 'Św. Grzegorza VII, Papieża i Wyznawcy', constants.SANCTI_05_26: 'Św. Filipa Nereusza, Wyznawcy', constants.SANCTI_05_27: 'Św. Bedy Czcigodnego, Wyznawcy i Doktora Kościoła', + constants.SANCTI_05_27C: 'św. Jana I, Papieża i Męczennika', constants.SANCTI_05_28: 'Św. Augustyna z Canterbury, Biskupa i Wyznawcy', constants.SANCTI_05_29: 'Św. Marii Magdaleny Pazzi, Dziewicy', constants.SANCTI_05_30: 'Św. Feliksa I, Papieża i Męczennika', constants.SANCTI_05_31: 'N. M. P. Królowej', + constants.SANCTI_05_31C: 'Św. Petroneli, Dziewicy', constants.SANCTI_06_01: 'Św. Anieli Merici, Dziewicy', constants.SANCTI_06_02: 'Śś. Marcelina i Piotra, Męczenników oraz Erazma, Biskupa', constants.SANCTI_06_04: 'Św. Franciszka Caracciolo, Wyznawcy', @@ -499,13 +515,16 @@ constants.SANCTI_06_10PL: 'Bł. Bogumiła, Biskupa i Wyznawcy', constants.SANCTI_06_11: 'Św. Barnaby, Apostoła', constants.SANCTI_06_12: 'Św. Jana z Facundo, Wyznawcy', + constants.SANCTI_06_12C: 'Śś. Bazylidesa, Cyryna, Nabora i Nazariusza, Męczenników', constants.SANCTI_06_13: 'Św. Antoniego z Padwy, Wyznawcy i Doktora Kościoła', constants.SANCTI_06_14: 'Św. Bazylego Wielkiego, Wyznawcy, Biskupa i Doktora Kościoła', constants.SANCTI_06_15: 'Śś. Wita, Modesta i Krescencji, Męczenników', constants.SANCTI_06_15PL: 'Bł. Jolanty, Wdowy', constants.SANCTI_06_17: 'Św. Grzegorza Barbarigo, Biskupa i Wyznawcy', constants.SANCTI_06_18: 'Św. Efrema, Diakona, Wyznawcy i Doktora Kościoła', + constants.SANCTI_06_18C: 'Śś. Marka i Marcelina, Męczenników', constants.SANCTI_06_19: 'Św. Juliany Falconieri, Dziewicy', + constants.SANCTI_06_19C: 'Śś. Gerwazego i Protazego, Męczenników', constants.SANCTI_06_20: 'Św. Sylweriusza, Papieża i Męczennika', constants.SANCTI_06_21: 'Św. Alojzego Gonzagi, Wyznawcy', constants.SANCTI_06_22: 'Św. Paulina, Biskupa i Wyznawcy', @@ -518,6 +537,7 @@ constants.SANCTI_06_30: 'Wspomnienie św. Pawła, Apostoła', constants.SANCTI_07_01: 'Uroczystość Najdroższej Krwi Pana Naszego Jezusa Chrystusa', constants.SANCTI_07_02: 'Nawiedzenia N. M. P.', + constants.SANCTI_07_02C: 'Śś. Procesa i Martyniana, Męczenników', constants.SANCTI_07_03: 'Św. Ireneusza, Biskupa i Męczennika', constants.SANCTI_07_05: 'Św. Antoniego Marii Zaccaria, Wyznawcy', constants.SANCTI_07_07: 'Śś. Cyryla i Metodego, Biskupów i Wyznawców', @@ -525,6 +545,7 @@ constants.SANCTI_07_10: 'Siedmiu Braci Męczenników oraz Śś. Rufiny i Sekundy, Dziewic i Męczennic', constants.SANCTI_07_11: 'Św. Piusa I, Papieża i Męczennika', constants.SANCTI_07_12: 'Św. Jana Gwalberta, Opata', + constants.SANCTI_07_12C: 'Śś. Nabora i Feliksa, Męczenników', constants.SANCTI_07_13PL: 'Śś. Andrzeja Świerada i Benedykta, Wyznawców', constants.SANCTI_07_14: 'Św. Bonawentury, Biskupa, Wyznawcy i Doktora Kościoła', constants.SANCTI_07_15: 'Św. Henryka, Cesarza i Wyznawcy', @@ -539,28 +560,37 @@ constants.SANCTI_07_21: 'Św. Wawrzyńca z Brindisi, Wyznawcy i Doktora Kościoła', constants.SANCTI_07_22: 'Św. Marii Magdaleny, Pokutnicy', constants.SANCTI_07_23: 'Św. Apolinarego, Biskupa i Męczennika', + constants.SANCTI_07_23C: 'Św. Liboriusza, Biskupa i Wyznawcy', constants.SANCTI_07_24: 'Św. Krystyny, Dziewicy i Męczennicy', constants.SANCTI_07_24PL: 'Św. Kingi, Dziewicy', constants.SANCTI_07_25: 'Św. Jakuba, Apostoła', + constants.SANCTI_07_25C: 'Św. Krzysztofa, Męczennika', constants.SANCTI_07_26: 'Św. Anny, Matki N. M. P.', constants.SANCTI_07_27: 'Św. Pantaleona, Męczennika', constants.SANCTI_07_28: 'Śś. Nazariusza i Celsa, Męczenników, Wiktora I, Papieża i Męczennika, oraz Innocentego I, Papieża i Wyznawcy', constants.SANCTI_07_29: 'Św. Marty, Dziewicy', + constants.SANCTI_07_29C: 'Śś. Feliksa, Symplicjusza, Faustyna i Beatryczy, Męczenników', constants.SANCTI_07_30: 'Śś. Abdona i Sennena, Męczenników', constants.SANCTI_07_31: 'Św. Ignacego Loyoli, Wyznawcy', constants.SANCTI_08_01: 'Siedmiu Braci Machabejskich, Męczenników', constants.SANCTI_08_02: 'Św. Alfonsa Marii Liguori, Biskupa, Wyznawcy i Doktora Kościoła', + constants.SANCTI_08_02C: 'Św. Stefana I, Papieża i Męczennika', constants.SANCTI_08_04: 'Św. Dominika, Wyznawcy', constants.SANCTI_08_05: 'Rocznica Konsekracji N. M. P. Śnieżnej', constants.SANCTI_08_06: 'Przemienienie Pańskie', + constants.SANCTI_08_06C: 'Śś. Sykstusa II, Papieża, Felicysyma i Agapita, Męczenników', constants.SANCTI_08_07: 'Św. Kajetana, Wyznawcy', + constants.SANCTI_08_07C: 'Św. Donata, Biskupa i Męczennika', constants.SANCTI_08_08: 'Św. Jana Marii Vianney, Wyznawcy', + constants.SANCTI_08_08C: 'Śś. Cyriaka, Larga i Szmaragda, Męczenników', constants.SANCTI_08_09: 'Wigilia św. Wawrzyńca, Męczennika', + constants.SANCTI_08_09C: 'Św. Romana, Męczennika', constants.SANCTI_08_10: 'Św. Wawrzyńca', constants.SANCTI_08_11: 'Śś. Tyburcjusza i Zuzanny, Męczenników', constants.SANCTI_08_12: 'Św. Klary, Dziewicy', constants.SANCTI_08_13: 'Śś. Hipolita i Kasjana, Męczenników', constants.SANCTI_08_14: 'Wigilia Wniebowzięcia N. M. P.', + constants.SANCTI_08_14C: 'Św. Euzebiusza, Wyznawcy', constants.SANCTI_08_15: 'Wniebowzięcie N. M. P.', constants.SANCTI_08_16: 'Św. Joachima, Ojca N. M. P.', constants.SANCTI_08_17: 'Św. Jacka, Wyznawcy', @@ -569,6 +599,7 @@ constants.SANCTI_08_20: 'Św. Bernarda, Opata i Doktora Kościoła', constants.SANCTI_08_21: 'Św. Joanny Franciszki Frémiot de Chantal, Wdowy', constants.SANCTI_08_22: 'Uroczystość Niepokalanego Serca N. M. P.', + constants.SANCTI_08_22C: 'Śś. Tymoteusza, Hipolita i Symforiana, Męczenników', constants.SANCTI_08_23: 'Św. Filipa Benicjusza, Wyznawcy', constants.SANCTI_08_24: 'Św. Bartłomieja, Apostoła', constants.SANCTI_08_25: 'Św. Ludwika, Króla i Wyznawcy', @@ -576,8 +607,11 @@ constants.SANCTI_08_26PL: 'N. M. P. Jasnogórskiej czyli Częstochowskiej', constants.SANCTI_08_27: 'Św. Józefa Kalasantego, Wyznawcy', constants.SANCTI_08_28: 'Św. Augustyna, Biskupa, Wyznawcy i Doktora Kościoła', + constants.SANCTI_08_28C: 'Św. Hermesa, Męczennika', constants.SANCTI_08_29: 'Ścięcie Św. Jana Chrzciciela', + constants.SANCTI_08_29C: 'Św. Sabiny, Męczennicy', constants.SANCTI_08_30: 'Św. Róży z Limy, Dziewicy', + constants.SANCTI_08_30C: 'Śś. Feliksa i Adaukta, Męczenników', constants.SANCTI_08_31: 'Św. Rajmunda Nonnata, Wyznawcy', constants.SANCTI_09_01: 'Św. Idziego, Opata oraz Śś. Dwunastu Braci, Męczenników', constants.SANCTI_09_01PL: 'Bł. Bronisławy, Dziewicy', @@ -593,6 +627,7 @@ constants.SANCTI_09_14: 'Podwyższenia Świętego Krzyża', constants.SANCTI_09_15: 'Siedmiu Boleści N. M. P.', constants.SANCTI_09_16: 'Św. Korneliusza, Papieża i Cypriana, Męczenników', + constants.SANCTI_09_16C: 'Śś. Eufemii, Łucji i Geminiana, Męczenników', constants.SANCTI_09_17: 'Stygmatów św. Franciszka, Wyznawcy', constants.SANCTI_09_18: 'Św. Józefa z Kupertynu, Wyznawcy', constants.SANCTI_09_19: 'Św. Januarego i Towarzyszy, Męczenników', @@ -600,6 +635,7 @@ constants.SANCTI_09_21: 'Św. Mateusza, Apostoła i Ewangelisty', constants.SANCTI_09_22: 'Św. Tomasza z Villanueva, Biskupa i Wyznawcy', constants.SANCTI_09_23: 'Św. Linusa, Papieża i Męczennika', + constants.SANCTI_09_23C: 'Św. Tekli, Dziewicy i Męczennicy', constants.SANCTI_09_24: 'N. M. P. od Wykupu Jeńców', constants.SANCTI_09_25PL: 'Bł. Władysława z Gielniowa, Wyznawcy', constants.SANCTI_09_26: 'Śś. Cypriana i Justyny, Męczenników', @@ -615,7 +651,9 @@ constants.SANCTI_10_05: 'Śś. Placyda i Towarzyszy, Męczenników', constants.SANCTI_10_06: 'Św. Brunona, Wyznawcy', constants.SANCTI_10_07: 'N. M. P. Różańcowej', + constants.SANCTI_10_07C: 'Św. Marka I, Papieża i Wyznawcy', constants.SANCTI_10_08: 'Św. Brygidy, Wdowy', + constants.SANCTI_10_08C: 'Śś. Sergiusza, Bachusa, Marcelego i Apulejusza', constants.SANCTI_10_09: 'Św. Jana Leonardi, Wyznawcy', constants.SANCTI_10_09PL: 'Bł. Wincentego Kadłubka, Biskupa i Wyznawcy', constants.SANCTI_10_10: 'Św. Franciszka Borgiasza, Wyznawcy', diff --git a/missalemeum/kalendar/models.py b/missalemeum/kalendar/models.py index 6c8279b6..9cd37f62 100644 --- a/missalemeum/kalendar/models.py +++ b/missalemeum/kalendar/models.py @@ -21,7 +21,7 @@ TEMPORA_PENT01_0A, FERIA) from propers.models import Proper, ProperConfig from propers.parser import ProperParser -from utils import get_custom_preface, match +from utils import get_custom_preface, match_first log = logging.getLogger(__name__) @@ -234,7 +234,7 @@ def _calculate_proper(self, observances: List[Observance]) -> List[Tuple['Proper else: # It's a feria day without its own proper for which the last Sunday's proper is used inferred_observances = self._infer_observance() - if observances and not match(observances, FERIA): + if observances and not match_first(observances, FERIA): rank: int = observances[0].rank preface: str = get_custom_preface(observances[0]) else: @@ -277,9 +277,9 @@ def _infer_observance(self) -> Observance: def _infer_inter_reading_section(self, observance): if observance.id in CUSTOM_INTER_READING_SECTIONS: return CUSTOM_INTER_READING_SECTIONS[observance.id] - elif match(self.tempora, PATTERN_EASTER): + elif match_first(self.tempora, PATTERN_EASTER): return GRADUALE_PASCHAL - elif match(self.tempora, [PATTERN_PRE_LENTEN, PATTERN_LENT]): + elif match_first(self.tempora, [PATTERN_PRE_LENTEN, PATTERN_LENT]): return TRACTUS return GRADUALE diff --git a/missalemeum/kalendar/rules.py b/missalemeum/kalendar/rules.py index fb775681..1fc34840 100644 --- a/missalemeum/kalendar/rules.py +++ b/missalemeum/kalendar/rules.py @@ -34,47 +34,55 @@ TEMPORA_QUAD6_6, TEMPORA_QUADP3_3, SANCTI_09_29, PATTERN_SANCTI_CLASS_4, PATTERN_LENT, PATTERN_SANCTI, SUNDAY, PATTERN_TEMPORA_CLASS_4, SANCTI_04_23PL, PATTERN_SANCTI_CLASS_3_LOCAL, - PATTERN_SANCTI_CLASS_3, TYPE_SANCTI) + PATTERN_SANCTI_CLASS_3, TYPE_SANCTI, TEMPORA_QUAD5_5, TEMPORA_QUAD5_5C) from kalendar.models import Calendar, Observance -from utils import match +from utils import match_first, match_all def rule_nativity_vigil( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): # Nativity Vigil takes place of 4th Advent Sunday. - if match(observances, SANCTI_12_24) and date_.weekday() == 6: - return [match(observances, SANCTI_12_24)], [], [] + if match_first(observances, SANCTI_12_24) and date_.weekday() == 6: + return [match_first(observances, SANCTI_12_24)], [], [] def rule_nativity_has_multiple_masses( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): # Nativity Vigil takes place of 4th Advent Sunday. - if match(observances, SANCTI_12_25_1): + if match_first(observances, SANCTI_12_25_1): return [ld for ld in observances if ld.id.startswith('sancti:12-25m')], [], [] def rule_all_souls( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): # All Souls Day; if not Sunday - Nov 2, else Nov 3; additionally it has three masses - if match(observances, SANCTI_11_02_1): + if match_first(observances, SANCTI_11_02_1): all_souls = [ld for ld in observances if ld.id.startswith('sancti:11-02m')] if date_.weekday() == 6: - return [match(observances, PATTERN_TEMPORA_SUNDAY)], [], [[date(date_.year, 11, 3), all_souls]] + return [match_first(observances, PATTERN_TEMPORA_SUNDAY)], [], [[date(date_.year, 11, 3), all_souls]] return all_souls, [], [] def rule_st_matthias( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): # St. Matthias the Apostle, normally on Feb 24, but in leap year on Feb 25 - if match(observances, SANCTI_02_24) and isleap(date_.year) and date_.day == 24: - return [match(observances, PATTERN_TEMPORA)], [], [[date(date_.year, 2, 25), [match(observances, SANCTI_02_24)]]] + if match_first(observances, SANCTI_02_24) and isleap(date_.year) and date_.day == 24: + return [match_first(observances, PATTERN_TEMPORA)], [], [[date(date_.year, 2, 25), [match_first(observances, SANCTI_02_24)]]] def rule_feb27( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): # Feb 27, normally on Feb 27 but in leap year on Feb 28 - if match(observances, SANCTI_02_27) and isleap(date_.year) and date_.day == 27: - return [match(observances, PATTERN_TEMPORA)], [], [[date(date_.year, 2, 28), [match(observances, SANCTI_02_27)]]] + if match_first(observances, SANCTI_02_27) and isleap(date_.year) and date_.day == 27: + return [match_first(observances, PATTERN_TEMPORA)], [], [[date(date_.year, 2, 28), [match_first(observances, SANCTI_02_27)]]] + + +def rule_seven_sorrows_on_friday_after_passion_sunday( + calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): + friday_after_passion = match_first(observances, TEMPORA_QUAD5_5) + seven_sorrows = match_first(observances, TEMPORA_QUAD5_5C) + if friday_after_passion and seven_sorrows: + return [friday_after_passion], [seven_sorrows], [] def rule_bmv_office_on_saturday( @@ -82,7 +90,7 @@ def rule_bmv_office_on_saturday( # On feria Saturdays (4th class) the celebration is B. M. V. Saturdays on given period def _calc_proper_for_given_period(): - if match(tempora, PATTERN_ADVENT): + if match_first(tempora, PATTERN_ADVENT): return TEMPORA_C_10A # B. M. V. Saturdays in Advent if date_ >= date(date_.year, 12, 25) or date_ < date(date_.year, 2, 2): @@ -92,7 +100,7 @@ def _calc_proper_for_given_period(): if date(date_.year, 2, 2) <= date_ < wednesday_in_holy_week: return TEMPORA_C_10C # B. M. V. Saturdays between Feb 2 and Wednesday in Holy Week - if match(tempora, PATTERN_EASTER): + if match_first(tempora, PATTERN_EASTER): return TEMPORA_C_10PASC # B. M. V. Saturdays in Easter period return TEMPORA_C_10T # B. M. V. Saturdays between Trinity Sunday and Saturday before 1st Sunday of Advent @@ -106,9 +114,9 @@ def _calc_proper_for_given_period(): def rule_same_class_feasts_take_over_advent_feria_and_ember_days( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): - adv_or_ember = date_.weekday() != SUNDAY and match(observances, EMBER_DAYS + (PATTERN_ADVENT, )) + adv_or_ember = date_.weekday() != SUNDAY and match_first(observances, EMBER_DAYS + (PATTERN_ADVENT,)) if adv_or_ember: - sancti = match(observances, [PATTERN_SANCTI]) + sancti = match_first(observances, [PATTERN_SANCTI]) if not sancti: return [adv_or_ember], [], [] if adv_or_ember.rank == sancti.rank: @@ -119,16 +127,16 @@ def rule_same_class_feasts_take_over_advent_feria_and_ember_days( def rule_lent_commemoration( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): - lent_observance = match(observances, PATTERN_LENT) + lent_observance = match_first(observances, PATTERN_LENT) if lent_observance: - sancti = match(observances, [PATTERN_SANCTI]) + sancti = match_first(observances, [PATTERN_SANCTI]) if not sancti: return [lent_observance], [], [] if lent_observance.rank == sancti.rank: if sancti.rank == 1: # will be shifted to a different day by the other rule return - return [lent_observance, sancti], [lent_observance, sancti], [] + return [lent_observance, sancti], [sancti, lent_observance], [] if lent_observance.rank > sancti.rank: return [sancti], [lent_observance], [] @@ -141,7 +149,7 @@ def rule_shift_conflicting_1st_class_feasts( # The feast of the Immaculate Conception of the Blessed Virgin Mary, however, # is preferred to the Sunday of Advent on which it may occur. (General Rubrics, 15) if date_ == date(date_.year, 12, 8) and date_.weekday() == SUNDAY: - return [match(observances, PATTERN_SANCTI)], [match(observances, PATTERN_TEMPORA)], [] + return [match_first(observances, PATTERN_SANCTI)], [match_first(observances, PATTERN_TEMPORA)], [] def _calc_target_date(): target_date = copy(date_) @@ -163,14 +171,14 @@ def rule_lord_feast1( # A 1st class feast of the Lord occurring on a Sunday or Feria # takes the place of that day with all rights and privileges; # hence there is no commemoration of the day. - if match(observances, SANCTI_01_13) and match(observances, TEMPORA_EPI1_0): - return [match(observances, TEMPORA_EPI1_0)], [], [] + if match_first(observances, SANCTI_01_13) and match_first(observances, TEMPORA_EPI1_0): + return [match_first(observances, TEMPORA_EPI1_0)], [], [] def rule_lord_feast2( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): - if match(observances, FEASTS_OF_JESUS_CLASS_1_AND_2) and match(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2): - return [match(observances, PATTERN_SANCTI_CLASS_1_OR_2)], [], [] + if match_first(observances, FEASTS_OF_JESUS_CLASS_1_AND_2) and match_first(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2): + return [match_first(observances, PATTERN_SANCTI_CLASS_1_OR_2)], [], [] def rule_first_class_feast_with_sunday_commemoration( @@ -178,62 +186,62 @@ def rule_first_class_feast_with_sunday_commemoration( # In case of some 1st class feasts the Sunday is commemorated, e.g. St. Michael the Archangel on Sunday 2019-09-29 # TODO: investigate if this should be a more general rule. Perhaps only Lord's feasts of 1/2 class cancel # TODO: commemorations of Sundays - if match(observances, [SANCTI_09_29, SANCTI_04_23PL]) and match(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2): - return [match(observances, PATTERN_CLASS_1)], [match(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2)], [] + if match_first(observances, [SANCTI_09_29, SANCTI_04_23PL]) and match_first(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2): + return [match_first(observances, PATTERN_CLASS_1)], [match_first(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2)], [] def rule_first_class_feast_no_commemoration( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): - if match(observances, PATTERN_CLASS_1): - return [match(sorted(observances, key=lambda x: x.priority), PATTERN_CLASS_1)], [], [] + if match_first(observances, PATTERN_CLASS_1): + return [match_first(sorted(observances, key=lambda x: x.priority), PATTERN_CLASS_1)], [], [] def rule_2nd_class_sunday( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): # When 2nd class Sunday occurs along with 2nd class feast, the Sunday takes precedence and the feast is commemorated # lower commemorations are skipped - if match(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2) and date_.weekday() == SUNDAY: - if match(observances, PATTERN_SANCTI_CLASS_2): - return [match(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2)], [match(observances, PATTERN_SANCTI_CLASS_2)], [] + if match_first(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2) and date_.weekday() == SUNDAY: + if match_first(observances, PATTERN_SANCTI_CLASS_2): + return [match_first(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2)], [match_first(observances, PATTERN_SANCTI_CLASS_2)], [] else: - return [match(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2)], [], [] + return [match_first(observances, PATTERN_TEMPORA_SUNDAY_CLASS_2)], [], [] def rule_1st_class_feria( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): # Ash wednesday and holy week always wins - if match(observances, [TEMPORA_QUAD6_1, - TEMPORA_QUAD6_2, - TEMPORA_QUAD6_3, - TEMPORA_QUAD6_4, - TEMPORA_QUAD6_5, - TEMPORA_QUAD6_6, - TEMPORA_PASC0_0, - TEMPORA_QUADP3_3]): - return [match(observances, PATTERN_TEMPORA)], [], [] + if match_first(observances, [TEMPORA_QUAD6_1, + TEMPORA_QUAD6_2, + TEMPORA_QUAD6_3, + TEMPORA_QUAD6_4, + TEMPORA_QUAD6_5, + TEMPORA_QUAD6_6, + TEMPORA_PASC0_0, + TEMPORA_QUADP3_3]): + return [match_first(observances, PATTERN_TEMPORA)], [], [] def rule_3rd_class_local_saint_celebrated_3rd_class_general_saint_commemorated( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): - third_class_local_sancti = [i for i in observances if match(i.id, PATTERN_SANCTI_CLASS_3_LOCAL)] + third_class_local_sancti = [i for i in observances if match_first(i.id, PATTERN_SANCTI_CLASS_3_LOCAL)] if third_class_local_sancti: - third_class_sancti = [i for i in observances if match(i.id, PATTERN_SANCTI_CLASS_3) and not match(i.id, PATTERN_SANCTI_CLASS_3_LOCAL)] + third_class_sancti = [i for i in observances if match_first(i.id, PATTERN_SANCTI_CLASS_3) and not match_first(i.id, PATTERN_SANCTI_CLASS_3_LOCAL)] if third_class_sancti: return third_class_local_sancti, third_class_sancti, [] def rule_4th_class_feria_are_removed_from_celebration( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): - fourth_class_tempora = match(observances, PATTERN_TEMPORA_CLASS_4) + fourth_class_tempora = match_first(observances, PATTERN_TEMPORA_CLASS_4) if fourth_class_tempora: - commemoration = match(observances, PATTERN_SANCTI_CLASS_4) + commemoration = match_all(observances, PATTERN_SANCTI_CLASS_4) if commemoration: - return [o for o in observances if o != fourth_class_tempora], [commemoration], [] + return [o for o in observances if o != fourth_class_tempora], commemoration, [] return [o for o in observances if o != fourth_class_tempora], [], [] def rule_4th_class_commemorations_are_only_commemorated( calendar: Calendar, date_: date, tempora: List[Observance], observances: List[Observance], lang: str): - fourth_class_sancti = match(observances, PATTERN_SANCTI_CLASS_4) + fourth_class_sancti = match_first(observances, PATTERN_SANCTI_CLASS_4) if fourth_class_sancti: observances.pop(observances.index(fourth_class_sancti)) return [o for o in observances if o != fourth_class_sancti], [fourth_class_sancti], [] @@ -248,7 +256,7 @@ def rule_general( return observances, [], [] else: first, second = sorted(observances, key=lambda x: (x.priority, x.rank, x.flexibility))[:2] - if match(first, PATTERN_TEMPORA_SUNDAY) or (len(tempora) > 0 and second.id == tempora[0].id): + if match_first(first, PATTERN_TEMPORA_SUNDAY) or (len(tempora) > 0 and second.id == tempora[0].id): return [first], [], [] return [first], [second], [] @@ -259,6 +267,7 @@ def rule_general( rule_all_souls, rule_st_matthias, rule_feb27, + rule_seven_sorrows_on_friday_after_passion_sunday, rule_same_class_feasts_take_over_advent_feria_and_ember_days, rule_lent_commemoration, rule_shift_conflicting_1st_class_feasts, diff --git a/missalemeum/propers/models.py b/missalemeum/propers/models.py index eef59fe0..92c689c4 100644 --- a/missalemeum/propers/models.py +++ b/missalemeum/propers/models.py @@ -75,9 +75,18 @@ def merge(self, proper: 'ParsedSource') -> None: @dataclasses.dataclass class Rules: - vide = None - preface = None - preface_mod = None + # global reference to other source file + vide: str = None + # name of the preface + preface: str = None + # optional substitute string for the preface that will be put instead of + # the string between two asterisks in the preface body. + # For example prefaces about B.V.M. have variable part depending on the feast. + preface_mod: str = None + # if present, no data will be taken from the source; + # used for compatibility in case of commemorations that are already included in + # main observance's source + ignore: bool = False class Proper(ParsedSource): """ @@ -140,35 +149,40 @@ def _get_rules(self) -> Rules: rules_src.extend([i.strip() for i in line.split(';')]) if rules_src: - preface = [i.strip(';') for i in rules_src if i.startswith('Prefatio=')] - if preface: + if preface := [i.strip(';') for i in rules_src if i.startswith('Prefatio=')]: _, name, *mod = preface[-1].split('=') rules.preface = name if mod: rules.preface_mod = mod[0] - vide = [i for i in rules_src if i.startswith('vide ') or i.startswith('ex ')] - if vide: + if vide := [i for i in rules_src if i.startswith('vide ') or i.startswith('ex ')]: rules.vide = vide[0].split(' ')[-1].split(';')[0] + if [i for i in rules_src if i.startswith('ignore')]: + rules.ignore = True return rules def add_commemorations(self, commemorations: List['Proper']): - for commemoration in commemorations: + for i, commemoration in enumerate(commemorations): + if commemoration.rules.ignore: + continue self.description += f"\n{self.commemorations_names_translations[COMMEMORATION]} {commemoration.title}." if commemoration.description: self.description += f"\n\n{commemoration.description}" - for commemorated_section_name, source_section_name in ( - (COMMEMORATED_ORATIO, ORATIO), - (COMMEMORATED_SECRETA, SECRETA), - (COMMEMORATED_POSTCOMMUNIO, POSTCOMMUNIO) + for source_section_name, target_section_name, in ( + (ORATIO, COMMEMORATED_ORATIO), + (SECRETA, COMMEMORATED_SECRETA), + (POSTCOMMUNIO, COMMEMORATED_POSTCOMMUNIO) ): - commemorated_section = commemoration.get_section(source_section_name) - commemorated_section.body.insert(0, f"*{self.commemorations_names_translations[COMMEMORATION]} " - f"{commemoration.title}*") - commemorated_section.id = commemorated_section_name - commemorated_section.label = self.commemorations_names_translations[commemorated_section_name] - self.set_section(commemorated_section_name, commemorated_section) + target_section = self.get_section(target_section_name) or Section( + id_=target_section_name, + label=self.commemorations_names_translations[target_section_name] + ) + source_section = commemoration.get_section(source_section_name) + source_section.body.insert(0, f"*{self.commemorations_names_translations[COMMEMORATION]} " + f"{commemoration.title}*") + target_section.extend_body(source_section.body) + self.set_section(target_section_name, target_section) def __repr__(self): return f'Proper<{self.id}>' diff --git a/missalemeum/propers/parser.py b/missalemeum/propers/parser.py index d7a81682..7b87a733 100644 --- a/missalemeum/propers/parser.py +++ b/missalemeum/propers/parser.py @@ -40,7 +40,7 @@ def __init__(self, proper_id: str, lang: str, config: ProperConfig = None): self.translations[LANGUAGE_LATIN] = TRANSLATION[LANGUAGE_LATIN] def proper_exists(self) -> bool: - return not utils.match(self.proper_id, OBSERVANCES_WITHOUT_OWN_PROPER) \ + return not utils.match_first(self.proper_id, OBSERVANCES_WITHOUT_OWN_PROPER) \ and self._get_full_path(self._get_partial_path(), self.lang) is not None def parse(self) -> Tuple[Proper, Proper]: diff --git a/missalemeum/utils.py b/missalemeum/utils.py index 8efd9d11..0768eb98 100644 --- a/missalemeum/utils.py +++ b/missalemeum/utils.py @@ -14,8 +14,9 @@ log = logging.getLogger(__name__) -def match(observances: Union[str, 'Observance', List[Union[str, 'Observance']]], # noqa: F821 - patterns: Union[List[str], str, List[Pattern], Pattern]): +def match_all(observances: Union[str, 'Observance', List[Union[str, 'Observance']]], # noqa: F821 + patterns: Union[List[str], str, List[Pattern], Pattern]): + matches = [] if not isinstance(observances, (list, tuple)): observances = [observances] if not isinstance(patterns, (list, tuple)): @@ -24,7 +25,14 @@ def match(observances: Union[str, 'Observance', List[Union[str, 'Observance']]], observance_id = observance if isinstance(observance, str) else observance.id for pattern in patterns: if re.match(pattern, observance_id): - return observance + matches.append(observance) + return matches + + +def match_first(observances: Union[str, 'Observance', List[Union[str, 'Observance']]], # noqa: F821 + patterns: Union[List[str], str, List[Pattern], Pattern]): + if matches := match_all(observances, patterns): + return matches[0] def get_custom_preface(celebration: 'Observance', tempora: 'Observance' = None) -> Union[str, None]: # noqa: F821 @@ -83,7 +91,7 @@ def get_pregenerated_proper(lang, proper_id, tempora_id=None): if proper_id == SANCTI_02_02 and tempora_id is not None: # Candlemass is the only pre-generated proper for which the gradual/tract differs # depending on liturgical period, hence this hack - section_to_del = GRADUALE if match(tempora_id, [PATTERN_PRE_LENTEN, PATTERN_LENT]) else TRACTUS + section_to_del = GRADUALE if match_first(tempora_id, [PATTERN_PRE_LENTEN, PATTERN_LENT]) else TRACTUS idx_to_del = [i for i, j in enumerate(proper[0]['sections']) if j['id'] == section_to_del][0] del proper[0]['sections'][idx_to_del] return proper diff --git a/resources/divinum-officium b/resources/divinum-officium index 63214fe9..5ca4fc42 160000 --- a/resources/divinum-officium +++ b/resources/divinum-officium @@ -1 +1 @@ -Subproject commit 63214fe98673087b8ff78b188a25517fdc9f7849 +Subproject commit 5ca4fc426f9451e7b500cde03f19270060e7d051 diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-05.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-05.txt new file mode 100644 index 00000000..0ba7d51c --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-05.txt @@ -0,0 +1,2 @@ +[Rule] +vide C4b \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-11.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-11.txt new file mode 100644 index 00000000..0ba7d51c --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-11.txt @@ -0,0 +1,2 @@ +[Rule] +vide C4b \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-14c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-14c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-14c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-15c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-15c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-15c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-19c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-19c.txt new file mode 100644 index 00000000..00f35bd5 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-19c.txt @@ -0,0 +1,8 @@ +[Oratio] +@Sancti/01-19:Commemoratio Oratio + +[Secreta] +@Sancti/01-19:Commemoratio Secreta + +[Postcommunio] +@Sancti/01-19:Commemoratio Postcommunio \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-23c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-23c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-23c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-25c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-25c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-25c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-28c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-28c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/01-28c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/02-06c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/02-06c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/02-06c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/02-09c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/02-09c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/02-09c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/02-22c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/02-22c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/02-22c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/04-25c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/04-25c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/04-25c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/05-10c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/05-10c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/05-10c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/05-27c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/05-27c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/05-27c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/05-31c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/05-31c.txt new file mode 100644 index 00000000..d596135e --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/05-31c.txt @@ -0,0 +1,2 @@ +[Rule] +vide C6b \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/06-12c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/06-12c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/06-12c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/06-18c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/06-18c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/06-18c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/06-19c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/06-19c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/06-19c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-12c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-12c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-12c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-23c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-23c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-23c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-25c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-25c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-25c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-29c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-29c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/07-29c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-02c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-02c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-02c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-06c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-06c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-06c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-07c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-07c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-07c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-08c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-08c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-08c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-09c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-09c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-09c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-14c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-14c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-14c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-22c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-22c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-22c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-28c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-28c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-28c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-29c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-29c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-29c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-30c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-30c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/08-30c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/09-16c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/09-16c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/09-16c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/09-23c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/09-23c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/09-23c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/10-07c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/10-07c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/10-07c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Sancti/10-08c.txt b/resources/divinum-officium-custom/web/www/missa/English/Sancti/10-08c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Sancti/10-08c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/English/Tempora/Quad5-5Feriac.txt b/resources/divinum-officium-custom/web/www/missa/English/Tempora/Quad5-5Feriac.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/English/Tempora/Quad5-5Feriac.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-05.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-05.txt new file mode 100644 index 00000000..0ba7d51c --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-05.txt @@ -0,0 +1,2 @@ +[Rule] +vide C4b \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-11.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-11.txt new file mode 100644 index 00000000..0ba7d51c --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-11.txt @@ -0,0 +1,2 @@ +[Rule] +vide C4b \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-14c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-14c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-14c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-15c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-15c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-15c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-19c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-19c.txt new file mode 100644 index 00000000..00f35bd5 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-19c.txt @@ -0,0 +1,8 @@ +[Oratio] +@Sancti/01-19:Commemoratio Oratio + +[Secreta] +@Sancti/01-19:Commemoratio Secreta + +[Postcommunio] +@Sancti/01-19:Commemoratio Postcommunio \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-23c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-23c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-23c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-25c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-25c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-25c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-28c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-28c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/01-28c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/02-06c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/02-06c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/02-06c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/02-09c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/02-09c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/02-09c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/02-22c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/02-22c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/02-22c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/04-25c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/04-25c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/04-25c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/05-10c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/05-10c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/05-10c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/05-27c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/05-27c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/05-27c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/05-31c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/05-31c.txt new file mode 100644 index 00000000..d596135e --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/05-31c.txt @@ -0,0 +1,2 @@ +[Rule] +vide C6b \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/06-12c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/06-12c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/06-12c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/06-18c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/06-18c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/06-18c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/06-19c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/06-19c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/06-19c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-12c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-12c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-12c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-23c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-23c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-23c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-25c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-25c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-25c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-29c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-29c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/07-29c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-02c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-02c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-02c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-06c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-06c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-06c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-07c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-07c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-07c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-08c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-08c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-08c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-09c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-09c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-09c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-14c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-14c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-14c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-22c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-22c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-22c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-28c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-28c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-28c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-29c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-29c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-29c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-30c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-30c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/08-30c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/09-16c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/09-16c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/09-16c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/09-23c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/09-23c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/09-23c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/10-07c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/10-07c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/10-07c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/10-08c.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/10-08c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Sancti/10-08c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Latin/Tempora/Quad5-5Feriac.txt b/resources/divinum-officium-custom/web/www/missa/Latin/Tempora/Quad5-5Feriac.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Latin/Tempora/Quad5-5Feriac.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-05.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-05.txt new file mode 100644 index 00000000..4543d881 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-05.txt @@ -0,0 +1,10 @@ +[Rule] +vide C4b + +[Comment] +# 05 I – Św. Telesfora, Papieża i Męczennika +! Wspomnienie +! Szaty czerwone +Św. Telesfor, Grek z pochodzenia, rządził Kościołem około roku 130. + +Msza wspólna nr 8 Si diligis. \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-11.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-11.txt new file mode 100644 index 00000000..b2431135 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-11.txt @@ -0,0 +1,11 @@ +[Rule] +vide C4b + +[Comment] +# 11 I – Św. Hygina, Papieża i Męczennika +! Wspomnienie +! Szaty czerwone +Św. Hygin, następca św. Telesfora, w ciągu czteroletniego pontyfikatu (138-142)~ +zwalczał błędy gnostyckie, które zagrażały czystości wiary rzymskiej. + +Msza wspólna nr 8 Si diligis. diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-14c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-14c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-14c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-15c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-15c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-15c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-19c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-19c.txt new file mode 100644 index 00000000..00f35bd5 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-19c.txt @@ -0,0 +1,8 @@ +[Oratio] +@Sancti/01-19:Commemoratio Oratio + +[Secreta] +@Sancti/01-19:Commemoratio Secreta + +[Postcommunio] +@Sancti/01-19:Commemoratio Postcommunio \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-23c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-23c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-23c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-25c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-25c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-25c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-28c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-28c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/01-28c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/02-06c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/02-06c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/02-06c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/02-09c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/02-09c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/02-09c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/02-22c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/02-22c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/02-22c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/04-25c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/04-25c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/04-25c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/05-10c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/05-10c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/05-10c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/05-27c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/05-27c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/05-27c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/05-31c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/05-31c.txt new file mode 100644 index 00000000..e6647cd1 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/05-31c.txt @@ -0,0 +1,12 @@ +[Rule] +vide C6b + +[Comment] +# Św. Petroneli, Dziewicy +! Szaty białe +! Wspomnienie + +Św. Petronela była Dziewicą i Męczennicą pierwszych wieków Kościoła. Pochowano ją w katakumbach Domicylli. ~ +Jej cześć rozszerzyła się zwłaszcza we Francji za sprawą Karolingów. + +Msza wspólna nr 27 Vultum tuum. diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/06-12c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/06-12c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/06-12c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/06-18c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/06-18c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/06-18c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/06-19c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/06-19c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/06-19c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-12c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-12c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-12c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-23c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-23c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-23c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-25c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-25c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-25c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-29c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-29c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/07-29c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-02c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-02c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-02c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-06c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-06c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-06c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-07c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-07c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-07c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-08c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-08c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-08c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-09c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-09c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-09c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-14c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-14c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-14c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-22c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-22c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-22c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-28c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-28c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-28c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-29c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-29c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-29c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-30c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-30c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/08-30c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/09-16c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/09-16c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/09-16c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/09-23c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/09-23c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/09-23c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/10-07c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/10-07c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/10-07c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/10-08c.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/10-08c.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Sancti/10-08c.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/divinum-officium-custom/web/www/missa/Polski/Tempora/Quad5-5Feriac.txt b/resources/divinum-officium-custom/web/www/missa/Polski/Tempora/Quad5-5Feriac.txt new file mode 100644 index 00000000..5a2579f8 --- /dev/null +++ b/resources/divinum-officium-custom/web/www/missa/Polski/Tempora/Quad5-5Feriac.txt @@ -0,0 +1,2 @@ +[Rule] +ignore \ No newline at end of file diff --git a/resources/propers/pl/tempora__Quad6-5r__1__bv.yaml b/resources/propers/pl/tempora__Quad6-5r__1__bv.yaml index 32e6b491..1b581577 100644 --- a/resources/propers/pl/tempora__Quad6-5r__1__bv.yaml +++ b/resources/propers/pl/tempora__Quad6-5r__1__bv.yaml @@ -3229,7 +3229,7 @@ temporali fiat nobis remedium sempiternum. - - >- Nie mówi się Corpus Tuum, Domine, Pokomunii ani Placeat Tibi. Nie - udziela się także błogosławieńtwa. Zgodnie ze zwyczajem polskim, po + udziela się także błogosławieństwa. Zgodnie ze zwyczajem polskim, po okadzeniu Najświętszego Sakramentu w Monstrancji, przenosi się Go w procesji to Grobu Pańskiego. Podczas procesji śpiewa się pieśń ODSZEDŁ PASTERZ NASZ, związaną z odpustem zupełnym. diff --git a/resources/supplement/pl/canticum/attende-domine.yaml b/resources/supplement/pl/canticum/attende-domine.yaml index bad5961a..ea05c19f 100644 --- a/resources/supplement/pl/canticum/attende-domine.yaml +++ b/resources/supplement/pl/canticum/attende-domine.yaml @@ -8,7 +8,7 @@ sections: - body: - - | - ATTENDE DOMINE, et miserere, quia peccauimus tibi. + ATTENDE DOMINE, et miserere, quia peccavimus tibi. 1\. Ad te Rex summe, omnium Redemptor, \* Oculos nostros sublevamus flentes; \* Exaudi, Christe, supplicantum preces. Attende... diff --git a/resources/supplement/pl/canticum/krzyzu-chrystusa.yaml b/resources/supplement/pl/canticum/krzyzu-chrystusa.yaml index f80a37b0..0917ae7d 100644 --- a/resources/supplement/pl/canticum/krzyzu-chrystusa.yaml +++ b/resources/supplement/pl/canticum/krzyzu-chrystusa.yaml @@ -7,10 +7,10 @@ sections: - body: - - | - KRZYŻU CHRYSTUSA, bądźże pochwalony, \* Na wieczne czasy bądiże pozdrowiony: \* Gdzie Bóg, Król Świata całego \* Dokonał życia swojego. + KRZYŻU CHRYSTUSA, bądźże pochwalony, \* Na wieczne czasy bądźże pozdrowiony: \* Gdzie Bóg, Król Świata całego \* Dokonał życia swojego. - 2\. Krzyżu Chrystusa, bądźże pochwalony, \* Na wieczne czasy bądżże pozdrowiony: \* Ta sama Krew cię skropiła, \* Która nas z grzechów obmyła. + 2\. Krzyżu Chrystusa, bądźże pochwalony, \* Na wieczne czasy bądźże pozdrowiony: \* Ta sama Krew cię skropiła, \* Która nas z grzechów obmyła. - 3\. Krzyżu Chrystusa, bądżże pochwalony, \* Na wieczne czasy bądżże pozdrowiony: \* Z ciebie moc płynie i męstwo, \* W tobie jest nasze zwycięstwo. + 3\. Krzyżu Chrystusa, bądźże pochwalony, \* Na wieczne czasy bądźże pozdrowiony: \* Z ciebie moc płynie i męstwo, \* W tobie jest nasze zwycięstwo. id: '' label: '' diff --git a/tests/fixtures/propers_en.json b/tests/fixtures/propers_en.json new file mode 100644 index 00000000..230cef73 --- /dev/null +++ b/tests/fixtures/propers_en.json @@ -0,0 +1,34476 @@ +{ + "2024-01-01": [ + { + "body": "*Isa 9:6*\nA Child is born to us, a Son is given to us; upon His shoulder dominion rests; and His name shall be called th", + "id": "Introitus" + }, + { + "body": "O God, You Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the rewards of eternal salvation, g", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", + "id": "Lectio" + }, + { + "body": "*Ps 97: 3, 4, 2*\nAll the ends of the earth have seen the salvation by our God. Sing joyfully to God, all you lands.\n℣. T", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12, 15*\nYours are the heavens, and Yours is the earth; the world and its fullness You have founded. Justice and j", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, our offerings and prayers; cleanse us by this heavenly rite, and in Your mercy, hear us.", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nAll the ends of the earth have seen the salvation by our God.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from guilt and, by the intercession of the Blessed Virgin Mary, Mother of God, im", + "id": "Postcommunio" + } + ], + "2024-01-02": [ + { + "body": "*Phil 2:10-11*\nAt the Name of Jesus every knee should bend of those in heaven, on earth, and under the earth, and every ", + "id": "Introitus" + }, + { + "body": "O God, You Who appointed Your only-begotten Son to be the Saviour of the human race, and commanded that He be called Jes", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 4:8-12*\nIn those days, Peter, filled with the Holy Spirit, said, Rulers of the pe", + "id": "Lectio" + }, + { + "body": "*Ps 105:47*\nSave us, O Lord, our God, and gather us from among the nations, that we may give thanks to Your holy Name an", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", + "id": "Evangelium" + }, + { + "body": "*Ps 85:12, 5*\nI will give thanks to You, O Lord my God, with all my heart, and I will glorify Your Name forever. For You", + "id": "Offertorium" + }, + { + "body": "May Your blessing, O most merciful God, which makes all creation flourish, sanctify this our sacrifice, which we offer Y", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 85:9-10*\nAll the nations You have made shall come and worship You, O Lord, and glorify Your Name. For You are great,", + "id": "Communio" + }, + { + "body": "Almighty, eternal God, You Who have created and redeemed us, graciously look upon our needs, and deign to receive with k", + "id": "Postcommunio" + } + ], + "2024-01-03": [ + { + "body": "*Isa 9:6*\nA Child is born to us, a Son is given to us; upon His shoulder dominion rests; and His name shall be called th", + "id": "Introitus" + }, + { + "body": "O God, You Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the rewards of eternal salvation, g", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", + "id": "Lectio" + }, + { + "body": "*Ps 97: 3, 4, 2*\nAll the ends of the earth have seen the salvation by our God. Sing joyfully to God, all you lands.\n℣. T", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12, 15*\nYours are the heavens, and Yours is the earth; the world and its fullness You have founded. Justice and j", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, our offerings and prayers; cleanse us by this heavenly rite, and in Your mercy, hear us.", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nAll the ends of the earth have seen the salvation by our God.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from guilt and, by the intercession of the Blessed Virgin Mary, Mother of God, im", + "id": "Postcommunio" + } + ], + "2024-01-04": [ + { + "body": "*Isa 9:6*\nA Child is born to us, a Son is given to us; upon His shoulder dominion rests; and His name shall be called th", + "id": "Introitus" + }, + { + "body": "O God, You Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the rewards of eternal salvation, g", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", + "id": "Lectio" + }, + { + "body": "*Ps 97: 3, 4, 2*\nAll the ends of the earth have seen the salvation by our God. Sing joyfully to God, all you lands.\n℣. T", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12, 15*\nYours are the heavens, and Yours is the earth; the world and its fullness You have founded. Justice and j", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, our offerings and prayers; cleanse us by this heavenly rite, and in Your mercy, hear us.", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nAll the ends of the earth have seen the salvation by our God.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from guilt and, by the intercession of the Blessed Virgin Mary, Mother of God, im", + "id": "Postcommunio" + } + ], + "2024-01-05": [ + { + "body": "*Isa 9:6*\nA Child is born to us, a Son is given to us; upon His shoulder dominion rests; and His name shall be called th", + "id": "Introitus" + }, + { + "body": "O God, You Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the rewards of eternal salvation, g", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Telesphorus Pope and Martyr*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy cons", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", + "id": "Lectio" + }, + { + "body": "*Ps 97: 3, 4, 2*\nAll the ends of the earth have seen the salvation by our God. Sing joyfully to God, all you lands.\n℣. T", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12, 15*\nYours are the heavens, and Yours is the earth; the world and its fullness You have founded. Justice and j", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, our offerings and prayers; cleanse us by this heavenly rite, and in Your mercy, hear us.", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Telesphorus Pope and Martyr*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten", + "id": "Commemoratio Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nAll the ends of the earth have seen the salvation by our God.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from guilt and, by the intercession of the Blessed Virgin Mary, Mother of God, im", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Telesphorus Pope and Martyr*\nBeing appeased, O Lord, guide thy Church, which has been nourished by ho", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-06": [ + { + "body": "*Mal 3:1; 1 Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, You Who by the guidance of a star this day revealed Your only-begotten Son to the Gentiles; mercifully grant that", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", + "id": "Lectio" + }, + { + "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:1-12*\nWhen Jesus was born in Bethlehem of Judea, in the d", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", + "id": "Offertorium" + }, + { + "body": "O Lord, look favorably upon the gifts of Your Church, which are no longer gifts of gold, frankincense and myrrh, but, as", + "id": "Secreta" + }, + { + "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that, by the understanding of our minds made pure, we may grasp what we celebrate b", + "id": "Postcommunio" + } + ], + "2024-01-07": [ + { + "body": "*Prov 23:24-25*\nThe father of the Just will exult with glee; let Your father and mother have joy; let her who bore You e", + "id": "Introitus" + }, + { + "body": "O Lord Jesus Christ, You Who while subject to Mary and Joseph, hallowed family life with virtues beyond description, gra", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 3:12-17*\nBrethren: Put on, as God’s chosen ones, h", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nOne thing I ask of the Lord; this I seek: to dwell in the house of the Lord all the days of my life.\n*Ps 83:5*", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Luke\n*Luke 2:42-52*\nWhen Jesus was twelve years old, they went up to Je", + "id": "Evangelium" + }, + { + "body": "*Luke 2:22*\nThe parents of Jesus took Him up to Jerusalem, to present Him to the Lord.", + "id": "Offertorium" + }, + { + "body": "In appeasement, O Lord, we offer You this sacrifice, humbly praying that through the intercession of the Virgin Mother o", + "id": "Secreta" + }, + { + "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", + "id": "Prefatio" + }, + { + "body": "*Luke 2:51*\nJesus went down with them, and came to Nazareth and was subject to them.", + "id": "Communio" + }, + { + "body": "Grant, Lord Jesus, that those whom You refresh with the heavenly sacrament may ever imitate the example of Your Holy Fam", + "id": "Postcommunio" + } + ], + "2024-01-08": [ + { + "body": "Upon a high throne I saw a man sitting, Whom a multitude of angels adore, singing in unison: Behold Him, the name of Who", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, in Your heavenly goodness, hear Your people who pray to You; that they may perceive what they ou", + "id": "Oratio" + }, + { + "body": "From the Epistle of St. Paul to the Romans\n*Rom 12:1-5*\nBrethren: I exhort you, by the mercy of God, to present your bod", + "id": "Lectio" + }, + { + "body": "*Ps 71:18, 3*\nBlessed be the Lord, the God of Israel, Who alone does wondrous deeds.\n℣. The mountains shall yield peace ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 2:42-52*\nWhen Jesus was twelve years old, they went up to Jerusa", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1-2*\nSing joyfully to God, all you lands; serve the Lord with gladness; come before Him with joyful song. Know th", + "id": "Offertorium" + }, + { + "body": "May this sacrifice that we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 2:48-49*\nSon, why have You done so to us? In sorrow Your father and I have been seeking You. How is it that you so", + "id": "Communio" + }, + { + "body": "O Almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", + "id": "Postcommunio" + } + ], + "2024-01-09": [ + { + "body": "Upon a high throne I saw a man sitting, Whom a multitude of angels adore, singing in unison: Behold Him, the name of Who", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, in Your heavenly goodness, hear Your people who pray to You; that they may perceive what they ou", + "id": "Oratio" + }, + { + "body": "From the Epistle of St. Paul to the Romans\n*Rom 12:1-5*\nBrethren: I exhort you, by the mercy of God, to present your bod", + "id": "Lectio" + }, + { + "body": "*Ps 71:18, 3*\nBlessed be the Lord, the God of Israel, Who alone does wondrous deeds.\n℣. The mountains shall yield peace ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 2:42-52*\nWhen Jesus was twelve years old, they went up to Jerusa", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1-2*\nSing joyfully to God, all you lands; serve the Lord with gladness; come before Him with joyful song. Know th", + "id": "Offertorium" + }, + { + "body": "May this sacrifice that we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 2:48-49*\nSon, why have You done so to us? In sorrow Your father and I have been seeking You. How is it that you so", + "id": "Communio" + }, + { + "body": "O Almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", + "id": "Postcommunio" + } + ], + "2024-01-10": [ + { + "body": "Upon a high throne I saw a man sitting, Whom a multitude of angels adore, singing in unison: Behold Him, the name of Who", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, in Your heavenly goodness, hear Your people who pray to You; that they may perceive what they ou", + "id": "Oratio" + }, + { + "body": "From the Epistle of St. Paul to the Romans\n*Rom 12:1-5*\nBrethren: I exhort you, by the mercy of God, to present your bod", + "id": "Lectio" + }, + { + "body": "*Ps 71:18, 3*\nBlessed be the Lord, the God of Israel, Who alone does wondrous deeds.\n℣. The mountains shall yield peace ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 2:42-52*\nWhen Jesus was twelve years old, they went up to Jerusa", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1-2*\nSing joyfully to God, all you lands; serve the Lord with gladness; come before Him with joyful song. Know th", + "id": "Offertorium" + }, + { + "body": "May this sacrifice that we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 2:48-49*\nSon, why have You done so to us? In sorrow Your father and I have been seeking You. How is it that you so", + "id": "Communio" + }, + { + "body": "O Almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", + "id": "Postcommunio" + } + ], + "2024-01-11": [ + { + "body": "Upon a high throne I saw a man sitting, Whom a multitude of angels adore, singing in unison: Behold Him, the name of Who", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, in Your heavenly goodness, hear Your people who pray to You; that they may perceive what they ou", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Hyginus Pope and Martyr*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant", + "id": "Commemoratio Oratio" + }, + { + "body": "From the Epistle of St. Paul to the Romans\n*Rom 12:1-5*\nBrethren: I exhort you, by the mercy of God, to present your bod", + "id": "Lectio" + }, + { + "body": "*Ps 71:18, 3*\nBlessed be the Lord, the God of Israel, Who alone does wondrous deeds.\n℣. The mountains shall yield peace ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 2:42-52*\nWhen Jesus was twelve years old, they went up to Jerusa", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1-2*\nSing joyfully to God, all you lands; serve the Lord with gladness; come before Him with joyful song. Know th", + "id": "Offertorium" + }, + { + "body": "May this sacrifice that we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Hyginus Pope and Martyr*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 2:48-49*\nSon, why have You done so to us? In sorrow Your father and I have been seeking You. How is it that you so", + "id": "Communio" + }, + { + "body": "O Almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Hyginus Pope and Martyr*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy r", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-12": [ + { + "body": "Upon a high throne I saw a man sitting, Whom a multitude of angels adore, singing in unison: Behold Him, the name of Who", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, in Your heavenly goodness, hear Your people who pray to You; that they may perceive what they ou", + "id": "Oratio" + }, + { + "body": "From the Epistle of St. Paul to the Romans\n*Rom 12:1-5*\nBrethren: I exhort you, by the mercy of God, to present your bod", + "id": "Lectio" + }, + { + "body": "*Ps 71:18, 3*\nBlessed be the Lord, the God of Israel, Who alone does wondrous deeds.\n℣. The mountains shall yield peace ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 2:42-52*\nWhen Jesus was twelve years old, they went up to Jerusa", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1-2*\nSing joyfully to God, all you lands; serve the Lord with gladness; come before Him with joyful song. Know th", + "id": "Offertorium" + }, + { + "body": "May this sacrifice that we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 2:48-49*\nSon, why have You done so to us? In sorrow Your father and I have been seeking You. How is it that you so", + "id": "Communio" + }, + { + "body": "O Almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", + "id": "Postcommunio" + } + ], + "2024-01-13": [ + { + "body": "*Mal 3:1:1; Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, Whose only-begotten Son appeared in the substance of our flesh, grant, we pray You, that we who acknowledge His o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", + "id": "Lectio" + }, + { + "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:29-34*\nAt that time, John saw Jesus coming to him, and he sa", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", + "id": "Offertorium" + }, + { + "body": "We bring You offerings, O Lord, for the epiphany of Your Son, Who has been born, humbly beseeching You that, as He is th", + "id": "Secreta" + }, + { + "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", + "id": "Communio" + }, + { + "body": "We pray You, O Lord, to go before us at all times and in all places with Your heavenly light, that we may discern with c", + "id": "Postcommunio" + } + ], + "2024-01-14": [ + { + "body": "*Ps 65:4*\nLet all on earth worship You, O God, and sing praise to You, sing praise to Your name, Most High.\n*Ps 65:1-2*\n", + "id": "Introitus" + }, + { + "body": "Almighty, everlasting God, You Who govern both the heavens and the earth, graciously hear the humble prayers of Your peo", + "id": "Oratio" + }, + { + "body": "Lesson from the Epistle of St. Paul to the Romans\n*Rom 12:6-16*\nBrethren: We have gifts differing according to the grace", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nThe Lord sent forth His word to heal them and to snatch them from destruction.\n℣. Let them give thanks to", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 2:1-11*\nAt that time, a marriage took place at Cana of Galilee, ", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2, 16*\nShout joyfully to God, all you on earth, sing praise to the glory of His name. Hear now, all you who fea", + "id": "Offertorium" + }, + { + "body": "Hallow our offerings, O Lord, and cleanse us from the stains of our sins.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 2:7-11*\nThe Lord said, Fill the jars with water and take to the chief steward. When the chief steward had tasted t", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You that the effects of Your power may ever increase within us; and, strengthened by the divine sacra", + "id": "Postcommunio" + } + ], + "2024-01-15": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "O God, Who each year give us the joyful feast of blessed Paul, Your Confessor, mercifully grant that we may imitate the ", + "id": "Oratio" + }, + { + "body": "*For St. Maur, Abbot*\nMay the blessed Abbot Maur plead for us, O Lord, so that through his intercession we may obtain wh", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:7-12*\nBrethren: The things that were gain to m", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:25-30*\nAt that time, Jesus spoke and said, I praise You,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "O Lord, in memory of Your saints, we offer You sacrifices of praise, trusting them to deliver us from both present and f", + "id": "Secreta" + }, + { + "body": "*For St. Maur, Abbot*\nO Lord, we beseech You, may the offerings placed upon Your holy altar be beneficial for our salvat", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nThe just man is glad in the Lord and takes refuge in Him; all the upright of heart shall be praised.", + "id": "Communio" + }, + { + "body": "Filled with heavenly food and drink, we humbly pray You, our God, that we may be helped by the prayers of him in whose m", + "id": "Postcommunio" + }, + { + "body": "*For St. Maur, Abbot*\nO Lord, may the reception of Your holy sacrament, and the pleas of blessed Maurus, the Abbot, prot", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-16": [ + { + "body": "*John 21:15-17*\nIf you love Me, Simon Peter, feed My lambs, feed My sheep.\n*Ps 29:2*\nI will extol You, O Lord, for You d", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we may be helped by the merits of blessed Marce", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:1-4, 10-11.*\nBeloved: I exhort the presbyters among you ", + "id": "Lectio" + }, + { + "body": "*Ps 106:32, 31*\nLet them extol him in the assembly of the people and praise him in the council of the elders.\n℣. Let the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus, having come into the distric", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nSee, I place My words in your mouth! I set you over nations and over kingdoms, to root up and to tear down,", + "id": "Offertorium" + }, + { + "body": "Having offered You our gifts, we beseech You, O Lord, mercifully to enlighten Your Church, so that Your flock may everyw", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build my Church.", + "id": "Communio" + }, + { + "body": "Since Your Church has been nourished by sacred food, govern her in Your clemency, we beseech You, O Lord, so that under ", + "id": "Postcommunio" + } + ], + "2024-01-17": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "May the intercession of the Blessed Abbot Anthony, commend us, we beseech You, O Lord, so that what we do not deserve by", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his hea", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy Abbot Anthony, prevail by his prayers, so that the offerings placed upon Your sacre", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will set", + "id": "Communio" + }, + { + "body": "May the pleading of the blessed Abbot Anthony for us, together with the partaking of Your sacrament, protect us, O Lord,", + "id": "Postcommunio" + } + ], + "2024-01-18": [ + { + "body": "*Ps 65:4*\nLet all on earth worship You, O God, and sing praise to You, sing praise to Your name, Most High.\n*Ps 65:1-2*\n", + "id": "Introitus" + }, + { + "body": "Almighty, everlasting God, You Who govern both the heavens and the earth, graciously hear the humble prayers of Your peo", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Prisca*\nGrant, we beseech You, O almighty God, that we who celebrate the anniversary of the death of ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Epistle of St. Paul to the Romans\n*Rom 12:6-16*\nBrethren: We have gifts differing according to the grace", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nThe Lord sent forth His word to heal them and to snatch them from destruction.\n℣. Let them give thanks to", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 2:1-11*\nAt that time, a marriage took place at Cana of Galilee, ", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2, 16*\nShout joyfully to God, all you on earth, sing praise to the glory of His name. Hear now, all you who fea", + "id": "Offertorium" + }, + { + "body": "Hallow our offerings, O Lord, and cleanse us from the stains of our sins.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Prisca*\nWe beseech You, O Lord, that this sacrificial gift which we offer in commemorating the death ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 2:7-11*\nThe Lord said, Fill the jars with water and take to the chief steward. When the chief steward had tasted t", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You that the effects of Your power may ever increase within us; and, strengthened by the divine sacra", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Prisca*\nFilled with the sacrament of salvation, we beseech You, O Lord, to help us by the prayers of ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-19": [ + { + "body": "*Ps 65:4*\nLet all on earth worship You, O God, and sing praise to You, sing praise to Your name, Most High.\n*Ps 65:1-2*\n", + "id": "Introitus" + }, + { + "body": "Almighty, everlasting God, You Who govern both the heavens and the earth, graciously hear the humble prayers of Your peo", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Marius, Martha, Audifax & Abachum*\nO Lord, hear Your people as they humbly pray in union with the pa", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Epistle of St. Paul to the Romans\n*Rom 12:6-16*\nBrethren: We have gifts differing according to the grace", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nThe Lord sent forth His word to heal them and to snatch them from destruction.\n℣. Let them give thanks to", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 2:1-11*\nAt that time, a marriage took place at Cana of Galilee, ", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2, 16*\nShout joyfully to God, all you on earth, sing praise to the glory of His name. Hear now, all you who fea", + "id": "Offertorium" + }, + { + "body": "Hallow our offerings, O Lord, and cleanse us from the stains of our sins.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Marius, Martha, Audifax & Abachum*\nLook with favor, O Lord, upon the prayers and offerings of Your f", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 2:7-11*\nThe Lord said, Fill the jars with water and take to the chief steward. When the chief steward had tasted t", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You that the effects of Your power may ever increase within us; and, strengthened by the divine sacra", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Marius, Martha, Audifax & Abachum*\nBe appeased by the prayers of Your Saints, O Lord, and grant, we ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-20": [ + { + "body": "*Ps 78:11; 78:12; 78:10*\nLet the prisoners’ sighing come before You, O Lord; repay our neighbors sevenfold into their bo", + "id": "Introitus" + }, + { + "body": "Be mindful of our weakness, almighty God, and since the burden of our sins weighs heavily upon us, may the glorious inte", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 11:33-39*\nBrethren: The Saints by faith conquered kin", + "id": "Lectio" + }, + { + "body": "*Ex 15:11*\nGod is glorious in His Saints, wonderful in majesty, a worker of wonders.\n*Ex 15:6*\n℣. Your right hand, O Lor", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 6:17-23*\nAt that time, Jesus coming down from the mountain, to", + "id": "Evangelium" + }, + { + "body": "*Ps 31:11*\nBe glad in the Lord, and rejoice, you just; exult, all you upright of heart.", + "id": "Offertorium" + }, + { + "body": "Graciously accept, O Lord, the sacrifices dedicated to You in honor of Your blessed Martyrs Fabian and Sebastian, and gr", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 6:18-19*\nA multitude of sick, and those who were troubled with unclean spirits, came to Him; for power went forth ", + "id": "Communio" + }, + { + "body": "Refreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enjoy the benefits of the rite we", + "id": "Postcommunio" + } + ], + "2024-01-21": [ + { + "body": "*Ps 96:7-8*\nAdore God, all you His angels: Sion hears and is glad, and the cities of Juda rejoice.\n*Ps 96:1*\nThe Lord is", + "id": "Introitus" + }, + { + "body": "Almighty and everlasting God, look with favor upon our weakness, and stretch forth the right hand of Your majesty to hel", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 12:16-21*\nBrethren: Be not wise in your own conceits. ", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 8:1-13*\nAt that time, when Jesus had come down from the mount", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16-17*\nThe right hand of the Lord has struck with power: the right hand of the Lord has exalted me; I shall not ", + "id": "Offertorium" + }, + { + "body": "May this offering, O Lord, we beseech You, wipe away our transgressions, and make holy the minds and bodies of Your serv", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Luke 4:22*\nAll marvelled at the words that came from the mouth of God.", + "id": "Communio" + }, + { + "body": "O Lord, as You grant us to use this great sacrament, deign, we beseech You, to make us truly worthy of its fruits.\nThrou", + "id": "Postcommunio" + } + ], + "2024-01-22": [ + { + "body": "*Ps 78:11; 78:12; 78:10*\nLet the prisoners’ sighing come before You, O Lord; repay our neighbors sevenfold into their bo", + "id": "Introitus" + }, + { + "body": "Give heed to our humble prayers, O Lord, that we who know we are guilty of our own sin, may be saved by the intercession", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 3:1-8*\nThe souls of the just are in the hands of God, and no torment of death shall ", + "id": "Lectio" + }, + { + "body": "*Exo 15:11*\nGod is glorious in His Saints, wonderful in majesty, a worker of wonders.\n*Exo 15:6*\n℣. Your right hand, O L", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:9-19*\nAt that time, Jesus said to His disciples, When you h", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nGod is wonderful in His Saints; the God of Israel is He Who gives power and strength to His people. Blessed b", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, the gifts of our service; may they be pleasing to You for the honor of Your just ones and, through", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Wis 3:4-6*\nFor if before men they be punished, God tried them; as gold in the furnace, He proved them, and as sacrifici", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we who have eaten heavenly food may through it be protected from all harm by the inte", + "id": "Postcommunio" + } + ], + "2024-01-23": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, You Who chose blessed Raymond to be a renowned minister of the sacrament of Penance, and miraculously brought him", + "id": "Oratio" + }, + { + "body": "*For St. Emerentiana, Virgin and Martyr*\nMay blessed Emerentiana, Virgin and Martyr, who was ever pleasing to You by the", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*For St. Emerentiana, Virgin and Martyr*\nMay blessed Emerentiana, Virgin and Martyr, who was ever pleasing to You by the", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + }, + { + "body": "*For St. Emerentiana, Virgin and Martyr*\nMay the sacrament we have received, aid us, O Lord, and by the intercession of ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-24": [ + { + "body": "*Ecclus 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignit", + "id": "Introitus" + }, + { + "body": "Be mindful of our weakness, almighty God, and because the burden of our sins weighs heavily upon us, may the glorious in", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to Timothy\n*1 Tim. 6:11-16*\nBeloved: Pursue justice, godliness, fai", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nI have found David, My servant, with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 14:26-33.*\nAt that time, Jesus said to the crowds, If anyone com", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "O Lord, graciously accept, through the merits of Your blessed Martyr and Bishop N., the sacrificial gifts dedicated to Y", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36-38.*\nOnce, by My holiness, have I sworn; his posterity shall continue forever; and his throne shall be like th", + "id": "Communio" + }, + { + "body": "Refreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enjoy the benefits of the rite we", + "id": "Postcommunio" + } + ], + "2024-01-25": [ + { + "body": "*2 Tim. 1:12*\nI know Whom I have believed, and I am certain that He is able to guard the trust committed to me, against ", + "id": "Introitus" + }, + { + "body": "O God, Who taught the whole world by the preaching of Your blessed Apostle Paul, grant, we beseech You, that we who toda", + "id": "Oratio" + }, + { + "body": "*For St. Peter*\nO God, Who, when giving blessed Peter, Your Apostle, the keys of the heavenly kingdom, bestowed on him t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 9:1-22*\nIn those days, Saul, still breathing threats of slaughter against the dis", + "id": "Lectio" + }, + { + "body": "*Gal 2:8-9*\nHe Who worked in Peter for the apostleship, worked also in me among the Gentiles: and they recognized the gr", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29*\nAt that time, Peter said to Jesus, Behold we have", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", + "id": "Offertorium" + }, + { + "body": "O Lord, make holy the offerings of Your people, through the prayer of Paul, Your Apostle, that those things which You ha", + "id": "Secreta" + }, + { + "body": "*For St. Peter*\nWe beseech You, Lord, may the prayer of the blessed Apostle Peter recommend the petitions and offerings ", + "id": "Commemoratio Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you, that you who have left all things, and followed Me, shall receive a hundredfold, and ", + "id": "Communio" + }, + { + "body": "Made holy by the sacrament of salvation, we beseech You, O Lord, that the prayers of him under whose patronal care You h", + "id": "Postcommunio" + }, + { + "body": "*For St. Peter*\nO Lord, may the gift we offer bring us joy, that as we praise Your wondrous work in Your Apostle Peter, ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-26": [ + { + "body": "*Dan 3:84, 87*\nO ye priests of the Lord, bless the Lord: O ye holy and humble of heart, praise God.\n*Dan. 3:57*\nAll ye w", + "id": "Introitus" + }, + { + "body": "O God, who givest us joy by the annual solemnity of blessed Polycarp, Thy martyr and bishop, mercifully grant that we ma", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 3:10-16*\nMost dearly beloved, whosoever is not just, is not ", + "id": "Lectio" + }, + { + "body": "*Ps 8:6-7*\nThou hast crowned him with glory and honor.\n℣. And hast set him over the works of Thy hands, O Lord. Alleluia", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:26-32*\nAt that time, Jesus said to His disciples: Nothin", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David My servant, with My holy oil I have anointed him; for My hand shall help him, and My ar", + "id": "Offertorium" + }, + { + "body": "Sanctify, O Lord, the offerings dedicated unto Thee, and appeased by the intercession of blessed Polycarp Thy Martyr and", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nThou hast set on his head, O Lord, a crown of precious stones.", + "id": "Communio" + }, + { + "body": "May this communion, O Lord, purify us from guilt, and by the intercession of blessed Polycarp Thy martyr and bishop, mak", + "id": "Postcommunio" + } + ], + "2024-01-27": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", + "id": "Introitus" + }, + { + "body": "May heavenly grace, we beseech You, O Lord, prosper Your Church, which You mercifully enlightened by the blessed virtues", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", + "id": "Lectio" + }, + { + "body": "*Ecclus 44:16*\nBehold a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not found the like to him", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: \"You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree; like a cedar of Libanus shall he grow.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed John Chrysostom, Your Bishop and Doctor, fail us never, O Lord; may it commend our offe", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "So that your sacrificial rites may grant us salvation, we pray you, O Lord, that blessed John Chrysostom, Your Bishop an", + "id": "Postcommunio" + } + ], + "2024-01-28": [ + { + "body": "*Ps 17:5-7*\nThe terrors of death surged round me, the cords of the nether world enmeshed me. In my distress I called upo", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we who are justly punished for our sins may be ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 9:24-27; 10:1-5*\nBrethren: Do you not kn", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nA helper in due time in tribulation. Let them trust in thee who know thy name: for thou hast not f", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:1-16*\nAt that time, Jesus spoke to His disciples this pa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nIt is good to give thanks to the Lord, and to sing praise to Your name, Most High.", + "id": "Offertorium" + }, + { + "body": "Since You have accepted our gifts and our prayers, we beseech You, O Lord, to cleanse us by this heavenly sacrament and ", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nLet Your face shine upon Your servant; save me in Your kindness. O Lord, let me not be put to shame, for I", + "id": "Communio" + }, + { + "body": "May Your faithful people, O God, be strengthened by Your gifts; that by receiving them, they may still desire them, and ", + "id": "Postcommunio" + } + ], + "2024-01-29": [ + { + "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", + "id": "Introitus" + }, + { + "body": "O God, Who for the salvation of souls willed that blessed Francis, Your Confessor and Bishop, should become all things t", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom :\n℣. And his tongue shall speak judgment. The law of his God ", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the pious prayer of holy N. thy Bishop and illustrious Doctor be not wanting to us, O Lord, but make our offerings a", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "*Pro Doctore Pontifice.*\nMay blessed N. thy Bishop and illustrious Doctor intercede for us, O Lord, that this thy sacrif", + "id": "Postcommunio" + } + ], + "2024-01-30": [ + { + "body": "*Ps 118:46-47.*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, wh", + "id": "Introitus" + }, + { + "body": "O God, Who among the other miracles of Your power have bestowed the victory of martyrdom even upon the weaker sex, graci", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 51:1-8; 5:12*\nI will give You thanks, O Lord, O King; I will praise You, O G", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness.\n℣. Therefore God, your God, has anointed you with the oil of gladness.\nC", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13.*\nAt that time Jesus spoke this parable to His disc", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15-16.*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and j", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the gifts we bring on the festival of blessed N., Your Virgin and Martyr, through whose patronage we hop", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78, 80*\nLet the proud be put to shame for oppressing me unjustly; I will meditate on Your precepts, on Your stat", + "id": "Communio" + }, + { + "body": "May the sacrament we have received, aid us, O Lord, and by the intercession of blessed N., Your Virgin and Martyr, may i", + "id": "Postcommunio" + } + ], + "2024-01-31": [ + { + "body": "*3 Kings 4:29*\nGod gave him wisdom and understanding exceeding much, and largeness of heart as the sand that is on the s", + "id": "Introitus" + }, + { + "body": "O God, Who in Your Confessor, blessed John, raised up a father and teacher of youth, and willed that through him, with t", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-9*\nBrethren: Rejoice in the Lord always; aga", + "id": "Lectio" + }, + { + "body": "*Ps 60:4-6*\nYou are my refuge, O Lord, a tower of strength against the enemy.\n℣. Oh, that I might lodge in Your tent for", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-5*\nAt that time, the disciples came to Jesus, saying, ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nCome, children, hear me; I will teach you the fear of the Lord.", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, this pure offering of the saving Host, and grant, that loving You in all and above all, we may be found ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Rom 4:18*\nHoping against hope he believed, so that he became father of many nations, according to what was said to him.", + "id": "Communio" + }, + { + "body": "Nourished with the mystery of Your Body and Blood, grant, we beseech You, O Lord, through the intercession of Saint John", + "id": "Postcommunio" + } + ], + "2024-02-01": [ + { + "body": "*Gal 6:14*\nGod forbid that I should glory, save in the cross of our Lord Jesus Christ: by whom the world is crucified to", + "id": "Introitus" + }, + { + "body": "Be mindful of our weakness, O almighty God, and since the burden of our deeds is grievous to us, grant that the glorious", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:35-39*\nBrethren, who shall separate us from the love", + "id": "Lectio" + }, + { + "body": "*Ecclus 44:16, 20*\nBehold a great priest, who in his days pleased God.\n℣. There was not any found the like to him, who k", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 12:24-26*\nAt that time, Jesus said to His Disciples, \"Amen, am", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nThou hast crowned Him with glory and honor: and hast set Him over the works of Thy hands, O Lord.", + "id": "Offertorium" + }, + { + "body": "Graciously accept, O Lord, the offerings dedicated unto Thee, through the merits of blessed Ignatius Thy martyr and bish", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "I am the wheat of Christ; may I be ground by the teeth of beasts, that I may be found pure bread.", + "id": "Communio" + }, + { + "body": "Refreshed by participation in Thy holy gift, we beseech Thee, O Lord our God, that through the intercession of blessed I", + "id": "Postcommunio" + } + ], + "2024-02-02": [ + { + "body": "*If the blessing of candles and the procession cannot take place in the solemn form, because of the absence of sacred mi", + "id": "De Benedictione Candelarum" + }, + { + "body": "*Next the senior cleric goes to the altar and the celebrant, without genuflecting, receives a candle from him. Then the ", + "id": "De Distributione Candelarum" + }, + { + "body": "*First, the celebrant places incense in the thurible, then the deacon turns to the people and says:*\n℣. Let us go forth ", + "id": "De Processione" + }, + { + "body": "*Ps 47:10-11*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to the", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, we humbly beseech Your majesty that, as Your only-begotten Son was this day presented in the temp", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Malachias\n*Mal 3:1-4*\nThus says the Lord God: Lo, I am sending My messenger to prepare the way b", + "id": "Lectio" + }, + { + "body": "*Ps 47:10-11, 9.*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to", + "id": "Tractus" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 2:22-32*\nAt that time, when the days of Mary's purification were", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, heed our prayer, and give us the help of Your loving kindness so that the gifts we offer before the eyes of Your", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 2:26*\nIt was revealed to Simeon by the Holy Spirit that he should not see death before he had seen the Christ of t", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord our God, that the sacrament You have given as the bulwark of our atonement may be made a saving r", + "id": "Postcommunio" + } + ], + "2024-02-03": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Blaise*\nO God, Who gladden us with the yearly festival of blessed Blaise, Your Martyr and Bishop, mer", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nBefore all ages, in the beginning, He created me, and through all ", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "You are happy, O holy Virgin Mary, and most worthy of all praise; since out of you has risen the sun of justice, Christ ", + "id": "Offertorium" + }, + { + "body": "\nThrough Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son,", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Blaise*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of blessed Blai", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Blaise*\nMay this Communion, O Lord, cleanse us of sin, and through the intercession of blessed Blaise", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-04": [ + { + "body": "*Ps 43:23-26*\nAwake! Why are You asleep, O Lord? Arise! Cast us not off forever! Why do You hide Your face, forgetting o", + "id": "Introitus" + }, + { + "body": "O God, You Who see that we put no trust in anything we do, mercifully grant that by the protection of the Doctor of the ", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 11:19-33; 12:1-9*\nBrethren: You gladly ", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nLet the nations know that God is Your name; You alone are the Most High over all the earth.\n℣. O my Go", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 8:4-15*\nAt that time, when a very great crowd was gathering to", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. Sh", + "id": "Offertorium" + }, + { + "body": "May this sacrifice which we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nI will go in to the altar of God, the God of my gladness and joy.", + "id": "Communio" + }, + { + "body": "O almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", + "id": "Postcommunio" + } + ], + "2024-02-05": [ + { + "body": "Let us all rejoice in the Lord, celebrating the feast in honor of blessed Agatha, Virgin and Martyr, for whose passion t", + "id": "Introitus" + }, + { + "body": "O God, Who among other wonders of Your power have given the victory of martyrdom even to the gentler sex, graciously gra", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 1:26-31*\nBrethren: Consider your own cal", + "id": "Lectio" + }, + { + "body": "*Ps 45:6, 5*\nGod will help her with His countenance. God is in her midst; she shall not be disturbed.\n℣. There is a stre", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:3-12*\nAt that time, there came to Jesus some Pharisees, ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15*\nBehind her the virgins of her train are brought to the King. They are borne in to You.", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the gifts we bring on the feast of blessed Agatha, Your Virgin and Martyr, under whose patronage we hope", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "I invoke Him, the living God, Who deigned to cure me of every wound, and to restore my breast to my body.", + "id": "Communio" + }, + { + "body": "May the sacrament we have received help us, O Lord, and by the intercession of blessed Agatha, Your Virgin and Martyr, m", + "id": "Postcommunio" + } + ], + "2024-02-06": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O God, Who adorned blessed Titus, Your Confessor and Bishop, with the virtues of an apostle, grant, through his merits a", + "id": "Oratio" + }, + { + "body": "*For St. Dorothy, Virgin and Martyr*\nMay blessed Dorothy, Virgin and Martyr, who was ever pleasing to You by the merit o", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, a", + "id": "Lectio" + }, + { + "body": "*Sir 44:16, 20*\nBehold, a great priest, who in his days pleased God.\n℣. There was not found the like to him, who kept th", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*For St. Dorothy*\nGraciously accept the sacrificial gifts offered You, O Lord, through the merits of blessed Dorothy, Yo", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + }, + { + "body": "*For St. Dorothy*\nWe who have been refreshed by the richness of Your divine sacrament beseech You, O Lord our God, that ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-07": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "May the intercession of the Blessed Abbot Romuald, commend us, we beseech You, O Lord, so that what we do not deserve by", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy Abbot N., prevail by his prayers, so that the offerings placed upon Your sacred alt", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "May the pleading of the blessed Abbot N. for us, together with the partaking of Your sacrament, protect us, O Lord, so t", + "id": "Postcommunio" + } + ], + "2024-02-08": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who graciously and by divine means founded through blessed John, the Order of the Most Holy Trinity to ransom cap", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2024-02-09": [ + { + "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", + "id": "Introitus" + }, + { + "body": "O God, Who made Cyril, Your Confessor and Bishop, an unconquerable champion of the most Blessed Virgin Mary’s divine mot", + "id": "Oratio" + }, + { + "body": "*For St. Appollonia, Virgin & Martyr*\nO God, Who among the other miracles of Your power have bestowed the victory of mar", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom :\n℣. And his tongue shall speak judgment. The law of his God ", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "Look graciously, almighty God, upon our gifts and, through the intercession of blessed Cyril, grant that we may receive ", + "id": "Secreta" + }, + { + "body": "*For St. Appollonia, Virgin & Martyr*\nAccept, O Lord, the gifts we bring on the festival of blessed Apollonia, Your Virg", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "Strengthened by the Blessed Sacrament, we humbly beseech You, O Lord, that, helped by the example and merits of the bles", + "id": "Postcommunio" + }, + { + "body": "*For St. Appollonia, Virgin & Martyr*\nMay the sacrament we have received, aid us, O Lord, and by the intercession of ble", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-10": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "O God, Who, to show us the way of innocence, caused the soul of Your Virgin, blessed Scholastica, to fly up to heaven in", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign. Because of truth and meekness and", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the intercession of her who", + "id": "Postcommunio" + } + ], + "2024-02-11": [ + { + "body": "*Ps 30:3-4*\nBe my rock of refuge, O God, a stronghold to give me safety. You are my rock and my fortress; for Your name’", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, mercifully hear our prayers; loose us from the chains of our sins and keep us from all adversity", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 13:1-13*\nBrethren: If I should speak wit", + "id": "Lectio" + }, + { + "body": "*Ps 76:15-16*\nYou are the God Who alone works wonders; among the peoples You have made known Your power.\n℣. With Your st", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:31-43*\nAt that time, Jesus taking to Himself the Twelve sai", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBlessed are You, O Lord; teach me Your statutes. With my lips I declare all the ordinances of Your mouth.", + "id": "Offertorium" + }, + { + "body": "May these offerings, O Lord, we beseech You, wash away our sins; may it sanctify the bodies and souls of Your servants f", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nThey ate and were wholly surfeited; the Lord had brought them what they craved: they were not defrauded of", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we who have received the Bread of heaven, may by it be protected from all adversity.\n", + "id": "Postcommunio" + } + ], + "2024-02-12": [ + { + "body": "*Wis 10:20-21*\nThe just sang, O Lord, Your holy name and praised in unison your conquering hand - because wisdom opened ", + "id": "Introitus" + }, + { + "body": "O Lord Jesus Christ, Who, to keep alive the memory of Your most holy Mother’s sorrows, through the seven holy fathers en", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 44:1-15*\nLet us now praise men of renown, our ancestors, each in his own ", + "id": "Lectio" + }, + { + "body": "*Isa 65:23*\nMy elect shall not toil in vain, nor beget children for sudden destruction; for a race blessed by the Lord a", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29*\nAt that time, Peter said to Jesus, Behold, we hav", + "id": "Evangelium" + }, + { + "body": "*Isa 56:7*\nI will bring them to My holy mountain, and make them joyful in My house of prayer; their holocausts and sacri", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the sacrificial gifts we offer, so that by the intercession of Your saints we may serve ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 15:16*\nI have chosen you from the world that you should go and bear fruit, and that your fruit should remain.", + "id": "Communio" + }, + { + "body": "Strengthened by the heavenly sacrament, we beseech You, O Lord, that, following the example of those whose feast we are ", + "id": "Postcommunio" + } + ], + "2024-02-13": [ + { + "body": "*Ps 30:3-4*\nBe my rock of refuge, O God, a stronghold to give me safety. You are my rock and my fortress; for Your name’", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, mercifully hear our prayers; loose us from the chains of our sins and keep us from all adversity", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 13:1-13*\nBrethren: If I should speak wit", + "id": "Lectio" + }, + { + "body": "*Ps 76:15-16*\nYou are the God Who alone works wonders; among the peoples You have made known Your power.\n℣. With Your st", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:31-43*\nAt that time, Jesus taking to Himself the Twelve sai", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBlessed are You, O Lord; teach me Your statutes. With my lips I declare all the ordinances of Your mouth.", + "id": "Offertorium" + }, + { + "body": "May these offerings, O Lord, we beseech You, wash away our sins; may it sanctify the bodies and souls of Your servants f", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nThey ate and were wholly surfeited; the Lord had brought them what they craved: they were not defrauded of", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we who have received the Bread of heaven, may by it be protected from all adversity.\n", + "id": "Postcommunio" + } + ], + "2024-02-14": [ + { + "body": "*Antiphona.*\n*Ps 68:17*\nHear me, O Lord, for thy mercy is kind; look upon me according to the multitude of thy tender me", + "id": "Benedictio cinerum" + }, + { + "body": "*Wis 11:24-25, 27.*\nYou have mercy on all, O Lord, and hate none of the things which You have made, overlooking the sins", + "id": "Introitus" + }, + { + "body": "Grant, O Lord, that Your faithful people may, with true piety, undertake the time-honored custom of fasting and may carr", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Joel\n*Joel 2:12-19*\nThus says the Lord: Return to Me with your whole heart, with fasting, and we", + "id": "Lectio" + }, + { + "body": "*Ps 56:2, 4.*\nHave pity on me, O God; have pity on me, for in You I take refuge.\n℣. He has sent from heaven and saved me", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt. 6:16-21*\nAt that time, Jesus said to His disciples, When y", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nI will extol you, O Lord, for You drew me clear and did not let my enemies rejoice over me. O Lord, I cried ", + "id": "Offertorium" + }, + { + "body": "O Lord, we beseech You, make us truly fit to offer these gifts by which we celebrate the beginning of this venerable obs", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 1:2-3*\nHe who shall meditate day and night on the law of the Lord shall yield his fruit in due season.", + "id": "Communio" + }, + { + "body": "May the sacrament that we have received, O Lord, give us help, that our fast may be pleasing to You and may profit us as", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLook graciously O Lord, upon those who bow down before Your", + "id": "Super populum" + } + ], + "2024-02-15": [ + { + "body": "*Ps 54:17-23*\nWhen I called upon the Lord, He heard my voice from those who war against me; and He humbled them, Who is ", + "id": "Introitus" + }, + { + "body": "O God, offended by sin, and appeased by penitence, graciously hear the prayers of Your people as they entreat You to tur", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Faustinus & Jovita*\nO God, Who gladden us each year by the feast of Your holy Martyrs, Faustinus and", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 38:1-6*\nIn those days, when Ezechia was mortally ill, the prophet Isaiah, son of Amo", + "id": "Lectio" + }, + { + "body": "*Ps 54:23, 17-19.*\nCast your care upon the Lord, and He will support you.\n℣. When I called upon the Lord, He heard my vo", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 8:5-13*\nAt that time, when Jesus had entered Capharnaum, th", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You, O Lord, I lift up my soul: in You, O my God, I trust; let me not be put to shame, let not my enemies", + "id": "Offertorium" + }, + { + "body": "O Lord, we beseech You to look with favor upon these offerings before You, and may they be profitable to our devotion as", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Faustinus & Jovita*\nO Lord, heed our prayers which we pour forth on the feast of Your saints; so tha", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nYou shall be pleased with due sacrifices, burnt offerings and holocausts on Your altar, O Lord.", + "id": "Communio" + }, + { + "body": "We humbly beseech You, almighty God, that, having received the blessing of Your heavenly gift, it may be for us the sour", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Faustinus & Jovita*\nFilled by these saving sacramental rites, we beseech You, O Lord, that the inter", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nSpare, O Lord, spare Your people, that, being chastened wit", + "id": "Super populum" + } + ], + "2024-02-16": [ + { + "body": "*Ps 29:11*\nThe Lord has heard, and has had pity on me; the Lord became my helper.\n*Ps 29:2*\nI will extol You, O Lord, fo", + "id": "Introitus" + }, + { + "body": "May Your kindly favor, we beseech You, O Lord, accompany the fast we have begun, that we may be able to practice with a ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 58:1-9*\nThus says the Lord God: Cry out full-throated and unsparingly, lift up your ", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nOne thing I ask the Lord; this I seek: to dwell in the house of the Lord.\n℣. That I may gaze on the loveliness", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:43-48; 6:1-4*\nAt that time, Jesus said to His disciples, ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154, 125*\nO Lord, for the sake of Your promise give me life, that I may know Your decrees.", + "id": "Offertorium" + }, + { + "body": "Grant, O Lord, we beseech You, that as we offer the sacrifice of Lent, our hearts may be made acceptable to You; and the", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nServe the Lord with fear, and rejoice before Him with trembling; embrace discipline, lest you perish from t", + "id": "Communio" + }, + { + "body": "Fill us, O Lord, with the spirit of Your love, to unite in charity those whom You have filled with one and the same heav", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nWatch over Your people, O Lord, and mercifully cleanse them", + "id": "Super populum" + } + ], + "2024-02-17": [ + { + "body": "*Ps 29:11*\nThe Lord has heard, and has had pity on me; the Lord became my helper.\n*Ps 29:2*\nI will extol You, O Lord, fo", + "id": "Introitus" + }, + { + "body": "Hear, O Lord, our humble prayers, and grant that we may devoutly keep this fast that has been established to cure our so", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 58:9-14*\nThus says the Lord God: If you remove from your midst oppression, false acc", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nOne thing I ask the Lord; this I seek: to dwell in the house of the Lord.\n℣. That I may gaze on the loveliness", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 6:47-56*\nAt that time, when it was late, the ship was in the m", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154, 125*\nO Lord, for the sake of Your promise give me life, that I may know Your decrees.", + "id": "Offertorium" + }, + { + "body": "Receive, O Lord, this sacrifice by which You have graciously willed to be appeased: grant, we beseech You, that, cleanse", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nServe the Lord with fear, and rejoice before Him with trembling; embrace discipline, lest you perish from t", + "id": "Communio" + }, + { + "body": "Fortified by the Bread of Life, we beseech You, O Lord, that what is a sacrament in this life may become a help to life ", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay Your faithful people, O God, be strengthened by Your gi", + "id": "Super populum" + } + ], + "2024-02-18": [ + { + "body": "*Ps 90:15-16*\nHe shall call upon Me, and I will answer him; I will deliver him and glorify him; with length of days I wi", + "id": "Introitus" + }, + { + "body": "O God, You Who purify Your Church by the yearly Lenten observance, grant to Your household that what they strive to obta", + "id": "Oratio" + }, + { + "body": "A reading from the Second Letter of St. Paul to the Corinthians\n*2 Cor. 6:1-10*\nBrethren: We entreat you not to receive ", + "id": "Lectio" + }, + { + "body": "*Ps 90:11-12*\nTo His angels God has given command about you, that they guard you in all your ways.\n℣. Upon their hands t", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 4:1-11*\nAt that time, Jesus was led into the desert by the Sp", + "id": "Evangelium" + }, + { + "body": "*Ps 90:4-5*\nWith His pinions the Lord will cover you, and under His wings you shall take refuge; His faithfulness is a b", + "id": "Offertorium" + }, + { + "body": "We offer these sacrificial gifts at the beginning of Lent, praying You, O Lord, that while we practice restraint in the ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 90:4-5*\nWith His pinions the Lord will cover you, and under His wings you shall take refuge; His faithfulness is a b", + "id": "Communio" + }, + { + "body": "May the holy offering of Your sacrament renew us, O Lord, and cause us to be purified from our old ways and come to the ", + "id": "Postcommunio" + } + ], + "2024-02-19": [ + { + "body": "*Ps 122:2*\nAs the eyes of servants are on the hands of their masters, so are our eyes on the Lord, our God, till He have", + "id": "Introitus" + }, + { + "body": "O God, our Saviour, direct our minds by Your heavenly teaching, so that the Lenten fast may profit us.\nThrough our Lord…", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Ezechiel\n*Ezech 34:11-16*\nThus says the Lord God: I Myself will look after and tend My sheep", + "id": "Lectio" + }, + { + "body": "*Ps 83:10, 9*\nBehold, O God, our Protector, and look upon Your servants.\n℣. O Lord God of Hosts, hear the prayers of You", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 25:31-46*\nAt that time, Jesus said to His disciples: When the", + "id": "Evangelium" + }, + { + "body": "*Ps 118:18, 26, 73*\nI will lift up my eyes, that I may consider Your wonders, O Lord; teach me Your statutes; give me di", + "id": "Offertorium" + }, + { + "body": "Sanctify the gifts offered unto You, O Lord, and cleanse us from the stains of our sins.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Matt 25:40, 34*\nAmen I say to you: What you did for one of these, the least of My brethren, you did for Me: come, bless", + "id": "Communio" + }, + { + "body": "Refreshed by the sacramental gift of Your salvation, we humbly beseech You, O Lord, that, enjoying its savor, we may be ", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLoose the bonds of our sins, we beseech You, O Lord, and me", + "id": "Super populum" + } + ], + "2024-02-20": [ + { + "body": "*Ps 89:1-2*\nLord, You have been our refuge through all generations; from everlasting to everlasting You are.\n*Ps 89:2*\nB", + "id": "Introitus" + }, + { + "body": "Look upon Your household, O Lord, and grant that our minds, chastened by mortification of the flesh, may, because of the", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Isaias\n*Isa 55:6-11*\nIn those days, the prophet Isaiah spoke, saying: Seek the Lord while He", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 21:10-17*\nAt that time, when Jesus entered Jerusalem, all the", + "id": "Evangelium" + }, + { + "body": "*Ps 30:15-16*\nMy trust is in You, O Lord; I say, \"You are my God.\" In Your hands is my destiny.", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by the gifts we offer, and safeguard us from all dangers.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 4:2*\nWhen I call, answer me, O my just God, You Who relieve me when I am in distress; have pity on me, O Lord, and h", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we may obtain that salvation whose pledge we have received in this divine sacrament.\n", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay our prayers ascend unto You, O Lord, and banish all wic", + "id": "Super populum" + } + ], + "2024-02-21": [ + { + "body": "*Ps 24:6, 3, 22*\nRemember that Your compassion, O Lord, and Your kindness are from of old; let not our enemies exult ove", + "id": "Introitus" + }, + { + "body": "Mercifully hear our prayers, we beseech You, O Lord; and stretch forth the right hand of Your Majesty against all things", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Exodus\n*Ex. 24:12-18*\nIn those days, the Lord said to Moses, Come up to Me on the mountain and, ", + "id": "LectioL1" + }, + { + "body": "*Ps 24:17-18*\nRelieve the troubles of my heart, and bring me out of distress, O Lord.\n℣. Put an end to my affliction and", + "id": "GradualeL1" + }, + { + "body": "We beseech You, O Lord, look graciously upon the fervor of Your people, who mortify themselves in the flesh through abst", + "id": "OratioL1" + }, + { + "body": "Lesson from the book of Kings\n*3 Kgs. 19:3-8*\nIn those days, Elias came to Bersabee of Juda, and left his servant there,", + "id": "Lectio" + }, + { + "body": "*Ps 24:17-18, 1-4.*\nBring me out of distress, O Lord; put an end to my affliction and my suffering, and take away all my", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 12:38-50*\nAt that time, certain of the Scribes and Pharisees ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly. And I will lift up my hands to Your commands w", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, this sacrifice of atonement, that You would mercifully absolve our sins and direct our faltering h", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nAttend to my sighing, heed my call for help, my King and my God! To You, I pray, O Lord.", + "id": "Communio" + }, + { + "body": "By receiving Your sacrament, O Lord, may we be cleansed of our secret sins and delivered from the snares of our enemies.", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO Lord, we beseech You, shed light upon our minds by the br", + "id": "Super populum" + } + ], + "2024-02-22": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O God, Who when giving blessed Peter, Your Apostle, the keys of the heavenly kingdom, bestowed on him the power of bindi", + "id": "Oratio" + }, + { + "body": "*Commemoration Feria V after the I Sunday of Lent*\nWe beseech You, O Lord, look graciously upon the fervor of Your peopl", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 1:1-7*\nPeter, an apostle of Jesus Christ, to the sojourner", + "id": "Lectio" + }, + { + "body": "*Ps 106:32, 31*\nLet them extol him in the assembly of the people and praise him in the council of the elders.\n℣. Let the", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus having come into the district", + "id": "Evangelium" + }, + { + "body": "*Matt 16:18-19*\nYou are Peter, and upon this rock I will build My Church, and the gates of hell shall not prevail agains", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the prayer of the blessed Apostle, Peter, recommend the petitions and offerings of Your Chur", + "id": "Secreta" + }, + { + "body": "*Commemoration Feria V after the I Sunday of Lent*\nMay these sacrificial gifts, we beseech You, O Lord, be the more effe", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build My Church.", + "id": "Communio" + }, + { + "body": "O Lord, may the gift we offer bring us joy, that as we praise Your wondrous work in Your Apostle Peter, so through him m", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Feria V after the I Sunday of Lent*\nMay Your generous grace sustain and help us, O Lord, in this world an", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-23": [ + { + "body": "*Ps 24:17-18*\nBring me out of distress, O Lord; put an end to my affliction and my suffering, and take away all my sins.", + "id": "Introitus" + }, + { + "body": "Be merciful to Your people, O Lord, and as You give them the grace to serve You, make them new by Your loving help.\nThro", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Peter Damien*\nGrant us, we beseech You, almighty God, to follow the counsel and examples of St. Peter", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Prophecy of Ezechiel\n*Ezech 18:20-28*\nThus says the Lord God: Only the one who sins shall die. The son s", + "id": "Lectio" + }, + { + "body": "*Ps 85:2, 6*\nSave Your servant, O my God, who trusts in You.\n℣. Hearken, O Lord, to my prayer.\n\n*Tractus*\n*Ps 102:10*\nO ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 5:1-15*\nAt that time, there was a feast of the Jews, and Jesus w", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2, 5*\nBless the Lord, O my soul, and forget not all His benefits; and your youth shall be renewed like the eagle", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the offerings which we, Your servants, bring You, and graciously hallow the gifts which ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Peter Damien*\nMay the loving prayer of blessed Peter, Your Bishop and Doctor, fail us never, O Lord; ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 6:11*\nAll my enemies shall be put to shame in utter terror; they shall fall back in sudden shame.", + "id": "Communio" + }, + { + "body": "By the working of this sacrament, O Lord, may our sins be erased, and our just desires fulfilled.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Peter Damien*\nSo that your sacrificial rites may grant us salvation, we pray you, O Lord, that blesse", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGraciously hear us, merciful God, and reveal to our minds t", + "id": "Super populum" + } + ], + "2024-02-24": [ + { + "body": "*Ps 87:3*\nLet my prayer come before You; incline Your ear to my call for help, O Lord.\n*Ps 87:2*\nO Lord, the God of my s", + "id": "Introitus" + }, + { + "body": "Look graciously upon Your people, we beseech You, O Lord, and in Your mercy turn away from them the scourges of Your wra", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Deuteronomy\n*Deut. 26:12-19*\nIn those days, Moses spoke to the people, saying, When you have fin", + "id": "LectioL1" + }, + { + "body": "*Ps 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God, our Saviour; be", + "id": "GradualeL1" + }, + { + "body": "Look upon us, O God our protector, so that we who are heavy laden with the burden of our sins, having received Your merc", + "id": "OratioL1" + }, + { + "body": "Lesson from the book of Deuteronomy\n*Deut. 11:22-25*\nIn those days, Moses said to the children of Israel, If you are car", + "id": "LectioL2" + }, + { + "body": "*Ps 83:10, 9*\nBehold, O God, our Protector, and look upon Your servants.\n℣. O Lord of Hosts, hear the prayer of Your ser", + "id": "GradualeL2" + }, + { + "body": "Heed our humble prayers, we beseech You, O Lord, that by Your bounty we may have grace to be humble in prosperity and un", + "id": "OratioL2" + }, + { + "body": "Lesson from the book of Machabees\n*2 Mach. 1:23-27*\nIn those days, all the priests made prayer, while the sacrifice was ", + "id": "LectioL3" + }, + { + "body": "*Ps 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants!\n℣. O Lord, You have been our refuge through all gene", + "id": "GradualeL3" + }, + { + "body": "Have mercy upon us, O God of the universe, and behold us, and show us the light of Your mercies; and put all the nations", + "id": "OratioL3" + }, + { + "body": "Lesson from the book of Ecclesiastes\n*Ecclus. 36:1-10*\nRaise Your hand against the heathen, that they may realize Your p", + "id": "LectioL4" + }, + { + "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", + "id": "GradualeL4" + }, + { + "body": "O Lord, we beseech You, precede our actions with Your favor and accompany them by Your help, so that each prayer and wor", + "id": "OratioL4" + }, + { + "body": "Lesson from the Prophecy of Daniel\n*Dan. 3:47-51*\nIn those days, the Angel of the Lord went down into the furnace with A", + "id": "LectioL5" + }, + { + "body": "O God, Who tempered the flames of fire for the three young men, mercifully grant that the flames of sin may not burn us,", + "id": "OratioL5" + }, + { + "body": "Lesson from the first Letter of St. Paul to the Thessalonians\n*1 Thess. 5:14-23*\nBrethren: We exhort you, reprove the ir", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nPraise the Lord, all you nations, glorify Him, all you peoples!\n℣. For steadfast is His kindness toward us,", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew.\n*Matt 17:1-9*\nAt that time, Jesus took Peter, James and his brothe", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nO Lord, the God of my salvation, by day I cry out, at night I clamor in Your presence. Let my prayer come be", + "id": "Offertorium" + }, + { + "body": "Sanctify our fasts by the sacrificial gifts here present, we beseech You, O Lord, that what our observance outwardly pro", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 7:2*\nO Lord my God, in You I take refuge; save me from all my pursuers and rescue me.", + "id": "Communio" + }, + { + "body": "By the workings of Your sanctifying power, almighty God, may our vices be cured and eternal remedies provided for us.\nTh", + "id": "Postcommunio" + }, + { + "body": "Let us pray.\nBow your heads to God.\nMay the blessing desired by Your faithful give them strength, O God; may it keep the", + "id": "Super populum" + } + ], + "2024-02-25": [ + { + "body": "*Ps 24:6, 3, 22*\nRemember that Your compassion, O Lord, and Your kindness are from of old; let not our enemies exult ove", + "id": "Introitus" + }, + { + "body": "O God, You Who see how we are deprived of all strength, guard us inwardly and outwardly, that in body we may be protecte", + "id": "Oratio" + }, + { + "body": "Lesson from the first Letter of St. Paul to the Thessalonians\n*1 Thess. 4:1-7*\nBrethren: Even as you have learned from u", + "id": "Lectio" + }, + { + "body": "*Ps 24:17-18*\nRelieve the troubles of my heart and bring me out of my distress, O Lord.\n℣. Put an end to my affliction a", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 17:1-9*\nAt that time, Jesus took Peter, James and his brother", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly; and I will lift up my hands to Your commands, ", + "id": "Offertorium" + }, + { + "body": "Look with favor, we beseech You, O Lord, upon the offerings here before You, that they may be beneficial for our devotio", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nAttend to my sighing; heed my call for help, my King and my God! To You I pray, O Lord.", + "id": "Communio" + }, + { + "body": "O almighty God, we humbly beseech You that those whom You refresh with Your sacrament may also worthily serve You in a w", + "id": "Postcommunio" + } + ], + "2024-02-26": [ + { + "body": "*Ps 25:11-12*\nRedeem me, O Lord, and have pity on me; my foot stands on level ground; in the assemblies I will bless the", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that Your servants who discipline the body by fasting from food, may strive after r", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Daniel\n*Dan 9:15-19*\nIn those days, Daniel prayed to the Lord, saying, O Lord our God, Who b", + "id": "Lectio" + }, + { + "body": "*Ps 69:6, 3*\nYou are my help and my deliverer; O Lord, hold not back!\n℣. Let my enemies be put to shame and confounded, ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 8:21-29*\nAt that time, Jesus said to the multitudes of the Jews:", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7-8*\nI bless the Lord, Who counsels me; I set the Lord ever before me; with Him at my right hand, I shall not be ", + "id": "Offertorium" + }, + { + "body": "May this sacrificial gift offered in appeasement and praise, O Lord, make us worthy of Your protection.\nThrough our Lord", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 8:2*\nO Lord, our Lord, how glorious is Your Name over all the earth!", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us of sin, and make us partakers of heavenly healing.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGive heed to our humble prayers, almighty God, and kindly g", + "id": "Super populum" + } + ], + "2024-02-27": [ + { + "body": "*Ps 26:8-9*\nTo You my heart speaks; You my glance seeks; Your presence, O Lord, I seek. Hide not Your face from me.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Mercifully help us, O Lord, to fulfill this holy observance, that by Your grace we may carry out those things which we h", + "id": "Oratio" + }, + { + "body": "Lesson from the Book of Kings\n*3 Kings 17:8-16*\nIn those days, the word of the Lord came to Elias the Thesbite, saying, ", + "id": "Lectio" + }, + { + "body": "*Ps 54:23, 17-19.*\nCast your care upon the Lord, and He will support you.\n℣. When I called upon the Lord, He heard my vo", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 23:1-12*\nAt that time, Jesus spoke to the crowds and to His d", + "id": "Evangelium" + }, + { + "body": "*Ps 50:3*\nHave mercy on me, O Lord, in the greatness of Your compassion; O Lord, wipe out my offense.", + "id": "Offertorium" + }, + { + "body": "Through this sacrament, O Lord, graciously perform Your holy work, that it may cleanse us of earthly vices and bring us ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nI will declare all Your wondrous deeds; I will be glad and exult in You; I will sing praise to Your name, Mos", + "id": "Communio" + }, + { + "body": "Grant us, O Lord, ever to obey Your commandments, that we may be worthy of Your sacred gifts.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMercifully heed our humble prayers, O Lord, and heal the we", + "id": "Super populum" + } + ], + "2024-02-28": [ + { + "body": "*Ps 37:22-23*\nForsake me not, O Lord; my God, be not far from me! Hasten to help me, O Lord, my salvation!\n*Ps 37:2*\nO L", + "id": "Introitus" + }, + { + "body": "Look mercifully upon Your people, we beseech You, O Lord, and grant that they whom You command to abstain from food, may", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Gabriel of Our Lady of Sorrows*\nO God, Who taught blessed Gabriel to meditate continually on the sorr", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Esther\n*Esther 13:8-11; 15-17.*\nIn those days, Mardochai prayed to the Lord, saying, O Lord, Lor", + "id": "Lectio" + }, + { + "body": "*Ps 27:9, 1*\nSave Your people, O Lord, and bless Your inheritance.\n℣. To You, O Lord, I call; O my God, be not deaf to m", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 20:17-28*\nAt that time, as Jesus was going up to Jerusalem, H", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul, O Lord. In You, O my God, I trust; let me not be put to shame, let not my enemies ", + "id": "Offertorium" + }, + { + "body": "Look with favor upon the sacrificial gifts we offer You, O Lord, and through this holy exchange loosen the bonds of our ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Gabriel of Our Lady of Sorrows*\nO Lord, make us who offer You the saving sacrificial gifts in memory ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 10:8*\nThe Lord is just, He loves just deeds; the upright shall see His face.", + "id": "Communio" + }, + { + "body": "Having received Your sacrament, O Lord, may we make progress, we beseech You, toward our everlasting salvation.\nThrough ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Gabriel of Our Lady of Sorrows*\nO Lord, graciously accept the thanks we offer You for the gifts we ha", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO God, restorer and lover of innocence, direct the hearts o", + "id": "Super populum" + } + ], + "2024-02-29": [ + { + "body": "*Ps 69:2-3*\nDeign, O God, to rescue me; O Lord, make haste to help me; let my enemies be put to shame and confounded who", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, O Lord, the help of Your grace, that, being intent, as we ought, upon fasting and prayer, we may ", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Jeremias\n*Jer 17:5-10*\nThus says the Lord God: Cursed is the man who trusts in man, who seek", + "id": "Lectio" + }, + { + "body": "*Ps 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God, our Saviour; be", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 16:19-31*\nAt that time, Jesus said to the Pharisees, There was a", + "id": "Evangelium" + }, + { + "body": "*Ex 32:11, 13-14.*\nMoses prayed in the sight of the Lord his God, and said, Why, O Lord, are You angry with Your people?", + "id": "Offertorium" + }, + { + "body": "May the fasting dedicated to Your Name, O Lord, make us holy for the present sacrifice, that what our Lenten observance ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*John 6:57*\nHe who eats My Flesh, and drinks My Blood, abides in Me, and I in him, says the Lord.", + "id": "Communio" + }, + { + "body": "May Your grace, we beseech You, O Lord, never forsake us, but make us devoted to Your holy service and ever obtain for u", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nHelp Your servants, O Lord, and grant them the lasting kind", + "id": "Super populum" + } + ], + "2024-03-01": [ + { + "body": "*Ps 16:15*\nBut I in justice shall behold Your face; I shall be content when Your glory shall appear.\n*Ps 16:1*\nHear, O L", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that with the sacred fast to purify us, we may with sincere hearts reach the coming", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Genesis\n*Gen 37:6-22*\nIn those days, Joseph said to his brothers, Listen to this dream which I h", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nIn my distress I called to the Lord, and He answered me.\n℣. O Lord, deliver me from lying lip, from treache", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 21:33-46*\nAt that time, Jesus spoke this parable to the multi", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nDeign, O Lord, to rescue me; let all be put to shame and confusion who seek to snatch away my life. Deign,", + "id": "Offertorium" + }, + { + "body": "O God, may this sacrifice which is offered, stay in us and accomplish lasting effects.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 11:8*\nYou, O Lord, will keep us and preserve us always from this generation.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord, that we who have received the pledge of everlasting salvation, may properly direct our co", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant unto Your people, we beseech You, O Lord, health of m", + "id": "Super populum" + } + ], + "2024-03-02": [ + { + "body": "*Ps 18:8*\nThe law of the Lord is perfect, refreshing the soul; the decree of the Lord is trustworthy, giving wisdom to t", + "id": "Introitus" + }, + { + "body": "Grant that our fasting may be beneficial to us, we beseech You, O Lord, so that by chastising our flesh we may obtain st", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Genesis\n*Gen 27:6-40*\nIn those days, Rebecca said to her son Jacob, I heard your father tell you", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nIt is good to give thanks to the Lord, to sing praise to Your name, Most High.\n℣. To proclaim Your kindness ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 15:11-32*\nAt that time, Jesus spoke to the Pharisees and Scribes", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nGive light to my eyes that I may not sleep in death lest my enemy say, I have overcome him.", + "id": "Offertorium" + }, + { + "body": "Appeased by these sacrificial gifts, O Lord, grant that we who pray for absolution from our own sins may not be burdened", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Luke 15:32*\nYou ought to rejoice, my son, for your brother was dead, and has come to life; he was lost, and is found.", + "id": "Communio" + }, + { + "body": "May the sacrament of which we have partaken, O Lord, penetrate the depths of our hearts and make us share in its strengt", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGuard Your household, we beseech You, O Lord, with lasting ", + "id": "Super populum" + } + ], + "2024-03-03": [ + { + "body": "*Ps 24:15-16*\nMy eyes are ever toward the Lord, for He will free my feet from the snare. Look toward me, and have pity o", + "id": "Introitus" + }, + { + "body": "We beseech You, almighty God, hear the prayers of the humble and stretch forth the right hand of Your majesty to protect", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul to the Ephesians\n*Eph 5:1-9*\nBrethren: Be imitators of God, as very dear children and", + "id": "Lectio" + }, + { + "body": "*Ps 9:20, 4*\nRise, O Lord, let not man prevail; let the nations be judged in Your presence.\n℣. Because my enemies are tu", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 11:14-28*\nAt that time, Jesus was casting out a devil, and the s", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9-12*\nThe precepts of the Lord are right, rejoicing the heart, and His ordinances are sweeter than syrup or honey", + "id": "Offertorium" + }, + { + "body": "May this offering, we beseech You, O Lord, cleanse us of our sins, and make holy the bodies and minds of Your servants f", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 83:4-5*\nThe sparrow finds a home, and the swallow a nest in which she puts her young - Your altars, O Lord of Hosts,", + "id": "Communio" + }, + { + "body": "Be merciful, O Lord, we beseech You, and free from guilt and danger those whom You grant to share in this great sacramen", + "id": "Postcommunio" + } + ], + "2024-03-04": [ + { + "body": "*Ps 55:5*\nIn God, in Whose promise I glory, in the Lord Whose word I praise, in God I trust without fear; what can flesh", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, in Your mercy, pour forth Your grace into our hearts, that, as we abstain from material food, so", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Casimir*\nO God, Who strengthened St. Casimir with the virtue of steadfastness amid the luxuries of a ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Kings\n*4 Kings, 5:1-15*\nIn those days, Naaman, general of the army of the king of Syria, was a g", + "id": "Lectio" + }, + { + "body": "*Ps 55:9, 2*\nO God, my wanderings You have counted; my tears are recorded in Your sight.\n℣. Have pity on me, O Lord, for", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 4:23-30*\nAt that time, Jesus said to the Pharisees: You will sur", + "id": "Evangelium" + }, + { + "body": "*Ps 54:2-3*\nHearken, O God, to my prayer; turn not away from my pleading; give heed to me, and answer me.", + "id": "Offertorium" + }, + { + "body": "O Lord, make for us a sacrament of salvation the gift of homage which we offer to You.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Casimir*\nWe offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them w", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 13:7*\nOh, that out of Sion would come the salvation of Israel! When the Lord restores the well being of His people, ", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty and merciful God, that what we take into our mouth, we may eat with a pure heart.\nThroug", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Casimir*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be hel", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLet Your mercy come to our help, O Lord, that under Your pr", + "id": "Super populum" + } + ], + "2024-03-05": [ + { + "body": "*Ps 16:6-8*\nI call upon You, for You will answer me, O God; incline Your ear to me; hear my word. Keep me, O Lord, as th", + "id": "Introitus" + }, + { + "body": "Hear us, almighty and merciful God, and in Your kindness grant us the graces of self-denial that lead to salvation.\nThro", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Kings\n*4 Kings 4:1-7*\nIn those days, a certain woman cried to the Prophet Eliseus, saying, Your ", + "id": "Lectio" + }, + { + "body": "*Ps 18:13-14*\nCleanse me from my unknown faults, O Lord! From wanton sin especially, restrain Your servant.\n℣. Let it no", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 18:15-22*\nAt that time, Jesus said to His disciples: If your ", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16-17*\nThe right hand of the Lord has struck with power: the right hand of the Lord has exalted me; I shall not ", + "id": "Offertorium" + }, + { + "body": "O Lord, may this sacrament result in our redemption; keep us always from the sins of our human nature, and bring us the ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 14:1-2*\nLord, who shall sojourn in Your tent? Who shall dwell on Your holy mountain? He who walks blamelessly and do", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord, that, purified by this holy sacrament, we may obtain both forgiveness and grace.\nThrough our Lor", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nDefend us, O Lord, with Your protection, and forever safegu", + "id": "Super populum" + } + ], + "2024-03-06": [ + { + "body": "*Ps 30:7-8*\nMy trust is in the Lord. I will rejoice and be glad of your kindness, when You have seen my affliction.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, O Lord, that, improved by wholesome fasting, and thus abstaining from harmful sin, we may the mor", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Felicitas & Perpetua*\nGrant, we beseech You, O Lord our God, that we may venerate with unceasing dev", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Exodus\n*Ex 20:12-24*\nThus says the Lord God: Honor your father and your mother, that you may hav", + "id": "Lectio" + }, + { + "body": "*Ps 6:3-4*\nHave pity on me, O Lord, for I am languishing; heal me, O Lord.\n℣. For my body is in terror; my soul, too, is", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 15:1-20*\nAt that time, the Scribes and Pharisees from Jerusal", + "id": "Evangelium" + }, + { + "body": "*Ps 108:21*\nO Lord, deal kindly with me for Your Name’s sake; because your kindness is generous.", + "id": "Offertorium" + }, + { + "body": "O Lord, receive, we beseech You, the prayers of Your people with offerings of sacrifices, and defend us, who celebrate Y", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Felicitas & Perpetua*\nLook with favor, we beseech You, O Lord, upon the gifts placed on Your altar f", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 15:11*\nYou will show me the path to life, You will fill me with fullness of joys in Your presence, O Lord.", + "id": "Communio" + }, + { + "body": "May the heavenly banquet with which we have been nourished, make us holy, O Lord; may it be an atonement for all our sin", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Felicitas & Perpetua*\nYou have filled us with spiritual joy and delight; grant, we beseech You, O Lo", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant, almighty God, we beseech You, that we who seek the g", + "id": "Super populum" + } + ], + "2024-03-07": [ + { + "body": "I am the salvation of the people, says the Lord. From whatever tribulation they shall cry to Me, I will hear them; and I", + "id": "Introitus" + }, + { + "body": "May the blessed feast of Your saints, Cosmas and Damian, glorify You, O Lord; for on this day in Your marvelous providen", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Thomas Aquinas*\nO God, Who enlightened Your Church with the wondrous learning of blessed Thomas, Your", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Prophecy of Jeremias\n*Jer 7:1-7*\nIn those days, the following message came to me from the Lord: Stand at", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nThe eyes of all look hopefully to You, O Lord, and You give them their food in due season.\n℣. You open Yo", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 4:38-44*\nAt that time, Jesus rose from the synagogue and entered", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nThough I walk amid distress, You preserve me, O Lord; against the anger of my enemies You raise Your hand; Yo", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, in honor of the meritorious death of Your just ones, this sacrifice which is the source of martyrd", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Thomas Aquinas*\nMay the pious prayer of holy N. thy Confessor and illustrious Doctor be not wanting t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nYou have commanded that Your precepts be diligently kept. Oh, that I might be firm in the ways of keeping Y", + "id": "Communio" + }, + { + "body": "O Lord, we ask You through the merits of Your blessed martyrs, Cosmas and Damian, that Your holy sacrament will assure u", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Thomas Aquinas*\n*Pro Doctore non Pontifice.*\nMay blessed N. thy Confessor and illustrious Doctor inte", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay Your heavenly favor, O God, increase the number of Your", + "id": "Super populum" + } + ], + "2024-03-08": [ + { + "body": "*Ps 85:17*\nGrant me, O Lord, a proof of Your favor, that my enemies may see, to their confusion, that You, O Lord, have ", + "id": "Introitus" + }, + { + "body": "O Lord, graciously be with us during this fast, and, we beseech You, help our spirit to abstain from sin as our body fas", + "id": "Oratio" + }, + { + "body": "*Commemoration St. John of God*\nO God, Who caused blessed John when burning with love for You, to walk unharmed through ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Numbers\n*Num 20:1, 3; 6-13.*\nIn those days, the Israelites held a council against Moses and Aaro", + "id": "Lectio" + }, + { + "body": "*Ps 27:7, 1*\nIn God my heart trusts, and I find help; then my heart exults, and with my song I give Him thanks.\n℣. To Yo", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 4:5-42*\nAt that time, Jesus came, accordingly, to a town of Sama", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4*\nHeed my call for help, my King, and my God! To You I pray, O Lord.", + "id": "Offertorium" + }, + { + "body": "Look with favor, we beseech You, O Lord, upon the gifts we offer You, that they may be pleasing to you and ever helpful ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. John of God*\nWe offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by th", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Jn 4:13-14*\nHe who drinks of the water that I will give him, says the Lord, it shall become in him a fountain of water,", + "id": "Communio" + }, + { + "body": "May the reception of this sacrament, O Lord, cleanse us from sin and bring us into the heavenly kingdom.\nThrough our Lor", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. John of God*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant, we beseech You, almighty God, that we who trust in Y", + "id": "Super populum" + } + ], + "2024-03-09": [ + { + "body": "*Ps 5:2-3*\nHearken to my words, O Lord, attend to my sighing. Heed my call for help, my King and my God!\n*Ps 5:4 To*\nTo ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we who chastise our flesh by abstaining from food, may fast from sin by strivi", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Frances Rome*\nO God, Who along with other gifts of Your grace honored blessed Frances, Your handmaid,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Prophecy of Daniel\n*Dan 13:1-9, 15-17, 19-30, 33-62.*\nIn those days, in Babylon there lived a man named ", + "id": "Lectio" + }, + { + "body": "*Ps 22:4*\nEven though I walk in the dark valley, I fear no evil; for You are at my side, O Lord.\n℣. With Your rod and Yo", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 8:1-11*\nAt that time, Jesus went to the Mount of Olives. And at ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:133*\nSteady my footsteps according to Your promise, and let no iniquity rule over me, O Lord.", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the offering of this sacrifice may always cleanse and strengthen the weakness ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Frances Rome*\nO Lord, may the offerings of Your devoted people be pleasing to You in honor of Your sa", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Jn 8:10-11*\nHas no one condemned you, woman? No one, Lord. Neither will I condemn you; now sin no more.", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we may be numbered among the members of Him, Whose Body and Blood we receive in commu", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Frances Rome*\nYou have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nStretch forth to Your faithful people, O Lord, the hand of ", + "id": "Super populum" + } + ], + "2024-03-10": [ + { + "body": "*Isa 66:10-11*\nRejoice, O Jerusalem, and come together, all you who love her: rejoice with joy, you who have been in sor", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we who justly suffer for our sins may find relief in the help of Your grace.\nT", + "id": "Oratio" + }, + { + "body": "Lesson from the Epistle of St. Paul to the Galatians\n*Gal 4:22-31*\nBrethren: It is written that Abraham had two sons, th", + "id": "Lectio" + }, + { + "body": "*Ps 121: 1, 7*\nI rejoiced because they said to me, We will go up to the house of the Lord.\n℣. May peace be within your w", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 6:1-15*\nAt that time, Jesus went away to the other side of the s", + "id": "Evangelium" + }, + { + "body": "*Ps 134:3, 6*\nPraise the Lord, for He is good; sing praise to His Name, for He is sweet; all that He wills He does in he", + "id": "Offertorium" + }, + { + "body": "Look with favor, we beseech You, O Lord, upon the offerings here before You, that they may be beneficial for our devotio", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 121:3-4*\nJerusalem, built as a city, with compact unity: to it the tribes go up, the tribes of the Lord, to give tha", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, merciful God, that we may treat with sincere reverence, and consume with heartfelt faith Your sac", + "id": "Postcommunio" + } + ], + "2024-03-11": [ + { + "body": "*Ps 53:3-4*\nO God, by your Name save me, and by your might deliver me, O God, hear my prayer; hearken to the words of my", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we who devoutly keep the sacred observances year by year, may be pleasing to Y", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Kings\n*3 Kings 3:16-28*\nIn those days, there came two women who were harlots, to king Solomon, a", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nBe my rock of refuge, O God, a stronghold to give me safety.\n*Ps 70:1*\n℣. In You, O God, I take refuge; O Lord", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 2:13-25*\nAt that time, the Passover of the Jews was at hand, and", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1-2*\nSing joyfully to God, all you lands; serve the Lord with gladness; come before Him with joyful song: for the", + "id": "Offertorium" + }, + { + "body": "May this sacrifice that we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 18:13-14*\nCleanse me from my unknown faults, O Lord! From wanton sin especially, restrain Your servant.", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You, that as we have partaken of Your saving sacraments, we may make progress toward our everlasting ", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGenerously heed our entreaty, O Lord, we beseech You, and g", + "id": "Super populum" + } + ], + "2024-03-12": [ + { + "body": "*Ps 54:2-3*\nHearken, O God, to my prayer; turn not away from my pleading; give heed to me, and answer me.\n*Ps 54:3-4*\nI ", + "id": "Introitus" + }, + { + "body": "May the sacred practice of fasting, we beseech You, O Lord, win for us increased holiness of life and the continuing hel", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Gregory the Great*\nO God, Who granted the rewards of everlasting happiness to the soul of Your servan", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Exodus\n*Ex 32:7-14*\nIn those days, the Lord said to Moses, Go down from the mountain to your peo", + "id": "Lectio" + }, + { + "body": "*Ps 43:26, 2*\nArise, O Lord, help us! Redeem us for Your Name’s sake.\n℣. O God, our ears have heard, our fathers have de", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 7:14-31*\nAt that time, when the feast was already half over, Jes", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2-4*\nI have waited, waited for the Lord, and He stooped toward me and heard my cry. And He put a new song into my", + "id": "Offertorium" + }, + { + "body": "May this offering, O Lord, we beseech You, wipe away our sins, and make holy the minds and bodies of Your servants for c", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Gregory the Great*\nGrant, we beseech You, O Lord, that through the intercession of blessed Gregory, t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 19:6*\nMay we shout for joy at Your victory and raise the standards in the Name of the Lord our God.", + "id": "Communio" + }, + { + "body": "May the reception of this sacrament, O Lord, cleanse us from guilt and bring us to the kingdom of heaven.\nThrough our Lo", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Gregory the Great*\nO God, Who made Your Bishop, blessed Gregory, an equal to the saints in merit, gra", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nHave mercy on Your people, O Lord, and graciously grant the", + "id": "Super populum" + } + ], + "2024-03-13": [ + { + "body": "*Ezechiel 36:23-26*\nWhen I shall be sanctified in you, I will gather you from every land: and I will pour upon you clean", + "id": "Introitus" + }, + { + "body": "O God, Who graciously grant to the righteous the rewards of their merits, and to sinners forgiveness through fasting, ha", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Ezechiel\n*Ezech 36:23-28*\nThus says the Lord God: I will prove the holiness of My great Name", + "id": "LectioL1" + }, + { + "body": "*Ps 33:12, 6*\nCome, children, hear Me, I will teach you the fear of the Lord.\n℣. Look to Him that you may be radiant wit", + "id": "GradualeL1" + }, + { + "body": "Grant, we beseech You, almighty God, that we who are chastising the flesh by fasting, may rejoice in this holy practice,", + "id": "OratioL1" + }, + { + "body": "Lesson from the Prophecy of Isaias\n*Isa. 1:16-19*\nThus says the Lord God: Wash yourselves clean! Put away your misdeeds ", + "id": "Lectio" + }, + { + "body": "*Ps 32:12, 6*\nHappy the nation whose God is the Lord, the people whom He has chosen for His own inheritance.\n℣. By the w", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 9:1-38*\nAt that time, Jesus, passing by, saw a man blind from bi", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9, 20*\nBless the Lord our God, you peoples, loudly sound His praise; He has given life to my soul, and has not ", + "id": "Offertorium" + }, + { + "body": "We humbly entreat You, almighty God, that these sacrificial gifts may cleanse us from sin, for in this way You grant us ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Jn 9:11*\nThe Lord made clay of spittle, and anointed my eyes: and I went, and I washed, and I saw, and I have believed ", + "id": "Communio" + }, + { + "body": "May the sacrament we have received, O Lord, both fill us with spiritual nourishment and sustain us with bodily aid.\nThro", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay Your merciful ears be open, O Lord, to the prayers of t", + "id": "Super populum" + } + ], + "2024-03-14": [ + { + "body": "*Ps 104:3-4*\nRejoice, O hearts that seek the Lord! Look to the Lord, and be strengthened; seek His face evermore.\n*Ps 10", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we who are chastising the flesh by fasting, may rejoice in this holy practice ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Kings\n*4 Kings 4:25-38*\nIn those days, a Sunamite woman came to Eliseus to Mount Carmel: and whe", + "id": "Lectio" + }, + { + "body": "*Ps 73:20, 19, 22*\nLook, O Lord, to Your covenant; be not forever unmindful of the lives of Your afflicted ones.\n℣. Aris", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 7:11-16*\nAt that time, Jesus went into a city called Naim; and H", + "id": "Evangelium" + }, + { + "body": "*Ps 69:2-4*\nO Lord, make haste to help me. Let all those be put to shame who desire the ruin of Your servants.", + "id": "Offertorium" + }, + { + "body": "Cleanse us, O merciful God, so that the prayers of Your Church, which we bring You as a pleasing gift, may be even more ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nO Lord, I will tell of Your singular justice. O God, You have taught me from my youth; and now that I am o", + "id": "Communio" + }, + { + "body": "O Lord, we beseech you, do not allow the heavenly gifts, which You have given for healing Your faithful people, to becom", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO God, teacher and ruler of Your people, drive out the sins", + "id": "Super populum" + } + ], + "2024-03-15": [ + { + "body": "*Ps 18:15*\nLet the thought of my heart find favor before You, O Lord, my Rock and my Redeemer.\n*Ps 18:2*\nThe heavens dec", + "id": "Introitus" + }, + { + "body": "O God, Who by your wondrous sacraments renew the world, grant that Your church may benefit from Your eternal decrees and", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Kings\n*3 Kings 17:17-24*\nIn those days, the son of the woman, the mistress of the house, fell si", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nIt is better to take refuge in the Lord rather than to trust in man.\n℣. It is better to take refuge in the ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 11:1-45*\nAt that time, a certain man was sick, Lazarus of Bethan", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28, 32*\nLowly people You save, O Lord, but haughty eyes You bring low; for who is God except You, O Lord?", + "id": "Offertorium" + }, + { + "body": "May the gifts we offer, O Lord, cleanse us, we beseech You, that You may be always merciful to us.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Jn 11:33, 35, 43-44, 39*\nThe Lord, seeing the sisters of Lazarus weeping at the tomb, wept before the Jews, and cried o", + "id": "Communio" + }, + { + "body": "May the reception of this sacrament, we beseech You, O Lord, always free us from sin and protect us from all that works ", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant us, we beseech You, almighty God, that, conscious of ", + "id": "Super populum" + } + ], + "2024-03-16": [ + { + "body": "*Isa 55:1*\nAll you who thirst, come to the waters, says the Lord: and you who have no money, come and drink with joy.\n*P", + "id": "Introitus" + }, + { + "body": "Make fruitful, we beseech You, O Lord, the zeal of our fervent devotion; for only if it pleases You shall the fasting we", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Isaias\n*Isa 49:8-15*\nThus says the Lord: In a time of favor I answer you, on the day of salv", + "id": "Lectio" + }, + { + "body": "*Ps 9:14, 1-2.*\nOn You, O Lord, the unfortunate man depends; of the fatherless You are the helper.\n℣. Why, O Lord, do Yo", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 8:12-20*\nAt that time, Jesus spoke to the multitudes of the Jews", + "id": "Evangelium" + }, + { + "body": "*Ps 17:3*\nThe Lord is become my rock, my fortress, my deliverer; and in Him will I put my trust.", + "id": "Offertorium" + }, + { + "body": "Graciously accept our offerings, O Lord, we beseech You, and mercifully direct our still rebellious wills to You.\nThroug", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 22:1-2*\nThe Lord is my Shepherd; I shall not want. In verdant pastures He gives me repose; beside restful waters He ", + "id": "Communio" + }, + { + "body": "May Your holy sacrament cleanse us, we beseech You, O Lord, and may its power make us pleasing to You.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO God, Who would rather show mercy than anger toward those ", + "id": "Super populum" + } + ], + "2024-03-17": [ + { + "body": "*Ps 42:1-2*\nDo me justice, O God, and fight my fight against a faithless people; from the deceitful and impious man resc", + "id": "Introitus" + }, + { + "body": "Look graciously upon Your household, almighty God, we beseech You, that by Your grace we may be governed in body, and by", + "id": "Oratio" + }, + { + "body": "Reading from the letter of St. Paul to the Hebrews\n*Heb 9:11-15.*\nBrethren: When Christ appeared as high priest of the g", + "id": "Lectio" + }, + { + "body": "*Ps 142:9-10.*\nRescue me from my enemies, O Lord; teach me to do Your will.\n*Ps 17:48-49*\nO Lord, my deliverer from the ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 8:46-59.*\nAt that time, Jesus said to the crowds of the Jews: Wh", + "id": "Evangelium" + }, + { + "body": "*Ps 118:17, 107*\nI praise You, O Lord, with all my heart; be good to Your servant, that I may live and keep Your words. ", + "id": "Offertorium" + }, + { + "body": "May these offerings, we beseech You, O Lord, loose the bonds of our wickedness, and obtain for us the gifts of Your merc", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*1 Cor. 11:24-25*\nThis is My Body, which shall be given up for you: this is the cup of the new covenant in My Blood, say", + "id": "Communio" + }, + { + "body": "Stand by us, O Lord our God, and protect by Your everlasting help those to whom You have given new strength through Your", + "id": "Postcommunio" + } + ], + "2024-03-18": [ + { + "body": "*Ps 55:2*\nHave pity on me, O Lord, for men trample upon me; all the day they press their attack against me.\n*Ps 55:3*\nMy", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, make holy our fasting, and graciously lavish upon us forgiveness for all our sins.\nThrough our L", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Cyril of Jerusalem*\nGrant us, we beseech You, almighty God, through the intercession of the blessed B", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Prophecy of Jonas\n*Jonas 3:1-10*\nIn those days, the word of the Lord came to Jona a second time: Set out", + "id": "Lectio" + }, + { + "body": "*Ps 53:4, 3*\nO God, hear my prayer; hearken to the words of my mouth.\n℣. O God, by Your Name save me, and by your might ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 7:32-39*\nAt that time, the rulers and Pharisees sent attendants ", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nReturn, O Lord, save my life; rescue me because of Your kindness.", + "id": "Offertorium" + }, + { + "body": "Grant us, O Lord our God, that this saving sacrifice may cleanse us of our sins and gain us the favor of Your majesty.\nT", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Cyril of Jerusalem*\nO Lord, look favorably upon the unblemished offering we present to You and grant ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 23:10*\nThe Lord of Hosts, He is the King of Glory.", + "id": "Communio" + }, + { + "body": "May the sacrament of salvation which we have received, we beseech You, O Lord, cleanse and restore us.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Cyril of Jerusalem*\nO Lord, Jesus Christ, may the sacrament of Your Body and Blood which we have rece", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO Lord, we beseech You, grant unto Your people health of so", + "id": "Super populum" + } + ], + "2024-03-19": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "May the merits of Your most holy Mother’s spouse help us, we beseech You, O Lord, that through his intercession we may r", + "id": "Oratio" + }, + { + "body": "*Commemoration Feria III of Passion Week*\nMay our fasting be acceptable to You, we beseech You, O Lord; may it be atonem", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 1:18-21*\nWhen Mary the Mother of Jesus had been betrothed t", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (P.T. Allel", + "id": "Offertorium" + }, + { + "body": "O Lord, we dutifully worship You, humbly entreating You by the prayers of blessed Joseph, Spouse of the Mother of Jesus ", + "id": "Secreta" + }, + { + "body": "*Commemoration Feria III of Passion Week*\nO Lord, we bring You the gifts for sacrifice, as tokens of consolation in this", + "id": "Commemoratio Secreta" + }, + { + "body": "*St. Joseph*\nIt is truly meet and just, right and for our salvation, that we should at all times and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Matt 1:20*\nDo not be afraid, Joseph, son of David, to take to you Mary your wife, for that which is begotten in her is ", + "id": "Communio" + }, + { + "body": "Be with us, we beseech You, O merciful God, and by the intercession of blessed Joseph, Your Confessor, graciously keep s", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Feria III of Passion Week*\nGrant us, we beseech You, almighty God that by constantly performing these hol", + "id": "Commemoratio Postcommunio" + } + ], + "2024-03-20": [ + { + "body": "*Ps 17:48-49*\nMy deliverer from the angry nations; truly above my adversaries You exalt me and from the violent man You ", + "id": "Introitus" + }, + { + "body": "In Your mercy, O Lord, may this hallowing fast enlighten the hearts of Your faithful people, and since You have given th", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Leviticus\n*Lev 19:1-2, 11-19, 25*\nIn those days, the Lord said to Moses, Speak to the whole Isra", + "id": "Lectio" + }, + { + "body": "*Ps 29:2-4*\nI will extol You, O Lord, for You drew me clear and did not let my enemies rejoice over me.\n℣. O Lord, my Go", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 10:22-38*\nAt that time, there took place at Jerusalem the feast ", + "id": "Evangelium" + }, + { + "body": "*Ps 58:2*\nRescue me from my enemies, O my God; from my adversaries defend me, O Lord.", + "id": "Offertorium" + }, + { + "body": "O merciful God, permit us to offer in sincere submission the gift of satisfaction and praise.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 25:6-7*\nI wash my hands in innocence, and I go around Your altar, O Lord, giving voice to my thanks, and recounting ", + "id": "Communio" + }, + { + "body": "We who have shared in the blessing of the heavenly gift humbly pray You, almighty God, that it may be for us the source ", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nComply with our humble prayers, almighty God, and graciousl", + "id": "Super populum" + } + ], + "2024-03-21": [ + { + "body": "*Dan 3:31*\nAll that You have done to us, O Lord, You have done in true judgment: because we have sinned against You, and", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that the dignity of human nature, weakened by excessive self-indulgence, may be res", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Benedict*\nMay the intercession of the blessed Abbot Benedict, commend us to You, O Lord, so that thro", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Prophecy of Daniel\n*Dan 3:25, 34-45.*\nIn those days, Azaria prayed to the Lord, saying: O Lord, our God,", + "id": "Lectio" + }, + { + "body": "*Ps 95:8-9*\nBring gifts and enter His courts; worship the Lord in His holy court.\n*Ps 28:9*\nThe Lord strips the forests,", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 7:36-50*\nAt that time, one of the Pharisees asked Jesus to dine ", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nBy the streams of Babylon we sat and wept when we remembered Sion.", + "id": "Offertorium" + }, + { + "body": "O Lord, our God, Who have especially commanded that these created things, which You have fashioned for the support of ou", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Benedict*\nWe beseech You, O Lord, may the holy Abbot Benedict, prevail by his prayers, so that the of", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nRemember Your word to Your servant, O Lord, since You have given me hope. This is my comfort in my afflic", + "id": "Communio" + }, + { + "body": "May we receive with pure mind, O Lord, what we have taken by mouth, and as a gift in time, may it become for us a remedy", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Benedict*\nMay the pleading of the blessed Abbot Benedict for us, together with the partaking of Your ", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nBe merciful to Your people, we beseech You, O Lord, that as", + "id": "Super populum" + } + ], + "2024-03-22": [ + { + "body": "*Ps 30:10, 16, 18*\nHave pity on me, O Lord, for I am in distress; rescue me from the clutches of my enemies and my perse", + "id": "Introitus" + }, + { + "body": "Graciously pour forth Your grace into our hearts, we beseech You, O Lord, that, keeping our sinful inclinations under co", + "id": "Oratio" + }, + { + "body": "*For Our Lady of the Seven Sorrows*\nO God, in Whose Passion the sword, according to the prophecy of blessed Simeon, pier", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from Jeremiah the Prophet\n*Jer 17:13-18*\nIn those days, Jeremia said: O Lord, all who forsake You shall be in dis", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nMy enemies spoke peaceably to me: and in anger they afflicted me.\n℣. You, O Lord, have seen; be not silen", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to\n*John 11:47-54*\nAt that time, the chief priests and Pharisees gathered toge", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBlessed are You, O Lord; teach me Your statutes. Let not the proud oppress me; so shall I have an a", + "id": "Offertorium" + }, + { + "body": "Grant us, O merciful God, that we may ever have the grace to serve Your altars worthily, and may we be saved by constant", + "id": "Secreta" + }, + { + "body": "*For the Seven Sorrows*\nO Lord Jesus Christ, we offer You prayers and sacrificial gifts, humbly beseeching You that, as ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nGive me not up, O Lord, to the wishes of my foes; for false witnesses have risen up against me, and such as b", + "id": "Communio" + }, + { + "body": "May the abiding protection of the sacrament we have received, O Lord, never forsake us, and always keep us from all thin", + "id": "Postcommunio" + }, + { + "body": "*For the Seven Sorrows*\nO Lord Jesus Christ, may the sacrifices of which we have partaken, while devoutly celebrating th", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant, we beseech You, almighty God, that we who seek the g", + "id": "Super populum" + } + ], + "2024-03-23": [ + { + "body": "*Ps 30:10, 16, 18*\nHave pity on me, O Lord, for I am in distress; rescue me from the clutches of my enemies and my perse", + "id": "Introitus" + }, + { + "body": "O Lord, may the people dedicated to You desire to serve You more and more, that, taught by these sacred rites, they may ", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Jeremias\n*Jer 18:18-23*\nIn those days, the wicked Jews said to one another, Come, let us con", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nMy enemies spoke peaceably to me: and in anger they afflicted me.\n℣. You, O Lord, have seen; be not silen", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 12:10-36*\nAt that time, the chief priests planned to put Lazarus", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBlessed are You, O Lord; teach me Your statutes. Let not the proud oppress me; so shall I have an a", + "id": "Offertorium" + }, + { + "body": "Be propitiated, we beg You, O Lord, and pardon all our offenses, whom You grant to be sharers in so great a mystery.\nThr", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nGive me not up, O Lord, to the wishes of my foes; for false witnesses have risen up against me, and such as b", + "id": "Communio" + }, + { + "body": "O Lord, our God, we beseech You, that we who have been filled with the riches of Your divine gift may always find life w", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLet Your right hand, we beseech You, O Lord, guard Your peo", + "id": "Super populum" + } + ], + "2024-03-24": [ + { + "body": "*The Celebrant in red cope, with his ministers also vested in red, the red of royaltriumph, proceeds to the Blessing", + "id": "Benedictio Palmorum" + }, + { + "body": "*The celebrant distributes the palms, first to the clergy, then to the faithful. Meanwhile the choir sings*\n", + "id": "De distributione ramorum" + }, + { + "body": "*When the palms have been distributed the deacon puts the gospel book on the altar and the priest puts incense into the ", + "id": "De lectione Evangelica" + }, + { + "body": "*The procession now takes place. When the priest places incense in the thurible, the deacon, turning toward the people,", + "id": "De processione cum ramis benedictis" + }, + { + "body": "\n*Choir:*\nGlory, praise and honor to Thee, O King Christ, the Redeemer: to whom children poured their glad and sweet hos", + "id": "Hymnus ad Christum Regem" + }, + { + "body": "*Ps 21:20, 22*\nO Lord, be not far from me; O my help, hasten to aid me. Save me from the lion's mouth; form the horns of", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, Who, to provide mankind an example of humility for it to imitate, willed that the Saviour should ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul to the Philippians\n*Phil 2:5-11*\nBrethren: Have this in mind in you which was also in", + "id": "Lectio" + }, + { + "body": "*Ps 72:24, 1-3*\nYou have hold of my right hand; with Your counsel You guide me; and in the end You will receive me in gl", + "id": "Graduale" + }, + { + "body": "The Passion of Our Lord Jesus Christ according to Matthew.\n*Matt. 26:36-75; 27:1-60.*\nThen Jesus came with them into a c", + "id": "Evangelium" + }, + { + "body": "*Ps 68:21-22*\nInsult has broken my heart, and I am weak; I looked for sympathy, but there was none; for comforters, and ", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Matt 26:42*\nFather, if this cup cannot pass away, unless I drink it, Your will be done.", + "id": "Communio" + }, + { + "body": "By the working of this sacred rite, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", + "id": "Postcommunio" + } + ], + "2024-03-25": [ + { + "body": "*Ps 34:1-2*\nJudge thou, O Lord, them that wrong me : overthrow them that fight against me. Take hold of arms and shield ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, almighty God, that we who fail through our weakness in so many difficulties, may be relieved thr", + "id": "Oratio" + }, + { + "body": "Lesson from the Book of Isaias, the Prophet\n*Isa 50:5-10*\nThe Lord God hath opened my ear, and I do not resist: I have n", + "id": "Lectio" + }, + { + "body": "*Ps 34:23; 34:3*\nArise, and be attentive to my judgment : to my cause, my God, and my Lord.\n℣. Bring out the sword, and ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 12:1-9*\nJesus therefore, six days before the pasch, came to Beth", + "id": "Evangelium" + }, + { + "body": "*Ps 142:9-10*\nDeliver me from my enemies, O Lord, to thee have I fled: teach me to do thy will, for thou art my God.", + "id": "Offertorium" + }, + { + "body": "May these sacrifices, almighty God, make us, whom thou cleansest by thy mighty power, to approach their source with grea", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 34:26*\nLet them blush: and be ashamed together, who rejoice at my evils. Let them be clothed with confusion and sham", + "id": "Communio" + }, + { + "body": "Let thy holy mysteries, O Lord, inspire us with divine fervor, that we may delight both in their celebration and in thei", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nHelp us, O God, our Saviour, and grant that we may draw nig", + "id": "Super populum" + } + ], + "2024-03-26": [ + { + "body": "*Gal 6:14.*\nBut God forbid that I should glory, save in the cross of our Lord Jesus Christ; by whom the world is crucifi", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, grant us so to celebrate the mysteries of our Lord's Passion, that we may deserve to obtain fo", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Jeremias the Prophet.\n*Jer 11:18-20*\nBut thou, O Lord, hast shewn me, and I have known: then tho", + "id": "Lectio" + }, + { + "body": "*Ps 34:13; 34:1-2*\nBut as for me, when they were troublesome to me, I was clothed with haircloth. I humbled my soul with", + "id": "Graduale" + }, + { + "body": "\n\n \nPassion of our Lord Jesus Christ, according to Mark\n\n*Mark 14:32-72; 15, 1-46*\n\nAnd they came to a farm called Geths", + "id": "Evangelium" + }, + { + "body": "*Ps 139:5*\nKeep me, O Lord, from the hand of the wicked: and from unjust men deliver me.", + "id": "Offertorium" + }, + { + "body": "May these sacrifices, we beseech thee, O Lord, which are observed along with health-giving fasts, speedily restore us.\nT", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 68:13-14*\nThey that sat in the gate spoke against me: and they that drank wine made me their song. But as for me, my", + "id": "Communio" + }, + { + "body": "By thy holy mysteries, almighty God, may our vices be cured, and everlasting healing be granted to us.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay thy mercy, O God, cleanse us from all traces of our old", + "id": "Super populum" + } + ], + "2024-03-27": [ + { + "body": "*Phil 2:10; 2:8; 2:11*\nThat in the name of Jesus every knee should bow, of those that are in heaven, on earth, and under", + "id": "Introitus" + }, + { + "body": "Grant we beseech thee Almighty God, that we who are continually afflicted by reason of our waywardness, may be delivered", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias the Prophet\n*Isa 63:1-7*\nThus sayeth the Lord God: telleth the daughter of Sion: Behold t", + "id": "LectioL1" + }, + { + "body": "*Ps 68:18; 68:2-3*\nAnd turn not away thy face from thy servant: for I am in trouble, hear me speedily.\n℣. Save me, O God", + "id": "GradualeL1" + }, + { + "body": "O God, who to drive far from us the power of the enemy, didst will that thy Son should suffer for us on the gibbet of th", + "id": "OratioL1" + }, + { + "body": "Lesson from the book of Isaias the Prophet\n*Isa 53:1-12*\nWho hath believed our report? and to whom is the arm of the Lor", + "id": "Lectio" + }, + { + "body": "*Ps. 101:2-5,14*\nHear, O Lord, my prayer: and let my cry come to thee.\n℣. Turn not away thy face from me: in the day whe", + "id": "Graduale" + }, + { + "body": "\n\n \nThe Passion of Our Lord Jesus Christ according to Luke.\n\n*Luc 22:39-71; 23:1-53*\n\n\nAt that time, going out, Jesus we", + "id": "Evangelium" + }, + { + "body": "*Ps 101:2-3*\nHear, O Lord, my prayer: and let my cry come to thee. Turn not away thy face from me.", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech thee, O Lord, the gift we offer; and graciously effect, that what we celebrate in mystery of the Pass", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 101:13; 101:14*\nI mingled my drink with weeping: for having lifted me up, tho hast thrown me down, and I am withered", + "id": "Communio" + }, + { + "body": "Grant to us, almighty God, to feel that through the temporal death of thy Son which these venerable mysteries testify, w", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLook down we beseech thee, O Lord, on this thy family on wh", + "id": "Super populum" + } + ], + "2024-03-28": [ + { + "body": "*Gal 6:14.*\nBut it behooves us to glory in the cross of Our Lord Jesus Christ: in Whom is our salvation, life, and resur", + "id": "Introitus" + }, + { + "body": "O God, from whom Judas received the punishment of his guilt, and the thief the reward of his confession: grant unto us t", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of blessed Paul the Apostle to the Corinthians\n*1 Cor 11:20-32.*\nBrethren, When you come th", + "id": "Lectio" + }, + { + "body": "*Phil 2:8-9*\nChrist became obedient for us unto death, even to the death of the cross.\n℣. For which cause God also exalt", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the holy Gospel according to John\n*Joann 13:1-15*\nBefore the festival-day of the Pasch, Jesus knowing ", + "id": "Evangelium" + }, + { + "body": "*The washing of the feet takes place after the homily, though it may be done at some other time to-day. The celebrant gi", + "id": "Maundi" + }, + { + "body": "*Ps 117:16 et 17.*\nThe right hand of the Lord hath wrought strength: the right hand of the Lord hath exalted me. I shall", + "id": "Offertorium" + }, + { + "body": "We beseech Thee, O holy Lord, Father almighty, everlasting God, that He Himself may render our Sacrifice acceptable to T", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "Communicating and celebrating the most sacred day in which our Lord Jesus Christ was betrayed for us: and also honoring ", + "id": "Communicantes" + }, + { + "body": "*Joann 13:12, 13 et*\nThe Lord Jesus, after He had supped with His disciples, washed their feet, and said to them: Know y", + "id": "Communio" + }, + { + "body": "Strengthened with life-giving Food, we beseech Thee, O Lord, our God, that what we do in our mortal life may bring us to", + "id": "Postcommunio" + }, + { + "body": "*Po skończeniu Mszy św. kapłan zmienia ornat na kapę i okadziwszy Najświętszy Sakrament przenosi Go w uroczystej procesj", + "id": "Post Missam" + }, + { + "body": "\n*On the returning from the Altar of Repose the Celebrant and his assistants go to the Sacristy where white vestmen", + "id": "Denudatione altaris" + } + ], + "2024-03-29": [ + { + "body": "\n*The sacred ministers, wearing black stoles, come to the altar, lie prostrate before it, and pray silently for a few mo", + "id": "Lectiones" + }, + { + "body": "*The Deacons of the Passion then kneel and bow low before the celebrant, who pronounces in a clear voice:*\n\nP. May the L", + "id": "Passio" + }, + { + "body": "*While the Sacred Ministers put on black vestments, two acolytes spread a cloth on the altar and place the Missal in the", + "id": "Oratio Fidelium" + }, + { + "body": "\n*After these Collects, the Ministers lay aside their cope and chasubles and stand at the sedilia. The Deacon goes with", + "id": "Crucis Adoratione" + }, + { + "body": "*At the High Altar the Deacon places the Ciborium on a corporal, and the Celebrant and Subdeacon with double genuflectio", + "id": "CommunioQ" + } + ], + "2024-03-30": [ + { + "body": "*At the appointed hour, the altar is prepared, but candles are not lit until the beginning of Mass. Meanwhile, fire is s", + "id": "Benedictio ignis" + }, + { + "body": "*One of the ministers carries the paschal candle and stands in front of the celebrant, who inscribes a cross between the", + "id": "De benedictione cerei Paschalis" + }, + { + "body": "*Celebrant puts incense in the thurible. The Deacon takes off*\n*violet vestments and he puts white stole and the dalmati", + "id": "De solemni processione" + }, + { + "body": "*The deacon receives the book and asks for the blessing*\n\nSir, give me Thy blessing.\n\n*Celebrant responses*\n\nC. May the ", + "id": "De praeconio paschali" + }, + { + "body": "*The deacon, at the sedilia or some other appropriate place, lays aside his white vestments and again vests in violet. T", + "id": "De lectionibus" + }, + { + "body": "*After the prayer concluding the fourth reading, all kneel, and the Litany of the Saints is sung, up to the invocation '", + "id": "De prima parte Litaniarum" + }, + { + "body": "℣. The Lord be with you.\n℟. And with thy spirit.\nLet us pray\nAlmighty and everlasting God, be present at these Mysteries", + "id": "De benedictione aquae baptismalis" + }, + { + "body": "\n*The celebrant Then he stands in front of the candle, facing the people, or from the ambo or pulpit, proceeds with the ", + "id": "De renovatione promissionum baptismatis" + }, + { + "body": "*After the renewal of baptismal promises, if there are cantors or clerics present to sing the litany, the celebrant and ", + "id": "De altera parte Litaniarum" + }, + { + "body": "*At the end of the litany, the cantors solemnly intone the 'Kyrie, eleison' as the celebrant and the sacred ministers or", + "id": "De Missa solemni Vigiliae paschalis" + }, + { + "body": "℣. The Lord be with you.\n℟. And with thy spirit.\nLet us pray\nO God, who dost illuminate this most holy night by the glor", + "id": "Oratio" + }, + { + "body": "Lesson from the Epistle of Blessed Paul the Apostle to the Colossians.\n*Col 3:1-4*\nBrethren, if you be risen with Christ", + "id": "Lectio" + }, + { + "body": "*Ps 116*\n℣. O praise the Lord, all ye nations, and praise Him all ye people.\n℣. For His mercy is confirmed upon us: and ", + "id": "Tractus" + }, + { + "body": "*While singing the Gospel candles are not being hold.*\n\nContinuation of the holy Gospel according to St. Matthew.\n*Matt ", + "id": "Evangelium" + }, + { + "body": "Accept, we beseech Thee, O Lord, the prayers of Thy people together with the sacrifice they offer: that what has begun b", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*The choir begins singing the office of Lauds upon completion of the ablutions.*\n\n\nAnt. Alleluia, alleluia, alleluia.\n\n*", + "id": "Pro Laudibus" + }, + { + "body": "℣. The Lord be with you.\n℟. And with thy spirit.\nLet us pray\nPour forth upon us, O Lord, the spirit of Thy love: that th", + "id": "Postcommunio" + }, + { + "body": "℣. Go, the Mass is offered, alleluia, alleluia.\n℟. Thanks be to God, alleluia, alleluia.", + "id": "Conclusio" + } + ], + "2024-03-31": [ + { + "body": "*Ps 138:18; 138:5-6*\nI arose, and am still with Thee, alleluia; Thou hast laid Thy hand upon me, alleluia; Thy knowledge", + "id": "Introitus" + }, + { + "body": "O God, who, on this day, through Thine only-begotten Son, hast conquered death, and thrown open to us the gate of everla", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor 5:7-8*\nBrethren, purge out the old leaven", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia\n*Ps. 117:24; 117:1*\nThis is the day which the Lord hath made: let us rejoice and be glad in it.\n℣. Gi", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:1-7*\nAt that time, Mary Magdalen, and Mary the mother of Ja", + "id": "Evangelium" + }, + { + "body": "*Ps. 75:9-10.*\nThe earth trembled and was still when God arose in judgment, alleluia.", + "id": "Offertorium" + }, + { + "body": "We beseech Thee, O Lord, accept the prayers of Thy people together with the Sacrifice they offer, that what has been beg", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*1 Cor 5:7-8*\nChrist our Pasch is immolated, alleluia: therefore let us feast with the unleavened bread of sincerity and", + "id": "Communio" + }, + { + "body": "Pour forth upon us, O Lord, the spirit of Thy love, that, by Thy loving kindness, Thou mayest make to be of one mind tho", + "id": "Postcommunio" + } + ], + "2024-04-01": [ + { + "body": "*Exod 13:5; 13:9*\nAnd when the Lord shall have brought thee a land that floweth with milk and honey, alleluia; and that ", + "id": "Introitus" + }, + { + "body": "O God, Who dost heal the sick world by the solemn gladness of the Passover, continue, we beseech thee, to pour forth thi", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 10:37-43.*\nIn those days Peter standing among the people, said: You know the word", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:2.*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n℣. Let Israel now say,", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 24:13-35*\nIn that time two of them went, the same day, to a to", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAn angel of the Lord descended from heaven, and said to the women: Jesus, whom you seek He is not he", + "id": "Offertorium" + }, + { + "body": "Adept, O Lord we beseech thee, the prayers with the sacrifices of the people, and grant that what we have begun at these", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Luke 24:34*\nThe Lord is risen indeed, and hath appeared to Simon.", + "id": "Communio" + }, + { + "body": "Pour forth upon us, O Lord, the spirit of Thy love, that, by Thy loving kindness, Thou mayest make to be of one mind tho", + "id": "Postcommunio" + } + ], + "2024-04-02": [ + { + "body": "*Sir 15:3-4*\nHe gave them the water of wholesome wisdom to drink, alleluia; and it shall be made strong in him, and shal", + "id": "Introitus" + }, + { + "body": "O God, Who art ever multiplying the Children of thy Church, grant unto the same thy servants that they may lead the rest", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 13:16; 13:26-33*\nIn that time Paul rising up, and with his hand bespeaking silenc", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia\n*Ps 117:24;*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n*Ps 106:2*", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 24:36-47*\nIn that time Jesus stood in the midst of them, and s", + "id": "Evangelium" + }, + { + "body": "*Ps 17:14; 17:16*\nAnd the Lord thundered from heaven, and the highest gave his voice: Then the fountains of waters appe", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the prayers and the sacrifice of thy faithful; that by these services of pious devotion, we may come to ", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Col 3:1-2*\nIf you be risen with Christ, seek the things that are above; where Christ is sitting at the right hand of Go", + "id": "Communio" + }, + { + "body": "Grant, we beseech thee, Almighty God, that the grace of paschal sacrament which we have received may ever abide in our s", + "id": "Postcommunio" + } + ], + "2024-04-03": [ + { + "body": "*Matt 25:34*\nCome, ye blessed of my Father, possess you the kingdom alleluia, prepared for you from the foundation of th", + "id": "Introitus" + }, + { + "body": "O God, Who gledden us with the annual solemnity of the Lord's Resurrection, mercifully grant that by celebrating these t", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 3:13-15; 3:17-19*\nIn that time, Peter opened his mouth and said: Men of Israel, a", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:16*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n℣. The right hand of t", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 21:1-14*\nIn that time, Jesus shewed himself again to the disci", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nAnd he had opened the doors of heaven, and had given them the bread of heaven. Man ate the bread of angel", + "id": "Offertorium" + }, + { + "body": "Amidst the joys of Easter, we offer unto thee, O Lord, the sacrifice wherewith thy Church is wonderfully fed and nourish", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Rom 6:9*\nChrist rising again from the dead, dieth now no more, death shall no more have dominion over him, allelúja, al", + "id": "Communio" + }, + { + "body": "O Lord, we beseech Thee, that we, reverently receiving thy Sacrament, may be cleansed from all our former defilement, an", + "id": "Postcommunio" + } + ], + "2024-04-04": [ + { + "body": "*Wis 10:20-21*\nThey sung to thy holy name, O Lord, and they praised with one accord thy victorious hand, alleluia. For w", + "id": "Introitus" + }, + { + "body": "O God, Who dost make all nations, how diverse soever they be, to become one family in giving of praise to thy Name, gran", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 8:26-40*\nIn that time, an angel of the Lord spoke to Philip, saying: Arise, go to", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:22-23.*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n℣. The stone which", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20:11-18*\nIn that time: Mary stood at the sepulchre without, w", + "id": "Evangelium" + }, + { + "body": "*Exod 13:5*\nIn the day of your solemnity, said the Lord, I will bring you into a land that floweth with milk and honey, ", + "id": "Offertorium" + }, + { + "body": "Graciously receive, we beseech thee, O Lord, the offering of thy people, and grant that they who are renewed by baptism ", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*1 Pet 2:9*\nBut you are a chosen generation, a kingly priesthood, a holy nation, a purchased people: that you may declar", + "id": "Communio" + }, + { + "body": "O Lord, hear our prayers; that the holy channels of our redemption may obtain us help in this our present life, and secu", + "id": "Postcommunio" + } + ], + "2024-04-05": [ + { + "body": "*Ps 77:53*\nAnd he brought them out in hope, and they feared not: and the sea overwhelmed their enemies, allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, in the Easter sacrament thou instituted the covenant, whereby thou forgavest mankind; grant to", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 3:18-22*\nBeloved: Christ also died once for our sins, the j", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:26-27*\nThis is the day which the Lord hath made: let us be glad and rejoice therein. Blessed be he that ", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 28:16-20*\nIn that time: the eleven disciples went into Gal", + "id": "Evangelium" + }, + { + "body": "*Exod 12:14*\nAnd this day shall be for a memorial to you: and you shall keep it a feast to the Lord in your generations ", + "id": "Offertorium" + }, + { + "body": "In thy forgiving mercy, O Lord we pray, accept the sacrifice which we offer, to atone for the sins of those who are born", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 28:18-19*\nAll power is given to me in heaven and in earth. Going therefore, teach ye all nations; baptizing them i", + "id": "Communio" + }, + { + "body": "O Lord, we beseech thee, behold thy people, and as thou hast decided to quicken them with the mysteries of eternity, mer", + "id": "Postcommunio" + } + ], + "2024-04-06": [ + { + "body": "*Ps 104:43*\nHe brought forth his people with joy, and his chosen with gladness, allelúja, allelúja.\n*Ps 4:1*\nGive glory ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, O Almighty God, that we who have kept worshipfully the Easter solemnities, may at last worthily ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:1-10*\nBeloved: Wherefore laying away all malice, and all ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia\n*Ps 117:24*\nThis is the day the Lord has made; let us be glad and rejoice in it. Allelúja,\n*Ps 112:1*", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20:1-9*\nIn that time, on the first day of the week, Mary Magda", + "id": "Evangelium" + }, + { + "body": "*Ps 117:26-27*\nBlessed be he that cometh in the name of the Lord. We have blessed you out of the house of the Lord. The ", + "id": "Offertorium" + }, + { + "body": "Grant us O Lord, we beseech thee, ever to rejoyce in these Paschal mysteries, that, by the continual application of our ", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Gal 3:27*\nFor as many of you as have been baptized in Christ, have put on Christ, allelúja.", + "id": "Communio" + }, + { + "body": "Invigorated by the gift of redemption, we beseech thee, O Lord, that by this means of eternal salvation, the true faith ", + "id": "Postcommunio" + } + ], + "2024-04-07": [ + { + "body": "*1 Pet 2:2*\nAs newborn babes, alleluia, desire the rational milk without guile, alleluia, alleluia, alleluia.\n*Ps. 80. 2", + "id": "Introitus" + }, + { + "body": "Grant, we beseech Thee, almighty God, that we who have celebrated the Paschal Feast, may, by Thy bounty, retain its frui", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 5:4-10*\nDearly beloved, Whatsoever is born of God overcometh", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Matt 28:7*\n℣. On the day of My Resurrection, saith the Lord, I will go before you into Galilee. All", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20. 19-31*\nAt that time, when it was late that same day, the f", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAn Angel of the Lord descended from heaven, and said to the women; He whom you seek is risen, as He ", + "id": "Offertorium" + }, + { + "body": "Receive, we beseech Thee, O Lord, the gifts of Thine exultant Church: and to her whom Thou hast given cause for so great", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 20:27*\nPut in thy hand, and know the place of the nails, alleluia; and be not faithless, but believing, alleluia, ", + "id": "Communio" + }, + { + "body": "We beseech Thee, O Lord, our God, to make the most holy Mysteries which Thou hast given us as a defense of our renewal, ", + "id": "Postcommunio" + } + ], + "2024-04-08": [ + { + "body": "*Ps 44:13, 15-16.*\nAll the rich among the people seek Your face. Behind her the virgins of her train are brought to the ", + "id": "Introitus" + }, + { + "body": "O God, Who, by the message of an angel, willed Your Word to take flesh in the womb of the Blessed Virgin Mary, grant tha", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 7:10-15*\nIn those days, the Lord spoke to Achaz: Ask for a sign from the Lord, your ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n℣. Lk. 1:28 Hail, Mary, full of grace, the Lord is with thee; blessed art thou amongst women. Allelu", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with thee. Blessed art thou among women and blessed is the fruit ", + "id": "Offertorium" + }, + { + "body": "Fix firmly in our minds, O Lord, we beseech You, the mysteries of the true faith; that we who believe Him, conceived of ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*Isa 7:14*\nBehold a virgin shall be with child, and bear a Son, and shall name Him Emmanuel. (P.T. Alleluia.)", + "id": "Communio" + }, + { + "body": "Pour forth, we beseech You, O Lord, Your grace into our hearts, that we, to whom the incarnation of Christ, Your Son, wa", + "id": "Postcommunio" + } + ], + "2024-04-09": [ + { + "body": "*1 Pet 2:2*\nAs newborn babes, alleluia, desire the rational milk without guile, alleluia, alleluia, alleluia.\n*Ps. 80. 2", + "id": "Introitus" + }, + { + "body": "Grant, we beseech Thee, almighty God, that we who have celebrated the Paschal Feast, may, by Thy bounty, retain its frui", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 5:4-10*\nDearly beloved, Whatsoever is born of God overcometh", + "id": "Lectio" + }, + { + "body": "\n*Matt 28:7*\n℣. On the day of My Resurrection, saith the Lord, I will go before you into Galilee. \n*John 20:26*\nAfter ei", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20. 19-31*\nAt that time, when it was late that same day, the f", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAn Angel of the Lord descended from heaven, and said to the women; He whom you seek is risen, as He ", + "id": "Offertorium" + }, + { + "body": "Receive, we beseech Thee, O Lord, the gifts of Thine exultant Church: and to her whom Thou hast given cause for so great", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 20:27*\nPut in thy hand, and know the place of the nails, alleluia; and be not faithless, but believing, alleluia, ", + "id": "Communio" + }, + { + "body": "We beseech Thee, O Lord, our God, to make the most holy Mysteries which Thou hast given us as a defense of our renewal, ", + "id": "Postcommunio" + } + ], + "2024-04-10": [ + { + "body": "*1 Pet 2:2*\nAs newborn babes, alleluia, desire the rational milk without guile, alleluia, alleluia, alleluia.\n*Ps. 80. 2", + "id": "Introitus" + }, + { + "body": "Grant, we beseech Thee, almighty God, that we who have celebrated the Paschal Feast, may, by Thy bounty, retain its frui", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 5:4-10*\nDearly beloved, Whatsoever is born of God overcometh", + "id": "Lectio" + }, + { + "body": "\n*Matt 28:7*\n℣. On the day of My Resurrection, saith the Lord, I will go before you into Galilee. \n*John 20:26*\nAfter ei", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20. 19-31*\nAt that time, when it was late that same day, the f", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAn Angel of the Lord descended from heaven, and said to the women; He whom you seek is risen, as He ", + "id": "Offertorium" + }, + { + "body": "Receive, we beseech Thee, O Lord, the gifts of Thine exultant Church: and to her whom Thou hast given cause for so great", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 20:27*\nPut in thy hand, and know the place of the nails, alleluia; and be not faithless, but believing, alleluia, ", + "id": "Communio" + }, + { + "body": "We beseech Thee, O Lord, our God, to make the most holy Mysteries which Thou hast given us as a defense of our renewal, ", + "id": "Postcommunio" + } + ], + "2024-04-11": [ + { + "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", + "id": "Introitus" + }, + { + "body": "Eternal Shepherd, look with favor upon Your flock. Safeguard and shelter it forevermore through blessed Leo, Supreme Pon", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Matt 16:18*\nAnd I say to thee: That thou art Peter; and upon this rock I will build My Church.\n*Ps 4", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", + "id": "Offertorium" + }, + { + "body": "By the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that thy flock may everywhere pr", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", + "id": "Communio" + }, + { + "body": "Being appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that under thy direction and pow", + "id": "Postcommunio" + } + ], + "2024-04-12": [ + { + "body": "*1 Pet 2:2*\nAs newborn babes, alleluia, desire the rational milk without guile, alleluia, alleluia, alleluia.\n*Ps. 80. 2", + "id": "Introitus" + }, + { + "body": "Grant, we beseech Thee, almighty God, that we who have celebrated the Paschal Feast, may, by Thy bounty, retain its frui", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 5:4-10*\nDearly beloved, Whatsoever is born of God overcometh", + "id": "Lectio" + }, + { + "body": "\n*Matt 28:7*\n℣. On the day of My Resurrection, saith the Lord, I will go before you into Galilee. \n*John 20:26*\nAfter ei", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20. 19-31*\nAt that time, when it was late that same day, the f", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAn Angel of the Lord descended from heaven, and said to the women; He whom you seek is risen, as He ", + "id": "Offertorium" + }, + { + "body": "Receive, we beseech Thee, O Lord, the gifts of Thine exultant Church: and to her whom Thou hast given cause for so great", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 20:27*\nPut in thy hand, and know the place of the nails, alleluia; and be not faithless, but believing, alleluia, ", + "id": "Communio" + }, + { + "body": "We beseech Thee, O Lord, our God, to make the most holy Mysteries which Thou hast given us as a defense of our renewal, ", + "id": "Postcommunio" + } + ], + "2024-04-13": [ + { + "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", + "id": "Introitus" + }, + { + "body": "O God, Who didst teach thy blessed Martyr Hermenegild to choose an heavenly rather than an earthly crown, grant, we bese", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nShe conducted the just, when he fled from his brother's wrath, through the", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints.", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:26-33.*\nIn that time, Jesus said to the people: If any man ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", + "id": "Offertorium" + }, + { + "body": "As thou hast received our gifts and prayers, O Lord, cleanse us, we ask by thy heavenly mysteries, and graciously hear u", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", + "id": "Communio" + }, + { + "body": "Grant, we pray, O Lord our God, that we who in time render joyful service in memory of thy saints, may be gladdened by t", + "id": "Postcommunio" + } + ], + "2024-04-14": [ + { + "body": "*Ps 32:5-6*\nThe earth is full of the goodness of the Lord, alleluia: by the word of the Lord were the heavens made, alle", + "id": "Introitus" + }, + { + "body": "O God, who, by the humility of Thy Son, didst lift up a fallen world, grant unending happiness to Thy faithful: that tho", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:21-25*\nDearly beloved, Christ suffered for us, leaving yo", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Luke 24:35*\nThe disciples knew the Lord Jesus in the breaking of bread. Allelúja.\n*John 10:14*\nI am", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time Jesus said to the Pharisees: I am the g", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nO God, my God, to Thee do I watch at break of day: and in Thy Name I will lift up my hands, allelúja.", + "id": "Offertorium" + }, + { + "body": "May this holy offering, O Lord, always bring to us Thy healing blessing: that what it represents in a Mystery, it may ac", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 10:14*\nI am the good Shepherd, alleluia: and I know My sheep, and Mine know Me, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Grant unto us, we beseech Thee, almighty God, that having received the grace of a new life, we may ever glory in Thy gif", + "id": "Postcommunio" + } + ], + "2024-04-15": [ + { + "body": "*Ps 32:5-6*\nThe earth is full of the goodness of the Lord, alleluia: by the word of the Lord were the heavens made, alle", + "id": "Introitus" + }, + { + "body": "O God, who, by the humility of Thy Son, didst lift up a fallen world, grant unending happiness to Thy faithful: that tho", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:21-25*\nDearly beloved, Christ suffered for us, leaving yo", + "id": "Lectio" + }, + { + "body": "\n*Luke 24:35*\nThe disciples knew the Lord Jesus in the breaking of bread. \n*John 10:14*\nI am the good Shepherd: and I kn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time Jesus said to the Pharisees: I am the g", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nO God, my God, to Thee do I watch at break of day: and in Thy Name I will lift up my hands, allelúja.", + "id": "Offertorium" + }, + { + "body": "May this holy offering, O Lord, always bring to us Thy healing blessing: that what it represents in a Mystery, it may ac", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 10:14*\nI am the good Shepherd, alleluia: and I know My sheep, and Mine know Me, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Grant unto us, we beseech Thee, almighty God, that having received the grace of a new life, we may ever glory in Thy gif", + "id": "Postcommunio" + } + ], + "2024-04-16": [ + { + "body": "*Ps 32:5-6*\nThe earth is full of the goodness of the Lord, alleluia: by the word of the Lord were the heavens made, alle", + "id": "Introitus" + }, + { + "body": "O God, who, by the humility of Thy Son, didst lift up a fallen world, grant unending happiness to Thy faithful: that tho", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:21-25*\nDearly beloved, Christ suffered for us, leaving yo", + "id": "Lectio" + }, + { + "body": "\n*Luke 24:35*\nThe disciples knew the Lord Jesus in the breaking of bread. \n*John 10:14*\nI am the good Shepherd: and I kn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time Jesus said to the Pharisees: I am the g", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nO God, my God, to Thee do I watch at break of day: and in Thy Name I will lift up my hands, allelúja.", + "id": "Offertorium" + }, + { + "body": "May this holy offering, O Lord, always bring to us Thy healing blessing: that what it represents in a Mystery, it may ac", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 10:14*\nI am the good Shepherd, alleluia: and I know My sheep, and Mine know Me, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Grant unto us, we beseech Thee, almighty God, that having received the grace of a new life, we may ever glory in Thy gif", + "id": "Postcommunio" + } + ], + "2024-04-17": [ + { + "body": "*Ps 32:5-6*\nThe earth is full of the goodness of the Lord, alleluia: by the word of the Lord were the heavens made, alle", + "id": "Introitus" + }, + { + "body": "O God, who, by the humility of Thy Son, didst lift up a fallen world, grant unending happiness to Thy faithful: that tho", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Anicetus*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, by", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:21-25*\nDearly beloved, Christ suffered for us, leaving yo", + "id": "Lectio" + }, + { + "body": "\n*Luke 24:35*\nThe disciples knew the Lord Jesus in the breaking of bread. \n*John 10:14*\nI am the good Shepherd: and I kn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time Jesus said to the Pharisees: I am the g", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nO God, my God, to Thee do I watch at break of day: and in Thy Name I will lift up my hands, allelúja.", + "id": "Offertorium" + }, + { + "body": "May this holy offering, O Lord, always bring to us Thy healing blessing: that what it represents in a Mystery, it may ac", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Anicetus*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so tha", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 10:14*\nI am the good Shepherd, alleluia: and I know My sheep, and Mine know Me, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Grant unto us, we beseech Thee, almighty God, that having received the grace of a new life, we may ever glory in Thy gif", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Anicetus*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, tha", + "id": "Commemoratio Postcommunio" + } + ], + "2024-04-18": [ + { + "body": "*Ps 32:5-6*\nThe earth is full of the goodness of the Lord, alleluia: by the word of the Lord were the heavens made, alle", + "id": "Introitus" + }, + { + "body": "O God, who, by the humility of Thy Son, didst lift up a fallen world, grant unending happiness to Thy faithful: that tho", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:21-25*\nDearly beloved, Christ suffered for us, leaving yo", + "id": "Lectio" + }, + { + "body": "\n*Luke 24:35*\nThe disciples knew the Lord Jesus in the breaking of bread. \n*John 10:14*\nI am the good Shepherd: and I kn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time Jesus said to the Pharisees: I am the g", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nO God, my God, to Thee do I watch at break of day: and in Thy Name I will lift up my hands, allelúja.", + "id": "Offertorium" + }, + { + "body": "May this holy offering, O Lord, always bring to us Thy healing blessing: that what it represents in a Mystery, it may ac", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 10:14*\nI am the good Shepherd, alleluia: and I know My sheep, and Mine know Me, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Grant unto us, we beseech Thee, almighty God, that having received the grace of a new life, we may ever glory in Thy gif", + "id": "Postcommunio" + } + ], + "2024-04-19": [ + { + "body": "*Ps 32:5-6*\nThe earth is full of the goodness of the Lord, alleluia: by the word of the Lord were the heavens made, alle", + "id": "Introitus" + }, + { + "body": "O God, who, by the humility of Thy Son, didst lift up a fallen world, grant unending happiness to Thy faithful: that tho", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:21-25*\nDearly beloved, Christ suffered for us, leaving yo", + "id": "Lectio" + }, + { + "body": "\n*Luke 24:35*\nThe disciples knew the Lord Jesus in the breaking of bread. \n*John 10:14*\nI am the good Shepherd: and I kn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time Jesus said to the Pharisees: I am the g", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nO God, my God, to Thee do I watch at break of day: and in Thy Name I will lift up my hands, allelúja.", + "id": "Offertorium" + }, + { + "body": "May this holy offering, O Lord, always bring to us Thy healing blessing: that what it represents in a Mystery, it may ac", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 10:14*\nI am the good Shepherd, alleluia: and I know My sheep, and Mine know Me, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Grant unto us, we beseech Thee, almighty God, that having received the grace of a new life, we may ever glory in Thy gif", + "id": "Postcommunio" + } + ], + "2024-04-20": [ + { + "body": "*Sedelius*\nHail Holy Parent, who didst bring forth the King, who rules heaven and earth forever, allelúja, allelúja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, O Lord God, unto all thy servants, that they may remain continually in the enjoyment of soundnes", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nFrom the beginning, and before the world, was I created, and unto ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Num 17:8*\nThe rod of Jesse had blossomed, virgin hath brought forth God and man: God hath restored ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:25-27*\nNow there stood by the cross of Jesus, his mother, a", + "id": "Evangelium" + }, + { + "body": "Blessed art thou, O Virgin Mary, who didst bear the Creator of all things, thou didst bring forth who made thee, and rem", + "id": "Offertorium" + }, + { + "body": "Through thy mercy, O Lord, at the intercession of blessed Mary, ever Virgin, let this offering obtain for us welfare and", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of Eternal Father, alleluia.", + "id": "Communio" + }, + { + "body": "Grant, O Lord, that we who have partaken of aids of salvation, may be everywhere defended by the intercession of Blessed", + "id": "Postcommunio" + } + ], + "2024-04-21": [ + { + "body": "*Ps 65:1-2*\nShout with joy to God, all the earth, allelúja, sing ye a psalm to his name, allelúja; give glory to his pra", + "id": "Introitus" + }, + { + "body": "Almighty God, Who showest to them that be in error the light of thy truth, to the intent that they may return into the w", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:11-19*\nDearly beloved, I beseech you as strangers and pil", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 110:9*\nHe hath sent redemption to his people:\n*Luke 24:46*\nThus it behoved Christ to suffer, and", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:16-22*\nIn that time: Jesus said to his disciples: A little ", + "id": "Evangelium" + }, + { + "body": "*Ps 145:2*\nPraise the Lord, O my soul, in my life I will praise the Lord: as long as I shall be. Allelúja.", + "id": "Offertorium" + }, + { + "body": "Confer on us, O Lord, by these mysteries the moderation of our earthly desires: and teach us to love the things of heave", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 16:16*\nA little while, and now you shall not see me; and again a little while, and you shall see me: because I go ", + "id": "Communio" + }, + { + "body": "May the Sacraments which we have received, O Lord, we ask, refresh us with spiritual nourishment, and preserve us with b", + "id": "Postcommunio" + } + ], + "2024-04-22": [ + { + "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", + "id": "Introitus" + }, + { + "body": "Look forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, by the intercession of blessed ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Matt 16:18*\nAnd I say to thee: That thou art Peter; and upon this rock I will build My Church.\n*Ps 4", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", + "id": "Offertorium" + }, + { + "body": "By the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that thy flock may everywhere pr", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", + "id": "Communio" + }, + { + "body": "Being appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that under thy direction and pow", + "id": "Postcommunio" + } + ], + "2024-04-23": [ + { + "body": "*Ps 65:1-2*\nShout with joy to God, all the earth, allelúja, sing ye a psalm to his name, allelúja; give glory to his pra", + "id": "Introitus" + }, + { + "body": "Almighty God, Who showest to them that be in error the light of thy truth, to the intent that they may return into the w", + "id": "Oratio" + }, + { + "body": "*Commemoration St. George*\nO God, Who dost gladden us through the worthy deeds and prayers of thy blessed martyr George,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:11-19*\nDearly beloved, I beseech you as strangers and pil", + "id": "Lectio" + }, + { + "body": "\n*Ps 110:9*\nHe hath sent redemption to his people:\n*Luke 24:46*\nThus it behoved Christ to suffer, and to rise again from", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:16-22*\nIn that time: Jesus said to his disciples: A little ", + "id": "Evangelium" + }, + { + "body": "*Ps 145:2*\nPraise the Lord, O my soul, in my life I will praise the Lord: as long as I shall be. Allelúja.", + "id": "Offertorium" + }, + { + "body": "Confer on us, O Lord, by these mysteries the moderation of our earthly desires: and teach us to love the things of heave", + "id": "Secreta" + }, + { + "body": "*Commemoration St. George*\nHallow, O Lord, the gifts we offer, and through the intercession of blessed George, thy Marty", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 16:16*\nA little while, and now you shall not see me; and again a little while, and you shall see me: because I go ", + "id": "Communio" + }, + { + "body": "May the Sacraments which we have received, O Lord, we ask, refresh us with spiritual nourishment, and preserve us with b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. George*\nWe humbly beseech thee, almighty God, wouchsafe to grant that we, whom thou hast refreshed by", + "id": "Commemoratio Postcommunio" + } + ], + "2024-04-24": [ + { + "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, almighty God, that we who celebrate the martyrdom of blessed N., through his intercession be str", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nShe conducted the just, when he fled from his brother's wrath, through the", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints.", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:34-42*\nIn that time: Jesus said to his disciples: Do not", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", + "id": "Offertorium" + }, + { + "body": "As thou hast received our gifts and prayers, O Lord, cleanse us, we ask by thy heavenly mysteries, and graciously hear u", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", + "id": "Communio" + }, + { + "body": "Grant, we beseech thee, O our God, that we who in time render joyful service in memory of thy saints, may be gladdened b", + "id": "Postcommunio" + } + ], + "2024-04-25": [ + { + "body": "*Ps 63:3*\nThou hast protected me from the assembly of the malignant; from the multitude of the workers of iniquity. alle", + "id": "Introitus" + }, + { + "body": "O God, Who didst exalt thy blessed Evangelist Mark, by giving him grace to preach thine Evangel, grant unto us, we besee", + "id": "Oratio" + }, + { + "body": "*Pro rogationibus*\nGrant, we beseech thee, O Almighty God, that we who in our tribulation are yet of good cheer because ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ezekiel\n*Ezek 1:10-14*\nAnd as for the likeness of their faces: there was the face of a man, and ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints. ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nIn that time: the Lord appointed also other seventy-tw", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints, allelúja. allelúja.", + "id": "Offertorium" + }, + { + "body": "We offer thee our gifts, O Lord, on the Festival of blessed Mark, thy Evangelist, and we pray, that we may ever profit b", + "id": "Secreta" + }, + { + "body": "*Pro rogationibus*\nWe beseech thee, O Lord that these offerings may both loosen the bonds of our wickedness, and obtain ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nThe just shall rejoice in the Lord, and shall hope in him: and all the upright in heart shall be praised, all", + "id": "Communio" + }, + { + "body": "May thy holy mysteries, we ask, O Lord, be to us a continual safeguard, and through the prayers of blessed Mark, thy Eva", + "id": "Postcommunio" + }, + { + "body": "*Pro rogationibus*\nMercifully grant our prayers, we beseech thee, O Lord, that while we receive thy gifts in tribulation", + "id": "Commemoratio Postcommunio" + } + ], + "2024-04-26": [ + { + "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", + "id": "Introitus" + }, + { + "body": "Look forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, by the intercession of blessed ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Matt 16:18*\nAnd I say to thee: That thou art Peter; and upon this rock I will build My Church.\n*Ps 4", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", + "id": "Offertorium" + }, + { + "body": "By the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that thy flock may everywhere pr", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", + "id": "Communio" + }, + { + "body": "Being appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that under thy direction and pow", + "id": "Postcommunio" + } + ], + "2024-04-27": [ + { + "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", + "id": "Introitus" + }, + { + "body": "O God, who didst give strength and learning to blessed Peter thy Confessor for the defense of the Catholic faith, mercif", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Eccli 45:9*\nThe Lord loved him and decorated him: He hath clothed him in a stole of glory.\n*Osee 14", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the pious prayer of holy Peter thy Confessor and illustrious Doctor be not wanting to us, O Lord, but make our offer", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "May blessed Peter thy Confessor and illustrious Doctor intercede for us, O Lord, that this thy sacrifice may obtain for ", + "id": "Postcommunio" + } + ], + "2024-04-28": [ + { + "body": "*Ps 97:1; 97:2*\nSing ye to the Lord a new canticle, alleluia: because the Lord hath done wonderful things, alleluia. He ", + "id": "Introitus" + }, + { + "body": "O God, of Whom it cometh that the minds of thy faithful people be all of one will, grant unto the same thy people that t", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. James the Apostle\n*Jas 1:17-21*\nDearly beloved: Every best gift, and every perfect gift, i", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps 117:16*\nThe right hand of the Lord hath wrought strength: the right hand of the Lord hath exalte", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:5-14*\nAt that time: Jesus said to His disciples: I go to hi", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 85:16*\nShout with joy to God, all the earth, sing ye a psalm to His Name: come and hear, and I will tell you", + "id": "Offertorium" + }, + { + "body": "O God, who by the august communion of this sacrifice hast make us partakers of one Sovereign Godhead, grant we beseech t", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 16:8*\nAnd when he is come, he will convince the world of sin, and of justice, and of judgment, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Stand by us, O Lord, our God, that by what we have faithfully received we may be cleansed from our vices and rescued fro", + "id": "Postcommunio" + } + ], + "2024-04-29": [ + { + "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", + "id": "Introitus" + }, + { + "body": "Grant us grace, we beseech thee, O Almighty God, to follow with zeal conformable thereto after the pattern of that great", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim 2:8-10; 3:10-12*\nBe mindful that the Lord Jesus ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints.", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:34-42*\nIn that time: Jesus said to his disciples: Do not", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", + "id": "Offertorium" + }, + { + "body": "Graciously regard, O Lord, the prayers we offer thee, through the intercession of blessed Peter, thy Martyr; and keep ev", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", + "id": "Communio" + }, + { + "body": "May the Sacrament, O Lord, which we, the faithful people have received, hold us in safe keeping, and through the interce", + "id": "Postcommunio" + } + ], + "2024-04-30": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "Hear us, O God, our Saviour, that as we are gladdened by the festival of blessed N. thy virgin, so we may learn from it ", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "Allelúia, allelúja\n*Ps 44:15-16*\nAfter her shall virgins be brought to the king: They shall be brought with gladness and", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the service of thy holy people be acceptable to Thee, O Lord, and honorable to thy saints, through whose merits we k", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "Thou hast fed thy servants, O Lord, with the holy gifts; comfort us ever we pray, by her intercession whose festival we ", + "id": "Postcommunio" + } + ], + "2024-05-01": [ + { + "body": "*Sap. 10:17*\nWisdom rendered to the just the wages of their labors, and conducted them in a wonderful way: and she was t", + "id": "Introitus" + }, + { + "body": "O God, Creator of all things, Who dost impose on man the law of work; grant in Thy goodness that, by the example and pat", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul to the Colossians\n*Col. 3:14-15, 17, 23-24*\nBrethren: Have charity, which is the bond", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\nIn whatever tribulation they shall cry to me, I will hear them and be their protector always. Allelú", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:54-58*\nAt that time: Jesus coming into His country, He t", + "id": "Evangelium" + }, + { + "body": "*Ps 89:17*\nLet the brightness of the Lord our God be upon us: and direct Thou the works of our hands over us; yea, the w", + "id": "Offertorium" + }, + { + "body": "May these gifts, the work of our hands, that we offer Thee in sacrifice, O Lord, become for us, by the intercession of b", + "id": "Secreta" + }, + { + "body": "*St. Joseph*\nIt is truly meet and just, right and for our salvation, that we should at all times and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Matt 13:54-55*\nHow came this Man by this wisdom and miracles? Is not this the carpenter's Son? Is not His mother called", + "id": "Communio" + }, + { + "body": "May these holy mysteries which we have received, O Lord, by the intercession of blessed Joseph, supply what is wanting i", + "id": "Postcommunio" + } + ], + "2024-05-02": [ + { + "body": "*Ecclus 15:5.*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and u", + "id": "Introitus" + }, + { + "body": "Hear, we beseech You, O Lord, our prayers which we offer You on the feast of blessed Athanasius, Your Bishop and Confess", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 4:5-14*\nBrethren: We preach not ourselv", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps. 109:4.*\n℣. You are a priest forever, according to the order of Melchisedec. Alleluia.\n*Jas 1:12", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:23-28*\nAt that time, Jesus said to His disciples, When t", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, that the yearly feast of Saint Athanasius, Your Confessor, make us pleasing to You; that the rit", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 10:27*\nWhat I tell you in darkness, speak it in the light, says the Lord; and what you hear whispered, preach it o", + "id": "Communio" + }, + { + "body": "O God, the rewarder of faithful souls, grant that we may obtain pardon through the prayers of blessed Athanasius, Your C", + "id": "Postcommunio" + } + ], + "2024-05-03": [ + { + "body": "*Ps 97:1; 97:2*\nSing ye to the Lord a new canticle, alleluia: because the Lord hath done wonderful things, alleluia. He ", + "id": "Introitus" + }, + { + "body": "O God, of Whom it cometh that the minds of thy faithful people be all of one will, grant unto the same thy people that t", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Alexander & Companions*\nGrant, we beseech You, almighty God, that we who commemorate the anniversary", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. James the Apostle\n*Jas 1:17-21*\nDearly beloved: Every best gift, and every perfect gift, i", + "id": "Lectio" + }, + { + "body": "\n*Ps 117:16*\nThe right hand of the Lord hath wrought strength: the right hand of the Lord hath exalted me: \n*Rom 6:9*\nKn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:5-14*\nAt that time: Jesus said to His disciples: I go to hi", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 85:16*\nShout with joy to God, all the earth, sing ye a psalm to His Name: come and hear, and I will tell you", + "id": "Offertorium" + }, + { + "body": "O God, who by the august communion of this sacrifice hast make us partakers of one Sovereign Godhead, grant we beseech t", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Alexander & Companions*\nMay a bountiful blessing, O Lord, descend upon these offerings and, through ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 16:8*\nAnd when he is come, he will convince the world of sin, and of justice, and of judgment, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Stand by us, O Lord, our God, that by what we have faithfully received we may be cleansed from our vices and rescued fro", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Alexander & Companions*\nWith our strength renewed from having shared in Your sacred gift, we beseech", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-04": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "O God, the consoler of those Who mourn and the safety of those who put their trust in You; Who mercifully accepted the h", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to Timothy\n*1 Tim. 5:3-10.*\nBeloved: Honor widows who are truly wid", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps 44:5*\nIn your splendor and your beauty ride on triumphant, and reign. Alleluia.\n℣. In the cause ", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:11-16.*\nAt that time, Jesus went to a town called Naim; and ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", + "id": "Postcommunio" + } + ], + "2024-05-05": [ + { + "body": "*Isa 48:20*\nDeclare it with the voice of joy: make this to be heard, allelúja: and speak it out even to the ends of the ", + "id": "Introitus" + }, + { + "body": "O God, from Whom all good things do come, grant to us thy humble servants that by thy holy inspiration we may think thos", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St James the Apostle\n*Jas 1:22-27*\nDearly beloved: But be ye doers of the word, and not hearer", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. Christ is risen and hath shone upon us whom he redeemed with his blood. Alleluia.\n*John 16:28*\nI ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:23-30*\nIn that time, Jesus said to His disciples: Amen, ame", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9; 65:20*\nO bless our God, ye Gentiles: and make the voice of his praise to be heard. Who hath set my soul to l", + "id": "Offertorium" + }, + { + "body": "Receive, O Lord, the prayers of thy faithful with offerings of victims, that by these services of pious devotion we may ", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Ps 95:2*\nSing ye to the Lord and bless his name: shew forth his salvation from day to day, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Grant us, O Lord, fed with the virtue of a heavenly table, to desire what is right, and to gain what we desire.\nThrough ", + "id": "Postcommunio" + } + ], + "2024-05-06": [ + { + "body": "*Acts 1:11*\nYe men of Galilee, why stand you looking up to heaven? alleluia: This Jesus who is taken up from you into he", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, Almighty God, that like as we do believe thine Only-Begotten Son our Saviour to have this day as", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 1:1-11*\nThe former treatise I made, O Theophilus, of all things which Jesus began", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet. \n*Ps 67:18-19*\nThe Lord is in Sinai, in", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:14-20*\nAt length he appeared to the eleven as they were at ", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet, allelúja.", + "id": "Offertorium" + }, + { + "body": "Receive, O Lord, the gifts which we offer for the glorious Ascension of thy Son, and mercifully grant that we may be del", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nSing ye to the Lord, who mounteth above the heaven of heavens to the East, alleluia.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech thee, almighty and merciful God, that what we have taken and received in visible mysteries, may pro", + "id": "Postcommunio" + } + ], + "2024-05-07": [ + { + "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", + "id": "Introitus" + }, + { + "body": "O God, in defense of Whose honor Stanislaus, the glorious Bishop, died by the swords of wicked men, grant, we beseech Yo", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nShe conducted the just, when he fled from his brother's wrath, through the", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints.", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:34-42*\nIn that time: Jesus said to his disciples: Do not", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", + "id": "Offertorium" + }, + { + "body": "Sanctify, O Lord, the gifts dedicated to You, and by the intercession of Blessed Stanislaus, Your Martyr and Bishop, let", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from guilt, and, through the intercession of Blessed Stanislaus, Your Martyr and ", + "id": "Postcommunio" + } + ], + "2024-05-08": [ + { + "body": "*Isa. 48:20.*\nDeclare the word of joy, and let it be heard, alleluia: declare it even to the ends of the earth; the Lord", + "id": "Introitus" + }, + { + "body": "O God, from Whom all good things come, grant, we beseech You, that by Your inspiration, we may think what is right and u", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph. 4:7-13.*\nBrethren: To each one of us grace was giv", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n℣. Christ is risen, and has shone upon us, whom He redeemed with His Blood. Alleluia.\n*John 16:28*\n℣", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 17:1-11.*\nAt that time, raising His eyes to heaven, Jesus said", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9, 20*\nBless the Lord our God, you peoples, loudly sound His praise; He has given life to my soul, and has not ", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the prayers and gifts of Your faithful people, that, through these rites of love and devotion we may pas", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Ps. 95:2.*\nSing to the Lord, alleluia; sing to the Lord; bless His name; announce His salvation day after day, alleluia", + "id": "Communio" + }, + { + "body": "Grant, O Lord, that we who have been fed with the strengthening food of Your heavenly table, may desire what is right an", + "id": "Postcommunio" + } + ], + "2024-05-09": [ + { + "body": "*Acts 1:11*\nYe men of Galilee, why stand you looking up to heaven? alleluia: This Jesus who is taken up from you into he", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, Almighty God, that like as we do believe thine Only-Begotten Son our Saviour to have this day as", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 1:1-11*\nThe former treatise I made, O Theophilus, of all things which Jesus began", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet. Allelúja.\n*Ps 67:18-", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:14-20*\nAt length he appeared to the eleven as they were at ", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet, allelúja.", + "id": "Offertorium" + }, + { + "body": "Receive, O Lord, the gifts which we offer for the glorious Ascension of thy Son, and mercifully grant that we may be del", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nSing ye to the Lord, who mounteth above the heaven of heavens to the East, alleluia.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech thee, almighty and merciful God, that what we have taken and received in visible mysteries, may pro", + "id": "Postcommunio" + } + ], + "2024-05-10": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O Lord, may the merits of St. Antoninus, Your Confessor and Bishop, help us; and just as we praise You for the wonders Y", + "id": "Oratio" + }, + { + "body": "*For Sts. Gordian and Epimachus, Martyrs*\nGrant, almighty God, we beseech You, that we who keep the feast of Your blesse", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps. 109:4*\nYou are a priest forever, according to the order of Melchisedec. Alleluia.\n℣. This is th", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*For Sts. Gordian and Epimachus, Martyrs*\nGraciously accept, O Lord, the sacrifices dedicated to Your blessed Martyrs Go", + "id": "Commemoratio Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + }, + { + "body": "*For Sts. Gordian and Epimachus, Martyrs*\nWe who have eaten of the heavenly food beseech You, almighty God, that it may ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-11": [ + { + "body": "*2 Esd. 9:27*\nIn the time of their tribulation they cried to You, O Lord, and You heard them from heaven, alleluia, alle", + "id": "Introitus" + }, + { + "body": "O God, Who gladden us each year by the feast of Your holy Apostles Philip and James, graciously grant that, as we rejoic", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis. 5:1-5*\nThe just shall stand with great assurance before their oppressors who set at", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps 88:6*\n℣. The heavens proclaim Your wonders, O Lord, and Your faithfulness, in the assembly of th", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 14:1-13*\nAt that time, Jesus said to His disciples, Let not yo", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nThe heavens proclaim Your wonders, O Lord; and Your faithfulness, in the assembly of the holy ones, alleluia, ", + "id": "Offertorium" + }, + { + "body": "Graciously accept, O Lord, the offerings we bring for the feast of Your Apostles Philip and James, and ward off all the ", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*John 14:9-10.*\nHave I been so long a time with you, and you have not known Me? Philip, he who sees Me sees also My Fath", + "id": "Communio" + }, + { + "body": "Filled with the sacrament of salvation, we beseech You, O Lord, to help us by the prayers of those whose feast we are ce", + "id": "Postcommunio" + } + ], + "2024-05-12": [ + { + "body": "*Ps. 26:7-9.*\nHear, O Lord, the sound of my call, alleluia; to You my heart speaks; Your glance I seek; Your presence, O", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, give us a will ever dedicated to You, and a true heart to serve Your majesty.\nThrough our Lord", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 4:7-11.*\nBeloved: Be prudent and watchful in prayers. But a", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps. 46:9.*\n℣. The Lord reigns over all the nations, God sits upon His holy throne. Alleluia.\n*John ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:26-27; 16:1-4.*\nAt that time, Jesus said to His disciples: ", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6.*\nGod mounts His throne amid shouts of joy; the Lord, amid trumpet blasts. Alleluia.", + "id": "Offertorium" + }, + { + "body": "May this pure sacrifice cleanse us, O Lord, and impart to our minds the strength of heavenly grace.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*John 17:12-13; 17:15*\nFather, while I was with them, I kept them whom You have given Me, alleluia; but now I am coming ", + "id": "Communio" + }, + { + "body": "We who have been filled with heavenly gifts beseech You, O Lord, grant us to continue giving thanks to You.\nThrough our ", + "id": "Postcommunio" + } + ], + "2024-05-13": [ + { + "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", + "id": "Introitus" + }, + { + "body": "O God, Who endowed blessed Robert, Your Bishop and Doctor, with wondrous learning and virtue to repel the deceits of err", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis. 7:7-14*\nI prayed, and prudence was given me; I pleaded, and the spirit of Wisdom ca", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Dan. 12:3*\n℣. The wise shall shine brightly like the splendor of the firmament. Alleluia.\n℣. Those ", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", + "id": "Evangelium" + }, + { + "body": "*Ps. 72:28*\nBut for me, to be near God is my good; to make the Lord God my refuge. I shall declare all Your works in the", + "id": "Offertorium" + }, + { + "body": "O God, we offer these sacrificial gifts to You as a sweet fragrance; grant that, taught by the counsels and example of b", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Matt 5:14; 5:16*\nYou are the light of the world. Even so, let your light shine before men, in order that they may see y", + "id": "Communio" + }, + { + "body": "May the sacrament we have received, O Lord, our God, enkindle in us the fire of love which flamed so ardently in blessed", + "id": "Postcommunio" + } + ], + "2024-05-14": [ + { + "body": "*Ps. 26:7-9.*\nHear, O Lord, the sound of my call, alleluia; to You my heart speaks; Your glance I seek; Your presence, O", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, give us a will ever dedicated to You, and a true heart to serve Your majesty.\nThrough our Lord", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Boniface*\nGrant, almighty God, we beseech You, that we who keep the feast of Your blessed Martyr Boni", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 4:7-11.*\nBeloved: Be prudent and watchful in prayers. But a", + "id": "Lectio" + }, + { + "body": "\n*Ps. 46:9.*\n℣. The Lord reigns over all the nations, God sits upon His holy throne. \n*John 14:18*\n℣. I will not leave y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:26-27; 16:1-4.*\nAt that time, Jesus said to His disciples: ", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6.*\nGod mounts His throne amid shouts of joy; the Lord, amid trumpet blasts. Alleluia.", + "id": "Offertorium" + }, + { + "body": "May this pure sacrifice cleanse us, O Lord, and impart to our minds the strength of heavenly grace.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Boniface*\nAccept our offerings and prayers, we beseech You, O Lord; cleanse us by this heavenly rite,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*John 17:12-13; 17:15*\nFather, while I was with them, I kept them whom You have given Me, alleluia; but now I am coming ", + "id": "Communio" + }, + { + "body": "We who have been filled with heavenly gifts beseech You, O Lord, grant us to continue giving thanks to You.\nThrough our ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Boniface*\nWe who have been refreshed by partaking of the sacred gift, beseech You, O Lord, our God, t", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-15": [ + { + "body": "*Ps. 36:30-31.*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in", + "id": "Introitus" + }, + { + "body": "O God, Who raised up the holy Confessor John Baptist for the Christian education of the poor and to strengthen youth in ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Eccli 31:8-11*\nHappy the man found without fault, who turns not aside after gain", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Jas 1:12*\nBlessed is the man who endures temptation; for when he has been tried, he shall receive t", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-5*\nAt that time the disciples came to Jesus, saying, W", + "id": "Evangelium" + }, + { + "body": "*Ps. 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (Alleluia.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2024-05-16": [ + { + "body": "*Ps. 26:7-9.*\nHear, O Lord, the sound of my call, alleluia; to You my heart speaks; Your glance I seek; Your presence, O", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, give us a will ever dedicated to You, and a true heart to serve Your majesty.\nThrough our Lord", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Ubaldus*\nMercifully give us Your help, we beseech You, O Lord, and by the intercession of blessed Uba", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 4:7-11.*\nBeloved: Be prudent and watchful in prayers. But a", + "id": "Lectio" + }, + { + "body": "\n*Ps. 46:9.*\n℣. The Lord reigns over all the nations, God sits upon His holy throne. \n*John 14:18*\n℣. I will not leave y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:26-27; 16:1-4.*\nAt that time, Jesus said to His disciples: ", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6.*\nGod mounts His throne amid shouts of joy; the Lord, amid trumpet blasts. Alleluia.", + "id": "Offertorium" + }, + { + "body": "May this pure sacrifice cleanse us, O Lord, and impart to our minds the strength of heavenly grace.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Ubaldus*\nMay Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflec", + "id": "Commemoratio Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*John 17:12-13; 17:15*\nFather, while I was with them, I kept them whom You have given Me, alleluia; but now I am coming ", + "id": "Communio" + }, + { + "body": "We who have been filled with heavenly gifts beseech You, O Lord, grant us to continue giving thanks to You.\nThrough our ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Ubaldus*\nGrant, we beseech You, almighty God, that as we thank You for the favors we have received, w", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-17": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who endowed blessed Paschal, Your Confessor, with a wondrous love for the sacred mysteries of Your Body and Blood", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Jas 1:12*\nBlessed is the man who endures temptation; for when he has been tried, he shall receive t", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2024-05-18": [ + { + "body": "*Ez. 36:23-26.*\nWhen I prove My holiness through you, I will gather you from all the foreign lands; and I will sprinkle ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that the brightness of Your glory may shine upon us, and that the light of Your lig", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 19:1-8.*\nIn those days, it was while Apollos was in Corinth that Paul, after pass", + "id": "Lectio" + }, + { + "body": "Alleluia.\n*Ps 106:1*\nGive thanks to the Lord, for He is good, for His kindness endures forever!\n*Ps. 116:1-2.*\nPraise th", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 14:15-21.*\nAt that time, Jesus said to His disciples, If you l", + "id": "Evangelium" + }, + { + "body": "*Ps. 103:30-31.*\nSend forth Your Spirit, and they shall be created, and You shall renew the face of the earth. May the g", + "id": "Offertorium" + }, + { + "body": "Hallow, we beseech You, O Lord, the gifts we offer, and cleanse our minds through the enlightenment of the Holy Spirit.\n", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 7:37-39.*\nOn the last day of the feast, Jesus said, He who believes in Me, from within him there shall flow rivers", + "id": "Communio" + }, + { + "body": "May the inpouring of the Holy Spirit cleanse our hearts, O Lord, and make them fertile through the dew He sprinkles upon", + "id": "Postcommunio" + } + ], + "2024-05-19": [ + { + "body": "*Wis 1:7.*\nThe Spirit of the Lord fills the world, alleluia, is all-embracing, and knows man’s utterance, alleluia, alle", + "id": "Introitus" + }, + { + "body": "O God, You Who on this day have taught the hearts of the faithful by the light of the Holy Spirit, grant us by that Holy", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 2:1-11.*\nWhen the days of Pentecost were drawing to a close, they were all togeth", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps. 103:30*\n℣. Send forth Your Spirit, and they shall be created: and You shall renew the face of t", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 14:23-31.*\nAt that time, Jesus said to His disciples: If anyon", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nConfirm, O God, what You have wrought in us; from Your temple, which is in Jerusalem, kings shall offer gi", + "id": "Offertorium" + }, + { + "body": "Sanctify these offerings, we beseech You, O Lord, and cleanse our hearts by the light of the Holy Spirit.\nThrough our Lo", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*Acts 2:2; 2:4*\nSuddenly there came a sound from heaven, as of a violent wind blowing, where they were sitting, alleluia", + "id": "Communio" + }, + { + "body": "May the inpouring of the Holy Spirit cleanse our hearts, O Lord, and make them fertile through the dew He sprinkles upon", + "id": "Postcommunio" + } + ], + "2024-05-20": [ + { + "body": "*Ps. 80:17*\nHe fed them with the best of wheat, alleluia: and filled them with honey from the rock, alleluia, alleluia.\n", + "id": "Introitus" + }, + { + "body": "O God, You Who gave the Holy Spirit to Your apostles, grant that the devout prayers of Your people may be effective and,", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of the Apostles\n*Acts 10:34, 42-48*\nIn those days, Peter opening his mouth, said, Men, brethren, th", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Acts 2:4*\n℣. The Apostles spoke in foreign tongues the wonderful works of God. Alleluia. (Kneel.)\n", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 3:16-21*\nAt that time, Jesus said to Nicodemus: God so loved t", + "id": "Evangelium" + }, + { + "body": "*Ps. 17:14, 16*\nThe Lord thundered from heaven, the Most High gave forth His voice; and the fountains of waters appeared", + "id": "Offertorium" + }, + { + "body": "Graciously hallow these gifts, we beseech You, O Lord, and accepting the offering of the spiritual sacrifice, make us al", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 14:26*\nThe Holy Spirit will teach you, alleluia: whatever I have said to you, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Be near to Your people, we beseech You, O Lord, and defend against the fury of the enemy those whom You have penetrated ", + "id": "Postcommunio" + } + ], + "2024-05-21": [ + { + "body": "*Esdr 2:36-37*\nReceive the joy of your glory, alleluia: giving thanks to God, alleluia, who has called you to the heaven", + "id": "Introitus" + }, + { + "body": "Let the power of the Holy Spirit be present within us, O Lord, graciously to cleanse our hearts as well as to guard us f", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 8:14-17.*\nIn those days, when the Apostles in Jerusalem heard that Samaria had re", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*John 14:26*\n℣. The Holy Spirit will teach you whatever I have said to you. Alleluia. (Kneel.)\n℣. Co", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:1-10.*\nAt that time, Jesus said to the Pharisees, Amen, ame", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nThe Lord opened the doors of heaven; He rained manna upon them for food and gave them heavenly bread. The ", + "id": "Offertorium" + }, + { + "body": "May the offering of this gift here before You, O Lord, make us pure and worthy to take part in this sacred rite.\nThrough", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 15:26; 16:14*\nThe Spirit Who proceeds from the Father, alleluia: He will glorify Me, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "May the Holy Spirit, we beseech You, O Lord, renew our minds through the heavenly sacrament, for He Himself is the forgi", + "id": "Postcommunio" + } + ], + "2024-05-22": [ + { + "body": "*Ps 67:8-9*\nO God, when You went forth at the head of Your people, making a passage for them, dwelling in their midst, a", + "id": "Introitus" + }, + { + "body": "May the Paraclete Who proceeds from You, enlighten our minds, we beseech You, O Lord, and guide us to all truth, as Your", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 2:14-21.*\nIn those days, Peter, standing up with the Eleven, lifted up his voice ", + "id": "LectioL1" + }, + { + "body": "Alleluia.\n*Ps 32:6*\n℣. By the word of the Lord the heavens were made; by the breath of His mouth all their host.\n\n##Glor", + "id": "GradualeL1" + }, + { + "body": "Grant, we beseech You, almighty and most merciful God, that the Holy Spirit may come to dwell in us, graciously making u", + "id": "OratioL1" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 5:12-16*\nIn those days, by the hands of the Apostles many signs and wonders were ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n℣. (Kneel.) Come, O Holy Spirit, fill the hearts of Your faithful; and kindle in them the fire of Yo", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 6:44-52.*\nAt that time, Jesus said to the Jews: No one can com", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly. And I will lift up my hands to Your commands, ", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the gifts we offer, and graciously bring it about that we may practice by a holy life wh", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 14:27.*\nPeace I leave with you, alleluia; My peace I give to you, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "As we receive Your heavenly sacrament we beseech You, merciful Lord, may we reap in the joys of eternity the fruits of w", + "id": "Postcommunio" + } + ], + "2024-05-23": [ + { + "body": "*Wis 1:7*\nThe Spirit of the Lord fills the world, alleluia, is all-embracing, and knows man’s utterance, alleluia, allel", + "id": "Introitus" + }, + { + "body": "O God, You Who on this day have taught the hearts of the faithful by the light of the Holy Spirit, grant us by that Holy", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 8:5-8*\nIn those days, Philip went down to the city of Samaria and preached the Ch", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps 103:30*\n℣. Send forth Your Spirit, and they shall be created: and You shall renew the face of th", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 9:1-6*\nAt that time, having summoned the twelve apostles, Jesu", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nConfirm, O God, what You have wrought in us; from Your temple, which is in Jerusalem, kings shall offer gi", + "id": "Offertorium" + }, + { + "body": "Sanctify these offerings, we beseech You, O Lord, and cleanse our hearts by the light of the Holy Spirit.\nThrough our Lo", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*Acts 2:2; 2:4*\nSuddenly there came a sound from heaven, as of a violent wind blowing, where they were sitting, alleluia", + "id": "Communio" + }, + { + "body": "May the inpouring of the Holy Spirit cleanse our hearts, O Lord, and make them fertile through the dew He sprinkles upon", + "id": "Postcommunio" + } + ], + "2024-05-24": [ + { + "body": "*Ps 70:8; 70:23*\nLet my mouth be filled with Your praise, alleluia: that I may sing, alleluia. My lips shall shout for j", + "id": "Introitus" + }, + { + "body": "Grant to Your Church, we beseech You, almighty God, that, united by the Holy Spirit, she may in no way be harmed by any ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Joel\n*Joel 2:23-24; 26-27*\nThus says the Lord God: O children of Sion, exult and rejoice in the ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Wis 12:1*\n℣. O how good and sweet is Your Spirit, O Lord, within us! Alleluia. (Kneel.)\n℣. Come, O ", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 5:17-26*\nAt that time, it came to pass on one of the days, tha", + "id": "Evangelium" + }, + { + "body": "*Wis 145:1-2*\nPraise the Lord, O my soul; I will praise the Lord all my life; I will sing praise to my God while I live,", + "id": "Offertorium" + }, + { + "body": "May the sacrificial gifts offered in Your sight, O Lord, be consumed by that divine fire which the Holy Spirit enkindled", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 14:18*\nI will not leave you orphans; I will come to you again, alleluia: and your heart shall rejoice, alleluia.", + "id": "Communio" + }, + { + "body": "We who have received the gift of Your Blessed Sacrament, O Lord, humbly pray that what You have taught us to do in comme", + "id": "Postcommunio" + } + ], + "2024-05-25": [ + { + "body": "*Rom 5:5.*\nThe charity of God is poured forth in our hearts, alleluia: by His Spirit dwelling in us, alleluia, alleluia.", + "id": "Introitus" + }, + { + "body": "Graciously pour into our minds, we beseech You, O Lord, the Holy Spirit, Whose wisdom created us and Whose providence go", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Joel\n*Joel 2:28-32.*\nThus says the Lord God: I will pour out My Spirit upon all mankind. Your so", + "id": "LectioL1" + }, + { + "body": "Alleluia.\n*John 6:64*\nIt is the Spirit that gives life; but the flesh profits nothing.", + "id": "GradualeL1" + }, + { + "body": "May the Holy Spirit, we beseech You, O Lord, inflame us with that fire which our Lord Jesus Christ cast upon the earth a", + "id": "OratioL1" + }, + { + "body": "Lesson from the book of Leviticus\n*Lev. 23:9-11; 15-17, 21.*\nIn those days, the Lord spoke to Moses, saying: Speak to th", + "id": "LectioL2" + }, + { + "body": "Alleluia.\n*Job 26:13*\n℣. His Spirit has adorned the heavens.", + "id": "GradualeL2" + }, + { + "body": "O God, Who for the healing of our souls has commanded that our bodies should be disciplined by devout fasting, mercifull", + "id": "OratioL2" + }, + { + "body": "Lesson from the book of Deuteronomy\n*Deut. 26:1-3; 7-11*\nIn those days, Moses said to the Israelites: Hear, O Israel, th", + "id": "LectioL3" + }, + { + "body": "Alleluia.\n*Acts 2:1*\n℣. When the days of Pentecost were accomplished, they were all sitting together.", + "id": "GradualeL3" + }, + { + "body": "Grant, we beseech You, almighty God, that we, disciplined by wholesome fasting and refraining from all wrong-doing, may ", + "id": "OratioL3" + }, + { + "body": "Lesson from the book of Leviticus\n*Lev. 26:3-12.*\nIn those days, the Lord said to Moses. Speak to the Israelites, and te", + "id": "LectioL4" + }, + { + "body": "Alleluia.\n℣. (Kneel.) Come, O Holy Spirit, fill the hearts of Your faithful; and kindle in them the fire of Your love.", + "id": "GradualeL4" + }, + { + "body": "Grant, we beseech You, almighty God, that we may so fast from bodily food as to abstain also from the sins that beset us", + "id": "OratioL4" + }, + { + "body": "Lesson from the book of Daniel\n*Dan. 3:47-51.*\nIn those days, the Angel of the Lord went down into the furnace with Azar", + "id": "LectioL5" + }, + { + "body": "Alleluia.\n*Dan 3:52*\nBlessed are You, O Lord, the God of our fathers, and worthy to be praised forever.", + "id": "GradualeL5" + }, + { + "body": "O God, You Who tempered the flames of fire for the three young men, mercifully grant that the flames of sin may not burn", + "id": "OratioL5" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 5:1-5.*\nBrethren: Having been justified by faith, let ", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nPraise the Lord, all you nations; glorify Him, all you peoples! For steadfast is His kindness toward us, an", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 4:38-44.*\nAt that time, Jesus rose from the synagogue and ente", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nO Lord, the God of my salvation, by day I cry out, at night I clamor in Your presence. Let my prayer come be", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, O Lord, that we may offer You a heart cleansed by this sacred rite so that our fast may be acc", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 3:8.*\nThe Spirit breaths where He will, and you hear His voice, alleluia, alleluia; but do not know whence He come", + "id": "Communio" + }, + { + "body": "May Your holy things, O Lord, fill us with divine eagerness to enjoy their celebration together with their effects.\nThro", + "id": "Postcommunio" + } + ], + "2024-05-26": [ + { + "body": "*Tob 12:6*\nBlessed be the Holy Trinity and undivided Unity: we will give glory to Him, because He has shown His mercy to", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, You Who have given Your servants, in the confession of the true faith, to acknowledge the glory o", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 11:33-36.*\nOh, the depth of the riches of the wisdom a", + "id": "Lectio" + }, + { + "body": "*Dan 3:55-56*\nBlessed are You, O Lord, Who look into the depths from Your throne upon the Cherubim.\n℣. Blessed are You, ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 28:18-20*\nAt that time, Jesus said to His disciples: All po", + "id": "Evangelium" + }, + { + "body": "*Tob. 12:6.*\nBlessed be God the Father, and the only-begotten Son of God, and also the Holy Spirit: because He has shown", + "id": "Offertorium" + }, + { + "body": "We call upon Your Name, O Lord, and beseech You to hallow this sacrificial offering and through it to make us an eternal", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Tob 12:6*\nWe bless the God of heaven, and before all living we will praise Him; because He has shown His mercy to us.", + "id": "Communio" + }, + { + "body": "May the reception of this sacrament, O Lord our God, and the profession of our faith in the eternal holy Trinity and und", + "id": "Postcommunio" + } + ], + "2024-05-27": [ + { + "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", + "id": "Introitus" + }, + { + "body": "O God, Who enlightened Your Church with the learning of blessed Bede, Your Confessor and Doctor, graciously grant that Y", + "id": "Oratio" + }, + { + "body": "*For St. John I.*\nO God, Who gladden us with the yearly festival of blessed N., Your Martyr and Bishop, mercifully grant", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed Bede, Your Bishop and Doctor, fail us never, O Lord; may it commend our offerings and e", + "id": "Secreta" + }, + { + "body": "*For St. John I.*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of blessed N., Your Mart", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "So that your sacrificial rites may grant us salvation, we pray you, O Lord, that blessed Bede, Your Bishop and illustrio", + "id": "Postcommunio" + }, + { + "body": "*For St. John I.*\nMay this Communion, O Lord, cleanse us of sin, and through the intercession of blessed N., Your Martyr", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-28": [ + { + "body": "*Ps 131:9-10*\nMay Your priests, O Lord, be clothed with justice; let Your faithful ones shout merrily for joy. For the s", + "id": "Introitus" + }, + { + "body": "O God, Who graciously enlightened the English peoples with the light of the true faith by the preaching and miracles of ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Thessalonians\n*1 Thess 2:2-9*\nBrethren: We had confidence in", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\nHer priests I will clothe with salvation, and her faithful ones shall shout merrily for joy.\n℣. In her wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9.*\nAt that time, the Lord appointed seventy-two others, ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exulted.", + "id": "Offertorium" + }, + { + "body": "We offer sacrifice unto You, O Lord, on the feast of blessed Augustine, Your Bishop and Confessor, humbly beseeching You", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Strengthened by the sacrifice of salvation, we humbly pray You, O Lord, that through the prayerful intercession of bless", + "id": "Postcommunio" + } + ], + "2024-05-29": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "O God, lover of chastity, Who endowed with heavenly gifts blessed Mary Magdalen, a virgin on fire with love for You, gra", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the intercession of her who", + "id": "Postcommunio" + } + ], + "2024-05-30": [ + { + "body": "*Ps. 80:17.*\nHe fed them with the best of wheat, alleluia; and filled them with honey from the rock, alleluia, alleluia,", + "id": "Introitus" + }, + { + "body": "O God, You Who in this wondrous sacrament have left us a memorial of Your passion, grant us, we beseech You, so to vener", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 23-29.*\nBrethren: I myself have received", + "id": "Lectio" + }, + { + "body": "*Ps. 144:15-16.*\nThe eyes of all look hopefully to You, O Lord; and You give them their food in due season.\n℣. You open ", + "id": "Graduale" + }, + { + "body": "O Sion, thy Redeemer praising,\nSongs of joy to Him upraising,\nLaud thy Pastor and thy Guide:\n\nSwell thy notes most high ", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 6:56-59.*\nAt that time, Jesus said to the crowds of the Jews: ", + "id": "Evangelium" + }, + { + "body": "*Lev 21:6*\nThe priests of the Lord offer incense and loaves to God, and therefore they shall be sacred to their God and ", + "id": "Offertorium" + }, + { + "body": "Graciously give Your Church, we beseech You, O Lord, the gifts of unity and peace which are betokened by the gifts we of", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*1 Cor. 11:26-27.*\nAs often as you shall eat this Bread and drink the cup, you proclaim the death of the Lord, until He ", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord, that we may be filled with that everlasting enjoyment of Your Godhead, as foreshadowed he", + "id": "Postcommunio" + } + ], + "2024-05-31": [ + { + "body": "Let us all rejoice in the Lord, celebrating a feast in honor of the blessed Virgin Mary, our Queen, on whose solemnity t", + "id": "Introitus" + }, + { + "body": "Grant we beseech You, O Lord, that we who keep the feast of the Blessed Virgin Mary, Our Queen, safe under her protectio", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Petronilla*\nHear us, O God, our Saviour, that as we are gladdened by the festival of blessed N. thy v", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Eccli 24:5; 14:7; 14:9-11; 24:30-31*\nFrom the mouth of the Most High I came fort", + "id": "Lectio" + }, + { + "body": "*Rev 19:16; Ps 44:10*\nHe has on His garment and on His thigh a name written: King of kings and Lord of lords.\n℣. The Que", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-33*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "Sprung from a royal line, all radiant is Mary, by whose prayers we most devoutly beg to be helped both in mind and in sp", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the gifts of the rejoicing Church and grant by the pleading merits of the Blessed Virgin", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Petronilla*\nMay the service of thy holy people be acceptable to Thee, O Lord, and honorable to thy sa", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nMost worthy Queen of the world, Mary ever Virgin, who have borne Christ the Lord, the Saviour of all, in", + "id": "Communio" + }, + { + "body": "We who have celebrated the sacred rites in honor of Holy Mary, our Queen, pray, O Lord, that through the intercession of", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Petronilla*\nThou hast fed thy servants, O Lord, with the holy gifts; comfort us ever we pray, by her ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-01": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "O God, Who willed that through blessed Angela a new family of holy Virgins should flower in Your Church, grant us throug", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the sacrificial gifts we offer You, O Lord, as we venerate the memory of blessed Angela, beg forgiveness for our sin", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "Refreshed by heavenly food, we humbly pray You, O Lord, through the prayers and example of blessed Angela that, cleansed", + "id": "Postcommunio" + } + ], + "2024-06-02": [ + { + "body": "*Ps. 17:19-20.*\nThe Lord came to my support. He set me free in the open, and rescued me, because He loves me.\n*Ps 17:2-3", + "id": "Introitus" + }, + { + "body": "Grant, O Lord, that we may always fear and love Your holy Name, for You never fail to guide those whom You firmly establ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 3:13-18.*\nBeloved: Do not be surprised if the world hates yo", + "id": "Lectio" + }, + { + "body": "*Ps. 119:1-2.*\nIn my distress I called to the Lord, and He answered me.\n℣. O Lord, deliver me from lying lip, from treac", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:16-24.*\nAt that time, Jesus spoke to the Pharisees this par", + "id": "Evangelium" + }, + { + "body": "*Ps. 6:5.*\nReturn, O Lord, save my life; rescue me because of Your kindness.", + "id": "Offertorium" + }, + { + "body": "May the sacrifice we are about to offer unto Your holy Name, O Lord, make us pure, and day by day help us to live a more", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 12:6.*\nI will sing of the Lord, He has been good to me; and I will sing to the Name of the Lord the Most High.", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord, that having received Your gifts, each partaking of this sacrament may increase within us its sav", + "id": "Postcommunio" + } + ], + "2024-06-03": [ + { + "body": "*Ps. 17:19-20.*\nThe Lord came to my support. He set me free in the open, and rescued me, because He loves me.\n*Ps 17:2-3", + "id": "Introitus" + }, + { + "body": "Grant, O Lord, that we may always fear and love Your holy Name, for You never fail to guide those whom You firmly establ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 3:13-18.*\nBeloved: Do not be surprised if the world hates yo", + "id": "Lectio" + }, + { + "body": "*Ps. 119:1-2.*\nIn my distress I called to the Lord, and He answered me.\n℣. O Lord, deliver me from lying lip, from treac", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:16-24.*\nAt that time, Jesus spoke to the Pharisees this par", + "id": "Evangelium" + }, + { + "body": "*Ps. 6:5.*\nReturn, O Lord, save my life; rescue me because of Your kindness.", + "id": "Offertorium" + }, + { + "body": "May the sacrifice we are about to offer unto Your holy Name, O Lord, make us pure, and day by day help us to live a more", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 12:6.*\nI will sing of the Lord, He has been good to me; and I will sing to the Name of the Lord the Most High.", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord, that having received Your gifts, each partaking of this sacrament may increase within us its sav", + "id": "Postcommunio" + } + ], + "2024-06-04": [ + { + "body": "*Ps. 21:15; 68:10*\nMy heart has become like wax melting away within my bosom, because zeal for Your house consumes me.\n*", + "id": "Introitus" + }, + { + "body": "O God, Who endowed blessed Francis, the founder of a new Order, with zeal for prayer and love of penance, grant that You", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis. 4:7-14.*\nThe just man, though he die early, shall be at rest. For the age that is h", + "id": "Lectio" + }, + { + "body": "*Ps. 41:2-3.*\nAs the deer longs for the running waters, so my soul longs for You, O God.\n℣. Athirst is my soul for the s", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40.*\nAt that time, Jesus said to His disciples, Let your", + "id": "Evangelium" + }, + { + "body": "*Ps. 91:13.*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow.", + "id": "Offertorium" + }, + { + "body": "Grant, most merciful Jesus, that, as we commemorate the renowned merits of blessed Francis, and aflame with the same fir", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 30:20.*\nHow great is the goodness, O Lord, which You have in store for those who fear You.", + "id": "Communio" + }, + { + "body": "O Lord, may the most holy sacrifice, which we have today offered unto Your majesty on the feast of blessed Francis leave", + "id": "Postcommunio" + } + ], + "2024-06-05": [ + { + "body": "*Isa. 65:19; 65:23*\nI will rejoice in Jerusalem and exult in My people. No longer shall the sound of weeping be heard th", + "id": "Introitus" + }, + { + "body": "O God, Who, through the zeal of blessed Boniface, Your Martyr and Bishop, graciously called a multitude of people to the", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus. 44:1-15.*\nLet us now praise men of renown, our ancestors, each in his ow", + "id": "Lectio" + }, + { + "body": "*1 Peter 4:13-14.*\nRejoice, in so far as you are partakers of the sufferings of Christ, that you may also rejoice with e", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:1-12*\nAt that time, Jesus seeing the crowds, went up the ", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7-8*\nI bless the Lord Who counsels me; I set God ever before me; with Him at my right hand I shall not be disturb", + "id": "Offertorium" + }, + { + "body": "May a bountiful blessing, O Lord, descend upon these offerings and, through Your mercy, may it help to make us holy and ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Rev 3:21*\nHe who overcomes, I will permit him to sit with Me upon My throne; as I also have overcome and have sat with ", + "id": "Communio" + }, + { + "body": "Made holy by the sacrament of salvation, we beseech You, O Lord, that the prayers of blessed Boniface, Your Martyr and B", + "id": "Postcommunio" + } + ], + "2024-06-06": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O God, Who made blessed Norbert, Your Confessor and Bishop, a brilliant preacher of Your word, and through him enriched ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + } + ], + "2024-06-07": [ + { + "body": "*Ps. 32:11, 19*\nThe thoughts of His Heart are to all generations: to deliver them from death and preserve them in spite ", + "id": "Introitus" + }, + { + "body": "O God, Who in the Heart of Your Son, wounded by our sins, mercifully lavish upon us the infinite riches of love, grant, ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph. 3:8-12, 14-19.*\nBrethren: To me, the very least of", + "id": "Lectio" + }, + { + "body": "*Ps. 24:8-9*\nGood and upright is the Lord; thus He shows sinners the way.\n℣. He guides the humble to justice; He teaches", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:31-37.*\nAt that time, the Jews, since it was the Preparatio", + "id": "Evangelium" + }, + { + "body": "*Ps. 68:21.*\nMy heart expected reproach and misery; I looked for sympathy, but there was none; and for comforters, and I", + "id": "Offertorium" + }, + { + "body": "Look, we beseech You, O Lord, upon the Heart of Your beloved Son, with its boundless love, so that what we offer, may be", + "id": "Secreta" + }, + { + "body": "*Sacred Heart*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*John 19:34.*\nOne of the soldiers opened His side with a lance, and immediately there came out blood and water.", + "id": "Communio" + }, + { + "body": "May Your sacrament, O Lord Jesus, give us holy zeal, so that, seeing the sweetness of Your most loving Heart, we may lea", + "id": "Postcommunio" + } + ], + "2024-06-08": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + } + ], + "2024-06-09": [ + { + "body": "*Ps. 24:16, 18*\nLook toward me, and have pity on me, O Lord, for I am alone and afflicted. Put an end to my affliction a", + "id": "Introitus" + }, + { + "body": "O God, protector of all who hope in You, without Whom nothing is strong, nothing is holy, increase Your mercy toward us,", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:6-11*\nBeloved: Humble yourselves under the mighty hand o", + "id": "Lectio" + }, + { + "body": "*Ps. 54:23, 17, 19*\nCast your care upon the Lord, and He will support you.\n℣. When I called upon the Lord, He heard my v", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 15:1-10*\nAt that time, the publicans and sinners were drawing ", + "id": "Evangelium" + }, + { + "body": "*Ps. 9:11-13*\nThey trust in You who cherish Your name, O Lord, for You forsake not those who seek You. Sing praise to th", + "id": "Offertorium" + }, + { + "body": "Look favorably, O Lord, upon the offerings of Your prayerful Church and grant that those who believe may, in continual h", + "id": "Secreta" + }, + { + "body": "*Sacred Heart*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Luke 15:10*\nI say to you: there is joy among the angels of God over one sinner who repents.", + "id": "Communio" + }, + { + "body": "May the holy things of which we have partaken bring us to life and prepare for Your everlasting mercy those whom You hav", + "id": "Postcommunio" + } + ], + "2024-06-10": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "O God, Who made blessed Queen Margaret glorious by her remarkable charity toward the poor; grant, by her intercession an", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", + "id": "Postcommunio" + } + ], + "2024-06-11": [ + { + "body": "*Ps. 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", + "id": "Introitus" + }, + { + "body": "O God, Who gladden us by the merits and intercession of blessed Barnabas, Your Apostle, mercifully grant that we, who as", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 11:21-26; 13:1-3.*\nIn those days, a great number at Antioch believed and turned t", + "id": "Lectio" + }, + { + "body": "*Ps. 18:5; 18:2*\nThrough all the earth their voice resounds, and to the ends of the world, their message.\n℣. The heavens", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:16-22*\nAt that time, Jesus said to His disciples, Behold", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord, through all gener", + "id": "Offertorium" + }, + { + "body": "Make holy the sacrificial gifts we offer, O Lord, and, through the intercession of blessed Barnabas, Your Apostle, clean", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nYou who have followed Me shall sit on thrones judging the twelve tribes of Israel.", + "id": "Communio" + }, + { + "body": "We humbly beseech You, almighty God, that, through the intercession of blessed Barnabas Your Apostle, You will grant tho", + "id": "Postcommunio" + } + ], + "2024-06-12": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, author of peace and lover of charity, Who endowed blessed John, Your Confessor, with a wondrous grace for reconci", + "id": "Oratio" + }, + { + "body": "*For St. Basilides and Companions*\nO Lord, we beseech You, may the anniversary of the death of Your Martyrs, Basilides, ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Eccli 31:8-11*\nHappy the man found without fault, who turns not aside after gain", + "id": "Lectio" + }, + { + "body": "*Ps 91:12: 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*For St. Basilides and Companions*\nO Lord, in honor of the blood shed by Your Saints, Basilides, Cyrinus, Nabor and Naza", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + }, + { + "body": "*For St. Basilides and Companions*\nGrant, we beseech You, O Lord, that we who keep each year the feast of Your holy Mart", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-13": [ + { + "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", + "id": "Introitus" + }, + { + "body": "May the solemn feast of blessed Anthony, Your Confessor and Doctor, make Your Church rejoice, O God, so that, ever susta", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the offering here before You, O Lord, bring safety to Your people, for whom You mercifully offered Yourself a living", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "Refreshed by divine gifts, we beseech You, O Lord, that through the merits and intercession of blessed Anthony, Your Con", + "id": "Postcommunio" + } + ], + "2024-06-14": [ + { + "body": "*Eccli 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and und", + "id": "Introitus" + }, + { + "body": "We beseech You, O Lord, hear our prayers which we offer on the festival of blessed Basil, Your Confessor and Bishop, and", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom and his tongue utters what is right.\n℣. The law of his God is in his", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:26-35*\nAt that time Jesus said to the multitudes, If anyone", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "May the annual festival of blessed Basil, Your Confessor and Bishop, we beseech You, O Lord, render us pleasing to Your ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their rations of ", + "id": "Communio" + }, + { + "body": "O God, Who rewards faithful souls, grant that, through the prayers of blessed Basil, Your Confessor and Bishop, whose ha", + "id": "Postcommunio" + } + ], + "2024-06-15": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Vitus*\nGrant O Lord, we pray, that through the intercession of thy Holy Martyrs Vitus, Modestus and C", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Vitus*\nAs the gifts, we offer in honor of thy Saints, O Lord, bear witness to the glory of thy divine", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Vitus*\nWe, who have been filled with thy solemn blessing, ask, O Lord, that, through the intercession", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-16": [ + { + "body": "*Ps. 26:1-2*\nThe Lord is my light and my salvation; whom should I fear? The Lord is my life’s refuge; of whom should I b", + "id": "Introitus" + }, + { + "body": "Grant us, we beseech You, O Lord, that the course of the world may be directed according to Your rule in peace and that ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:18-23*\nBrethren: I reckon that the sufferings of the", + "id": "Lectio" + }, + { + "body": "*Ps. 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God our Saviour; be", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 5:1-11*\nAt that time, while the crowds were pressing upon Jesu", + "id": "Evangelium" + }, + { + "body": "*Ps. 12:4-5*\nGive light to my eyes that I may never sleep in death, lest my enemy say, I have overcome him.", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by accepting our offerings, and in Your kindness make even our rebellious wills tur", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps. 17:3*\nO Lord, my rock, my fortress, my deliverer: my God, my rock of refuge!", + "id": "Communio" + }, + { + "body": "May the sacrament we have received cleanse us, we beseech You, O Lord, and by its grace protect us.\nThrough our Lord…", + "id": "Postcommunio" + } + ], + "2024-06-17": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O God, Who have willed that Blessed Gregory, Your Confessor and Bishop, be renowned for the care of his flock and compas", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + } + ], + "2024-06-18": [ + { + "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", + "id": "Introitus" + }, + { + "body": "O God, Who willed to enlighten Your Church by the wondrous learning and glorious merits of the life of blessed Ephrem, Y", + "id": "Oratio" + }, + { + "body": "*For SS. Mark and Marcellianus*\nGrant, we beseech You, almighty God, that we who celebrate the anniversary of the death ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the loving prayer of blessed Ephrem, Your Confessor and Doctor, fail us not, both to make our gifts acceptab", + "id": "Secreta" + }, + { + "body": "*For SS. Mark and Marcellianus*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of blessed", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "May blessed Ephrem, Your Confessor, and renowned Doctor, plead for us, so that the sacrifice we offer You may bring us s", + "id": "Postcommunio" + }, + { + "body": "*For SS. Mark and Marcellianus*\nRefreshed by the sacramental gift of Your salvation, we humbly beseech You, O Lord, thro", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-19": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "O God, Who miraculously fortified blessed Juliana, Your Virgin, in her last illness with the precious Body of Your Son, ", + "id": "Oratio" + }, + { + "body": "*For SS. Gervase and Protase*\nO God, Who gladden us by the annual festival of Your Martyrs, Gervase and Protase, grant t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", + "id": "Secreta" + }, + { + "body": "*For SS. Gervase and Protase*\nBe appeased by the gifts we offer You, O Lord, and through the intercession of Your holy M", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", + "id": "Postcommunio" + }, + { + "body": "*For SS. Gervase and Protase*\nMay this Communion, O Lord, cleanse us of sin, and through the intercession of Your holy M", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-20": [ + { + "body": "*Ps. 26:1-2*\nThe Lord is my light and my salvation; whom should I fear? The Lord is my life’s refuge; of whom should I b", + "id": "Introitus" + }, + { + "body": "Grant us, we beseech You, O Lord, that the course of the world may be directed according to Your rule in peace and that ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Silverius*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, b", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:18-23*\nBrethren: I reckon that the sufferings of the", + "id": "Lectio" + }, + { + "body": "*Ps. 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God our Saviour; be", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 5:1-11*\nAt that time, while the crowds were pressing upon Jesu", + "id": "Evangelium" + }, + { + "body": "*Ps. 12:4-5*\nGive light to my eyes that I may never sleep in death, lest my enemy say, I have overcome him.", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by accepting our offerings, and in Your kindness make even our rebellious wills tur", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Silverius*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so th", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 17:3*\nO Lord, my rock, my fortress, my deliverer: my God, my rock of refuge!", + "id": "Communio" + }, + { + "body": "May the sacrament we have received cleanse us, we beseech You, O Lord, and by its grace protect us.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Silverius*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, th", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-21": [ + { + "body": "*Ps 8:6*\nYou have made him little less than the angels, and crowned him with glory and honor.\n*Ps 148:2*\nPraise the Lord", + "id": "Introitus" + }, + { + "body": "O God, bestower of heavenly gifts, Who in the angelic youth Aloysius joined wondrous innocence of life to an equally won", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Eccli 31:8-11*\nHappy the man found without fault, who turns not aside after gain", + "id": "Lectio" + }, + { + "body": "*Ps 70:5-6*\nMy trust, O Lord, from my youth; on You I depend from birth; from my mother’s womb You are my strength.\n*Ps ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:29-40*\nAt that time, Jesus answered and said to the Sadd", + "id": "Evangelium" + }, + { + "body": "*Ps 23:3-4*\nWho can ascend the mountain of the Lord? or who may stand in His holy place? He whose hands are sinless, who", + "id": "Offertorium" + }, + { + "body": "Make us take our place, O Lord, at Your heavenly banquet clothed in the wedding-garment which the loving preparation and", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 77:24-25*\nHe gave them heavenly bread; the bread of the angels was eaten by men.", + "id": "Communio" + }, + { + "body": "Grant, O Lord, that we who have been fed with the food of angels may also live angelic lives, and, following the example", + "id": "Postcommunio" + } + ], + "2024-06-22": [ + { + "body": "*Ps 131:9-10*\nMay Your priests, O Lord, be clothed with justice; let Your faithful ones shout merrily for joy. For the s", + "id": "Introitus" + }, + { + "body": "O God, Who promised to those who forsake all things in this world for You a hundred-fold reward in the world to come and", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 8:9-15*\nBrethren: You know the gracious", + "id": "Lectio" + }, + { + "body": "*Eccl 44:16*\nBehold a great priest, who in his days pleased God.\n*Eccl 44:20*\n℣. There was not found the like to him, wh", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "Grant us, O Lord, by the example of the blessed Bishop Paulinus, to join the sacrifice of perfect charity with the offer", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Bestow upon us, O Lord, through the Blessed Sacrament, that inspiration of holiness and humility which Your saintly Bish", + "id": "Postcommunio" + } + ], + "2024-06-23": [ + { + "body": "*Ps. 26:7, 9*\nHear, O Lord, the sound of my call; be my helper: forsake me not: despise me not, O God my Saviour.\n*Ps 26", + "id": "Introitus" + }, + { + "body": "O God, You Who have prepared good things as yet unseen for those who love You, pour a burning love into our hearts, so t", + "id": "Oratio" + }, + { + "body": "*Commemoration Vigil of the Nativity of St. John the Baptist*\nGrant, we beseech You, almighty God, that Your household m", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 3:8-15.*\nBeloved: Be all like-minded in prayer, compassiona", + "id": "Lectio" + }, + { + "body": "*Ps. 83:10, 9*\nBehold, O God, our protector, and look on Your servants.\n℣. O Lord God of Hosts, hear the prayers of Your", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:20-24.*\nAt that time, Jesus said to His disciples: Unless", + "id": "Evangelium" + }, + { + "body": "*Ps. 15:7-8.*\nI bless the Lord Who counsels me; I set God ever before me; with Him at my right hand I shall not be distu", + "id": "Offertorium" + }, + { + "body": "Be propitious to our supplications, O Lord, and graciously receive these oblations of Your servants and handmaids, that ", + "id": "Secreta" + }, + { + "body": "*Commemoration Vigil of the Nativity of St. John the Baptist*\nSanctify, O Lord, the gifts offered to You, and, by the in", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps. 26:4.*\nOne thing I ask of the Lord; this I seek: to dwell in the house of the Lord all the days of my life.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that we whom You have filled with the heavenly gift may be cleansed of our hidden sins", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Vigil of the Nativity of St. John the Baptist*\nMay the powerful prayer of blessed John the Baptist go wit", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-24": [ + { + "body": "*Isa 49:1-2*\nFrom my mother’s womb the Lord called me by my name, and made of me a sharp-edged sword; He concealed me in", + "id": "Introitus" + }, + { + "body": "O God, Who made this a day most worthy of our celebration because of blessed John; grant Your people the grace of spirit", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 49:1-3, 5-7.*\nHear me, O coastlands, listen, O distant peoples. The Lord called me f", + "id": "Lectio" + }, + { + "body": "*Jer 1:5, 9*\nBefore I formed you in the womb, I knew you; and before you were born, I dedicated you.\n℣. The Lord put for", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:57-68*\nElizabeth’s time was fulfilled that she should be del", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just man shall flourish like the palm tree; like a cedar of Lebanon shall he grow.", + "id": "Offertorium" + }, + { + "body": "We heap Your altar with gifts, O Lord, celebrating the birth of him who announced the coming of the Saviour of the world", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 1:76*\nYou, child, shall be called the prophet of the Most High; for you shall go before the face of the Lord to pr", + "id": "Communio" + }, + { + "body": "May Your Church, O God, rejoice at the birth of blessed John the Baptist, through whom she knew the author of her own re", + "id": "Postcommunio" + } + ], + "2024-06-25": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who made Your Saints an example and a help for our weakness; grant us, as we walk the path of salvation, so to ve", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy Abbot William, prevail by his prayers, so that the offerings placed upon Your sacre", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "May the pleading of the blessed Abbot William for us, together with the partaking of Your sacrament, protect us, O Lord,", + "id": "Postcommunio" + } + ], + "2024-06-26": [ + { + "body": "*Ps 33:20-21*\nMany are the troubles of the just, but out of them all the Lord delivers them; the Lord watches over all t", + "id": "Introitus" + }, + { + "body": "We beseech You, almighty God, that on this feast-day we may have the double joy of celebrating blessed John and Paul, tr", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Eccli 44:10-15*\nThese were godly men whose virtues have not been forgotten; thei", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nBehold, how good it is, and how pleasant, where brethren dwell as one! It is as when the precious ointment ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:1-8*\nAt that time, Jesus said to His disciples, Beware of t", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nAll who love Your name shall glory in You, for You, O Lord, bless the just man; O Lord, You surround us wit", + "id": "Offertorium" + }, + { + "body": "O Lord, graciously accept, through the merits of Your holy Martyrs John and Paul, the sacrificial gifts dedicated to You", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Wis 3:4-6*\nFor if before men they were punished, God tried them; as gold in the furnace He proved them, and as sacrific", + "id": "Communio" + }, + { + "body": "We have partaken of the heavenly sacrament, O Lord, as we celebrate the feast of Your holy Martyrs John and Paul; grant,", + "id": "Postcommunio" + } + ], + "2024-06-27": [ + { + "body": "*Ps. 26:7, 9*\nHear, O Lord, the sound of my call; be my helper: forsake me not: despise me not, O God my Saviour.\n*Ps 26", + "id": "Introitus" + }, + { + "body": "O God, You Who have prepared good things as yet unseen for those who love You, pour a burning love into our hearts, so t", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 3:8-15.*\nBeloved: Be all like-minded in prayer, compassiona", + "id": "Lectio" + }, + { + "body": "*Ps. 83:10, 9*\nBehold, O God, our protector, and look on Your servants.\n℣. O Lord God of Hosts, hear the prayers of Your", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:20-24.*\nAt that time, Jesus said to His disciples: Unless", + "id": "Evangelium" + }, + { + "body": "*Ps. 15:7-8.*\nI bless the Lord Who counsels me; I set God ever before me; with Him at my right hand I shall not be distu", + "id": "Offertorium" + }, + { + "body": "Be propitious to our supplications, O Lord, and graciously receive these oblations of Your servants and handmaids, that ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 26:4.*\nOne thing I ask of the Lord; this I seek: to dwell in the house of the Lord all the days of my life.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that we whom You have filled with the heavenly gift may be cleansed of our hidden sins", + "id": "Postcommunio" + } + ], + "2024-06-28": [ + { + "body": "*John 21:18-19*\nThe Lord said to Peter, When you were young you girded yourself and walked where you would. But when you", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we, whom you solidly established upon the rock of apostolic faith, be not trou", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 3:1-10*\nIn those days, Peter and John were going up into the temple at the ninth ", + "id": "Lectio" + }, + { + "body": "*Ps 18:5, 2*\nThrough all the earth their voice resounds, and to the ends of the world, their message.\n℣. The heavens dec", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 21:15-19*\nAt that time, Jesus said to Simon Peter, Simon, son ", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable, their principality is exceedingly strengthened.", + "id": "Offertorium" + }, + { + "body": "Sanctify the gift of Your people, we beseech You, O Lord, by the intercession of the Apostles, and cleanse us from the s", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 21:15, 17*\nSimon, son of John, do you love Me more than these do? Lord, You know all things; You know, Lord, that ", + "id": "Communio" + }, + { + "body": "O Lord, by the intercession of Your Apostles, defend from all harm those whom You have filled with heavenly food.\nThroug", + "id": "Postcommunio" + } + ], + "2024-06-29": [ + { + "body": "*Acts 12:11*\nNow I know for certain that the Lord has sent His angel, and rescued me from the power of Herod, and from a", + "id": "Introitus" + }, + { + "body": "O God, Who made this day holy by the martyrdom of Your Apostles Peter and Paul, grant Your Church to follow in all thing", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 12:1-11*\nIn those days, Herod the king set hands on certain members of the Church", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus having come into the district", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord, through all gener", + "id": "Offertorium" + }, + { + "body": "May the prayers of Your holy Apostles, O Lord, accompany the sacrificial gifts which we offer to be hallowed in Your nam", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build My Church.", + "id": "Communio" + }, + { + "body": "O Lord, by the prayer of Your Apostles, protect from all harm those whom You have fed with heavenly food.\nThrough our Lo", + "id": "Postcommunio" + } + ], + "2024-06-30": [ + { + "body": "*Ps. 27:8-9.*\nThe Lord is the strength of His people, the saving refuge of His anointed. Save Your people, O Lord, and b", + "id": "Introitus" + }, + { + "body": "O God of the heavenly powers, creator of all good things, implant in our hearts the love of Your Name, and bestow upon u", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:3-11.*\nBrethren: All we who have been baptized into ", + "id": "Lectio" + }, + { + "body": "*Ps. 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants!\n℣. O Lord, You have been our refuge through all gen", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 8:1-9*\nAt that time, when there was a great crowd with Jesus, ", + "id": "Evangelium" + }, + { + "body": "*Ps. 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. S", + "id": "Offertorium" + }, + { + "body": "Mercifully hear our humble prayers, O Lord, and graciously accept these offerings of Your people, and grant that no pray", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps. 26:6*\nI will go round, and offer in His tent, sacrifices with shouts of gladness; I will sing and chant praise to t", + "id": "Communio" + }, + { + "body": "We have been filled with Your gifts, O Lord; grant, we beseech You, that we may be cleansed and strengthened by their ef", + "id": "Postcommunio" + } + ], + "2024-07-01": [ + { + "body": "*Apoc 5:9-10*\nYou have redeemed us, O Lord, with Your Blood, out of every tribe and tongue and people and nation, and ha", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, Who made Your only-begotten Son the Redeemer of the world, and willed to be reconciled by His Blo", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 9:11-15*\nBrethren: When Christ appeared as High Pries", + "id": "Lectio" + }, + { + "body": "*1 John 5:6-8*\nThis is He Who came in water and in blood, Jesus Christ; not in the water only, but in the water and in t", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:30-35*\nAt that time, when Jesus had taken the wine, He said", + "id": "Evangelium" + }, + { + "body": "*1 Cor. 10:16*\nThe Cup of blessing that we bless, is it not the sharing of the Blood of Christ? And the Bread that we br", + "id": "Offertorium" + }, + { + "body": "Through this divine rite, we beseech You, may we draw near to Jesus, the mediator of the new covenant, and renew upon Yo", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Heb 9:28*\nChrist was offered once to take away the sins of many; the second time with no part in sin He will appear unt", + "id": "Communio" + }, + { + "body": "Admitted to the sacred banquet, O Lord, we have drawn water in joy from the Saviour’s fountain; may His Blood, we beseec", + "id": "Postcommunio" + } + ], + "2024-07-02": [ + { + "body": "*Sedulius*\nHail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth forever and ever.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Bestow upon Your servants, we beseech You, O Lord, the gift of heavenly grace, that as the child-bearing of the Blessed ", + "id": "Oratio" + }, + { + "body": "*Commemoration SS. Processus and Martinian*\nO God, Who surround and protect us with the glorious profession of faith of ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Canticles\n*Song 2:8-14*\nHark! here He comes springing across the mountains, leaping across the h", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, without spot were found the Mother of the Saviour.\n℣. O Virgin, Mothe", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:39-47*\nAt that time, Mary arose and went with haste into the", + "id": "Evangelium" + }, + { + "body": "Blessed are you, O Virgin Mary, you who bore the Creator of all things; you brought forth Him Who made you, and remain a", + "id": "Offertorium" + }, + { + "body": "May the humanity of Your only-begotten Son keep us, O Lord, for He, Who was born of a virgin did not lessen but consecra", + "id": "Secreta" + }, + { + "body": "*Commemoration SS. Processus and Martinian*\nAccept our prayers and gifts, O Lord, and, that they may be made worthy in Y", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "O Lord, in celebration of this yearly feast, we have partaken of the sacrament: grant, we beseech You, that it may give ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration SS. Processus and Martinian*\nFilled with the offering of Your sacred Body and Your precious Blood, we bes", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-03": [ + { + "body": "*Mal 2:6*\nThe law of truth was in his mouth, and iniquity was not found in his lips: he walked with Me in peace, and in ", + "id": "Introitus" + }, + { + "body": "O God, Who enabled blessed Irenaeus, Your Martyr and Bishop, to overcome heresy with true doctrine and to establish peac", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 3:14-17; 4:1-5*\nBeloved: Continue in the things", + "id": "Lectio" + }, + { + "body": "*Ps 121:8*\nBecause of my relatives and friends I will say, Peace be within you!\n*Ps 36:37*\n℣. Keep innocence, and behold", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:28-33*\nAt that time, Jesus said to His disciples, Do not", + "id": "Evangelium" + }, + { + "body": "*Eccli 24:44*\nI send my teachings forth to all shining like the dawn, and I will make them known afar off.", + "id": "Offertorium" + }, + { + "body": "O God, Who do not allow the nations that believe in You to be troubled by any distress, graciously accept the prayers an", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ecclus 24:47*\nSee that I have not labored for myself only, but for all who seek out the truth.", + "id": "Communio" + }, + { + "body": "O God, author and lover of peace, to know You is to live, and to serve You is to rule; protect from all assaults those w", + "id": "Postcommunio" + } + ], + "2024-07-04": [ + { + "body": "*Ps. 27:8-9.*\nThe Lord is the strength of His people, the saving refuge of His anointed. Save Your people, O Lord, and b", + "id": "Introitus" + }, + { + "body": "O God of the heavenly powers, creator of all good things, implant in our hearts the love of Your Name, and bestow upon u", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:3-11.*\nBrethren: All we who have been baptized into ", + "id": "Lectio" + }, + { + "body": "*Ps. 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants!\n℣. O Lord, You have been our refuge through all gen", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 8:1-9*\nAt that time, when there was a great crowd with Jesus, ", + "id": "Evangelium" + }, + { + "body": "*Ps. 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. S", + "id": "Offertorium" + }, + { + "body": "Mercifully hear our humble prayers, O Lord, and graciously accept these offerings of Your people, and grant that no pray", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 26:6*\nI will go round, and offer in His tent, sacrifices with shouts of gladness; I will sing and chant praise to t", + "id": "Communio" + }, + { + "body": "We have been filled with Your gifts, O Lord; grant, we beseech You, that we may be cleansed and strengthened by their ef", + "id": "Postcommunio" + } + ], + "2024-07-05": [ + { + "body": "*1 Cor. 2:4*\nMy speech and my preaching were not in the persuasive words of human wisdom, but in the demonstration of th", + "id": "Introitus" + }, + { + "body": "Grant us, O Lord God, to learn in the spirit of Paul the Apostle that excelling knowledge of Jesus Christ, by which St. ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to Timothy\n*1 Tim. 4:8-16*\nDearly beloved: Godliness is profitable ", + "id": "Lectio" + }, + { + "body": "*Phil 1:8-11*\nGod is my witness how I long after you all in the heart of Christ Jesus. And this I pray, that your charit", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 10:15-21*\nAt that time, Jesus said to His disciples, Whoever d", + "id": "Evangelium" + }, + { + "body": "*Ps 137:1-2*\nIn the presence of the angels I will sing Your praise; I will worship at Your holy temple and give thanks t", + "id": "Offertorium" + }, + { + "body": "May we bring to the table of the heavenly banquet, O Lord, that purity of mind and body with which St. Anthony Mary was ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Phil 3:17*\nBrethren, be imitators of me, and mark those who walk after the pattern you have in us.", + "id": "Communio" + }, + { + "body": "May the heavenly banquet at which we have been fed, O Lord Jesus Christ, set our hearts aflame with that fire of love wi", + "id": "Postcommunio" + } + ], + "2024-07-06": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + } + ], + "2024-07-07": [ + { + "body": "*Ps 46:2*\nAll you peoples clap your hands, shout to God with cries of gladness.\n*Ps 46:3*\nFor the Lord, the Most High, t", + "id": "Introitus" + }, + { + "body": "O God, Whose providence never fails to set things in order, we humbly beseech You to remove from us whatever is harmful ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:19-23*\nBrethren: I speak in a human way because of t", + "id": "Lectio" + }, + { + "body": "*Ps 33:12, 6*\nCome, children, hear me; I will teach you the fear of the Lord.\n℣. Look to Him that you may be radiant wit", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 7:15-21*\nAt that time, Jesus said to His disciples: Beware ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nAs though it were holocausts of rams and bullocks, or thousands of fat lambs, so let our sacrifice be in Your", + "id": "Offertorium" + }, + { + "body": "O God, You Who have given us in one perfect sacrifice the fulfillment of the various sacrifices made under the Old Law, ", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nIncline Your ear to me, make haste to deliver me.", + "id": "Communio" + }, + { + "body": "May Your healing action, O Lord, mercifully rid us of our evil inclinations and lead us to do good.\nThrough our Lord…", + "id": "Postcommunio" + } + ], + "2024-07-08": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "Most merciful God, Who among other admirable gifts, endowed blessed Queen Elizabeth with the special grace of calming th", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", + "id": "Postcommunio" + } + ], + "2024-07-09": [ + { + "body": "*Ps 46:2*\nAll you peoples clap your hands, shout to God with cries of gladness.\n*Ps 46:3*\nFor the Lord, the Most High, t", + "id": "Introitus" + }, + { + "body": "O God, Whose providence never fails to set things in order, we humbly beseech You to remove from us whatever is harmful ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:19-23*\nBrethren: I speak in a human way because of t", + "id": "Lectio" + }, + { + "body": "*Ps 33:12, 6*\nCome, children, hear me; I will teach you the fear of the Lord.\n℣. Look to Him that you may be radiant wit", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 7:15-21*\nAt that time, Jesus said to His disciples: Beware ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nAs though it were holocausts of rams and bullocks, or thousands of fat lambs, so let our sacrifice be in Your", + "id": "Offertorium" + }, + { + "body": "O God, You Who have given us in one perfect sacrifice the fulfillment of the various sacrifices made under the Old Law, ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nIncline Your ear to me, make haste to deliver me.", + "id": "Communio" + }, + { + "body": "May Your healing action, O Lord, mercifully rid us of our evil inclinations and lead us to do good.\nThrough our Lord…", + "id": "Postcommunio" + } + ], + "2024-07-10": [ + { + "body": "*Ps 112:1, 9*\nPraise the Lord, you children, praise the name of the Lord. He establishes in her home the barren wife as ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we, who know how courageously Your holy Martyrs have confessed the faith, may ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 123:7-8*\nWe were rescued like a bird from the fowlers’ snare.\n℣. Broken was the snare, and we were freed. Our help i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 12:46-50*\nAt that time, as Jesus was still speaking to the ", + "id": "Evangelium" + }, + { + "body": "*Ps 123:7*\nWe were rescued like a bird from the fowlers’ snare; broken was the snare, and we were freed.", + "id": "Offertorium" + }, + { + "body": "Look with favor, we beseech You, O Lord, upon the offerings here before You, that, through the intercession of Your Sain", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 12:50*\nWhoever does the will of My Father in heaven, he is My brother and sister and mother, says the Lord.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that, by the intercession of Your Saints, we may obtain the effect of that salvatio", + "id": "Postcommunio" + } + ], + "2024-07-11": [ + { + "body": "*Ps 46:2*\nAll you peoples clap your hands, shout to God with cries of gladness.\n*Ps 46:3*\nFor the Lord, the Most High, t", + "id": "Introitus" + }, + { + "body": "O God, Whose providence never fails to set things in order, we humbly beseech You to remove from us whatever is harmful ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Pius I*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, by t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:19-23*\nBrethren: I speak in a human way because of t", + "id": "Lectio" + }, + { + "body": "*Ps 33:12, 6*\nCome, children, hear me; I will teach you the fear of the Lord.\n℣. Look to Him that you may be radiant wit", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 7:15-21*\nAt that time, Jesus said to His disciples: Beware ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nAs though it were holocausts of rams and bullocks, or thousands of fat lambs, so let our sacrifice be in Your", + "id": "Offertorium" + }, + { + "body": "O God, You Who have given us in one perfect sacrifice the fulfillment of the various sacrifices made under the Old Law, ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Pius I*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nIncline Your ear to me, make haste to deliver me.", + "id": "Communio" + }, + { + "body": "May Your healing action, O Lord, mercifully rid us of our evil inclinations and lead us to do good.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Pius I*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-12": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in ", + "id": "Introitus" + }, + { + "body": "May the intercession of the blessed Abbot John commend us to You, O Lord, so that through his merits we may obtain that ", + "id": "Oratio" + }, + { + "body": "*Ss Naboris et Felicis*\nGrant we beseech You, O Lord, that as we never fail to celebrate the anniversary of the death of", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:43-48*\nAt that time, Jesus said to His disciples, You hav", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his hea", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy Abbot John prevail by his prayers, so that the offerings placed upon Your sacred al", + "id": "Secreta" + }, + { + "body": "*Ss Naboris et Felicis*\nMay the gifts of Your people, we beseech You, O Lord, by the prayers of Your holy Martyrs, Nabor", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will set", + "id": "Communio" + }, + { + "body": "May the pleading of the blessed Abbot John for us, together with the partaking of Your sacrament, protect us, O Lord, so", + "id": "Postcommunio" + }, + { + "body": "*Ss Naboris et Felicis*\nOn the anniversary of the death of Your Saints, we beseech You, O Lord, that, being strengthened", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-13": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + } + ], + "2024-07-14": [ + { + "body": "*Ps 47:10-11*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to the", + "id": "Introitus" + }, + { + "body": "Ever graciously bestow upon us, we beseech You, O Lord, the spirit of thinking and doing what is right, so that we, who ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:12-17*\nBrethren: We are debtors, not to the flesh, t", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nBe my rock of refuge, O God, a stronghold to give me safety.\n*Ps 70:1*\n℣. In You, O God, I take refuge; O Lord", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 16:1-9*\nAt that time, Jesus spoke to His disciples this parabl", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28, 32*\nLowly people You save, O Lord, but haughty eyes You bring low; for who is God except You, O Lord?", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the gifts which we bring to You out of Your own bounty, so that these most holy sacramen", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nTaste and see how good the Lord is; happy the man who takes refuge in Him.", + "id": "Communio" + }, + { + "body": "May the heavenly sacrament, O Lord, renew our minds and bodies, so that we may feel the benefit of the worship we perfor", + "id": "Postcommunio" + } + ], + "2024-07-15": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who on this day took St. Henry, Your Confessor, to the everlasting kingdom from the throne of an earthly empire; ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:12, 14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples: Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2024-07-16": [ + { + "body": "*Ps 47:10-11*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to the", + "id": "Introitus" + }, + { + "body": "Ever graciously bestow upon us, we beseech You, O Lord, the spirit of thinking and doing what is right, so that we, who ", + "id": "Oratio" + }, + { + "body": "*Commemoration Our Lady of Mt. Carmel*\nO God, Who honored the Order of Carmel with the special title of the most blessed", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:12-17*\nBrethren: We are debtors, not to the flesh, t", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nBe my rock of refuge, O God, a stronghold to give me safety.\n*Ps 70:1*\n℣. In You, O God, I take refuge; O Lord", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 16:1-9*\nAt that time, Jesus spoke to His disciples this parabl", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28, 32*\nLowly people You save, O Lord, but haughty eyes You bring low; for who is God except You, O Lord?", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the gifts which we bring to You out of Your own bounty, so that these most holy sacramen", + "id": "Secreta" + }, + { + "body": "*Commemoration Our Lady of Mt. Carmel*\nO Lord, we beseech You, make holy the sacrificial gifts we offer, and by the most", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nTaste and see how good the Lord is; happy the man who takes refuge in Him.", + "id": "Communio" + }, + { + "body": "May the heavenly sacrament, O Lord, renew our minds and bodies, so that we may feel the benefit of the worship we perfor", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Our Lady of Mt. Carmel*\nMay the venerable intercession of Your glorious Mother Mary, ever Virgin, help us", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-17": [ + { + "body": "*Ps 47:10-11*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to the", + "id": "Introitus" + }, + { + "body": "Ever graciously bestow upon us, we beseech You, O Lord, the spirit of thinking and doing what is right, so that we, who ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Alexis*\nO God, Who gladden us with the annual feast of blessed N. , Your Confessor, mercifully grant ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:12-17*\nBrethren: We are debtors, not to the flesh, t", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nBe my rock of refuge, O God, a stronghold to give me safety.\n*Ps 70:1*\n℣. In You, O God, I take refuge; O Lord", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 16:1-9*\nAt that time, Jesus spoke to His disciples this parabl", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28, 32*\nLowly people You save, O Lord, but haughty eyes You bring low; for who is God except You, O Lord?", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the gifts which we bring to You out of Your own bounty, so that these most holy sacramen", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Alexis*\nWe offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nTaste and see how good the Lord is; happy the man who takes refuge in Him.", + "id": "Communio" + }, + { + "body": "May the heavenly sacrament, O Lord, renew our minds and bodies, so that we may feel the benefit of the worship we perfor", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Alexis*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be help", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-18": [ + { + "body": "*John 15:13*\nGreater love than this no one has, that one lay down his life for his friends.\n*Ps 40:2*\nHappy is he who ha", + "id": "Introitus" + }, + { + "body": "O God, Who endowed St. Camillus with a special gift of charity for the help of souls struggling in their final agony, po", + "id": "Oratio" + }, + { + "body": "*Ss Symphorosæ et septem Filiorum ejus Mm*\nO God, Who permits us to celebrate the anniversary of the death of Your holy ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 3:13-18*\nBeloved: Do not be surprised if the world hates you", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:12-16*\nAt that time, Jesus said to His disciples, This is M", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "Through the prayers of St. Camillus may this spotless sacrificial offering, by which we renew the work of our Lord Jesus", + "id": "Secreta" + }, + { + "body": "*Ss Symphorosæ et septem Filiorum ejus Mm*\nWe offer You, O Lord, the gifts of our homage; may they be pleasing to You in", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:36, 40*\nI was sick and you visited Me: Amen, amen, I say to you, as long as you did it for one of these the lea", + "id": "Communio" + }, + { + "body": "Through this heavenly food which we have received with holy devotion as we celebrate the feast of St. Camillus, Your Con", + "id": "Postcommunio" + }, + { + "body": "*Ss Symphorosæ et septem Filiorum ejus Mm*\nGrant, we beseech You, O Lord, by the intercession of Your holy Martyrs, Symp", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-19": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "O God, Who endowed St. Vincent with apostolic strength to preach the Gospel to the poor and to enhance the dignity of cl", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a sp", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", + "id": "Postcommunio" + } + ], + "2024-07-20": [ + { + "body": "*Lam 2:11*\nMy gall is poured out on the ground because of the downfall of the daughter of my people, as child and infant", + "id": "Introitus" + }, + { + "body": "O God, the Father of mercies, by the merits and intercession of St. Jerome, whom You willed to be the helper and father ", + "id": "Oratio" + }, + { + "body": "*St. Margaret, Virg. and Mart.*\nMay blessed Margaret, Virgin and Martyr, who was ever pleasing to You by the merit of he", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 58:7-11*\nThus says the Lord: Share your bread with the hungry, shelter the oppressed", + "id": "Lectio" + }, + { + "body": "*Prov 5:16*\nLet your water sources be dispersed abroad, and in the streets divide your waters.\n*Ps 111:5-6*\n℣. Well for ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:13-21*\nAt that time, little children were brought to Jes", + "id": "Evangelium" + }, + { + "body": "*Tob 12:12*\nWhen you prayed with tears, and buried the dead, and left your dinner, and hid the dead by day in your house", + "id": "Offertorium" + }, + { + "body": "O most merciful God, Who in blessed Jerome graciously destroyed the old to create in him a new man in Your likeness, gra", + "id": "Secreta" + }, + { + "body": "*St. Margaret, Virg. and Mart.*\nGraciously accept the sacrificial gifts offered You, O Lord, through the merits of bless", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*James 1:27*\nReligion pure and undefiled before God the Father, is this: to give aid to orphans and widows in their trib", + "id": "Communio" + }, + { + "body": "Refreshed with the bread of angels, we humbly pray You, O Lord, that we who joyfully celebrate the yearly feast of bless", + "id": "Postcommunio" + }, + { + "body": "*St. Margaret, Virg. and Mart.*\nWe who have been refreshed by the richness of Your divine sacrament, beseech You, O Lord", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-21": [ + { + "body": "*Ps 53:6-7*\nBehold, God is my helper, the Lord sustains my life. Turn back the evil upon my foes; in Your faithfulness d", + "id": "Introitus" + }, + { + "body": "May Your merciful ears be open, O Lord, to the prayers of those who humbly entreat You; grant that they may ask for what", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 10:6-13*\nBrethren: We should not lust af", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nO Lord, our Lord, how glorious is Your name over all the earth!\n℣. You have elevated Your Majesty above the hea", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:41-47*\nAt that time, when Jesus drew near to Jerusalem and ", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9-12*\nThe precepts of the Lord are right, rejoicing the heart, and His ordinances sweeter than syrup or honey fro", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, O Lord, to take part worthily and frequently in this sacramental action: for as often as this ", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*John 6:57*\nHe who eats My Flesh, and drinks My Blood, abides in Me, and I in him, says the Lord.", + "id": "Communio" + }, + { + "body": "May the partaking of Your sacrament, we beseech You, O Lord, cleanse us and unite us.\nThrough our Lord…", + "id": "Postcommunio" + } + ], + "2024-07-22": [ + { + "body": "*Ps 118:95-96*\nSinners wait to destroy me, but I pay heed to Your decrees, O Lord. I see that all fulfillment has its li", + "id": "Introitus" + }, + { + "body": "May the prayers of blessed Mary Magdalen help us, O Lord, Who were moved by her prayers and brought back alive from the ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Canticles\n*Song 3:2-5; 8:6-7*\nI will rise and go about the city; in the streets and crossings I ", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate iniquity.\n℣. Therefore God, your God, has anointed you with the oil of gladness. All", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:36-50*\nAt that time, one of the Pharisees asked Jesus to din", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings come to meet You; the queen takes her place at Your right hand in gilded clothing, sur", + "id": "Offertorium" + }, + { + "body": "O Lord, may our gifts be acceptable to You through the glorious merits of blessed Mary Magdalen, whose offering of homag", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:121-122; 118:128.*\nI have fulfilled just ordinances, O Lord; let not the proud oppress me. For in all Your prece", + "id": "Communio" + }, + { + "body": "After receiving Your Body and precious Blood, the one and only saving remedy, we beseech You, O Lord, that, under the pr", + "id": "Postcommunio" + } + ], + "2024-07-23": [ + { + "body": "*Dan 3:84, 87*\nPriests of the Lord, bless the Lord; holy men of humble heart, praise God.\n*Dan. 3:57*\nBless the Lord, al", + "id": "Introitus" + }, + { + "body": "O God, the rewarder of faithful souls, grant that we may obtain pardon through the prayers of blessed Apollinaris, Your ", + "id": "Oratio" + }, + { + "body": "*St. Liborius Bishop and Confessor*\nGrant, we beseech You, almighty God, that the venerable feast of blessed Liborius, Y", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:1-11*\nBeloved: I exhort the presbyters among you - I, yo", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 22:24-30*\nAt that time, there arose a dispute among the discip", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "O Lord, graciously look down upon these gifts which we bring in commemoration of Your blessed Priest and Martyr Apollina", + "id": "Secreta" + }, + { + "body": "*St. Liborius Bishop and Confessor*\nMay Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while w", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:20-21*\nMaster, you handed over to me five talents; behold, I have gained five others in addition. Well done, go", + "id": "Communio" + }, + { + "body": "Receiving Your holy sacrament, we beseech You, O Lord, that the lasting protection of St. Apollinaris may support us; fo", + "id": "Postcommunio" + }, + { + "body": "*St. Liborius Bishop and Confessor*\nGrant, we beseech You, almighty God, that as we thank You for the favors we have rec", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-24": [ + { + "body": "*Ps 53:6-7*\nBehold, God is my helper, the Lord sustains my life. Turn back the evil upon my foes; in Your faithfulness d", + "id": "Introitus" + }, + { + "body": "May Your merciful ears be open, O Lord, to the prayers of those who humbly entreat You; grant that they may ask for what", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Christina*\nMay Blessed Christina, Your Virgin and Martyr, we beseech You, O Lord, implore pardon for ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 10:6-13*\nBrethren: We should not lust af", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nO Lord, our Lord, how glorious is Your name over all the earth!\n℣. You have elevated Your Majesty above the hea", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:41-47*\nAt that time, when Jesus drew near to Jerusalem and ", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9-12*\nThe precepts of the Lord are right, rejoicing the heart, and His ordinances sweeter than syrup or honey fro", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, O Lord, to take part worthily and frequently in this sacramental action: for as often as this ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Christina*\nGraciously receive, O Lord, the sacrifices offered to You, by the merits of Blessed Christ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 6:57*\nHe who eats My Flesh, and drinks My Blood, abides in Me, and I in him, says the Lord.", + "id": "Communio" + }, + { + "body": "May the partaking of Your sacrament, we beseech You, O Lord, cleanse us and unite us.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Christina*\nFilled with the abundance of Your divine gift, we beseech You, O Lord our God, that, by th", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-25": [ + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", + "id": "Introitus" + }, + { + "body": "Protect Your people and make them holy, O Lord, so that, guarded by the help of Your Apostle James, they may please You ", + "id": "Oratio" + }, + { + "body": "*Of St. Christopher*\nGrant, we beseech You, almighty God, that we, who honor the anniversary of the death of blessed Chr", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:9-15*\nBrethren: I think God has set fo", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:20-23*\nAt that time, the mother of the sons of Zebedee c", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nThrough all the earth their voice resounds, and to the ends of the world, their message.", + "id": "Offertorium" + }, + { + "body": "May the holy martyrdom of blessed James, the Apostle, make acceptable the offerings of Your people; and because our own ", + "id": "Secreta" + }, + { + "body": "*Of St. Christopher*\nGrant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration o", + "id": "Commemoratio Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nYou who have followed Me shall sit on thrones, judging the twelve tribes of Israel.", + "id": "Communio" + }, + { + "body": "Help us, O Lord, we beseech You, by the intercession of blessed James, Your Apostle, for whose festival we have joyfully", + "id": "Postcommunio" + }, + { + "body": "*Of St. Christopher*\nGrant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration o", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-26": [ + { + "body": "Let us all rejoice in the Lord, celebrating a festival in honor of blessed Anne, on whose solemnity the angels rejoice, ", + "id": "Introitus" + }, + { + "body": "O God, Who in Your kindness gave blessed Anne the grace to be the mother of her who mothered Your only-begotten Son, gra", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness.\n℣. Therefore God, your God, has anointed you with the oil of gladness. A", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nThe daughters of kings come to meet You, the queen takes her place at Your right hand in gilded clothing, surr", + "id": "Offertorium" + }, + { + "body": "Look with favor, O Lord, upon the offerings here before You, that, through the intercession of blessed Anne who bore the", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Communio" + }, + { + "body": "Strengthened by the heavenly sacrament, we beseech You, O Lord our God, that, by the intercession of blessed Anne, whom ", + "id": "Postcommunio" + } + ], + "2024-07-27": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Pantaleon*\nGraciously hear us, we beseech thee, O Almighty God, and, at the petition of thy blessed M", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Pantaleon*\nMay our service be acceptable in Your sight, O Lord, and may it bring us salvation through", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Pantaleon*\nWith our strength renewed from having shared in Your sacred gift, we beseech You, O Lord o", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-28": [ + { + "body": "*Ps 54:17-20; 54:23*\nWhen I call upon the Lord, He heard my voice, from those who war against me; and He humbled them, W", + "id": "Introitus" + }, + { + "body": "O God, You manifest Your power, particularly in forbearance and pity, show us Your mercy again and again, so that hasten", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 12:2-11*\nBrethren: You know that when yo", + "id": "Lectio" + }, + { + "body": "*Ps 16:8, 2*\nKeep me, O Lord, as the apple of Your eye; hide me in the shadow of Your wings.\n℣. From You let judgment co", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:9-14*\nAt that time, Jesus spoke this parable to some who tr", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul, O Lord. In You, O my God, I trust; let me not be put to shame, let not my enemies ", + "id": "Offertorium" + }, + { + "body": "Let the sacred gifts be offered to You, O Lord, Who have given them to be presented for the honor of Your name, for in t", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nYou shall be pleased with due sacrifices, burnt offerings and holocausts on Your altar, O Lord.", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord our God, that in Your mercy You will not withhold Your help from those whom You constantly restor", + "id": "Postcommunio" + } + ], + "2024-07-29": [ + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Introitus" + }, + { + "body": "Graciously hear us, God our Saviour, that as we rejoice in the festival of blessed Martha, Your Virgin, so may we be nou", + "id": "Oratio" + }, + { + "body": "*Ss Felicis, Simplicii, Faustini et Beatricis.*\nGrant, we beseech You, O Lord, that as Christian people on earth rejoice", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 10:17-18; 11:1-2*\nBrethren: He who boas", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nIn your splendor and your beauty ride on triumphant, and reign.\n℣. In the cause of truth and mercy and for the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:38-42*\nAt that time, Jesus entered a certain village; and a", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings come to meet You; the queen takes her place at Your right hand in gilded clothing, sur", + "id": "Offertorium" + }, + { + "body": "May the offerings of Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits they ", + "id": "Secreta" + }, + { + "body": "*Ss Felicis, Simplicii, Faustini et Beatricis.*\nIn memory of Your holy Martyrs, Felix, Simplicius, Faustinus and Beatric", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4, 6*\nThe five wise virgins took oil in their vessels with the lamps: and at midnight a cry arose, Behold, the ", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us by the intercession of her whose festival we are", + "id": "Postcommunio" + }, + { + "body": "*Ss Felicis, Simplicii, Faustini et Beatricis.*\nWe beseech You, almighty God, that the feast of Your holy Martyrs, Felix", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-30": [ + { + "body": "*Ps 54:17-20; 54:23*\nWhen I call upon the Lord, He heard my voice, from those who war against me; and He humbled them, W", + "id": "Introitus" + }, + { + "body": "O God, You manifest Your power, particularly in forbearance and pity, show us Your mercy again and again, so that hasten", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Abdon & Sennen*\nO God, Who bestowed upon Your Saints, Abdon and Sennen, an abundance of grace to bri", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 12:2-11*\nBrethren: You know that when yo", + "id": "Lectio" + }, + { + "body": "*Ps 16:8, 2*\nKeep me, O Lord, as the apple of Your eye; hide me in the shadow of Your wings.\n℣. From You let judgment co", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:9-14*\nAt that time, Jesus spoke this parable to some who tr", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul, O Lord. In You, O my God, I trust; let me not be put to shame, let not my enemies ", + "id": "Offertorium" + }, + { + "body": "Let the sacred gifts be offered to You, O Lord, Who have given them to be presented for the honor of Your name, for in t", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Abdon & Sennen*\nMay this sacrificial gift, we beseech You, O Lord, which we offer in commemorating t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nYou shall be pleased with due sacrifices, burnt offerings and holocausts on Your altar, O Lord.", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord our God, that in Your mercy You will not withhold Your help from those whom You constantly restor", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Abdon & Sennen*\nBy the working of this sacred rite O Lord, may our sins be erased, and through the i", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-31": [ + { + "body": "*Phil. 2:10-11*\nAt the name of Jesus every knee should bend of those in heaven, on earth and under the earth, and every ", + "id": "Introitus" + }, + { + "body": "O God, Who, to spread abroad the greater glory of Your name through St. Ignatius, strengthened the Church militant with ", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 2:8-10; 3:10-12*\nBeloved: Remember that Jesus C", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "May the prayers of St. Ignatius be present with our offerings, O Lord God, that the most holy sacrament in which you pla", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:49*\nI have come to cast fire upon the earth, and what will I but that it be kindled?", + "id": "Communio" + }, + { + "body": "May the sacrifice of praise, O Lord, offered in thanksgiving in honor of St. Ignatius bring us, by his intercession, to ", + "id": "Postcommunio" + } + ], + "2024-08-01": [ + { + "body": "*Ps 54:17-20; 54:23*\nWhen I call upon the Lord, He heard my voice, from those who war against me; and He humbled them, W", + "id": "Introitus" + }, + { + "body": "O God, You manifest Your power, particularly in forbearance and pity, show us Your mercy again and again, so that hasten", + "id": "Oratio" + }, + { + "body": "*Commemoration Holy Machabees *\nMay the brotherly crown of Your Martyrs, O Lord, give us joy and may it afford to our fa", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 12:2-11*\nBrethren: You know that when yo", + "id": "Lectio" + }, + { + "body": "*Ps 16:8, 2*\nKeep me, O Lord, as the apple of Your eye; hide me in the shadow of Your wings.\n℣. From You let judgment co", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:9-14*\nAt that time, Jesus spoke this parable to some who tr", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul, O Lord. In You, O my God, I trust; let me not be put to shame, let not my enemies ", + "id": "Offertorium" + }, + { + "body": "Let the sacred gifts be offered to You, O Lord, Who have given them to be presented for the honor of Your name, for in t", + "id": "Secreta" + }, + { + "body": "*Commemoration Holy Machabees *\nMay we perform with pious mind the sacramental rite, O Lord, in honor of Your holy Marty", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nYou shall be pleased with due sacrifices, burnt offerings and holocausts on Your altar, O Lord.", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord our God, that in Your mercy You will not withhold Your help from those whom You constantly restor", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Holy Machabees *\nGrant, we beseech You, almighty God, that we may follow more and more the faith of those", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-02": [ + { + "body": "*Luke 4:18*\nThe Spirit of the Lord is upon me, because He has anointed me; to bring good news to the poor He has sent me", + "id": "Introitus" + }, + { + "body": "O God, Who through blessed Alphonsus Mary, Your Confessor and Bishop, fired with love for souls, enriched Your Church wi", + "id": "Oratio" + }, + { + "body": "*For St. Stephen I, Pope and Martyr*\nO God, Who gladden us with the yearly festival of blessed N., Your Martyr and Bisho", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 2:1-7*\nDearly beloved: Be strengthened in the g", + "id": "Lectio" + }, + { + "body": "*Ps 118:52-53*\nI remember your ordinances of old, O Lord, and I am comforted. Indignation seizes me because of the wicke", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Pr 3:9, 27*\nHonor the Lord with your wealth, and give Him the first fruits of all your produce. Do not withhold him fro", + "id": "Offertorium" + }, + { + "body": "O Lord, Jesus Christ, Who granted to St. Aphonsus Mary to celebrate this rite and thereby offer himself as a holy victim", + "id": "Secreta" + }, + { + "body": "*For St. Stephen I, Pope and Martyr*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of bl", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ecclus 50:1, 9*\nA great priest, who in his time renovated the house, and in his days reinforced the temple, as a bright", + "id": "Communio" + }, + { + "body": "O God, Who made St. Alphonsus Mary, Your Confessor and Bishop, a faithful dispenser of this divine sacrament, grant by h", + "id": "Postcommunio" + }, + { + "body": "*For St. Stephen I, Pope and Martyr*\nMay this Communion, O Lord, cleanse us of sin, and through the intercession of bles", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-03": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + } + ], + "2024-08-04": [ + { + "body": "*Ps 67:6 67:7 67:36*\nGod is in His holy dwelling, God Who makes men of one mind to dwell in a house; He shall give power", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, You Who in the abundance of Your love always grant more than Your humble petitioners deserve, and", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 15:1-10*\nBrethren: I recall to your mind", + "id": "Lectio" + }, + { + "body": "*Ps 27:7*\nIn God my heart trusts, and I find help; then my heart exults, and with my song I give Him thanks.\n℣. To You, ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 7:31-37*\nAt that time, Jesus departing from the district of Ty", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nI will extol You, O Lord, for You drew me near and did not let my enemies rejoice over me; O Lord, I cried o", + "id": "Offertorium" + }, + { + "body": "Look with mercy, we beseech You, O Lord, upon our act of worship that the gift we offer may be acceptable to You and may", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Prov 3:9-10*\nHonor the Lord with your wealth, with first fruits of all your produce. Then will your barns be filled wit", + "id": "Communio" + }, + { + "body": "By receiving Your sacrament, O Lord, may we experience Your help in mind and body, that being cured in both, we may glor", + "id": "Postcommunio" + } + ], + "2024-08-05": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nBefore all ages, in the beginning, He created me, and through all ", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, without spot to your maidenhood, were made the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with you; blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "We have received help for our salvation, O Lord; grant, we beseech You, that we may everywhere be protected by the patro", + "id": "Postcommunio" + } + ], + "2024-08-06": [ + { + "body": "*Ps 76:19*\nYour lightening illumined the world; the earth quivered and quaked.\n*Ps 83:2-3*\nHow lovely is Your dwelling p", + "id": "Introitus" + }, + { + "body": "O God, Who in the glorious Transfiguration of Your only-begotten Son strengthened the mysteries of faith by the testimon", + "id": "Oratio" + }, + { + "body": "*Of Pope Sixtus II, Felicissimus and Agapitus, Martyrs.*\nO God, Who permits us to celebrate the anniversary of the death", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Peter the Apostle\n*2 Pet. 1:16-19*\nBeloved: We were not following fictitious tales ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 17:1-9*\nAt that time, Jesus took Peter, James and his broth", + "id": "Evangelium" + }, + { + "body": "*Ps 111:3*\nWealth and riches shall be in His house; His generosity shall endure forever. Alleluia.", + "id": "Offertorium" + }, + { + "body": "Hallow our offerings, we beseech You, O Lord, through the glorious Transfiguration of Your only-begotten Son, and cleans", + "id": "Secreta" + }, + { + "body": "*Of Pope Sixtus II, Felicissimus and Agapitus, Martyrs.*\nWe offer You, O Lord, the gifts of our homage; may they be plea", + "id": "Commemoratio Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 17:9*\nTell the vision you have seen to no one, till the Son of Man has risen from the dead.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that by the understanding of our minds made pure, we may grasp the mystery of the T", + "id": "Postcommunio" + }, + { + "body": "*Of Pope Sixtus II, Felicissimus and Agapitus, Martyrs.*\nGrant, we beseech You, O almighty and merciful God, that throug", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-07": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who bestowed upon St. Cajetan, Your Confessor, the grace to follow the apostolic way of life; grant us by his int", + "id": "Oratio" + }, + { + "body": "*For St. Donatus*\nO God, the glory of Your priests, grant, we beseech You, that we may enjoy the help of Your holy Marty", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 31:8-11*\nHappy the man found without fault, who turns not aside after gai", + "id": "Lectio" + }, + { + "body": "*Ps 91:12, 14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 6:24-33*\nAt that time, Jesus said to His disciples: No man ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that our humble offerings may be pleasing to You as an honor paid to Your saints, a", + "id": "Secreta" + }, + { + "body": "*For St. Donatus*\nGrant, we beseech You, O Lord, through the intercession of Your holy Martyr and Bishop, Donatus, whom ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we who have partaken of heavenly nourishment, may, by the intercession of St. Cajetan", + "id": "Postcommunio" + }, + { + "body": "*For St. Donatus*\nAlmighty and merciful God, Who make us both the partakers and the ministers of Your sacraments, grant,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-08": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, Who made St. John Mary glorious by priestly zeal and untiring fervor in prayer and penance, g", + "id": "Oratio" + }, + { + "body": "*Commemoration of Ss. Cyriacus, Largus and Smaragdus, Martyrs*\nO God, Who gladden us with the annual festival of Your ho", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Commemoration of Ss. Cyriacus, Largus and Smaragdus, Martyrs*\nMay our service be acceptable in Your sight, O Lord, and ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + }, + { + "body": "*Commemoration of Ss. Cyriacus, Largus and Smaragdus, Martyrs*\nWith our strength renewed from having shared in Your sacr", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-09": [ + { + "body": "*Ps 111:9*\nLavishly he gives to the poor; his generosity shall endure forever; his horn shall be exalted in glory.\n*Ps 1", + "id": "Introitus" + }, + { + "body": "Heed our prayers, O Lord, and by the intercession of Your blessed Martyr Lawrence, whose feast we anticipate, graciously", + "id": "Oratio" + }, + { + "body": "*For St. Romanus, Martyr*\nGrant, we beseech You, almighty God, that by the intercession of St. Romanus, Your Martyr, we ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 51:1-8, 12*\nI will give You thanks, O Lord, O King; I will praise You, O ", + "id": "Lectio" + }, + { + "body": "*Ps 111:9, 2*\nLavishly he gives to the poor; his generosity shall endure forever.\n℣. His posterity shall be mighty upon ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:24-27*\nAt that time, Jesus said to His disciples, If any", + "id": "Evangelium" + }, + { + "body": "*Job 16:20*\nMy prayer is pure, and therefore I ask that a place may be given to my voice in heaven; for there is my judg", + "id": "Offertorium" + }, + { + "body": "Look with favor upon the sacrificial gifts we offer You, O Lord, and through this holy exchange, loosen the bonds of our", + "id": "Secreta" + }, + { + "body": "*For St. Romanus, Martyr*\nHaving received our gifts and prayers, we beseech You, O Lord, mercifully hear us and cleanse ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord, our God, that as we joyfully commemorate St. Lawrence, Your Martyr, in this life, so may ", + "id": "Postcommunio" + }, + { + "body": "*For St. Romanus, Martyr*\nWe beseech You, O almighty God, that we who have eaten the food of heaven may find in it, by t", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-10": [ + { + "body": "*Ps 95:6*\nSplendor and majesty go before Him; praise and grandeur are in His sanctuary.\n*Ps 95:1*\nSing to the Lord a new", + "id": "Introitus" + }, + { + "body": "Grant us, we beseech You, almighty God, to extinguish the flames of our sins, as You granted St. Lawrence to overcome th", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 9:6-10*\n\nBrethren: He who sows sparingl", + "id": "Lectio" + }, + { + "body": "*Ps 16:3*\nThough You test my heart, O Lord, searching it in the night.\n℣. Though You try me with fire, You shall find no", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 12:24-26*\nAt that time, Jesus said to His disciples, Amen, ame", + "id": "Evangelium" + }, + { + "body": "*Ps 95:6*\nSplendor and majesty go before Him; praise and grandeur are in His sanctuary.", + "id": "Offertorium" + }, + { + "body": "Receive, we beseech You, O Lord, the gifts fully offered to You, and, by the interceding merits of blessed Lawrence, You", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 12:26*\nIf anyone serves Me, let him follow Me; and where I am there also shall My servant be.", + "id": "Communio" + }, + { + "body": "Filled with Your sacred gifts, we humbly pray You, O Lord, that as we perform this sacred act in duty bound, we may, thr", + "id": "Postcommunio" + } + ], + "2024-08-11": [ + { + "body": "*Ps 69:2-3*\nDeign, O God, to rescue me; O Lord, make haste to help me. Let them be put to shame and confounded who seek ", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, by Whose grace Your faithful people serve You worthily and righteously, grant, we beseech You", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 3:4-9*\nBrethren: Such is the assurance ", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nI will bless the Lord at all times; His praise shall be ever in my mouth.\n℣. Let my soul glory in the Lord; ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:23-37*\nAt that time, Jesus said to His disciples: Blessed a", + "id": "Evangelium" + }, + { + "body": "*Ex 32:11, 13-14.*\nMoses prayed in the sight of the Lord his God and said, Why, O Lord, is Your indignation enkindled ag", + "id": "Offertorium" + }, + { + "body": "O Lord, we beseech You, graciously look upon the offerings which we lay upon Your sacred altar; so that they may bring u", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13-15*\nThe earth is replete with the fruit of Your works, O Lord; You produce bread from the earth, and wine to ", + "id": "Communio" + }, + { + "body": "May the holy reception of this sacrament, we beseech You, O Lord, restore us to life, and bestow upon us forgiveness and", + "id": "Postcommunio" + } + ], + "2024-08-12": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "Hear us, O God, our Saviour, that as we are gladdened by the festival of blessed N. thy virgin, so we may learn from it ", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the service of thy holy people be acceptable to Thee, O Lord, and honorable to thy saints, through whose merits we k", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "Thou hast fed thy servants, O Lord, with the holy gifts; comfort us ever we pray, by her intercession whose festival we ", + "id": "Postcommunio" + } + ], + "2024-08-13": [ + { + "body": "*Ps 69:2-3*\nDeign, O God, to rescue me; O Lord, make haste to help me. Let them be put to shame and confounded who seek ", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, by Whose grace Your faithful people serve You worthily and righteously, grant, we beseech You", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Hippolytus & Cassian*\nGrant, we beseech You, almighty God, that the great festival of Your blessed M", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 3:4-9*\nBrethren: Such is the assurance ", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nI will bless the Lord at all times; His praise shall be ever in my mouth.\n℣. Let my soul glory in the Lord; ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:23-37*\nAt that time, Jesus said to His disciples: Blessed a", + "id": "Evangelium" + }, + { + "body": "*Ex 32:11, 13-14.*\nMoses prayed in the sight of the Lord his God and said, Why, O Lord, is Your indignation enkindled ag", + "id": "Offertorium" + }, + { + "body": "O Lord, we beseech You, graciously look upon the offerings which we lay upon Your sacred altar; so that they may bring u", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Hippolytus & Cassian*\nLook with favor, O Lord, upon the offerings of Your people on the devout festi", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13-15*\nThe earth is replete with the fruit of Your works, O Lord; You produce bread from the earth, and wine to ", + "id": "Communio" + }, + { + "body": "May the holy reception of this sacrament, we beseech You, O Lord, restore us to life, and bestow upon us forgiveness and", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Hippolytus & Cassian*\nMay the eating of Your sacrament save us, O Lord, and make us stand firm in th", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-14": [ + { + "body": "*Ps 44:13; 44:15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to ", + "id": "Introitus" + }, + { + "body": "O God, Who chose for Your dwelling the virginal womb of the blessed Mary, grant, we beseech You, that, with the help of ", + "id": "Oratio" + }, + { + "body": "*For St. Eusebius*\nO God, Who gladden us with the annual feast of blessed Eusebius, Your Confessor, mercifully grant tha", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:23-31*\nI bud forth delights like the vine, my blossoms become fruit fa", + "id": "Lectio" + }, + { + "body": "℣. Blessed and venerable are you, O Virgin Mary, who, without spot were made the Mother of the Saviour.\n℣. O Virgin, Mot", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "Blessed are you, O Virgin Mary, you who bore the Creator of all things; you brought forth Him Who made you, and you rema", + "id": "Offertorium" + }, + { + "body": "O Lord, may the prayer of the Mother of God, recommend our offerings to Your mercy, that she, whom You transported from ", + "id": "Secreta" + }, + { + "body": "*For St. Eusebius*\nWe offer these sacrifices of praise, O Lord, in memory of Your Saints, trusting that by them we may b", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the Eternal Father.", + "id": "Communio" + }, + { + "body": "Grant Your protection for our weakness, O merciful God, that we who look forward to the feast of God’s holy Mother, may,", + "id": "Postcommunio" + }, + { + "body": "*For St. Eusebius*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by hi", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-15": [ + { + "body": "*Apoc 12:1*\nA great sign appeared in heaven: a woman clothed with the sun, and the moon was under her feet, and upon her", + "id": "Introitus" + }, + { + "body": "Almighty, everlasting God, Who took up, body and soul, the Immaculate Virgin Mary, Mother of Your Son, into heavenly glo", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Judith\n*Judith 13:22-25; 15:10*\nThe Lord has blessed you by His power, because by you He has bro", + "id": "Lectio" + }, + { + "body": "*Ps 44:11-12, 14*\nHear, O daughter, and see; turn your ear; for the King shall desire your beauty.\n℣. All glorious is th", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:41-50*\nAt that time, Elizabeth was filled with the Holy Spir", + "id": "Evangelium" + }, + { + "body": "*Gen 3:15*\nI will put enmity between you and the Woman, between your seed and her seed.", + "id": "Offertorium" + }, + { + "body": "May the offering of our devotion rise unto You, O Lord, and by the intercession of the most Blessed Virgin Mary, who was", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*Luke 1:48-49*\nAll generations shall call me blessed; because He Who is mighty has done great things for me.", + "id": "Communio" + }, + { + "body": "Having partaken, O Lord, of the sacrament of salvation, grant, we beseech You, that through the merits and intercession ", + "id": "Postcommunio" + } + ], + "2024-08-16": [ + { + "body": "*Ps 111:9*\nLavishly he gives to the poor, his generosity shall endure forever; his horn shall be exalted in glory.\n*Ps 1", + "id": "Introitus" + }, + { + "body": "O God, Who, in preference to Your other Saints, willed St. Joachim to be the father of Your Son’s Mother; grant, we bese", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 31:8-11*\nHappy the man found without fault, who turns not aside after gai", + "id": "Lectio" + }, + { + "body": "*Ps 111:9, 2*\nLavishly he gives to the poor; his generosity shall endure forever.\n℣. His posterity shall be mighty upon ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 1:1-16*\nThe book of the origin of Jesus Christ, the Son of ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nYou crowned him with glory and honor. You have given him rule over the works of Your hands, O Lord.", + "id": "Offertorium" + }, + { + "body": "Graciously accept, most merciful God, the sacrifice offered to Your majesty in honor of the holy Patriarch Joachim, fath", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that by this sacrament which we have received, and by the pleading merits of holy Joachim,", + "id": "Postcommunio" + } + ], + "2024-08-17": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who gladden us with the annual feast of blessed Hyacinth, Your Confessor, mercifully grant that, while honoring t", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2024-08-18": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nLook to Your covenant, O Lord, forsake not forever the lives of Your afflicted ones. Arise, O L", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, grant us an increase of faith, hope and charity; and make us love what You command so that we may", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 3:16-22*\nBrethren: The promises were made to Abraha", + "id": "Lectio" + }, + { + "body": "*Ps 73:20, 19, 22*\nLook to Your covenant, O Lord, be not unmindful of the lives of Your afflicted ones.\n℣. Arise, O Lord", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 17:11-19*\nAt that time, Jesus was going to Jerusalem, He was p", + "id": "Evangelium" + }, + { + "body": "*Ps 30:15-16*\nMy trust is in You, O Lord; I say, You are my God. In Your hands is my destiny.", + "id": "Offertorium" + }, + { + "body": "Look with favor upon Your people, O Lord, look with favor upon their gifts; so that, appeased by this offering, You will", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Wis 16:20*\nYou have given us, O Lord, bread from heaven, endowed with all delights and the sweetness of every taste.", + "id": "Communio" + }, + { + "body": "Having received Your heavenly sacrament, O Lord, may we make progress, we beseech You, toward our everlasting salvation.", + "id": "Postcommunio" + } + ], + "2024-08-19": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who wondrously enkindled St. John, Your Confessor, to promote the religious veneration of the Sacred Hearts of Je", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2024-08-20": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", + "id": "Introitus" + }, + { + "body": "O God, Who gave to Your people, blessed Bernard, as a minister of salvation, grant, we beseech You, that we who cherishe", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 39:6-14*\nThe just man will give his heart to resort early to the Lord his", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: \"You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree; like a cedar of Libanus shall he grow.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed Bernard, Your Confessor and Doctor, fail us never, O Lord; may it commend our offerings", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "So that Your sacrificial rites may grant us salvation, we pray You, O Lord, that blessed Bernard, Your Confessor and ill", + "id": "Postcommunio" + } + ], + "2024-08-21": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, Who endowed St. Jane Frances, burning with love of You, with a wondrous strength of spirit th", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may this sacrificial gift enkindle in us that fire of love which burned so warmly in the heart of St. Jane Franc", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "Pour upon us, O Lord, the spirit of Your love, that You Who have filled us with the strength of heavenly bread, may thro", + "id": "Postcommunio" + } + ], + "2024-08-22": [ + { + "body": "*Heb 4:16*\nLet us draw near with confidence to the throne of grace, that we may obtain mercy and find grace to help in t", + "id": "Introitus" + }, + { + "body": "Almighty, everlasting God, Who in the Heart of the Blessed Virgin Mary prepared a dwelling place worthy of the Holy Spir", + "id": "Oratio" + }, + { + "body": "*Commemoration of Sts. Timothy, Hippolytus and Symphorianus, Martyrs*\nMercifully give us Your help, we beseech You, O Lo", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:23-31*\nI bud forth delights like the vine, my blossoms become fruit fa", + "id": "Lectio" + }, + { + "body": "*Ps 12:6*\nLet my Heart rejoice in Your salvation; let me sing of the Lord, He has been good to me. Yes, I will sing to t", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:25-27*\nAt that time, there were standing by the Cross of Je", + "id": "Evangelium" + }, + { + "body": "*Luke 1:47, 49*\nMy spirit rejoices in God my Saviour; because He Who is mighty has done great things for me, and holy is", + "id": "Offertorium" + }, + { + "body": "Offering the spotless Lamb to Your Majesty, O Lord, we pray that our hearts may be set aflame by the fire that burned so", + "id": "Secreta" + }, + { + "body": "*Commemoration of Sts. Timothy, Hippolytus and Symphorianus, Martyrs*\nAccept, O Lord, the offering which Your consecrate", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*John 19:27*\nJesus said to His Mother, Woman, behold your son. Then He said to the disciple, Behold your mother. And fro", + "id": "Communio" + }, + { + "body": "Refreshed by divine gifts, we humbly beseech You, O Lord, that by the intercession of the Blessed Virgin Mary, the solem", + "id": "Postcommunio" + }, + { + "body": "*Commemoration of Sts. Timothy, Hippolytus and Symphorianus, Martyrs*\nFilled with the abundance of the divine sacrament,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-23": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "O God, Who through St. Philip, Your Confessor, gave us an outstanding example of humility, grant that Your household may", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a spe", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", + "id": "Postcommunio" + } + ], + "2024-08-24": [ + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, Who bestowed on us the devout and holy joy of this day to celebrate the feast of Your blessed Apo", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 12:27-31*\nBrethren: You are the body of ", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 6:12-19*\nAt that time, Jesus went out to the mountain to pray,", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, that we who keep the feast of Your blessed Apostle Bartholomew, may, by his help, obtain Your bl", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nYou who have followed Me shall sit on thrones judging the twelve tribes of Israel, says the Lord.", + "id": "Communio" + }, + { + "body": "We have received, O Lord, the pledge of everlasting redemption; may it, by the intercession of blessed Bartholomew, Your", + "id": "Postcommunio" + } + ], + "2024-08-25": [ + { + "body": "*Ps 83:10-11*\nBehold, O God, our Protector, and look upon the face of Your Anointed. Better is one day in Your courts th", + "id": "Introitus" + }, + { + "body": "Protect Your Church by Your abiding mercy, we beseech You, O Lord, and since all mortals fall without You, may Your help", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:16-24*\nBrethren: Walk in the Spirit, and you will", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nIt is better to take refuge in the Lord than to trust in man.\n℣. It is better to take refuge in the Lord th", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 6:24-33*\nAt that time, Jesus said to His disciples: No man ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nThe Angel of the Lord encamps around those who fear Him, and delivers them. Taste and see how good the Lord ", + "id": "Offertorium" + }, + { + "body": "Grant us, Lord, we beseech You, that this salutary sacrifice may be not only a cleansing from our sins but also a propit", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Matt 6:33*\nSeek first the Kingdom of God; and all things shall be given you besides, says the Lord.", + "id": "Communio" + }, + { + "body": "May Your sacrament, O God, ever cleanse and strengthen us, and bring us to everlasting salvation.\nThrough our Lord…", + "id": "Postcommunio" + } + ], + "2024-08-26": [ + { + "body": "*Ps 83:10-11*\nBehold, O God, our Protector, and look upon the face of Your Anointed. Better is one day in Your courts th", + "id": "Introitus" + }, + { + "body": "Protect Your Church by Your abiding mercy, we beseech You, O Lord, and since all mortals fall without You, may Your help", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Zephyrinus*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:16-24*\nBrethren: Walk in the Spirit, and you will", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nIt is better to take refuge in the Lord than to trust in man.\n℣. It is better to take refuge in the Lord th", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 6:24-33*\nAt that time, Jesus said to His disciples: No man ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nThe Angel of the Lord encamps around those who fear Him, and delivers them. Taste and see how good the Lord ", + "id": "Offertorium" + }, + { + "body": "Grant us, Lord, we beseech You, that this salutary sacrifice may be not only a cleansing from our sins but also a propit", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Zephyrinus*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 6:33*\nSeek first the Kingdom of God; and all things shall be given you besides, says the Lord.", + "id": "Communio" + }, + { + "body": "May Your sacrament, O God, ever cleanse and strengthen us, and bring us to everlasting salvation.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Zephyrinus*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, t", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-27": [ + { + "body": "*Ps 33:12*\nCome, children, hear me; I will teach you the fear of the Lord.\n*Ps 33:2*\nI will bless the Lord at all times;", + "id": "Introitus" + }, + { + "body": "O God, Who through St. Joseph, Your Confessor, did graciously will to provide Your Church with a new help for the traini", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nThe Lord guided the just in direct ways, showed him the kingdom of God, an", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-5*\nAt that time, the disciples came to Jesus, saying, ", + "id": "Evangelium" + }, + { + "body": "*Ps 9:17*\nThe desire of the afflicted the Lord hears; You pay heed to the strengthening of their hearts.", + "id": "Offertorium" + }, + { + "body": "Upon Your altar we heap our offerings, O Lord, that they may win mercy for us through the prayer of him whom You have gi", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 10:14*\nLet the little children come to Me, and do not hinder them, for of such is the kingdom of God.", + "id": "Communio" + }, + { + "body": "Made holy by the sacrament of salvation, O Lord, we pray that, by the intercession of St. Joseph, Your Confessor, we may", + "id": "Postcommunio" + } + ], + "2024-08-28": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", + "id": "Introitus" + }, + { + "body": "Give heed to our humble prayers, almighty God, and through the intercession of blessed Augustine, Your Confessor and Bis", + "id": "Oratio" + }, + { + "body": "*For St. Hermes*\nO God, Who strengthened blessed Hermes, Your Martyr, with the virtue of steadfastness in his suffering,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time, Jesus said to His disciples: \"You ar", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree; like a cedar of Libanus shall he grow.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed Augustine, Your Bishop and Doctor, fail us never, O Lord; may it commend our offerings ", + "id": "Secreta" + }, + { + "body": "*For St. Hermes*\nWe offer You, O Lord, the sacrifice of praise in memory of Your Saints; grant, we beseech You, that wha", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "So that Your sacrificial rites may grant us salvation; we pray You, O Lord, that blessed Augustine, Your Bishop and illu", + "id": "Postcommunio" + }, + { + "body": "*For St. Hermes*\nFilled with heavenly blessings, O Lord, we beseech Your mercy that, by the intercession of blessed Herm", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-29": [ + { + "body": "*Ps 118:46-47*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, whi", + "id": "Introitus" + }, + { + "body": "May the great festival of St. John the Baptist, Your Precursor and Martyr, we beseech You, O Lord, assure for us the res", + "id": "Oratio" + }, + { + "body": "*For St. Sabina*\nO God, Who among the other miracles of Your power bestowed the victory of martyrdom even upon the weake", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Jeremias\n*Jer 1:17-19*\nIn those days, the word of the Lord came to me, saying: Gird your loins; ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 6:17-29*\nAt that time, Herod had sent and taken John, and boun", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "We pray, O Lord, that the offerings we bring You in memory of the agonizing death of Your holy Martyr, John the Baptist,", + "id": "Secreta" + }, + { + "body": "*For St. Sabina*\nGraciously accept the sacrificial gifts offered You, O Lord, through the merits of blessed Sabina, Your", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nYou placed on his head, O Lord, a crown of pure gold.", + "id": "Communio" + }, + { + "body": "May the solemn festival of St. John the Baptist bring us the grace, O Lord, both to venerate the foreshadowing of the wo", + "id": "Postcommunio" + }, + { + "body": "*For St. Sabina*\nWe who have been refreshed by the richness of Your divine sacrament, beseech You, O Lord our God, that ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-30": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "Almighty God, Giver of all good things, Who willed that blessed Rose, imbued in early life with the dew of heavenly grac", + "id": "Oratio" + }, + { + "body": "*For Sts. Felix and Adauctus*\nWe humbly entreat Your Majesty, O Lord, that as You continually gladden us by the commemor", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", + "id": "Secreta" + }, + { + "body": "*For Sts. Felix and Adauctus*\nLook with favor, O Lord, on the offerings of Your people; may they find profitable for the", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us by the intercession of her whose festival we are", + "id": "Postcommunio" + }, + { + "body": "*For Sts. Felix and Adauctus*\nFilled by the holy sacrament, O Lord, we beseech You that, by the intercession of Your Sai", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-31": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who made blessed Raymund, Your Confessor, famous for delivering Your faithful from the captivity of the infidels,", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2024-09-01": [ + { + "body": "*Ps 85:1-3*\nIncline Your ear, O Lord; answer me; save Your servant, O my God, who trusts in You. Have pity on me, O Lord", + "id": "Introitus" + }, + { + "body": "May Your abiding mercy, O Lord, cleanse and strengthen Your Church, and, since without You she cannot exist in safety, l", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:25-26; 6:1-10*\nBrethren: If we live by the Spirit", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nIt is good to give thanks to the Lord, to sing to Your name, Most High.\n℣. To proclaim Your kindness at dawn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:11-16*\nAt that time, Jesus went to a town called Naim; and H", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2-4*\nI have waited, waited for the Lord, and He stooped toward me, and heard my cry. And He put a new song into m", + "id": "Offertorium" + }, + { + "body": "May Your sacrament, O Lord, always keep us and guard us from the assaults of the devil.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*John 6:52*\nThe bread that I will give is My Flesh for the life of the world.", + "id": "Communio" + }, + { + "body": "May the working of the heavenly gift, O Lord, so possess us, mind and body, that the action of the sacrament, rather tha", + "id": "Postcommunio" + } + ], + "2024-09-02": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "We beseech You, almighty God, that Your Church be worthy to have as her glorious defender in heaven blessed Stephen, You", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 31:8-11*\nHappy the man found without fault, who turns not aside after gai", + "id": "Lectio" + }, + { + "body": "*Ps 91:12, 14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:12-26*\nAt that time, Jesus spoke this parable to His discip", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (Alleluia.)", + "id": "Offertorium" + }, + { + "body": "Look with favor, almighty God, upon the offerings we bring to you, and grant that we, who celebrate the mysteries of our", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that we may follow in proper reverence the faith of blessed Stephen, Your Confessor", + "id": "Postcommunio" + } + ], + "2024-09-03": [ + { + "body": "*Ps 88:20-22*\nI have raised up the chosen one from the people; with My holy oil I have anointed him, that My hand may be", + "id": "Introitus" + }, + { + "body": "O God Who, for the defense of the Catholic faith and the restoration of all things in Christ, filled St. Pius, the Supre", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Thessalonians\n*1 Thess. 2:2-8*\nBrethren: We had confidence i", + "id": "Lectio" + }, + { + "body": "*Ps 39:10-11*\nI announced Your justice in the vast assembly; I did not restrain my lips as You, O Lord, know.\n℣. Your ju", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 21:15-17*\nAt that time, Jesus said to Simon Peter, Simon, son ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nCome, children, hear me; I will teach you the fear of the Lord.", + "id": "Offertorium" + }, + { + "body": "Having graciously accepted our offerings, we beseech You, O Lord, that we may ever treat this divine sacrament with sinc", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 6:56-57*\nMy Flesh is food indeed, and My Blood is drink indeed. He who eats My Flesh and drinks My Blood, abides i", + "id": "Communio" + }, + { + "body": "We, who have been filled with strength at the heavenly table, beseech You, O Lord, our God, that by the intercession of ", + "id": "Postcommunio" + } + ], + "2024-09-04": [ + { + "body": "*Ps 85:1-3*\nIncline Your ear, O Lord; answer me; save Your servant, O my God, who trusts in You. Have pity on me, O Lord", + "id": "Introitus" + }, + { + "body": "May Your abiding mercy, O Lord, cleanse and strengthen Your Church, and, since without You she cannot exist in safety, l", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:25-26; 6:1-10*\nBrethren: If we live by the Spirit", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nIt is good to give thanks to the Lord, to sing to Your name, Most High.\n℣. To proclaim Your kindness at dawn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:11-16*\nAt that time, Jesus went to a town called Naim; and H", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2-4*\nI have waited, waited for the Lord, and He stooped toward me, and heard my cry. And He put a new song into m", + "id": "Offertorium" + }, + { + "body": "May Your sacrament, O Lord, always keep us and guard us from the assaults of the devil.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 6:52*\nThe bread that I will give is My Flesh for the life of the world.", + "id": "Communio" + }, + { + "body": "May the working of the heavenly gift, O Lord, so possess us, mind and body, that the action of the sacrament, rather tha", + "id": "Postcommunio" + } + ], + "2024-09-05": [ + { + "body": "*Ecclus. 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the digni", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that the venerable feast of Your blessed Confessor and Bishop Laurence may increase", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, a", + "id": "Lectio" + }, + { + "body": "*Ecclus 44:16*\nBehold, a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not found the like to hi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + } + ], + "2024-09-06": [ + { + "body": "*Ps 85:1-3*\nIncline Your ear, O Lord; answer me; save Your servant, O my God, who trusts in You. Have pity on me, O Lord", + "id": "Introitus" + }, + { + "body": "May Your abiding mercy, O Lord, cleanse and strengthen Your Church, and, since without You she cannot exist in safety, l", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:25-26; 6:1-10*\nBrethren: If we live by the Spirit", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nIt is good to give thanks to the Lord, to sing to Your name, Most High.\n℣. To proclaim Your kindness at dawn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:11-16*\nAt that time, Jesus went to a town called Naim; and H", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2-4*\nI have waited, waited for the Lord, and He stooped toward me, and heard my cry. And He put a new song into m", + "id": "Offertorium" + }, + { + "body": "May Your sacrament, O Lord, always keep us and guard us from the assaults of the devil.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 6:52*\nThe bread that I will give is My Flesh for the life of the world.", + "id": "Communio" + }, + { + "body": "May the working of the heavenly gift, O Lord, so possess us, mind and body, that the action of the sacrament, rather tha", + "id": "Postcommunio" + } + ], + "2024-09-07": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + } + ], + "2024-09-08": [ + { + "body": "*Ps 85:3; 85:5*\nHave pity on me, O Lord, for to You I call all the day; for You, O Lord, are good and forgiving, aboundi", + "id": "Introitus" + }, + { + "body": "May Your grace, we beseech You, O Lord, ever go before us and follow us, and may it make us ever intent upon good works.", + "id": "Oratio" + }, + { + "body": "*Commemoration Nativity of the Blessed Virgin Mary*\nBestow upon Your servants, we beseech You, O Lord, the gift of heave", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 3:13-21*\nBrethren: I pray you not to be disheartene", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:1-11*\nAt that time, when Jesus entered the house of one of ", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nDeign, O Lord, to rescue me; let all be put to shame and confusion who seek to snatch away my life. Deign,", + "id": "Offertorium" + }, + { + "body": "Cleanse us by this sacrifice, we beseech You, O Lord, and by the workings of Your mercy, make us worthy to receive it.\nT", + "id": "Secreta" + }, + { + "body": "*Commemoration Nativity of the Blessed Virgin Mary*\nMay the humanity of Your only-begotten Son help us, O Lord, as He, W", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nO Lord, I will tell of Your singular justice; O God, You have taught me from my youth; and now that I am o", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You, graciously cleanse and renew our minds with the heavenly sacrament, so we may thereby also recei", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Nativity of the Blessed Virgin Mary*\nWe have partaken of the solemn sacrament on this annual feast: grant", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-09": [ + { + "body": "*Ps 85:3; 85:5*\nHave pity on me, O Lord, for to You I call all the day; for You, O Lord, are good and forgiving, aboundi", + "id": "Introitus" + }, + { + "body": "May Your grace, we beseech You, O Lord, ever go before us and follow us, and may it make us ever intent upon good works.", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Gorgonius*\nMay Gorgonius, Your Saint, O Lord, gladden us by his intercession, and cause us to rejoice", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 3:13-21*\nBrethren: I pray you not to be disheartene", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:1-11*\nAt that time, when Jesus entered the house of one of ", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nDeign, O Lord, to rescue me; let all be put to shame and confusion who seek to snatch away my life. Deign,", + "id": "Offertorium" + }, + { + "body": "Cleanse us by this sacrifice, we beseech You, O Lord, and by the workings of Your mercy, make us worthy to receive it.\nT", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Gorgonius*\nO Lord, may the offering which we, Your servants, present be pleasing to You because St. G", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nO Lord, I will tell of Your singular justice; O God, You have taught me from my youth; and now that I am o", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You, graciously cleanse and renew our minds with the heavenly sacrament, so we may thereby also recei", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Gorgonius*\nMay Your everlasting kindness fill Your faithful people with new life, and may they be eve", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-10": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "Be mindful, O Lord, of our humble prayers in this commemoration of Your Saints, so that we, who have no confidence in ou", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a spe", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", + "id": "Postcommunio" + } + ], + "2024-09-11": [ + { + "body": "*Ps 85:3; 85:5*\nHave pity on me, O Lord, for to You I call all the day; for You, O Lord, are good and forgiving, aboundi", + "id": "Introitus" + }, + { + "body": "May Your grace, we beseech You, O Lord, ever go before us and follow us, and may it make us ever intent upon good works.", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Protus & Hyacinth*\nMay the precious witness of Your blessed Martyrs, Protus and Hyacinth, comfort us", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 3:13-21*\nBrethren: I pray you not to be disheartene", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:1-11*\nAt that time, when Jesus entered the house of one of ", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nDeign, O Lord, to rescue me; let all be put to shame and confusion who seek to snatch away my life. Deign,", + "id": "Offertorium" + }, + { + "body": "Cleanse us by this sacrifice, we beseech You, O Lord, and by the workings of Your mercy, make us worthy to receive it.\nT", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Protus & Hyacinth*\nO Lord, in memory of Your holy Martyrs, Protus and Hyacinth, we pay our debt to Y", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nO Lord, I will tell of Your singular justice; O God, You have taught me from my youth; and now that I am o", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You, graciously cleanse and renew our minds with the heavenly sacrament, so we may thereby also recei", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Protus & Hyacinth*\nThrough the prayer of Your blessed Martyrs, Protus and Hyacinth, may the receptio", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-12": [ + { + "body": "*Ps 44:13, 15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to the", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that through the protection of the most holy Virgin Mary, Your faithful people who ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:23-31*\nI bud forth delights like the vine, my blossoms become fruit fa", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, without spot were made the Mother of the Saviour.\n℣. O Virgin, Mother", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with you; blessed are you among women, and blessed is the fruit o", + "id": "Offertorium" + }, + { + "body": "By Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, may this offering bring us prosperity and p", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord, that having partaken of these helps for our salvation, we may be protected, wherever we a", + "id": "Postcommunio" + } + ], + "2024-09-13": [ + { + "body": "*Ps 85:3; 85:5*\nHave pity on me, O Lord, for to You I call all the day; for You, O Lord, are good and forgiving, aboundi", + "id": "Introitus" + }, + { + "body": "May Your grace, we beseech You, O Lord, ever go before us and follow us, and may it make us ever intent upon good works.", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 3:13-21*\nBrethren: I pray you not to be disheartene", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:1-11*\nAt that time, when Jesus entered the house of one of ", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nDeign, O Lord, to rescue me; let all be put to shame and confusion who seek to snatch away my life. Deign,", + "id": "Offertorium" + }, + { + "body": "Cleanse us by this sacrifice, we beseech You, O Lord, and by the workings of Your mercy, make us worthy to receive it.\nT", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nO Lord, I will tell of Your singular justice; O God, You have taught me from my youth; and now that I am o", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You, graciously cleanse and renew our minds with the heavenly sacrament, so we may thereby also recei", + "id": "Postcommunio" + } + ], + "2024-09-14": [ + { + "body": "*Gal 6:14*\nBut it behooves us to glory in the Cross of our Lord Jesus Christ: in Whom is our salvation, life, and resurr", + "id": "Introitus" + }, + { + "body": "O God, Who gladden us this day by the yearly feast of the Exaltation of the Holy Cross, grant, we beseech You, that we w", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 2:5-11*\nBrethren: Have this mind in you which wa", + "id": "Lectio" + }, + { + "body": "*Phil 2:8-9*\nChrist became obedient for us to death, even to death on a cross.\n℣. Therefore God also has exalted Him, an", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 12:31-36*\nAt that time, Jesus said to the multitudes of the Je", + "id": "Evangelium" + }, + { + "body": "Through the sign of the Holy Cross protect Your people, O Lord, from the snares of all their enemies, that we may pay Yo", + "id": "Offertorium" + }, + { + "body": "We who are about to take as nourishment the Body and Blood of Jesus Christ our Lord, through Whom the Cross became a hol", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "Through the sign of the Cross, deliver us from our enemies, O our God.", + "id": "Communio" + }, + { + "body": "Stand by us, O Lord our God, and protect by Your everlasting help those to whom You have given strength through Your sac", + "id": "Postcommunio" + } + ], + "2024-09-15": [ + { + "body": "*Ps 118:137; 118:124*\nYou are just, O Lord, and Your ordinance is right. Deal with Your servant according to Your kindne", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, O Lord, that Your people may avoid the temptations of the devil, and with pure minds follow You, ", + "id": "Oratio" + }, + { + "body": "*Commemoration Seven Sorrows of the Blessed Virgin Mary*\nO God, in Whose Passion the sword, according to the prophecy of", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:1-6*\nBrethren: I, the prisoner in the Lord, exhor", + "id": "Lectio" + }, + { + "body": "*Ps 32:12; 32:6*\nHappy the nation whose God is the Lord, the people the Lord has chosen for His own inheritance.\n℣. By t", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:34-46*\nAt that time, the Pharisees came to Jesus and one", + "id": "Evangelium" + }, + { + "body": "*Dan 9:17-19*\nI, Daniel, prayed to my God, saying, Hear, O Lord, the prayers of Your servant; show Your face upon Your s", + "id": "Offertorium" + }, + { + "body": "O Lord, we humbly pray Your Majesty that the holy rite which we are celebrating may free us from past and future sins.\nT", + "id": "Secreta" + }, + { + "body": "*Commemoration Seven Sorrows of the Blessed Virgin Mary*\nO Lord Jesus Christ, we offer You prayers and sacrificial gifts", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 75:12-13*\nMake vows to the Lord, your God, and fulfill them; let all round about Him bring gifts to the terrible Lor", + "id": "Communio" + }, + { + "body": "By the workings of Your sanctifying power, almighty God, may our vices be cured and eternal remedies provided for us.\nTh", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Seven Sorrows of the Blessed Virgin Mary*\nO Lord Jesus Christ, may the sacrifices of which we have partak", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-16": [ + { + "body": "*Ps 78:11; 78:12; 78:10*\nLet the prisoners’ sighing come before You, O Lord; repay our neighbors sevenfold into their bo", + "id": "Introitus" + }, + { + "body": "May the feast of the blessed Martyrs and Bishops, Cornelius and Cyprian, protect us, O Lord, we beseech You, and may the", + "id": "Oratio" + }, + { + "body": "*For Sts. Euphemia, Lucy and Geminianus*\nO Lord, grant that our prayers may bear fruit in joy, that we who each year dev", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 3:1-8*\nThe souls of the just are in the hands of God, and no torment of death shall ", + "id": "Lectio" + }, + { + "body": "*Exo 15:11*\nGod is glorious in His Saints, wonderful in majesty, a worker of wonders.\n*Exo 15:6*\n℣. Your right hand, O L", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:9-19*\nAt that time, Jesus said to His disciples, When you h", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nGod is wonderful in His Saints; the God of Israel is He Who gives power and strength to His people. Blessed b", + "id": "Offertorium" + }, + { + "body": "Be mindful, O Lord, of our humble prayers in this commemoration of Your Saints, that we who have no confidence in our ow", + "id": "Secreta" + }, + { + "body": "*For Sts. Euphemia, Lucy and Geminianus*\nGraciously look upon the prayers of Your people, O Lord, and grant that we may ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Wis 3:4-6*\nFor if before men they be punished, God tried them; as gold in the furnace, He proved them, and as sacrifici", + "id": "Communio" + }, + { + "body": "Refreshed by the sacrament of salvation, we beseech You, O Lord, that we may be aided by the prayers of those whose fest", + "id": "Postcommunio" + }, + { + "body": "*For Sts. Euphemia, Lucy and Geminianus*\nO Lord, hear our prayers and comfort us by the continual assistance of Your Mar", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-17": [ + { + "body": "*Ps 118:137; 118:124*\nYou are just, O Lord, and Your ordinance is right. Deal with Your servant according to Your kindne", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, O Lord, that Your people may avoid the temptations of the devil, and with pure minds follow You, ", + "id": "Oratio" + }, + { + "body": "*Commemoration Stigmata of St. Francis*\nO Lord, Jesus Christ, Who, to inflame our hearts with the fire of Your love when", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:1-6*\nBrethren: I, the prisoner in the Lord, exhor", + "id": "Lectio" + }, + { + "body": "*Ps 32:12; 32:6*\nHappy the nation whose God is the Lord, the people the Lord has chosen for His own inheritance.\n℣. By t", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:34-46*\nAt that time, the Pharisees came to Jesus and one", + "id": "Evangelium" + }, + { + "body": "*Dan 9:17-19*\nI, Daniel, prayed to my God, saying, Hear, O Lord, the prayers of Your servant; show Your face upon Your s", + "id": "Offertorium" + }, + { + "body": "O Lord, we humbly pray Your Majesty that the holy rite which we are celebrating may free us from past and future sins.\nT", + "id": "Secreta" + }, + { + "body": "*Commemoration Stigmata of St. Francis*\nMake holy the gifts dedicated to You, O Lord, and by the intercession of blessed", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 75:12-13*\nMake vows to the Lord, your God, and fulfill them; let all round about Him bring gifts to the terrible Lor", + "id": "Communio" + }, + { + "body": "By the workings of Your sanctifying power, almighty God, may our vices be cured and eternal remedies provided for us.\nTh", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Stigmata of St. Francis*\nO God, Who in many ways showed in blessed Francis the wondrous mysteries of the ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-18": [ + { + "body": "*Ps 80:2-5*\nSing joyfully to God our strength; acclaim the God of Jacob. Take up a pleasant psalm with the harp; blow th", + "id": "Introitus" + }, + { + "body": "May our frailty, we beseech You, O Lord, find support in the help of Your mercy; so that what is marred by its own natur", + "id": "Oratio" + }, + { + "body": "*Amos 9:13-15*\nThus says the Lord God: Yes, days are coming, when the plowman shall overtake the reaper, and the vintage", + "id": "LectioL1" + }, + { + "body": "*Ps 112:5-7*\nWho is like the Lord, our God, Who is enthroned on high and looks upon the heavens and the earth below?\n℣. ", + "id": "GradualeL1" + }, + { + "body": "O Lord, we beseech You, grant to Your praying household that, as they fast from bodily food, they may also abstain menta", + "id": "OratioL1" + }, + { + "body": "*Commemoration St. Joseph of Cupertino*\nO God, Who willed that all things be drawn unto Your Son when He was raised abov", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Esdra\n*2 Esd. 8:1-10*\nIn those days, all the people were gathered together as one man, to the st", + "id": "Lectio" + }, + { + "body": "*Ps 32:12, 6*\nHappy the nation whose God is the Lord, the people the Lord has chosen for His own inheritance.\n℣. By the ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Mark\n*Mark 9:16-28*\nAt that time, one of the crowd answering, said to Jesus", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly. And I will lift up my hands to Your commands, ", + "id": "Offertorium" + }, + { + "body": "May this offering, O Lord, we beseech You, wipe away our transgressions, and make holy the minds and bodies of Your serv", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Joseph of Cupertino*\nWe offer these sacrifices of praise, O Lord, in memory of Your Saints; trusting ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*2 Esd. 8:10*\nEat fat meats, and drink sweet wine, and send portions to those who have not prepared for themselves: beca", + "id": "Communio" + }, + { + "body": "In partaking of Your heavenly gifts, we humbly entreat You, O Lord, that by Your grace we may receive what, through Your", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Joseph of Cupertino*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we als", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-19": [ + { + "body": "*Ps 36:39*\nThe salvation of the just is from the Lord; He is their refuge in time of distress.\n*Ps 36:1*\nBe not vexed ov", + "id": "Introitus" + }, + { + "body": "O God, Who gladden us by the annual festival of Your Martyrs Januarius and Companions, grant that we may be inspired by ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St Paul the Apostle to the Jews\n*Heb 10:32-38*\nBrethren: Call to mind the days gone by, in whi", + "id": "Lectio" + }, + { + "body": "*Ps 39:18-19*\nWhen the just cry out the Lord hears them, and from all their distress He rescues them.\n℣. The Lord is clo", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:3-13*\nAt that time, as Jesus was sitting on the Mount of", + "id": "Evangelium" + }, + { + "body": "*Wis 3:1-3*\nThe souls of the just are in the hand of God, and no torment shall touch them. They seemed, in the view of t", + "id": "Offertorium" + }, + { + "body": "Be appeased by the gifts we offer You, O Lord, and through the intercession of Your holy Martyrs Januarius and companion", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 10:27*\nWhat I tell you in darkness, speak it in the light, says the Lord; and what you hear whispered, preach it o", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us of sin, and, through the intercession of Your holy Martyrs Januarius and companio", + "id": "Postcommunio" + } + ], + "2024-09-20": [ + { + "body": "*Ps 104:3-4*\nRejoice, O hearts that seek the Lord! Look to the Lord, and be strengthened; seek His face evermore.\n*Ps 10", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we who devoutly keep the sacred observances year by year may be pleasing unto ", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Eustace & Companions*\nO God, who dost permit us to keep the birthday of thy holy Martyrs Eustache an", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Osee the Prophet\n*Osee 14:2-10*\nThus says the Lord God: Return, O Israel, to the Lord, your God;", + "id": "Lectio" + }, + { + "body": "*Ps 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants.\n℣. O Lord, You have been our refuge through all gene", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 7:36-50*\nAt that time, one of the Pharisees asked Jesus to dine ", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2, 5*\nBless the Lord, O my soul, and forget not all His benefits; and your youth shall be renewed like the eagle", + "id": "Offertorium" + }, + { + "body": "May the gift of our fasting, we beseech You, O Lord, be acceptable to You, and by its purifying power make us worthy of ", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Eustace & Companions*\nWe present to thee, O Lord, these gifts for our sacrifice, as honoring thy hol", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:22, 24*\nTake away from me reproach and contempt, for I observe Your decrees, O Lord. Your decrees are my delight", + "id": "Communio" + }, + { + "body": "We beseech You, O almighty God, that, showing gratitude for the gifts we have received, we may obtain yet greater benefi", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Eustace & Companions*\nGrant, we beseech You, O almighty and merciful God, that through the intercess", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-21": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom and his tongue utters what is right. The law of his God is in hi", + "id": "Introitus" + }, + { + "body": "May we be helped, O Lord, by the prayers of the blessed Apostle and Evangelist Matthew, that what we ourselves cannot ob", + "id": "Oratio" + }, + { + "body": "*Commemoration Ember Saturday of September*\nAlmighty, everlasting God, You Who cure body and soul through healing self-d", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ezekiel\n*Ezek 1:10-14*\nThe faces of the living creatures were like this: each of the four had th", + "id": "Lectio" + }, + { + "body": "*Ps 111:1-2*\nHappy the man who fears the Lord, who greatly delights in His commands.\n℣. His posterity shall be mighty up", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:9-13*\nAt that time, Jesus saw a man named Matthew sitting", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You placed on his head a crown of pure gold; he asked life of You, and You gave it to him, alleluia.", + "id": "Offertorium" + }, + { + "body": "May the prayers of the blessed Apostle and Evangelist, Matthew, recommend to You the offering made by Your Church, which", + "id": "Secreta" + }, + { + "body": "*Commemoration Ember Saturday of September*\nGrant, we beseech You, almighty God, that the gift in the sight of Your maje", + "id": "Commemoratio Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Ps 20:6*\nGreat is his glory in Your victory; majesty and splendor You conferred upon him, O Lord.", + "id": "Communio" + }, + { + "body": "Having received Your sacrament, O Lord, we implore You, that what we have celebrated in honor of St. Matthew, Your Apost", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Ember Saturday of September*\nMay Your sacrament, we beseech You, O Lord, produce in us what it contains, ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-22": [ + { + "body": "*Eccli 36:18*\nGive peace, O Lord, to those who have hoped in You, and let Your Prophets be proved true. Hear the prayers", + "id": "Introitus" + }, + { + "body": "May the working of Your mercy, we beseech You, O Lord, guide our hearts, for without You, we cannot please You.\nThrough ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 1:4-8*\nBrethren: I give thanks to my God", + "id": "Lectio" + }, + { + "body": "*Ps 121:1, 7*\nI rejoiced because they said to me, We will go up to the house of the Lord.\n℣. May peace be within your wa", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:1-8*\nAt that time, Jesus, getting into a boat, crossed ov", + "id": "Evangelium" + }, + { + "body": "*Ex 24:4-5*\nMoses consecrated an altar to the Lord, offering upon it holocausts, and sacrificing victims: he made an eve", + "id": "Offertorium" + }, + { + "body": "O God, Who, through the gifts we have exchanged with You in this sacrament, have made us partakers of the supreme Godhea", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nBring gifts and enter His courts; worship the Lord in His holy court.", + "id": "Communio" + }, + { + "body": "Strengthened by Your sacred gift, we thank You, O Lord, beseeching Your mercy to make us receive it worthily.\nThrough ou", + "id": "Postcommunio" + } + ], + "2024-09-23": [ + { + "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", + "id": "Introitus" + }, + { + "body": "Eternal Shepherd, look with favor upon Your flock. Safeguard and shelter it forevermore through blessed Linus, Your Mart", + "id": "Oratio" + }, + { + "body": "*For St. Thecla*\nGrant, we beseech You, O almighty God, that we who celebrate the\nanniversary of the death of blessed Th", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nAnd let them exalt him in the church of the people: and praise him in the chair of the ancients.\n℣. ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", + "id": "Offertorium" + }, + { + "body": "By the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that thy flock may everywhere pr", + "id": "Secreta" + }, + { + "body": "*For St. Thecla*\nAccept, O Lord, the gifts we bring on the festival of blessed\nThecla, Your Virgin and Martyr, through w", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", + "id": "Communio" + }, + { + "body": "Being appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that under thy direction and pow", + "id": "Postcommunio" + }, + { + "body": "*For St. Thecla*\nMay the sacrament we have received, aid us, O Lord, and by the\nintercession of blessed Thecla, Your Vir", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-24": [ + { + "body": "*Eccli 36:18*\nGive peace, O Lord, to those who have hoped in You, and let Your Prophets be proved true. Hear the prayers", + "id": "Introitus" + }, + { + "body": "May the working of Your mercy, we beseech You, O Lord, guide our hearts, for without You, we cannot please You.\nThrough ", + "id": "Oratio" + }, + { + "body": "*Commemoration Our Lady of Ransom*\nO God, Who for the deliverance of Christians from the power of the pagans, graciously", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 1:4-8*\nBrethren: I give thanks to my God", + "id": "Lectio" + }, + { + "body": "*Ps 121:1, 7*\nI rejoiced because they said to me, We will go up to the house of the Lord.\n℣. May peace be within your wa", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:1-8*\nAt that time, Jesus, getting into a boat, crossed ov", + "id": "Evangelium" + }, + { + "body": "*Ex 24:4-5*\nMoses consecrated an altar to the Lord, offering upon it holocausts, and sacrificing victims: he made an eve", + "id": "Offertorium" + }, + { + "body": "O God, Who, through the gifts we have exchanged with You in this sacrament, have made us partakers of the supreme Godhea", + "id": "Secreta" + }, + { + "body": "*Commemoration Our Lady of Ransom*\nThrough Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nBring gifts and enter His courts; worship the Lord in His holy court.", + "id": "Communio" + }, + { + "body": "Strengthened by Your sacred gift, we thank You, O Lord, beseeching Your mercy to make us receive it worthily.\nThrough ou", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Our Lady of Ransom*\nWe have received help for our salvation, O Lord; grant, we beseech You, that we may e", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-25": [ + { + "body": "*Eccli 36:18*\nGive peace, O Lord, to those who have hoped in You, and let Your Prophets be proved true. Hear the prayers", + "id": "Introitus" + }, + { + "body": "May the working of Your mercy, we beseech You, O Lord, guide our hearts, for without You, we cannot please You.\nThrough ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 1:4-8*\nBrethren: I give thanks to my God", + "id": "Lectio" + }, + { + "body": "*Ps 121:1, 7*\nI rejoiced because they said to me, We will go up to the house of the Lord.\n℣. May peace be within your wa", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:1-8*\nAt that time, Jesus, getting into a boat, crossed ov", + "id": "Evangelium" + }, + { + "body": "*Ex 24:4-5*\nMoses consecrated an altar to the Lord, offering upon it holocausts, and sacrificing victims: he made an eve", + "id": "Offertorium" + }, + { + "body": "O God, Who, through the gifts we have exchanged with You in this sacrament, have made us partakers of the supreme Godhea", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nBring gifts and enter His courts; worship the Lord in His holy court.", + "id": "Communio" + }, + { + "body": "Strengthened by Your sacred gift, we thank You, O Lord, beseeching Your mercy to make us receive it worthily.\nThrough ou", + "id": "Postcommunio" + } + ], + "2024-09-26": [ + { + "body": "*Eccli 36:18*\nGive peace, O Lord, to those who have hoped in You, and let Your Prophets be proved true. Hear the prayers", + "id": "Introitus" + }, + { + "body": "May the working of Your mercy, we beseech You, O Lord, guide our hearts, for without You, we cannot please You.\nThrough ", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Cyprian & Justina *\nMay the continual protection of the blessed Martyrs Cyprian and Justina comfort ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 1:4-8*\nBrethren: I give thanks to my God", + "id": "Lectio" + }, + { + "body": "*Ps 121:1, 7*\nI rejoiced because they said to me, We will go up to the house of the Lord.\n℣. May peace be within your wa", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:1-8*\nAt that time, Jesus, getting into a boat, crossed ov", + "id": "Evangelium" + }, + { + "body": "*Ex 24:4-5*\nMoses consecrated an altar to the Lord, offering upon it holocausts, and sacrificing victims: he made an eve", + "id": "Offertorium" + }, + { + "body": "O God, Who, through the gifts we have exchanged with You in this sacrament, have made us partakers of the supreme Godhea", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Cyprian & Justina *\nWe offer You, O Lord, the gifts of our devotion; may they by Your mercy, be rend", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nBring gifts and enter His courts; worship the Lord in His holy court.", + "id": "Communio" + }, + { + "body": "Strengthened by Your sacred gift, we thank You, O Lord, beseeching Your mercy to make us receive it worthily.\nThrough ou", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Cyprian & Justina *\nGrant us, we beseech You, O Lord, through the intercession of Your holy Martyrs,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-27": [ + { + "body": "*Ecclus 44:15, 14*\nAt gatherings the wisdom of the Saints is retold, and the assembly sings their praises; their name li", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we who celebrate the anniversary of the death of Your holy Martyrs, Cosmas and", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 5:16-20*\nBut the just live forever, and in the Lord is their recompense, and the tho", + "id": "Lectio" + }, + { + "body": "*Ps 33:18-19*\nWhen the just cry out, the Lord hears them, and from all their distress He rescues them.\n℣. The Lord is cl", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 6:17-23*\nAt that time, Jesus coming down from the mountain, to", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nAll who love Your name shall glory in You, for You, O Lord, bless the just man; O Lord, You surround us wit", + "id": "Offertorium" + }, + { + "body": "Let not the gracious prayer of Your saints fail us, O Lord, but may it make our offerings acceptable to You and obtain f", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 78:2, 11*\nThey have given the corpses of Your servants, O Lord, as food to the birds of heaven, the flesh of Your fa", + "id": "Communio" + }, + { + "body": "May the participation granted in Your heavenly banquet and the united prayers of the saints, we beseech You, O Lord, pro", + "id": "Postcommunio" + } + ], + "2024-09-28": [ + { + "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", + "id": "Introitus" + }, + { + "body": "O God, Who through the palm of martyrdom transported blessed Wenceslaus from an earthly dominion unto heavenly glory, ke", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nShe conducted the just, when he fled from his brother's wrath, through the", + "id": "Lectio" + }, + { + "body": "*Ps 111:1-2*\nBlessed is the man that feareth the Lord: he shall delight exceedingly in his commandments. His seed shall ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:34-42*\nIn that time: Jesus said to his disciples: Do not", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", + "id": "Offertorium" + }, + { + "body": "Now that You have received our gifts and prayers, we beseech You, O Lord, cleanse us by Your heavenly mysteries and in Y", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration of Your Saints, may re", + "id": "Postcommunio" + } + ], + "2024-09-29": [ + { + "body": "*Ps 102:20*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding, obeying His spoken word. (Al", + "id": "Introitus" + }, + { + "body": "O God, Who assign according to a wondrous order the duties of Angels and men, mercifully grant that our life on earth be", + "id": "Oratio" + }, + { + "body": "*Commemoration XIX Sunday after Pentecost*\nAlmighty and merciful God, graciously keep away from us all misfortune, that,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Revelation\n*Apoc 1:1-5*\nIn those days, God signified those things which must shortly come to pas", + "id": "Lectio" + }, + { + "body": "*Ps 102:20; 102:1*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding.\n℣. Bless the Lord, O ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-10*\nAt that time, the disciples came to Jesus, saying,", + "id": "Evangelium" + }, + { + "body": "*Apoc 8:3-4*\nAn Angel stood near the altar of the temple, having a golden censer in his hand, and there was given to him", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, humbly praying You to accept them graciously and to grant that they may be he", + "id": "Secreta" + }, + { + "body": "*Commemoration XIX Sunday after Pentecost*\nGrant, we beseech You, O Lord, that these gifts which we offer in the sight o", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nAll you Angels of the Lord, bless the Lord: sing a hymn, and exalt Him above all forever. (Alleluia.)", + "id": "Communio" + }, + { + "body": "Relying upon the intercession of blessed Michael, Your Archangel, O Lord, we humbly pray You, that what we have received", + "id": "Postcommunio" + }, + { + "body": "*Commemoration XIX Sunday after Pentecost*\nMay Your healing power, O Lord, mercifully deliver us from our waywardness an", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-30": [ + { + "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", + "id": "Introitus" + }, + { + "body": "O God, Who graciously gave Your Church blessed Jerome, Your Confessor and peerless teacher, to explain the Holy Scriptur", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "By Your heavenly gifts, grant us, O Lord, we pray, to serve You with a free mind, so that the offerings we present, may,", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "Filled with heavenly food, we beseech You, O Lord, that by the intercession of blessed Jerome, Your Confessor, we may be", + "id": "Postcommunio" + } + ], + "2024-10-01": [ + { + "body": "I am the salvation of the people, says the Lord; in whatever tribulation they shall cry to Me, I will hear them; and I w", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, graciously keep away from us all misfortune, that, unhampered in soul and body, we may perfor", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Remigius*\nGrant, we beseech Thee, almighty God, that the solemn feast of blessed Remigius, Thy Confes", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:23-28*\nBrethren: Be renewed in the spirit of your", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:1-14*\nAt that time, Jesus spoke to the chief priests and", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nThough I walk amid distress, You preserve me, O Lord; against the anger of my enemies You raise Your hand; Yo", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, O Lord, that these gifts which we offer in the sight of Your majesty, may be the means of our sal", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Remigius*\nMay Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we refle", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nYou have commanded that Your precepts be diligently kept. Oh, that I might be firm in the ways of keeping Y", + "id": "Communio" + }, + { + "body": "May Your healing power, O Lord, mercifully deliver us from our waywardness and make us ever keep Your commandments.\nThro", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Remigius*\nGrant, we beseech You, almighty God, that as we thank You for the favors we have received, ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-02": [ + { + "body": "*Ps 102:20*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding, obeying His spoken word.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, Who in Your wondrous providence graciously send Your Angels to watch over us, grant that we who pray to You may b", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Exodus\n*Exod 23:20-23*\nThus says the Lord God: See, I am sending My Angel before you, to guard y", + "id": "Lectio" + }, + { + "body": "*Ps 90:11-12*\nTo His Angels God has given command about you, that they guard you in all your ways.\n℣. Upon their hands t", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-10*\nAt that time, the disciples came to Jesus, saying,", + "id": "Evangelium" + }, + { + "body": "*Ps 102:20-21*\nBless the Lord, all you His Angels, His ministers, who do His will, obeying His spoken word.", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the gifts which we offer in honor of Your holy Angels, and mercifully grant that we may be freed from pr", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nAll you Angels of the Lord, bless the Lord: sing a hymn, and exalt Him above all forever.", + "id": "Communio" + }, + { + "body": "Rejoicing on the feast of Your holy Angels, O Lord, we have received the divine sacrament; we pray that we may ever be f", + "id": "Postcommunio" + } + ], + "2024-10-03": [ + { + "body": "*Song 4:8-9*\nCome from Lebanon, My bride, come from Lebanon, come! You have ravished My Heart, My sister, My bride; you ", + "id": "Introitus" + }, + { + "body": "O Lord, Who said: Unless you become as little children, you shall not enter into the Kingdom of Heaven, grant us, we bes", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 66:12-14*\nThus says the Lord: Lo, I will spread prosperity over her like a river, an", + "id": "Lectio" + }, + { + "body": "*Matt 11:25*\nI praise You, Father, Lord of heaven and earth, that You did hide these things from the wise and prudent, a", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-4*\nAt that time, the disciples came to Jesus, saying, ", + "id": "Evangelium" + }, + { + "body": "*Luke 1:46; 1:48-49.*\nMy soul magnifies the Lord, and my spirit rejoices in God my Saviour; because He has regarded the ", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy prayers of blessed Theresa, Your Virgin, commend our sacrifice to You, so that it m", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Deut 32:10-12*\nHe led her about and taught her, and He guarded her as the apple of His eye. As an eagle He spread His w", + "id": "Communio" + }, + { + "body": "May the heavenly sacrament, O Lord, enkindle in us that fire of love which urged blessed Theresa, Your Virgin, to offer ", + "id": "Postcommunio" + } + ], + "2024-10-04": [ + { + "body": "*Gal 6:14*\nBut as for me, God forbid that I should glory, save in the Cross of our Lord Jesus Christ, through Whom the w", + "id": "Introitus" + }, + { + "body": "O God, Who by the good works of blessed Francis enriched Your Church by establishing a new religious family, grant us to", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 6:14-18*\nBrethren: But as for me, God forbid that I", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:25-30*\nAt that time, Jesus spoke and said, I praise You,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Make holy the gifts dedicated to You, O Lord, and by the intercession of blessed Francis, cleanse us from every stain of", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "May heavenly grace, we beseech You, O Lord, increase Your Church, which You mercifully enlightened by the glorious virtu", + "id": "Postcommunio" + } + ], + "2024-10-05": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Placid & Companions *\nO God, Who permits us to celebrate the anniversary of the death of Your holy Ma", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Placid & Companions *\nBe appeased by the gifts we offer You, O Lord, and through the intercession of ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Placid & Companions *\nGrant, we beseech You, O almighty and merciful God, that through the intercessi", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-06": [ + { + "body": "*Dan 3:31; 3:29; 3:35*\nAll that You have done to us, O Lord, You have done in true judgment; because we have sinned agai", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously grant Your faithful forgiveness and peace, that they may be cleansed of all sin and s", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 5:15-21*\nBrethren: See to it that you walk with car", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nThe eyes of all look hopefully to You, O Lord, and You give them their food in due season.\n℣. You open Yo", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 4:46-53*\nAt that time, there was a certain royal official whos", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nBy the streams of Babylon we sat and wept when we remembered you, O Sion.", + "id": "Offertorium" + }, + { + "body": "May these sacramental rites, O Lord, we beseech You, be our heavenly medicine and expel evil from our hearts.\nThrough ou", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nRemember Your word to Your servant, O Lord, since You have given me hope. This is my comfort in my afflic", + "id": "Communio" + }, + { + "body": "That we may be made worthy, O Lord, of Your sacred gifts, make us, we beseech You, ever obedient to Your commandments.\nT", + "id": "Postcommunio" + } + ], + "2024-10-07": [ + { + "body": "Let us all rejoice in the Lord, keeping a feastday in honor of the Blessed Virgin Mary, for whose celebration the angels", + "id": "Introitus" + }, + { + "body": "O God, Whose only-begotten Son, by His life, death and resurrection, has merited for us the grace of eternal salvation, ", + "id": "Oratio" + }, + { + "body": "*For St. Mark*\nGraciously hear our supplications, O Lord, and for the sake of thy Blessed Confessor and Bishop Mark, gra", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 8:22-24, 32-35.*\nThe Lord begot me, the firstborn of His ways, the forerunner of ", + "id": "Lectio" + }, + { + "body": "*Ps 44:5, 11-12.*\nIn the cause of truth and mercy and for the sake of justice: may your right hand show you wondrous dee", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "*Ecclus 24:25; 39:17*\nIn me is all grace of the way and of the truth, in me is all hope of life and of virtue. Like a ro", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, O Lord, to be properly prepared to offer these gifts, and, through the mysteries of the most h", + "id": "Secreta" + }, + { + "body": "*For St. Mark*\nMay the service of thy holy people be acceptable to Thee, O Lord, and honorable to thy saints, through wh", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*Ecclus 39:19*\nBreak forth in blossoms like the lily, and yield a smell, and bring forth leaves in grace, and praise wit", + "id": "Communio" + }, + { + "body": "May the prayers of Your most holy Mother, whose Rosary we are honoring, help us, we beseech You, O Lord, that we may der", + "id": "Postcommunio" + }, + { + "body": "*For St. Mark*\nGrant, O Lord, we beseech thee, that thy faithful people may always joyfully honour thy saints, and ever ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-08": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "O Lord, our God, Who through your only-begotten Son revealed secrets to blessed Bridget, grant that through her kind int", + "id": "Oratio" + }, + { + "body": "*For St. Sergius and Companions*\nMay the blessed merits of Your holy Martyrs, Sergius, Bacchus, Marcellus and Apuleius, ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to Timothy\n*1 Tim. 5:3-10*\nBeloved: Honor widows who are truly wido", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy an", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", + "id": "Secreta" + }, + { + "body": "*For St. Sergius and Companions*\nBy the worthy prayer of Your Saints, we beseech You, O Lord, may this victim, fitting f", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", + "id": "Postcommunio" + }, + { + "body": "*For St. Sergius and Companions*\nMay we be strengthened, O Lord, by the sacrament we have received, and protected throug", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-09": [ + { + "body": "*Ecclus 42:15-16*\nAt the Lord’s word were His works brought into being. As the rising sun is clear to all, so the glory ", + "id": "Introitus" + }, + { + "body": "O God, Who in a wondrous way graciously urged blessed John, Your Confessor, to propagate Your faith among the pagans, an", + "id": "Oratio" + }, + { + "body": "*For St. Dionysius and companions*\nO God, Who on this day strengthened blessed Dionysius, Your Martyr and Bishop, with t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 4:1-6; 4:15-18*\nBrethren: Discharging th", + "id": "Lectio" + }, + { + "body": "*Ps 72:21; 68:10*\nMy heart was embittered and my soul was pierced; zeal for Your house consumed me.\n*Isa 49:2*\n℣. He mad", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Col 1:25*\nI have become a minister of Christ in virtue of the office that God has given me, for I am to preach the word", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the pure offering of this saving sacrifice, and by the intercession of blessed John, Your Confessor, gra", + "id": "Secreta" + }, + { + "body": "*For St. Dionysius and companions*\nGraciously accept, O Lord, the gifts of Your people in honor of Your Saints, and make", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Phil 3:7*\nThe things that were gain to me, these, for the sake of Christ, I have counted loss.", + "id": "Communio" + }, + { + "body": "Refreshed by the holy sacrament of Your precious Body and Blood, we beseech You, O Lord, that, following the example of ", + "id": "Postcommunio" + }, + { + "body": "*For St. Dionysius and companions*\nWe who have received Your sacrament beseech You, Lord, that through the intercession ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-10": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O Lord Jesus Christ, model of true humility and its reward, we beseech You, that as You made blessed Francis one of Your", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy Francis, prevail by his prayers, so that the offerings placed upon Your sacred alta", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "May the pleading of the blessed Francis for us, together with the partaking of Your sacrament, protect us, O Lord, so th", + "id": "Postcommunio" + } + ], + "2024-10-11": [ + { + "body": "*Isa 7:14*\nBehold, the Virgin shall be with child and bear a Son, and shall name Him Emmanuel.\n*Ps 97:1*\nSing to the Lor", + "id": "Introitus" + }, + { + "body": "O God, Who, by the message of an Angel, willed to take flesh in the womb of the Blessed Virgin Mary, grant that we, your", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:23-31*\nI bud forth delights like the vine, my blossoms become fruit fa", + "id": "Lectio" + }, + { + "body": "*Isa 11:1-2*\nA shoot shall sprout from the stump of Jesse, and from his roots a bud shall blossom.\n℣. And the Spirit of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:43-51*\nAt that time, when they were returning, the Boy Jesus", + "id": "Evangelium" + }, + { + "body": "*Matt 1:18*\nWhen Mary His Mother had been betrothed to Joseph, she was found to be with child by the Holy Spirit.", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us of sin, and by the intercession of the Blessed Virgin Mary, the Mother of God, ma", + "id": "Postcommunio" + } + ], + "2024-10-12": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + } + ], + "2024-10-13": [ + { + "body": "*Esth 13:9-11*\nIn Your will are all things, O Lord, and there is none that can resist Your will; for You have made all t", + "id": "Introitus" + }, + { + "body": "Guard Your household, we beseech You, O Lord, with unceasing care, that under Your protection it may be free from all ha", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 6:10-17*\nBrethren: Be strengthened in the Lord and ", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nO Lord, You have been our refuge through all generations.\n℣. Before the mountains were begotten and the eart", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:23-35*\nAt that time, Jesus spoke to His disciples this p", + "id": "Evangelium" + }, + { + "body": "*Job 1.1*\nThere was a man in the land of Hus, whose name was Job, simple, and upright, and fearing God, whom Satan besou", + "id": "Offertorium" + }, + { + "body": "Graciously accept these sacrificial gifts, O Lord, with which You have willed us to find favor with You, and, by Your mi", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nMy soul pines for Your salvation; I hope in Your word. When will You do judgment on my perse", + "id": "Communio" + }, + { + "body": "We who have eaten the food of eternal life beseech You, O Lord, that what we take by mouth, we may strive after with pur", + "id": "Postcommunio" + } + ], + "2024-10-14": [ + { + "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", + "id": "Introitus" + }, + { + "body": "O God, Who behold how we fail in our weakness, mercifully restore us to Your love through the examples of Your Saints.\nT", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nAnd let them exalt him in the church of the people: and praise him in the chair of the ancients.\n℣. ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", + "id": "Offertorium" + }, + { + "body": "May this sacrificial offering help to cleanse us of our sins, O Lord, and to assure us of Your everlasting salvation.\nTh", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that these consecrated gifts may cleanse us of our sins and by their effect make us lead h", + "id": "Postcommunio" + } + ], + "2024-10-15": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "Graciously hear us, O God, our Saviour, that as we rejoice on the feast-day of blessed Teresa, Your Virgin, we may be so", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the intercession of her who", + "id": "Postcommunio" + } + ], + "2024-10-16": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "O God, Who taught blessed Hedwig to forsake worldly vanities that she might with her whole heart humbly follow Your cros", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", + "id": "Postcommunio" + } + ], + "2024-10-17": [ + { + "body": "*Cant 2:3*\nI rest in His shadow Whom I desire, and His fruit is sweet to my mouth.\n*Ps 83:2-3*\nHow lovely is Your dwelli", + "id": "Introitus" + }, + { + "body": "O Lord Jesus Christ, Who wondrously revealed the unsearchable riches of Your Heart to blessed Margaret Mary, the Virgin,", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 3:8-9, 14-19*\nBrethren: To me, the very least of al", + "id": "Lectio" + }, + { + "body": "*Cant 8:7*\nDeep waters cannot quench love, nor floods sweep it away.\n*Ps 72:26*\n℣. My flesh and my heart waste away; God", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:25-30*\nAt that time, Jesus spoke and said, I praise You,", + "id": "Evangelium" + }, + { + "body": "*Zach 9:17*\nWhat wealth is His, and what beauty! grain that makes the chosen ones flourish, and new wine, the maidens.", + "id": "Offertorium" + }, + { + "body": "May the gifts of Your people be acceptable to You, O Lord, and grant that we be enkindled with that divine fire radiatin", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Cant 6:2*\nI belong to my lover and my lover to me; He browses among the lilies.", + "id": "Communio" + }, + { + "body": "Having received the sacrament of Your Body and Blood, we beseech You, O Lord Jesus, grant us by the intercession of bles", + "id": "Postcommunio" + } + ], + "2024-10-18": [ + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, that Luke, Your holy Evangelist, who for the honor of Your name bore continually in his body the", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 8:16-24*\nBrethren: I give thanks to God", + "id": "Lectio" + }, + { + "body": "*Ps 18:5, 2*\nThrough all the earth their voice resounds, and to the ends of the world, their message.\n℣. The heavens dec", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nTo me, your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", + "id": "Offertorium" + }, + { + "body": "By Your heavenly gifts, grant us, O Lord, we pray, to serve You with a free mind, so that the offerings we present, may,", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nYou who have followed Me shall sit upon thrones, judging the twelve tribes of Israel.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that what we have received from Your holy altar may, by the prayers of Your blessed", + "id": "Postcommunio" + } + ], + "2024-10-19": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "O God, Who graciously made blessed Peter, Your Confessor, glorious by the gift of remarkable penance and sublime contemp", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:7-12*\nBrethren: The things that were gain to m", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", + "id": "Postcommunio" + } + ], + "2024-10-20": [ + { + "body": "*Ps 129:3-4*\nIf You, O Lord, mark iniquities, Lord, who can stand? But with You is forgiveness, O God of Israel.\n*Ps 129", + "id": "Introitus" + }, + { + "body": "O God, our refuge and our strength, the very source of holiness, heed the devout prayers of Your Church, and grant that ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 1:6-11*\nBrethren: We are confident in the Lord J", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nBehold how good it is, and how pleasant where brethren dwell as one!\n℣. It is as when the precious ointment", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:15-21*\nAt that time, the Pharisees went and took counsel", + "id": "Evangelium" + }, + { + "body": "*Esther 14:12-13*\nRemember me, O Lord, You Who rule above all power: and give a well-ordered speech in my mouth, that my", + "id": "Offertorium" + }, + { + "body": "Grant, O merciful God, that this saving sacrifice may always free us from sin, and protect us from all that works agains", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nI call upon You, for You will answer me, O God; incline Your ear to me; hear my word.", + "id": "Communio" + }, + { + "body": "We who have received the gift of Your blessed sacrament, O Lord, humbly pray that what You have taught us to do in comme", + "id": "Postcommunio" + } + ], + "2024-10-21": [ + { + "body": "*Ps 129:3-4*\nIf You, O Lord, mark iniquities, Lord, who can stand? But with You is forgiveness, O God of Israel.\n*Ps 129", + "id": "Introitus" + }, + { + "body": "O God, our refuge and our strength, the very source of holiness, heed the devout prayers of Your Church, and grant that ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Hilarion *\nMay the intercession of the blessed Abbot N., commend us to You, O Lord, so that through h", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 1:6-11*\nBrethren: We are confident in the Lord J", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nBehold how good it is, and how pleasant where brethren dwell as one!\n℣. It is as when the precious ointment", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:15-21*\nAt that time, the Pharisees went and took counsel", + "id": "Evangelium" + }, + { + "body": "*Esther 14:12-13*\nRemember me, O Lord, You Who rule above all power: and give a well-ordered speech in my mouth, that my", + "id": "Offertorium" + }, + { + "body": "Grant, O merciful God, that this saving sacrifice may always free us from sin, and protect us from all that works agains", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Hilarion *\nWe beseech You, O Lord, may the holy Abbot N., prevail by his prayers, so that the offerin", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nI call upon You, for You will answer me, O God; incline Your ear to me; hear my word.", + "id": "Communio" + }, + { + "body": "We who have received the gift of Your blessed sacrament, O Lord, humbly pray that what You have taught us to do in comme", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Hilarion *\nMay the pleading of the blessed Abbot N. for us, together with the partaking of Your sacra", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-22": [ + { + "body": "*Ps 129:3-4*\nIf You, O Lord, mark iniquities, Lord, who can stand? But with You is forgiveness, O God of Israel.\n*Ps 129", + "id": "Introitus" + }, + { + "body": "O God, our refuge and our strength, the very source of holiness, heed the devout prayers of Your Church, and grant that ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 1:6-11*\nBrethren: We are confident in the Lord J", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nBehold how good it is, and how pleasant where brethren dwell as one!\n℣. It is as when the precious ointment", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:15-21*\nAt that time, the Pharisees went and took counsel", + "id": "Evangelium" + }, + { + "body": "*Esther 14:12-13*\nRemember me, O Lord, You Who rule above all power: and give a well-ordered speech in my mouth, that my", + "id": "Offertorium" + }, + { + "body": "Grant, O merciful God, that this saving sacrifice may always free us from sin, and protect us from all that works agains", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nI call upon You, for You will answer me, O God; incline Your ear to me; hear my word.", + "id": "Communio" + }, + { + "body": "We who have received the gift of Your blessed sacrament, O Lord, humbly pray that what You have taught us to do in comme", + "id": "Postcommunio" + } + ], + "2024-10-23": [ + { + "body": "*Ps 131:9-10.*\nMay Your priests, O Lord, be clothed with justice; let Your faithful ones shout merrily for joy. For the ", + "id": "Introitus" + }, + { + "body": "O God, Who glorified blessed Anthony Mary, Your Confessor and Bishop, because of his zeal for souls, and through him est", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 7:23-27*\nBrethren: The priests were numerous, because", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\nHer priests I will clothe with salvation, and her faithful ones shall shout merrily for joy.\n℣. In her wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:42-47*\nAt that time, Jesus said to His disciples, \"Watch", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exulted.", + "id": "Offertorium" + }, + { + "body": "May the annual festival of blessed Anthony Mary, Your Confessor and Bishop, we beseech You, O Lord render us pleasing to", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "O God, Who rewards faithful souls, grant that, through the prayers of blessed Anthony Mary, Your Confessor and Bishop, w", + "id": "Postcommunio" + } + ], + "2024-10-24": [ + { + "body": "*Ps 102:20*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding, obeying His spoken word.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, Who gave blessed Raphael the Archangel as a traveling companion to Your servant Tobias, grant us, Your servants, ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Tobias\n*Tob 12:7-15*\nIn those days, the Angel Raphael said to Tobias: It is good to hide the sec", + "id": "Lectio" + }, + { + "body": "*Tob 8:3*\nThe Angel of the Lord, Raphael, took and bound the devil.\n*Ps 146:5*\n℣. Great is our Lord and mighty in power.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 5:1-4*\nAt that time, there was a feast of the Jews, and Jesus ", + "id": "Evangelium" + }, + { + "body": "*Apoc 8:3-4*\nAn Angel stood near the altar of the temple, having a golden censer in his hand, and there was given to him", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, humbly praying You to accept them graciously, and to grant that they may be h", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nAll you Angels of the Lord, bless the Lord: sing a hymn, and exalt Him above all forever.", + "id": "Communio" + }, + { + "body": "O Lord, graciously send Your holy Archangel Raphael to help us, that he who we know stands ever in the presence of Your ", + "id": "Postcommunio" + } + ], + "2024-10-25": [ + { + "body": "*Ps 129:3-4*\nIf You, O Lord, mark iniquities, Lord, who can stand? But with You is forgiveness, O God of Israel.\n*Ps 129", + "id": "Introitus" + }, + { + "body": "O God, our refuge and our strength, the very source of holiness, heed the devout prayers of Your Church, and grant that ", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Chrysanthus & Daria*\nMay the prayer of Your blessed Martyrs, Chrysanthus and Daria, defend us, O Lor", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 1:6-11*\nBrethren: We are confident in the Lord J", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nBehold how good it is, and how pleasant where brethren dwell as one!\n℣. It is as when the precious ointment", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:15-21*\nAt that time, the Pharisees went and took counsel", + "id": "Evangelium" + }, + { + "body": "*Esther 14:12-13*\nRemember me, O Lord, You Who rule above all power: and give a well-ordered speech in my mouth, that my", + "id": "Offertorium" + }, + { + "body": "Grant, O merciful God, that this saving sacrifice may always free us from sin, and protect us from all that works agains", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Chrysanthus & Daria*\nO Lord, may the offering which Your people sacrifice on the anniversary of the ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nI call upon You, for You will answer me, O God; incline Your ear to me; hear my word.", + "id": "Communio" + }, + { + "body": "We who have received the gift of Your blessed sacrament, O Lord, humbly pray that what You have taught us to do in comme", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Chrysanthus & Daria*\nYou have filled us with spiritual joy and delight; grant, we beseech You, O Lor", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-26": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + } + ], + "2024-10-27": [ + { + "body": "*Apoc 5:12; 1:6*\nWorthy is the Lamb Who was slain to receive power, and divinity, and wisdom, and strength, and honor. ", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, Who willed to restore all things in Your beloved Son, the King of the Universe, graciously gra", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:12-20.*\nBrethren: We give thanks to God the Fath", + "id": "Lectio" + }, + { + "body": "*Ps 71:8, 11*\nHe shall rule from sea to sea, and from the River to the ends of the earth.\n℣. All kings shall pay Him hom", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 18:33-37*\nAt that time, Pilate said to Jesus, Are You the King", + "id": "Evangelium" + }, + { + "body": "*Ps 2:8*\nAsk of Me and I will give You the nations for an inheritance and the ends of the earth for Your possession.", + "id": "Offertorium" + }, + { + "body": "O Lord, we offer You this sacrificial Victim of mankind's reconciliation with You; grant, we beseech You, that our Lord ", + "id": "Secreta" + }, + { + "body": "*Christ the King*\nIt is meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Ps 28:10-11*\nThe Lord is enthroned as King forever; may the Lord bless His people with peace!", + "id": "Communio" + }, + { + "body": "We have received the food of eternal life, and we beseech You, O Lord, that we who are proud to serve under the flag of ", + "id": "Postcommunio" + } + ], + "2024-10-28": [ + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", + "id": "Introitus" + }, + { + "body": "O God, Who have given us a way of coming to know Your name through Your blessed Apostles Simon and Jude, grant us to hon", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:7-13*\nBrethren: To each one of us grace was given", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:17-25*\nAt that time, Jesus said to His disciples, These thi", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nThrough all the earth their voice resounds, and to the ends of the world, their message.", + "id": "Offertorium" + }, + { + "body": "We honor, O Lord, the everlasting glory of Your holy Apostles Simon and Jude; we beseech You, that, purified by this sac", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nYou who have followed Me shall sit on thrones, judging the twelve tribes of Israel.", + "id": "Communio" + }, + { + "body": "Having received Your sacrament, we humbly beseech You, O Lord, that, by the intercession of Your blessed Apostles Simon ", + "id": "Postcommunio" + } + ], + "2024-10-29": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "Forgive, we beseech You, O Lord, the sins of Your faithful people, so that by Your goodness we may be released from the ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:17-21; 4:1-3*\nBrethren: Be imitators of me, an", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:18-26*\nAt that time, as Jesus was speaking to the crowds,", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "We offer You O Lord, the sacrifice of praise that we may serve You even better, so that You may graciously complete what", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, let not human dangers overcome us to whom You grant joyful participation in things divine.", + "id": "Postcommunio" + } + ], + "2024-10-30": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "Forgive, we beseech You, O Lord, the sins of Your faithful people, so that by Your goodness we may be released from the ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:17-21; 4:1-3*\nBrethren: Be imitators of me, an", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:18-26*\nAt that time, as Jesus was speaking to the crowds,", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "We offer You O Lord, the sacrifice of praise that we may serve You even better, so that You may graciously complete what", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, let not human dangers overcome us to whom You grant joyful participation in things divine.", + "id": "Postcommunio" + } + ], + "2024-10-31": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "Forgive, we beseech You, O Lord, the sins of Your faithful people, so that by Your goodness we may be released from the ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:17-21; 4:1-3*\nBrethren: Be imitators of me, an", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:18-26*\nAt that time, as Jesus was speaking to the crowds,", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "We offer You O Lord, the sacrifice of praise that we may serve You even better, so that You may graciously complete what", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, let not human dangers overcome us to whom You grant joyful participation in things divine.", + "id": "Postcommunio" + } + ], + "2024-11-01": [ + { + "body": "Let us all rejoice in the Lord, celebrating a feast day in honor of all the Saints, on whose solemnity the angels rejoic", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, Who granted us to honor the merits of all Your Saints in a single solemn festival, bestow on us, ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Revelation\n*Apoc 7:2-12*\nIn those days, behold, I John, saw another angel ascending from the ris", + "id": "Lectio" + }, + { + "body": "*Ps 33:10-11*\nFear the Lord, you His holy ones, for nought is lacking to those who fear Him.\n℣. But those who seek the L", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:1-12*\nAt that time, Jesus seeing the crowds, went up the ", + "id": "Evangelium" + }, + { + "body": "*Wis 3:1-3*\nThe souls of the just are in the hand of God, and no torment shall touch them. They seemed, in the view of t", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, the gifts of our service; may they be pleasing to You for the honor of Your just ones and, through", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 5:8-10*\nBlessed are the clean of heart, for they shall see God. Blessed are the peacemakers, for they shall be cal", + "id": "Communio" + }, + { + "body": "Grant Your faithful people, we beseech You, O Lord, ever to rejoice in the veneration of all the Saints, and to be prote", + "id": "Postcommunio" + } + ], + "2024-11-02": [ + { + "body": "*4 Esd. 2:34-35.*\nEternal rest give to them, O Lord; and let perpetual light shine upon them.\n*Ps 64:2-3*\nTo You we owe ", + "id": "Introitus" + }, + { + "body": "O God, Creator and Redeemer of all the faithful, grant to the souls of Your servants and handmaids the remission of all ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 15:51-57*\nBrethren: Behold, I tell you a", + "id": "Lectio" + }, + { + "body": "*4 Esd. 2:34-35.*\nEternal rest give to them, O Lord; and let perpetual light shine upon them.\n*Ps 111:7*\nThe just man sh", + "id": "Graduale" + }, + { + "body": "Dreaded day, that day of ire,\nWhen the world shall melt in fire,\nTold by Sibyl and David’s lyre.\n\nFright men’s hearts sh", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 5:25-29*\nAt that time, Jesus said to the multitudes of the Jew", + "id": "Evangelium" + }, + { + "body": "O Lord, Jesus Christ, King of glory, deliver the souls of all the faithful departed from the pains of hell and the deep ", + "id": "Offertorium" + }, + { + "body": "Look with mercy, we beseech You, O Lord, upon the sacrificial gifts we offer for the souls of Your servants and handmaid", + "id": "Secreta" + }, + { + "body": "*Dead*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*4 Esdr 2:35; 2:34*\nMay light eternal shine upon them, O Lord, with Your Saints forever, for You are kind.\n℣. Grant them", + "id": "Communio" + }, + { + "body": "May the prayer of Your suppliants, O Lord, benefit the souls of Your servants and handmaids, that You may deliver them f", + "id": "Postcommunio" + } + ], + "2024-11-03": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O God, You Who know that our human frailty cannot stand fast against the great dangers that beset us, grant us health of", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:8-10*\nBrethren: Owe no man anything except to love ", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 8:23-27*\nAt that time, Jesus got into a boat, and His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the offering of this sacrifice may always cleanse and strengthen the weakness ", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "May Your gifts, O God, free us from the attraction of earthly pleasures and give us new strength through Your heavenly n", + "id": "Postcommunio" + } + ], + "2024-11-04": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "Safeguard Your Church, O Lord, under the continual protection of St. Charles, Your Confessor and Bishop, so that just as", + "id": "Oratio" + }, + { + "body": "*For Ss. Vitalis and Agrícola Martyrs*\nGrant, almighty God, we beseech You, that we who keep the feast of Your blessed M", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "*Sir 44:16, 20*\nBehold, a great priest, who in his days pleased God.\n℣. There was not found the like to him, who kept th", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, my servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech you, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*For Ss. Vitalis and Agrícola Martyrs*\nBe appeased, O Lord, we beseech You, by the gifts we offer, and by the intercessi", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + }, + { + "body": "*For Ss. Vitalis and Agrícola Martyrs*\nMay this Communion, O Lord, cleanse us of sin and make us partakers of heavenly h", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-05": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O God, You Who know that our human frailty cannot stand fast against the great dangers that beset us, grant us health of", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:8-10*\nBrethren: Owe no man anything except to love ", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 8:23-27*\nAt that time, Jesus got into a boat, and His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the offering of this sacrifice may always cleanse and strengthen the weakness ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "May Your gifts, O God, free us from the attraction of earthly pleasures and give us new strength through Your heavenly n", + "id": "Postcommunio" + } + ], + "2024-11-06": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O God, You Who know that our human frailty cannot stand fast against the great dangers that beset us, grant us health of", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:8-10*\nBrethren: Owe no man anything except to love ", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 8:23-27*\nAt that time, Jesus got into a boat, and His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the offering of this sacrifice may always cleanse and strengthen the weakness ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "May Your gifts, O God, free us from the attraction of earthly pleasures and give us new strength through Your heavenly n", + "id": "Postcommunio" + } + ], + "2024-11-07": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O God, You Who know that our human frailty cannot stand fast against the great dangers that beset us, grant us health of", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:8-10*\nBrethren: Owe no man anything except to love ", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 8:23-27*\nAt that time, Jesus got into a boat, and His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the offering of this sacrifice may always cleanse and strengthen the weakness ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "May Your gifts, O God, free us from the attraction of earthly pleasures and give us new strength through Your heavenly n", + "id": "Postcommunio" + } + ], + "2024-11-08": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O God, You Who know that our human frailty cannot stand fast against the great dangers that beset us, grant us health of", + "id": "Oratio" + }, + { + "body": "*Commemoration Four Holy Crowned Martyrs*\nGrant, we beseech You, almighty God, that we who know how courageously Your ho", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:8-10*\nBrethren: Owe no man anything except to love ", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 8:23-27*\nAt that time, Jesus got into a boat, and His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the offering of this sacrifice may always cleanse and strengthen the weakness ", + "id": "Secreta" + }, + { + "body": "*Commemoration Four Holy Crowned Martyrs*\nMay Your bountiful blessing descend upon us, O Lord, and by the prayers of You", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "May Your gifts, O God, free us from the attraction of earthly pleasures and give us new strength through Your heavenly n", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Four Holy Crowned Martyrs*\nWe who have been fed with heavenly sacraments and joys, humbly pray You, O Lor", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-09": [ + { + "body": "*Gen. 28:17.*\nHow awesome is this place! This is none other than the house of God; this is the gate of heaven; and it sh", + "id": "Introitus" + }, + { + "body": "*Prayer on the anniversary of the dedication:*\nO God, Who for us bring each year the recurrence of the consecration day ", + "id": "Oratio" + }, + { + "body": "*For St. Theodore, Martyr*\nO God, Who surround and protect us with the glorious profession of blessed Theodore, Your Mar", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Revelation\n*Rev 21:2-5*\nIn those days, I saw the holy city, New Jerusalem, coming down out of he", + "id": "Lectio" + }, + { + "body": "This place was made by God, a priceless mystery; it is without reproof.\n℣. O God, before Whom stands the choir of angels", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:1-10*\nAt that time, Jesus entered and was passing through J", + "id": "Evangelium" + }, + { + "body": "*1 Par 29:17-18*\nO Lord God, in the simplicity of my heart I have joyfully offered all these things; and I have seen wit", + "id": "Offertorium" + }, + { + "body": "Look with favor upon our prayers, we beseech You, O Lord, that as we offer our prayers before You, we may, with Your hel", + "id": "Secreta" + }, + { + "body": "*For St. Theodore, Martyr*\nAccept, O Lord, the prayers and sacrificial gifts of Your faithful people, that, through thes", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 21:13*\nMy house shall be called a house of prayer, says the Lord; in it everyone who asks receives: and he who see", + "id": "Communio" + }, + { + "body": "*On the day of dedication*\nWe beseech You, almighty God, that in this place which we, all unworthy, have dedicated to Yo", + "id": "Postcommunio" + }, + { + "body": "*For St. Theodore, Martyr*\nGrant, we beseech You, O Lord, by the intercession of blessed Theodore, Your Martyr, that wha", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-10": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You to keep Your household continually under Your mercy: that as it leans only upon the hope of Your ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 3:12-17*\nBrethren: Put on, as God’s chosen ones, h", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 13:24-30*\nAt that time, Jesus spoke this parable to the c", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, this sacrifice of atonement, that You would mercifully absolve our sins and direct our faltering h", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we may obtain that salvation whose pledge we have received in this divine sacrament.\nThr", + "id": "Postcommunio" + } + ], + "2024-11-11": [ + { + "body": "*Ecclus 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignit", + "id": "Introitus" + }, + { + "body": "O God, Who see that we cannot survive by any power of our own, mercifully grant that, by the intercession of blessed Mar", + "id": "Oratio" + }, + { + "body": "*For St. Mennas*\nGrant, we beseech You, almighty God, that we, who honor the anniversary of the death of blessed Mennas,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "*Sir 44:16, 20*\nBehold a great priest, who in his days pleased God.\n℣. There was not found the like to him, who kept the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:33-36*\nAt that time, Jesus said to His disciples, No one li", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Sanctify, we beseech You, O Lord God, the gifts we offer on the feast of Your holy Bishop, Martin, that through them our", + "id": "Secreta" + }, + { + "body": "*For St. Mennas*\nNow that You have received our gifts and prayers, we beseech You, O Lord, cleanse us by Your heavenly m", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord our God, that this sacrifice may be beneficial for our salvation, by the intercession of t", + "id": "Postcommunio" + }, + { + "body": "*For St. Mennas*\nGrant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration of Yo", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-12": [ + { + "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", + "id": "Introitus" + }, + { + "body": "Look forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, by the intercession of blessed ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nAnd let them exalt him in the church of the people: and praise him in the chair of the ancients.\n℣. ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", + "id": "Offertorium" + }, + { + "body": "By the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that thy flock may everywhere pr", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", + "id": "Communio" + }, + { + "body": "Being appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that under thy direction and pow", + "id": "Postcommunio" + } + ], + "2024-11-13": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You to keep Your household continually under Your mercy: that as it leans only upon the hope of Your ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Didacus*\nAlmighty, eternal God, Who in Your wondrous providence choose the weak things of the world t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 3:12-17*\nBrethren: Put on, as God’s chosen ones, h", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 13:24-30*\nAt that time, Jesus spoke this parable to the c", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, this sacrifice of atonement, that You would mercifully absolve our sins and direct our faltering h", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Didacus*\nGrant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we may obtain that salvation whose pledge we have received in this divine sacrament.\nThr", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Didacus*\nWe pray You, almighty God, that we who have received heavenly nourishment may thereby, throu", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-14": [ + { + "body": "Let us all rejoice in the Lord, celebrating a feast-day in honor of the Blessed Martyr Josaphat, at whose martyrdom the ", + "id": "Introitus" + }, + { + "body": "Arouse in Your Church, O Lord, the spirit with which blessed Josaphat, Your Martyr and Bishop, was filled when he laid d", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 5:1-6*\nBrethren: Every high priest taken from among m", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time, Jesus said to the Pharisees: I am the ", + "id": "Evangelium" + }, + { + "body": "*John 15:13*\nGreater love than this no one has, that one lay down his life for his friends.", + "id": "Offertorium" + }, + { + "body": "Most merciful God, shower these offerings with Your blessing and strengthen us in the faith which St. Josaphat, Your Mar", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 10:14*\nI am the Good Shepherd, and I know My sheep, and Mine know Me.", + "id": "Communio" + }, + { + "body": "May this heavenly food, O Lord, impart to us that spirit of strength which unfailingly sustained the life of blessed Jos", + "id": "Postcommunio" + } + ], + "2024-11-15": [ + { + "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", + "id": "Introitus" + }, + { + "body": "O God, Who made blessed Albert, Your Bishop and Doctor, eminent in the submission of human wisdom to divine faith, grant", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom and his tongue shall speak judgment.\n℣. The law of his God is ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "Look favorably upon these sacrificial gifts, O Lord, we beseech You, so that what we perform in the sacrificial rite of ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "Through this holy food which we have eaten, defend us, O Lord, from the onslaughts of our enemies and grant that by the ", + "id": "Postcommunio" + } + ], + "2024-11-16": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "O God, Who prepared a pleasing dwelling place for Yourself in the heart of blessed Gertrude the Virgin, by her merits an", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the intercession of her who", + "id": "Postcommunio" + } + ], + "2024-11-17": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "Grant us, we beseech You, almighty God, ever to think of spiritual things and in every word and work always to do what i", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Thessalonians\n*1 Thess. 1:2-10*\nBrethren: We give thanks to ", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 13:31-35*\nAt that time, Jesus spoke this parable to the c", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "May this offering, O God, we beseech You, cleanse and renew us, govern and protect us.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "Nourished by Your heavenly food, O Lord, we beseech You that we may always strive after those things that give us true l", + "id": "Postcommunio" + } + ], + "2024-11-18": [ + { + "body": "*Gen. 28:17.*\nHow awesome is this place! This is none other than the house of God; this is the gate of heaven; and it sh", + "id": "Introitus" + }, + { + "body": "O God, Who for us bring each year the recurrence of the consecration day of this Your holy temple, and always bring us b", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Revelation\n*Rev 21:2-5*\nIn those days, I saw the holy city, New Jerusalem, coming down out of he", + "id": "Lectio" + }, + { + "body": "This place was made by God, a priceless mystery; it is without reproof.\n℣. O God, before Whom stands the choir of angels", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:1-10*\nAt that time, Jesus entered and was passing through J", + "id": "Evangelium" + }, + { + "body": "*1 Par 29:17-18*\nO Lord God, in the simplicity of my heart I have joyfully offered all these things; and I have seen wit", + "id": "Offertorium" + }, + { + "body": "*Outside the dedicated church*\nLook with favor upon our prayers, we beseech You, O Lord, that as we offer our prayers be", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 21:13*\nMy house shall be called a house of prayer, says the Lord; in it everyone who asks receives: and he who see", + "id": "Communio" + }, + { + "body": "*On the anniversary of the dedication*\nO God, Who from living and chosen stones prepare an eternal dwelling place for Yo", + "id": "Postcommunio" + } + ], + "2024-11-19": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "O merciful God, enlighten the hearts of Your faithful people, and through the glorious prayers of blessed Elizabeth, mak", + "id": "Oratio" + }, + { + "body": "*For St. Pontianus*\nBe mindful of our weakness, almighty God, and because the burden of our sins weighs heavily upon us,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", + "id": "Secreta" + }, + { + "body": "*For St. Pontianus*\nO Lord, graciously accept, through the merits of Your blessed Martyr and Bishop N., the sacrificial ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", + "id": "Postcommunio" + }, + { + "body": "*For St. Pontianus*\nRefreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enjoy the ben", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-20": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "O God, Who by heavenly inspiration graciously called forth blessed Felix, Your Confessor, from the desert to the work of", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a spe", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", + "id": "Postcommunio" + } + ], + "2024-11-21": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "O God, by Whose will the blessed Mary, ever Virgin, the dwelling place of the Holy Spirit, was on this day presented in ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nBefore all ages, in the beginning, He created me, and through all ", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, without spot to your maidenhood, were made the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with you; blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "We have received help for our salvation, O Lord; grant, we beseech You, that we may everywhere be protected by the patro", + "id": "Postcommunio" + } + ], + "2024-11-22": [ + { + "body": "*Ps 118:46-47*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, whi", + "id": "Introitus" + }, + { + "body": "O God, Who gladden us by the annual feast of blessed Cecilia, Your Virgin and Martyr, grant, we beseech You, that we may", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 51:13-17*\nO Lord, my God, You have exalted my dwelling place upon the ear", + "id": "Lectio" + }, + { + "body": "*Ps 44:11-12, 5*\nHear, O daughter, and see; turn your ear; for the King shall desire your beauty.\nIn your splendor and y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nAt that time, Jesus spoke this parable to His disc", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15-16*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and jo", + "id": "Offertorium" + }, + { + "body": "May this sacrifice of atonement and praise, we beseech You, O Lord, by the intercession of blessed Cecilia, Your Virgin ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78, 80*\nLet the proud be put to shame for oppressing me unjustly; I will meditate on Your precepts, on Your stat", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us by the intercession of her whose festival we are", + "id": "Postcommunio" + } + ], + "2024-11-23": [ + { + "body": "*Isa 59:21; 56:7*\nThe Lord says, My words which I have put in your mouth, shall not depart out of your mouth; and your g", + "id": "Introitus" + }, + { + "body": "Eternal Shepherd, look with favor upon Your flock. Safeguard and shelter it forevermore through blessed Clement, Your Ma", + "id": "Oratio" + }, + { + "body": "*For St. Felicity*\nGrant, we beseech You, almighty God, that we who keep the feast-day of blessed Felicitas Your Martyr,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:17-21; 4:1-3*\nBrethren: Be imitators of me, an", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nAnd let them exalt him in the church of the people: and praise him in the chair of the ancients.\n℣. ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", + "id": "Offertorium" + }, + { + "body": "Having offered You our gifts, we beseech You, O Lord, mercifully to enlighten Your Church, so that Your flock may everyw", + "id": "Secreta" + }, + { + "body": "*For St. Felicity*\nBe merciful, O Lord, and look with favor upon the prayers of Your people, and make us rejoice in the ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", + "id": "Communio" + }, + { + "body": "Since Your Church has been nourished by sacred food, govern her in Your clemency, we beseech You, O Lord, so that under ", + "id": "Postcommunio" + }, + { + "body": "*For St. Felicity*\nWe humbly beseech You, almighty God, that by the intercession of Your Saints, You will multiply Your ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-24": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, arouse the wills of Your faithful people that, by a more earnest search for the fruit of Your di", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:9-14*\nBrethren: We have been praying for you unc", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:15-35*\nAt that time, Jesus said to His disciples: When y", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Be merciful, O Lord, to our humble requests and accept the offerings and prayers of Your people: turn the hearts of all ", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that all the evil in our hearts may be cured by the healing power of the sacrament we ", + "id": "Postcommunio" + } + ], + "2024-11-25": [ + { + "body": "*Ps 118:46-47.*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, wh", + "id": "Introitus" + }, + { + "body": "O God, Who gave the law to Moses on Sinai's height and through your holy angels miraculously placed there the body of bl", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 51:1-8; 5:12*\nI will give You thanks, O Lord, O King; I will praise You, O G", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness.\n℣. Therefore God, your God, has anointed you with the oil of gladness. A", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13.*\nAt that time Jesus spoke this parable to His disc", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15-16.*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and j", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the gifts we bring on the festival of blessed Catherine, Your Virgin and Martyr, through whose patronage", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78, 80*\nLet the proud be put to shame for oppressing me unjustly; I will meditate on Your precepts, on Your stat", + "id": "Communio" + }, + { + "body": "May the sacrament we have received, aid us, O Lord, and by the intercession of blessed Catherine, Your Virgin and Martyr", + "id": "Postcommunio" + } + ], + "2024-11-26": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "Most merciful God, Who when the holy Abbot Sylvester was devoutly meditating upon the vanity of this world beside an ope", + "id": "Oratio" + }, + { + "body": "*For St. Peter Of Alexandria*\nBe mindful of our weakness, almighty God, and because the burden of our sins weighs heavil", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, that while offering these sacrificial gifts to Your Divine Majesty, we may become like the bless", + "id": "Secreta" + }, + { + "body": "*For St. Peter of Alexandria*\nO Lord, graciously accept, through the merits of Your blessed Martyr and Bishop, Peter, th", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "We pray You, O Lord, grant that we who have renewed our strength at the heavenly banquet may closely follow in the foots", + "id": "Postcommunio" + }, + { + "body": "*For St. Peter of Alexandria*\nRefreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enj", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-27": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, arouse the wills of Your faithful people that, by a more earnest search for the fruit of Your di", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:9-14*\nBrethren: We have been praying for you unc", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:15-35*\nAt that time, Jesus said to His disciples: When y", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Be merciful, O Lord, to our humble requests and accept the offerings and prayers of Your people: turn the hearts of all ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that all the evil in our hearts may be cured by the healing power of the sacrament we ", + "id": "Postcommunio" + } + ], + "2024-11-28": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, arouse the wills of Your faithful people that, by a more earnest search for the fruit of Your di", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:9-14*\nBrethren: We have been praying for you unc", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:15-35*\nAt that time, Jesus said to His disciples: When y", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Be merciful, O Lord, to our humble requests and accept the offerings and prayers of Your people: turn the hearts of all ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that all the evil in our hearts may be cured by the healing power of the sacrament we ", + "id": "Postcommunio" + } + ], + "2024-11-29": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, arouse the wills of Your faithful people that, by a more earnest search for the fruit of Your di", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Saturninus*\nO God, You Who give us the joy of celebrating the anniversary of the death of blessed Sat", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:9-14*\nBrethren: We have been praying for you unc", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:15-35*\nAt that time, Jesus said to His disciples: When y", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Be merciful, O Lord, to our humble requests and accept the offerings and prayers of Your people: turn the hearts of all ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Saturninus*\nO Lord, make holy the sacrificial gifts we offer to You, and through the intercession of ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that all the evil in our hearts may be cured by the healing power of the sacrament we ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Saturninus*\nMay the reception of Your sacrament, we beseech You, O Lord, make us holy, and by the int", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-30": [ + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", + "id": "Introitus" + }, + { + "body": "We humbly pray Your majesty, O Lord, that, as blessed Andrew was a preacher and ruler in Your Church, so he may always i", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 10:10-18*\nBrethren: With the heart a man believes unto", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 4:18-22*\nAt that time, as Jesus was walking by the sea of G", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", + "id": "Offertorium" + }, + { + "body": "O Lord, we beseech You, that the holy prayer of blessed Andrew may make our sacrifice pleasing to You, so that it would ", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 4:19-20*\nCome, follow Me, and I will make you fishers of men. And at once they left the nets, and followed the Lor", + "id": "Communio" + }, + { + "body": "O Lord, we have received the divine sacrament on the joyful feastday of blessed Andrew: as You make it contribute to the", + "id": "Postcommunio" + } + ], + "2024-12-01": [ + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and come, that with You as our protector we may be rescued from the impend", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:11-14*\nBrethren: Understand, for it is now the hour", + "id": "Lectio" + }, + { + "body": "*Ps 24:3-4*\nNo one who waits for You shall be put to shame.\n℣. Your ways, O Lord, make known to me; teach me Your paths.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:25-33*\nAt that time, Jesus said to His disciples: There wil", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", + "id": "Offertorium" + }, + { + "body": "May these offerings, O Lord, cleanse us by their mighty power and thus make us come purer before You Who are their autho", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13*\nThe Lord will give His benefits: and our land shall yield its increase.", + "id": "Communio" + }, + { + "body": "May we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with due observance for the coming fest", + "id": "Postcommunio" + } + ], + "2024-12-02": [ + { + "body": "*Ps 118:95-96.*\nSinners wait to destroy me, but I pay heed to Your decrees, O Lord. I see that all fulfillment has its l", + "id": "Introitus" + }, + { + "body": "O God, giver of all good gifts, You Who in Your servant, Bibiana, joined the flower of virginity with the palm of martyr", + "id": "Oratio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nPut forth Your power, O Lord, we beseech You, and come, that with You as our protecto", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 51:13-17.*\nO Lord, my God, You have exalted my dwelling place upon the earth", + "id": "Lectio" + }, + { + "body": "*Ps 45:6, 5*\nGod will help her with His countenance. God is in her midst; she shall not be disturbed.\n℣. There is a stre", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52.*\nAt that time, Jesus spoke this parable to His di", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "Graciously accept the sacrificial gifts offered You, O Lord, through the merits of blessed Bibiana, Your Virgin and Mart", + "id": "Secreta" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay these offerings, O Lord, cleanse us by their mighty power and thus make us come p", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:121-122; 118:128*\nI have fulfilled just ordinances, O Lord; let not the proud oppress me. For in all Your precep", + "id": "Communio" + }, + { + "body": "We who have been refreshed by the richness of Your divine sacrament beseech You, O Lord our God, that through the interc", + "id": "Postcommunio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-03": [ + { + "body": "*Ps 118:46-47*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, whi", + "id": "Introitus" + }, + { + "body": "O God, You Who were pleased to gather into Your Church the peoples of the Indies by the preaching and miracles of blesse", + "id": "Oratio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nPut forth Your power, O Lord, we beseech You, and come, that with You as our protecto", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 10:10-18*\nBrethren: With the heart a man believes unto", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:15-18*\nAt that time, Jesus said to His disciples, Go into t", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, O almighty God, that the offering we make of our lowliness may be pleasing to You for the honor o", + "id": "Secreta" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay these offerings, O Lord, cleanse us by their mighty power and thus make us come p", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant, whom his master, when he comes, shall find watching. Amen I say to you, he will", + "id": "Communio" + }, + { + "body": "We beseech You, O almighty God, that we who have eaten the food of heaven may find in it, by the intercession of blessed", + "id": "Postcommunio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-04": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", + "id": "Introitus" + }, + { + "body": "O God, Who willed to foreshow divinely that blessed Peter Chrysologus would be a great Doctor to rule and teach Your Chu", + "id": "Oratio" + }, + { + "body": "*For St. Barbara,*\nO God, Who among the other miracles of Your power have bestowed the victory of martyrdom even upon th", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", + "id": "Lectio" + }, + { + "body": "*Ecclus 44:16*\nBehold a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not found the like to him", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: \"You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed Peter, Your Confessor and Doctor, fail us never, O Lord; may it commend our offerings a", + "id": "Secreta" + }, + { + "body": "*For St. Barbara, ℣. M.*\nAccept, O Lord, the gifts we bring on the festival of blessed Barbara, Your Virgin and Martyr, ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:20-21*\nMaster, you handed over to me five talents; behold, I have gained five others in addition. Well done, go", + "id": "Communio" + }, + { + "body": "So that your sacrificial rites may grant us salvation, we pray you, O Lord, that blessed Peter, Your Bishop and illustri", + "id": "Postcommunio" + }, + { + "body": "*For St. Barbara, ℣. M.*\nMay the sacrament we have received, aid us, O Lord, and by the intercession of blessed Barbara,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-05": [ + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and come, that with You as our protector we may be rescued from the impend", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Sabbas*\nMay the intercession of the Blessed Abbot Sabbas, commend us, we beseech You, O Lord, so that", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:11-14*\nBrethren: Understand, for it is now the hour", + "id": "Lectio" + }, + { + "body": "*Ps 24:3-4*\nNo one who waits for You shall be put to shame.\n℣. Your ways, O Lord, make known to me; teach me Your paths.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:25-33*\nAt that time, Jesus said to His disciples: There wil", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", + "id": "Offertorium" + }, + { + "body": "May these offerings, O Lord, cleanse us by their mighty power and thus make us come purer before You Who are their autho", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Sabbas*\nWe beseech You, O Lord, may the holy Abbot N., prevail by his prayers, so that the offerings ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13*\nThe Lord will give His benefits: and our land shall yield its increase.", + "id": "Communio" + }, + { + "body": "May we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with due observance for the coming fest", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Sabbas*\nMay the intercession of the Blessed Abbot Sabbas, as well as the reception of Your sacrament,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-06": [ + { + "body": "*Ecclus 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignit", + "id": "Introitus" + }, + { + "body": "O God, You who made the holy Bishop Nicholas renowned for countless miracles, grant, we beseech You, that by his merits ", + "id": "Oratio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nPut forth Your power, O Lord, we beseech You, and come, that with You as our protecto", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 13:7-17*\nBrethren: Remember your superiors, who spoke", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Sanctify, we beseech You, O Lord God, the gifts we offer on the feast of Your holy Bishop, Nicholas, that through them o", + "id": "Secreta" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay these offerings, O Lord, cleanse us by their mighty power and thus make us come p", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36-38*\nOnce, by My holiness, have I sworn; his posterity shall continue forever, and his throne shall be like the", + "id": "Communio" + }, + { + "body": "May the sacrifice in which we have shared on the feast of Your holy Bishop Nicholas guard us with its lasting protection", + "id": "Postcommunio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-07": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", + "id": "Introitus" + }, + { + "body": "O God, You Who have given blessed Ambrose to Your people as a help for eternal salvation, grant, we beseech you, that we", + "id": "Oratio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nPut forth Your power, O Lord, we beseech You, and come, that with You as our protecto", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", + "id": "Lectio" + }, + { + "body": "*Ecclus 44:16*\nBehold a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not found the like to him", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: \"You are", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Almighty and everlasting God, grant that the gifts offered to Your majesty through the intercession of blessed Ambrose, ", + "id": "Secreta" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay these offerings, O Lord, cleanse us by their mighty power and thus make us come p", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36-38*\nOnce, by My holiness, have I sworn; his posterity shall continue forever, and his throne shall be like the", + "id": "Communio" + }, + { + "body": "Almighty God, we who receive the sacrament of our salvation, beseech You that the prayer of blessed Ambrose, Your Bishop", + "id": "Postcommunio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-08": [ + { + "body": "*Isa 61:10*\nI will heartily rejoice in the Lord, in my God is the joy of my soul; for He has clothed me with a robe of s", + "id": "Introitus" + }, + { + "body": "O God, Who by the Immaculate Conception of the Virgin, prepared a worthy dwelling for Your Son, and Who, by Your Son’s d", + "id": "Oratio" + }, + { + "body": "*Commemoration II Sunday of Advent*\nStir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 8:22-35*\nThe Lord begot me, the firstborn of His ways, the forerunner of His prod", + "id": "Lectio" + }, + { + "body": "*Judith 13:23*\nBlessed are you, O Virgin Mary, by the Lord the most high God, above all women upon the earth.\n*Judith 15", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-28*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28*\nHail Mary full of grace, the Lord is with you; blessed are you among women. Alleluia.", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the sacrifice of salvation which we offer You on the feast of the Immaculate Conception of the Blessed V", + "id": "Secreta" + }, + { + "body": "*Commemoration II Sunday of Advent*\nBe appeased, we beseech You, O Lord, by the prayers and offerings of our human frail", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*Ps 86:3, Luc 1:49*\nGlorious things are said of you, O Mary, for He Who is mighty has done great things for you.", + "id": "Communio" + }, + { + "body": "May the sacrament we have received, O Lord our God, heal in us the wounds of that sin from which by a singular privilege", + "id": "Postcommunio" + }, + { + "body": "*Commemoration II Sunday of Advent*\nWe who have been refreshed by the food of spiritual nourishment, humbly beseech You,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-09": [ + { + "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", + "id": "Introitus" + }, + { + "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", + "id": "Communio" + }, + { + "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", + "id": "Postcommunio" + } + ], + "2024-12-10": [ + { + "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", + "id": "Introitus" + }, + { + "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Melchiades*\nO God, Who by the Immaculate Conception of the Virgin, prepared a worthy dwelling for You", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Melchiades*\nAccept, O Lord, the sacrifice of salvation which we offer You on the feast of the Immacul", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", + "id": "Communio" + }, + { + "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Melchiades*\nMay the sacrament we have received, O Lord our God, heal in us the wounds of that sin fro", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-11": [ + { + "body": "*John 21:15-17*\nIf you love Me, Simon Peter, feed My lambs, feed my sheep.\n*Ps 29:2*\nI will extol You, O Lord, for You d", + "id": "Introitus" + }, + { + "body": "Eternal Shepherd, look with favor upon Your flock. Safeguard and shelter it forevermore through blessed Damasus, Supreme", + "id": "Oratio" + }, + { + "body": "*Commemoration II Sunday of Advent*\nStir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:1-4, 10-11.*\nBeloved: I exhort the presbyters among you ", + "id": "Lectio" + }, + { + "body": "*Ps 106:32, 31*\nLet them extol him in the assembly of the people and praise him in the council of the elders.\n℣. Let the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus, having come into the distric", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nSee, I place My words in your mouth! I set you over nations and over kingdoms, to root up and to tear down,", + "id": "Offertorium" + }, + { + "body": "Having offered You our gifts, we beseech You, O Lord, mercifully to enlighten Your Church, so that Your flock may everyw", + "id": "Secreta" + }, + { + "body": "*Commemoration II Sunday of Advent*\nBe appeased, we beseech You, O Lord, by the prayers and offerings of our human frail", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build My Church.", + "id": "Communio" + }, + { + "body": "Since Your Church has been nourished by sacred food, govern her in Your clemency, we beseech You, O Lord, so that under ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration II Sunday of Advent*\nWe who have been refreshed by the food of spiritual nourishment, humbly beseech You,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-12": [ + { + "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", + "id": "Introitus" + }, + { + "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", + "id": "Communio" + }, + { + "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", + "id": "Postcommunio" + } + ], + "2024-12-13": [ + { + "body": "*Ps4 4:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Introitus" + }, + { + "body": "Hear us, O God our Saviour, that, as we rejoice on the feast of blessed Lucy, Your Virgin and Martyr, so we may grow in ", + "id": "Oratio" + }, + { + "body": "*Commemoration II Sunday of Advent*\nStir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 10:17-18; 11:1-2*\nBrethren: He who boas", + "id": "Lectio" + }, + { + "body": "*Ps4 4:8*\nYou love justice and hate wickedness.\n℣. Therefore God, your God, has anointed you with oil of gladness. Allel", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps4 4:15-16*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and jo", + "id": "Offertorium" + }, + { + "body": "Graciously accept the offering of Your holy people O Lord, in honor of Your Saints, through whose merits we have receive", + "id": "Secreta" + }, + { + "body": "*Commemoration II Sunday of Advent*\nBe appeased, we beseech You, O Lord, by the prayers and offerings of our human frail", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps11 8:161-162*\nPrinces persecute me without cause, but my heart stands in awe of Your word. I rejoice at Your promise,", + "id": "Communio" + }, + { + "body": "O Lord, O You have filled Your household with sacred gifts; always comfort us, we beseech You, by the intercession of he", + "id": "Postcommunio" + }, + { + "body": "*Commemoration II Sunday of Advent*\nWe who have been refreshed by the food of spiritual nourishment, humbly beseech You,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-14": [ + { + "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", + "id": "Introitus" + }, + { + "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", + "id": "Communio" + }, + { + "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", + "id": "Postcommunio" + } + ], + "2024-12-15": [ + { + "body": "*Phil. 4:4-6*\nRejoice in the Lord always: again I say, rejoice. Let your moderation be known to all men: for the Lord is", + "id": "Introitus" + }, + { + "body": "Lend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of our minds by the grace of Your coming", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-7*\nBrethren: Rejoice in the Lord always; aga", + "id": "Lectio" + }, + { + "body": "*Ps 79:2-3, 2*\nFrom Your throne, O Lord, upon the Cherubim, rouse Your power, and come.\n℣. O Shepherd of Israel, hearken", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:19-28*\nAt that time, the Jews sent to John from Jerusalem pr", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nYou have favored, O Lord, Your land; You have restored the well-being of Jacob. You have forgiven the guilt of", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continually, so that the sacramental rite Yo", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Isa 35:4*\nSay to those who are frightened: Be strong, fear not! Here is our God, He comes to save us.", + "id": "Communio" + }, + { + "body": "We entreat You, merciful Lord, that these divine helps may cleanse us from our sins and prepare us for the coming festal", + "id": "Postcommunio" + } + ], + "2024-12-16": [ + { + "body": "*Dan 3:84, 87*\nPriests of the Lord, bless the Lord; holy men of humble heart, praise God.\n*Dan 3:57*\nBless the Lord, all", + "id": "Introitus" + }, + { + "body": "O God, Who gladden us with the yearly festival of blessed N., Your Martyr and Bishop, mercifully grant that, as we vener", + "id": "Oratio" + }, + { + "body": "*Commemoration III Sunday of Advent*\nLend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 1:3-7*\nBrethren: Blessed be the God and", + "id": "Lectio" + }, + { + "body": "*Ps 8:6-7*\nYou crowned him with glory and honor.\n℣. You have given him rule over the works of Your hands, O Lord. Allelu", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:24-27.*\nAt that time, Jesus said to His disciples, If an", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "Sanctify the offerings dedicated to You, O Lord, and through the intercession of blessed N., Your Martyr and Bishop, loo", + "id": "Secreta" + }, + { + "body": "*Commemoration III Sunday of Advent*\nWe beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nYou placed on his head, O Lord, a crown of pure gold.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us of sin, and through the intercession of blessed N., Your Martyr and Bishop, may i", + "id": "Postcommunio" + }, + { + "body": "*Commemoration III Sunday of Advent*\nWe entreat You, merciful Lord, that these divine helps may cleanse us from our sins", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-17": [ + { + "body": "*Phil. 4:4-6*\nRejoice in the Lord always: again I say, rejoice. Let your moderation be known to all men: for the Lord is", + "id": "Introitus" + }, + { + "body": "Lend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of our minds by the grace of Your coming", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-7*\nBrethren: Rejoice in the Lord always; aga", + "id": "Lectio" + }, + { + "body": "*Ps 79:2-3, 2*\nFrom Your throne, O Lord, upon the Cherubim, rouse Your power, and come.\n℣. O Shepherd of Israel, hearken", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:19-28*\nAt that time, the Jews sent to John from Jerusalem pr", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nYou have favored, O Lord, Your land; You have restored the well-being of Jacob. You have forgiven the guilt of", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continually, so that the sacramental rite Yo", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Isa 35:4*\nSay to those who are frightened: Be strong, fear not! Here is our God, He comes to save us.", + "id": "Communio" + }, + { + "body": "We entreat You, merciful Lord, that these divine helps may cleanse us from our sins and prepare us for the coming festal", + "id": "Postcommunio" + } + ], + "2024-12-18": [ + { + "body": "*Isa 45:8*\nDrop down dew, you heavens, from above, and let the clouds rain the just: let the earth be opened and bud for", + "id": "Introitus" + }, + { + "body": "Grant us, we beseech You, almighty God, that the coming feast of our redemption may bring us both help for our present l", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa. 2:2-5*\nIn those days the prophet Isaiah said: In days to come, the mountain of the ", + "id": "LectioL1" + }, + { + "body": "*Ps 23:7; 23:3-4*\nLift up, O gates, your lintels; reach up, you ancient portals, that the King of glory may come in!\n℣. ", + "id": "GradualeL1" + }, + { + "body": "Hasten, we beseech You, O Lord, and delay not; bestow upon us the help of power from on high, that they who trust in You", + "id": "OratioL1" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 7:10-15*\nIn those days, the Lord spoke to Achaz: Ask for a sign from the Lord, your ", + "id": "Lectio" + }, + { + "body": "*Ps 144:18, 21*\nThe Lord is near to all who call upon Him, to all who call upon Him in truth.\n℣. May my mouth speak the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "*Isa 35:4*\nBe strong, fear no longer! For, behold, our God will bring judgment. He Himself will come to save us.", + "id": "Offertorium" + }, + { + "body": "May our fasting, we beseech You, O Lord, be acceptable to You, and by its purifying power make us worthy of Your grace a", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Isa 7:14*\nBehold, the virgin shall be with child and bear a Son, and shall name Him Emmanuel.", + "id": "Communio" + }, + { + "body": "Refreshed by the sacramental gift of Your salvation, we humbly beseech You, O Lord, that enjoying its savor we may be ma", + "id": "Postcommunio" + } + ], + "2024-12-19": [ + { + "body": "*Phil. 4:4-6*\nRejoice in the Lord always: again I say, rejoice. Let your moderation be known to all men: for the Lord is", + "id": "Introitus" + }, + { + "body": "Lend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of our minds by the grace of Your coming", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-7*\nBrethren: Rejoice in the Lord always; aga", + "id": "Lectio" + }, + { + "body": "*Ps 79:2-3, 2*\nFrom Your throne, O Lord, upon the Cherubim, rouse Your power, and come.\n℣. O Shepherd of Israel, hearken", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:19-28*\nAt that time, the Jews sent to John from Jerusalem pr", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nYou have favored, O Lord, Your land; You have restored the well-being of Jacob. You have forgiven the guilt of", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continually, so that the sacramental rite Yo", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Isa 35:4*\nSay to those who are frightened: Be strong, fear not! Here is our God, He comes to save us.", + "id": "Communio" + }, + { + "body": "We entreat You, merciful Lord, that these divine helps may cleanse us from our sins and prepare us for the coming festal", + "id": "Postcommunio" + } + ], + "2024-12-20": [ + { + "body": "*Ps 118:151-152*\nYou, O Lord, are near, and all Your ways are truth. Of old I know from Your decrees that You are foreve", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and come; that those who trust in Your goodness may soon be delivered from", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 11:1-5*\nThus says the Lord God: A shoot shall sprout from the stump of Jesse, and fr", + "id": "Lectio" + }, + { + "body": "*Ps 84:8, 2*\nShow us, O Lord, Your kindness, and grant us Your salvation.\n℣. You have favored, O Lord, Your land; You ha", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:39-47*\nAt that time, Mary arose and went with haste into the", + "id": "Evangelium" + }, + { + "body": "*Ps 84: 7-8.*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindnes", + "id": "Offertorium" + }, + { + "body": "Accept our offering and prayers, we beseech You, O Lord; cleanse us by this heavenly rite, and in Your mercy hear us.\nTh", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Zach 14:5-6*\nBehold, the Lord shall come, and all His holy ones with Him: and there shall be in that day a great light.", + "id": "Communio" + }, + { + "body": "May the devout reception of Your sacrament, O Lord, give us new strength, purge us of our old selves and let us come to ", + "id": "Postcommunio" + } + ], + "2024-12-21": [ + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", + "id": "Introitus" + }, + { + "body": "O Lord, grant us, we beseech You, to glory in the feast-day of blessed Thomas, Your Apostle, that we may be helped conti", + "id": "Oratio" + }, + { + "body": "*Commemoration Ember Saturday of Advent*\nO God, You Who see how we are troubled by our evil tendencies, mercifully grant", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 2:19-22*\nBrethren: You are now no longer strangers ", + "id": "Lectio" + }, + { + "body": "*Ps 138:17-18*\nYour friends, O God, are made exceedingly honorable: their principality is exceedingly strengthened.\n℣. W", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20:24-29*\nAt that time, Thomas, one of the Twelve, called the ", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nThrough all the earth their voice resounds, and to the ends of the world, their message.", + "id": "Offertorium" + }, + { + "body": "O Lord, we who dutifully worship You humbly entreat You that, by the prayers of Your blessed Apostle Thomas, in honor of", + "id": "Secreta" + }, + { + "body": "*Commemoration Ember Saturday of Advent*\nLook with favor, we beseech You, O Lord, upon the offerings here before You, th", + "id": "Commemoratio Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*John 20:27*\nPut in your hand and know the place of the nails, and be not unbelieving, but believing.", + "id": "Communio" + }, + { + "body": "Merciful God, abide with us, and through the intercession of Your blessed Apostle Thomas, mercifully safeguard the gifts", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Ember Saturday of Advent*\nWe beseech You, O Lord our God, that the sacrament You have given as the bulwar", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-22": [ + { + "body": "*Isa 45:8*\nLet the Just One descend, O heavens, like dew from above, like gentle rain let the skies drop Him down. Let t", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and delay not: and with Your great might come to our aid, so that what is ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:1-5*\nBrethren: Let a man so account us", + "id": "Lectio" + }, + { + "body": "*Ps 144:18, 21*\nThe Lord is near to all who call upon Him, to all who call upon Him in truth.\n℣. May my mouth speak the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 3:1-6*\nNow in the fifteenth year of the reign of Tiberius Caes", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28*\nHail, Mary, full of grace, the Lord is with you, blessed are you among women, and blessed is the fruit of yo", + "id": "Offertorium" + }, + { + "body": "Look with favor, O Lord, we beseech You, upon the offerings here present, that they may be profitable for our devotion a", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Isa 7:14*\nBehold, a virgin shall be with child and bear a son, and shall name Him Emmanuel.", + "id": "Communio" + }, + { + "body": "Having received Your gifts, we beseech You, O Lord, that each partaking of this sacrament may increase within us its sav", + "id": "Postcommunio" + } + ], + "2024-12-23": [ + { + "body": "*Isa 45:8*\nLet the Just One descend, O heavens, like dew from above, like gentle rain let the skies drop Him down. Let t", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and delay not: and with Your great might come to our aid, so that what is ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:1-5*\nBrethren: Let a man so account us", + "id": "Lectio" + }, + { + "body": "*Ps 144:18, 21*\nThe Lord is near to all who call upon Him, to all who call upon Him in truth.\n℣. May my mouth speak the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 3:1-6*\nNow in the fifteenth year of the reign of Tiberius Caes", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28*\nHail, Mary, full of grace, the Lord is with you, blessed are you among women, and blessed is the fruit of yo", + "id": "Offertorium" + }, + { + "body": "Look with favor, O Lord, we beseech You, upon the offerings here present, that they may be profitable for our devotion a", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Isa 7:14*\nBehold, a virgin shall be with child and bear a son, and shall name Him Emmanuel.", + "id": "Communio" + }, + { + "body": "Having received Your gifts, we beseech You, O Lord, that each partaking of this sacrament may increase within us its sav", + "id": "Postcommunio" + } + ], + "2024-12-24": [ + { + "body": "*Ex 16:6-7*\nThis day you shall know that the Lord will come, and save us: and in the morning you shall see His glory.\n*P", + "id": "Introitus" + }, + { + "body": "O God, You Who gladden us year after year with the expectation of our redemption, grant that we, who now welcome with jo", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 1:1-6*\nPaul, the servant of Jesus Christ, called to be", + "id": "Lectio" + }, + { + "body": "*Exod 16:6-7*\nThis day you shall know that the Lord will come and save us: and in the morning you shall see His glory.\n*", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 1:18-21*\nWhen Mary, the Mother of Jesus, has been betrothed", + "id": "Evangelium" + }, + { + "body": "*Ps 23:7*\nLift up, O gates, your lintels; reach up, you ancient portals, that the King of glory may come in.", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, almighty God, that, as we anticipate the celebration of Your Son’s birthday, so we may joyfull", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Isa 40:5*\nThe glory of the Lord shall be revealed, and all mankind shall see the salvation of our God.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, to begin a new life with this commemoration of the birth of Your only-begotten Son, Wh", + "id": "Postcommunio" + } + ], + "2024-12-25": [ + { + "body": "*Ps 2:7*\nThe Lord said to Me, You are My Son; this day I have begotten You.\n*Ps 2:1*\nWhy do the nations rage and the peo", + "id": "Introitus" + }, + { + "body": "O God, Who have brightened this most holy night with the splendor of the true light, grant, we beseech You, that we may ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", + "id": "Lectio" + }, + { + "body": "*Ps 109:3; 109:1*\nYours is princely power in the day of Your birth, in holy splendor; before the daystar, I have begotte", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:1-14*\nAt that time, there went forth a decree from Caesar Au", + "id": "Evangelium" + }, + { + "body": "*Ps 95:11, 13*\nLet the heavens be glad and the earth rejoice before the Lord, for He comes.", + "id": "Offertorium" + }, + { + "body": "May the offering of this day’s festivity, we beseech You, O Lord, find acceptance with You; that, by the bounty of Your ", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 109:3*\nIn holy splendor, before the daystar I have begotten You.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord our God, that we who joyfully celebrate the birth of our Lord Jesus Christ, in this sacram", + "id": "Postcommunio" + } + ], + "2024-12-26": [ + { + "body": "*Ps 118:23, 86, 23*\nPrinces met and talked against me, and the wicked persecuted me wrongfully; help me, O Lord my God, ", + "id": "Introitus" + }, + { + "body": "Grant us, we beseech You, O Lord, to imitate what we celebrate, so that we may learn to love even our enemies; because w", + "id": "Oratio" + }, + { + "body": "*For Octave of the Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotte", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 6:8-10; 7:54-59*\nIn those days, Stephen, full of grace and power, was working gre", + "id": "Lectio" + }, + { + "body": "*Ps 118:23, 86*\nPrinces met and talked against me, and the wicked persecuted me wrongfully.\n*Ps 6:5*\n℣. Help me, O Lord ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 23:34-39*\nAt that time, Jesus said to the Scribes and Phari", + "id": "Evangelium" + }, + { + "body": "*Acts 6:5; 7:59*\nThe Apostles chose Stephen to be a levite, a man full of faith and of the Holy Spirit: whom the Jews st", + "id": "Offertorium" + }, + { + "body": "Receive our offerings, O Lord, in memory of Your saints, that, as their passion has given them eternal glory, so may thi", + "id": "Secreta" + }, + { + "body": "*For Octave of the Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotte", + "id": "Commemoratio Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Acts 7:56, 59-60*\nI see the heavens opened, and Jesus standing on the right hand of the power of God: Lord Jesus receiv", + "id": "Communio" + }, + { + "body": "May the sacrament we have received aid us, O Lord; and by the intercession of blessed Stephen, Your Martyr, may it susta", + "id": "Postcommunio" + }, + { + "body": "*For Octave of the Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is t", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-27": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly the Lord opened his mouth; and filled him with the spirit of wisdom and under", + "id": "Introitus" + }, + { + "body": "O Lord, graciously shed light upon Your Church, so that, enlightened by the teachings of blessed John, Your Apostle and ", + "id": "Oratio" + }, + { + "body": "*For Octave of the Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotte", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 15:1-6*\nHe who fears God will do good; he who is practiced in the Law wil", + "id": "Lectio" + }, + { + "body": "*John 21:23, 19*\nThis saying therefore went abroad among the brethren, that that disciple was not to die. But Jesus had ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 21:19-24*\nAt that time, Jesus said to Peter, Follow Me. Turnin", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow.", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the gifts we bring You on the feast of him upon whose patronage we trust for our salvation.\nThrough our ", + "id": "Secreta" + }, + { + "body": "*For Octave of the Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotte", + "id": "Commemoratio Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 21:23*\nA saying went abroad among the brethren, that that disciple was not to die. But Jesus had not said, He is n", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly beseech You our God, that we may be protected by the prayers of him in", + "id": "Postcommunio" + }, + { + "body": "*For Octave of the Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is t", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-28": [ + { + "body": "*Ps 8:3*\nOut of the mouths of babes and of sucklings, O God, You have fashioned praise because of Your foes.\n*Ps 8:2*\nO ", + "id": "Introitus" + }, + { + "body": "O God, Whose praise the Innocents, Your martyrs, this day proclaimed, not by speaking, but by dying, put to death in us ", + "id": "Oratio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotten So", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Revelation\n*Apoc 14:1-5*\nIn those days, I saw the Lamb standing upon Mount Sion, and with Him a ", + "id": "Lectio" + }, + { + "body": "*Ps 123:7-8*\nWe were rescued like a bird from the fowlers’ snare.\n℣. Broken was the snare, and we were freed. Our help i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:13-18*\nAt that time, an angel of the Lord appeared in a d", + "id": "Evangelium" + }, + { + "body": "*Ps 123:7*\nWe were rescued like a bird from the fowlers’ snare. Broken was the snare and we were freed.", + "id": "Offertorium" + }, + { + "body": "Let not the gracious prayer of Your saints fail us, O Lord, but may it make our offerings acceptable to You and obtain f", + "id": "Secreta" + }, + { + "body": "*For Octave of Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotten So", + "id": "Commemoratio Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 2:18*\nA voice was heard in Rama, weeping and loud lamentation; Rachel weeping for her children, and she would not ", + "id": "Communio" + }, + { + "body": "We have partaken, O Lord, of the dedicated gifts: may they, we beseech You, help us through the intercession of Your sai", + "id": "Postcommunio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is the a", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-29": [ + { + "body": "*Wis 18:14-15*\nWhen a profound stillness compassed everything and the night in its swift course was half spent, Your all", + "id": "Introitus" + }, + { + "body": "O Almighty and eternal God, direct our actions in conformity with Your will, that in the name of Your beloved Son we may", + "id": "Oratio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotten So", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 4:1-7*\nBrethren: As long as the heir is a child, he", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:33-40*\nAt that time, Joseph and Mary, the mother of Jesus we", + "id": "Evangelium" + }, + { + "body": "*Ps 92:1-2*\nGod has made the world firm, not to be moved. Your throne, O God, stands firm from of old; from everlasting ", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", + "id": "Secreta" + }, + { + "body": "*For Octave of Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotten So", + "id": "Commemoratio Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 2:20*\nTake the Child and His mother, and go into the land of Israel, for those who sought the Child’s life are dea", + "id": "Communio" + }, + { + "body": "By the working of this sacrament, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is the a", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-30": [ + { + "body": "*Wis 18:14-15*\nWhen a profound stillness compassed everything and the night in its swift course was half spent, Your all", + "id": "Introitus" + }, + { + "body": "O Almighty and eternal God, direct our actions in conformity with Your will, that in the name of Your beloved Son we may", + "id": "Oratio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotten So", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 4:1-7*\nBrethren: As long as the heir is a child, he", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:33-40*\nAt that time, Joseph and Mary, the mother of Jesus we", + "id": "Evangelium" + }, + { + "body": "*Ps 92:1-2*\nGod has made the world firm, not to be moved. Your throne, O God, stands firm from of old; from everlasting ", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", + "id": "Secreta" + }, + { + "body": "*For Octave of Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotten So", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 2:20*\nTake the Child and His mother, and go into the land of Israel, for those who sought the Child’s life are dea", + "id": "Communio" + }, + { + "body": "By the working of this sacrament, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is the a", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-31": [ + { + "body": "*Wis 18:14-15*\nWhen a profound stillness compassed everything and the night in its swift course was half spent, Your all", + "id": "Introitus" + }, + { + "body": "O Almighty and eternal God, direct our actions in conformity with Your will, that in the name of Your beloved Son we may", + "id": "Oratio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotten So", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 4:1-7*\nBrethren: As long as the heir is a child, he", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:33-40*\nAt that time, Joseph and Mary, the mother of Jesus we", + "id": "Evangelium" + }, + { + "body": "*Ps 92:1-2*\nGod has made the world firm, not to be moved. Your throne, O God, stands firm from of old; from everlasting ", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", + "id": "Secreta" + }, + { + "body": "*For Octave of Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotten So", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 2:20*\nTake the Child and His mother, and go into the land of Israel, for those who sought the Child’s life are dea", + "id": "Communio" + }, + { + "body": "By the working of this sacrament, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is the a", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-01": [ + { + "body": "*Isa 9:6*\nA Child is born to us, a Son is given to us; upon His shoulder dominion rests; and His name shall be called th", + "id": "Introitus" + }, + { + "body": "O God, You Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the rewards of eternal salvation, g", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", + "id": "Lectio" + }, + { + "body": "*Ps 97: 3, 4, 2*\nAll the ends of the earth have seen the salvation by our God. Sing joyfully to God, all you lands.\n℣. T", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12, 15*\nYours are the heavens, and Yours is the earth; the world and its fullness You have founded. Justice and j", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, our offerings and prayers; cleanse us by this heavenly rite, and in Your mercy, hear us.", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nAll the ends of the earth have seen the salvation by our God.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from guilt and, by the intercession of the Blessed Virgin Mary, Mother of God, im", + "id": "Postcommunio" + } + ], + "2025-01-02": [ + { + "body": "*Isa 9:6*\nA Child is born to us, a Son is given to us; upon His shoulder dominion rests; and His name shall be called th", + "id": "Introitus" + }, + { + "body": "O God, You Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the rewards of eternal salvation, g", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", + "id": "Lectio" + }, + { + "body": "*Ps 97: 3, 4, 2*\nAll the ends of the earth have seen the salvation by our God. Sing joyfully to God, all you lands.\n℣. T", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12, 15*\nYours are the heavens, and Yours is the earth; the world and its fullness You have founded. Justice and j", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, our offerings and prayers; cleanse us by this heavenly rite, and in Your mercy, hear us.", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nAll the ends of the earth have seen the salvation by our God.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from guilt and, by the intercession of the Blessed Virgin Mary, Mother of God, im", + "id": "Postcommunio" + } + ], + "2025-01-03": [ + { + "body": "*Isa 9:6*\nA Child is born to us, a Son is given to us; upon His shoulder dominion rests; and His name shall be called th", + "id": "Introitus" + }, + { + "body": "O God, You Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the rewards of eternal salvation, g", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", + "id": "Lectio" + }, + { + "body": "*Ps 97: 3, 4, 2*\nAll the ends of the earth have seen the salvation by our God. Sing joyfully to God, all you lands.\n℣. T", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12, 15*\nYours are the heavens, and Yours is the earth; the world and its fullness You have founded. Justice and j", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, our offerings and prayers; cleanse us by this heavenly rite, and in Your mercy, hear us.", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nAll the ends of the earth have seen the salvation by our God.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from guilt and, by the intercession of the Blessed Virgin Mary, Mother of God, im", + "id": "Postcommunio" + } + ], + "2025-01-04": [ + { + "body": "*Ps 44:13 44:15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to t", + "id": "Introitus" + }, + { + "body": "O God, Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the reward of eternal salvation, grant,", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St Paul the Apostle to Titus\n*Titus 3:4-7*\nBeloved: When the goodness and kindness of God our ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 2*\nFairer in beauty are you than the sons of men; grace is poured out upon your lips.\n℣. My heart overflows wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:15-20*\nAt that time, the shepherds were saying to one anothe", + "id": "Evangelium" + }, + { + "body": "You are happy, O holy Virgin Mary, and most worthy of all high praise; for out of you has risen the sun of justice, Chri", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from sin and, through the intercession of the Blessed Virgin Mary, Mother of God,", + "id": "Postcommunio" + } + ], + "2025-01-05": [ + { + "body": "*Phil 2:10-11*\nAt the Name of Jesus every knee should bend of those in heaven, on earth, and under the earth, and every ", + "id": "Introitus" + }, + { + "body": "O God, You Who appointed Your only-begotten Son to be the Saviour of the human race, and commanded that He be called Jes", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 4:8-12*\nIn those days, Peter, filled with the Holy Spirit, said, Rulers of the pe", + "id": "Lectio" + }, + { + "body": "*Ps 105:47*\nSave us, O Lord, our God, and gather us from among the nations, that we may give thanks to Your holy Name an", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", + "id": "Evangelium" + }, + { + "body": "*Ps 85:12, 5*\nI will give thanks to You, O Lord my God, with all my heart, and I will glorify Your Name forever. For You", + "id": "Offertorium" + }, + { + "body": "May Your blessing, O most merciful God, which makes all creation flourish, sanctify this our sacrifice, which we offer Y", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 85:9-10*\nAll the nations You have made shall come and worship You, O Lord, and glorify Your Name. For You are great,", + "id": "Communio" + }, + { + "body": "Almighty, eternal God, You Who have created and redeemed us, graciously look upon our needs, and deign to receive with k", + "id": "Postcommunio" + } + ], + "2025-01-06": [ + { + "body": "*Mal 3:1; 1 Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, You Who by the guidance of a star this day revealed Your only-begotten Son to the Gentiles; mercifully grant that", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", + "id": "Lectio" + }, + { + "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:1-12*\nWhen Jesus was born in Bethlehem of Judea, in the d", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", + "id": "Offertorium" + }, + { + "body": "O Lord, look favorably upon the gifts of Your Church, which are no longer gifts of gold, frankincense and myrrh, but, as", + "id": "Secreta" + }, + { + "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that, by the understanding of our minds made pure, we may grasp what we celebrate b", + "id": "Postcommunio" + } + ], + "2025-01-07": [ + { + "body": "*Mal 3:1; 1 Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, You Who by the guidance of a star this day revealed Your only-begotten Son to the Gentiles; mercifully grant that", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", + "id": "Lectio" + }, + { + "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:1-12*\nWhen Jesus was born in Bethlehem of Judea, in the d", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", + "id": "Offertorium" + }, + { + "body": "O Lord, look favorably upon the gifts of Your Church, which are no longer gifts of gold, frankincense and myrrh, but, as", + "id": "Secreta" + }, + { + "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that, by the understanding of our minds made pure, we may grasp what we celebrate b", + "id": "Postcommunio" + } + ], + "2025-01-08": [ + { + "body": "*Mal 3:1; 1 Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, You Who by the guidance of a star this day revealed Your only-begotten Son to the Gentiles; mercifully grant that", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", + "id": "Lectio" + }, + { + "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:1-12*\nWhen Jesus was born in Bethlehem of Judea, in the d", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", + "id": "Offertorium" + }, + { + "body": "O Lord, look favorably upon the gifts of Your Church, which are no longer gifts of gold, frankincense and myrrh, but, as", + "id": "Secreta" + }, + { + "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that, by the understanding of our minds made pure, we may grasp what we celebrate b", + "id": "Postcommunio" + } + ], + "2025-01-09": [ + { + "body": "*Mal 3:1; 1 Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, You Who by the guidance of a star this day revealed Your only-begotten Son to the Gentiles; mercifully grant that", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", + "id": "Lectio" + }, + { + "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:1-12*\nWhen Jesus was born in Bethlehem of Judea, in the d", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", + "id": "Offertorium" + }, + { + "body": "O Lord, look favorably upon the gifts of Your Church, which are no longer gifts of gold, frankincense and myrrh, but, as", + "id": "Secreta" + }, + { + "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that, by the understanding of our minds made pure, we may grasp what we celebrate b", + "id": "Postcommunio" + } + ], + "2025-01-10": [ + { + "body": "*Mal 3:1; 1 Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, You Who by the guidance of a star this day revealed Your only-begotten Son to the Gentiles; mercifully grant that", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", + "id": "Lectio" + }, + { + "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:1-12*\nWhen Jesus was born in Bethlehem of Judea, in the d", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", + "id": "Offertorium" + }, + { + "body": "O Lord, look favorably upon the gifts of Your Church, which are no longer gifts of gold, frankincense and myrrh, but, as", + "id": "Secreta" + }, + { + "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that, by the understanding of our minds made pure, we may grasp what we celebrate b", + "id": "Postcommunio" + } + ], + "2025-01-11": [ + { + "body": "*Ps 44:13 44:15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to t", + "id": "Introitus" + }, + { + "body": "O God, Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the reward of eternal salvation, grant,", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Hyginus Pope and Martyr*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St Paul the Apostle to Titus\n*Titus 3:4-7*\nBeloved: When the goodness and kindness of God our ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 2*\nFairer in beauty are you than the sons of men; grace is poured out upon your lips.\n℣. My heart overflows wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:15-20*\nAt that time, the shepherds were saying to one anothe", + "id": "Evangelium" + }, + { + "body": "You are happy, O holy Virgin Mary, and most worthy of all high praise; for out of you has risen the sun of justice, Chri", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Hyginus Pope and Martyr*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from sin and, through the intercession of the Blessed Virgin Mary, Mother of God,", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Hyginus Pope and Martyr*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy r", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-12": [ + { + "body": "*Prov 23:24-25*\nThe father of the Just will exult with glee; let Your father and mother have joy; let her who bore You e", + "id": "Introitus" + }, + { + "body": "O Lord Jesus Christ, You Who while subject to Mary and Joseph, hallowed family life with virtues beyond description, gra", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 3:12-17*\nBrethren: Put on, as God’s chosen ones, h", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nOne thing I ask of the Lord; this I seek: to dwell in the house of the Lord all the days of my life.\n*Ps 83:5*", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Luke\n*Luke 2:42-52*\nWhen Jesus was twelve years old, they went up to Je", + "id": "Evangelium" + }, + { + "body": "*Luke 2:22*\nThe parents of Jesus took Him up to Jerusalem, to present Him to the Lord.", + "id": "Offertorium" + }, + { + "body": "In appeasement, O Lord, we offer You this sacrifice, humbly praying that through the intercession of the Virgin Mother o", + "id": "Secreta" + }, + { + "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", + "id": "Prefatio" + }, + { + "body": "*Luke 2:51*\nJesus went down with them, and came to Nazareth and was subject to them.", + "id": "Communio" + }, + { + "body": "Grant, Lord Jesus, that those whom You refresh with the heavenly sacrament may ever imitate the example of Your Holy Fam", + "id": "Postcommunio" + } + ], + "2025-01-13": [ + { + "body": "*Mal 3:1:1; Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, Whose only-begotten Son appeared in the substance of our flesh, grant, we pray You, that we who acknowledge His o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", + "id": "Lectio" + }, + { + "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:29-34*\nAt that time, John saw Jesus coming to him, and he sa", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", + "id": "Offertorium" + }, + { + "body": "We bring You offerings, O Lord, for the epiphany of Your Son, Who has been born, humbly beseeching You that, as He is th", + "id": "Secreta" + }, + { + "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", + "id": "Communio" + }, + { + "body": "We pray You, O Lord, to go before us at all times and in all places with Your heavenly light, that we may discern with c", + "id": "Postcommunio" + } + ], + "2025-01-14": [ + { + "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", + "id": "Introitus" + }, + { + "body": "O God, Who gave to Your people blessed Hilary, as a minister of salvation, grant, we beseech You, that we who cherished ", + "id": "Oratio" + }, + { + "body": "*Commemoration of St. Felix, Priest and Martyr*\nGrant, we beseech You, almighty God, that the example of Your saints may", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom and his tongue shall speak judgment.\n℣. The law of his God is ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the pious prayer of holy N. thy Bishop and illustrious Doctor be not wanting to us, O Lord, but make our offerings a", + "id": "Secreta" + }, + { + "body": "*Commemoration of St. Felix, Priest and Martyr*\nGraciously accept, O Lord, the sacrifices we offer You in honor of Your ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "*Pro Doctore Pontifice.*\nMay blessed N. thy Bishop and illustrious Doctor intercede for us, O Lord, that this thy sacrif", + "id": "Postcommunio" + }, + { + "body": "*Commemoration of St. Felix, Priest and Martyr*\nRefreshed by the sacrament of salvation, we beseech You, O Lord, that we", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-15": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "O God, Who each year give us the joyful feast of blessed Paul, Your Confessor, mercifully grant that we may imitate the ", + "id": "Oratio" + }, + { + "body": "*For St. Maur, Abbot*\nMay the blessed Abbot Maur plead for us, O Lord, so that through his intercession we may obtain wh", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:7-12*\nBrethren: The things that were gain to m", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:25-30*\nAt that time, Jesus spoke and said, I praise You,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "O Lord, in memory of Your saints, we offer You sacrifices of praise, trusting them to deliver us from both present and f", + "id": "Secreta" + }, + { + "body": "*For St. Maur, Abbot*\nO Lord, we beseech You, may the offerings placed upon Your holy altar be beneficial for our salvat", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nThe just man is glad in the Lord and takes refuge in Him; all the upright of heart shall be praised.", + "id": "Communio" + }, + { + "body": "Filled with heavenly food and drink, we humbly pray You, our God, that we may be helped by the prayers of him in whose m", + "id": "Postcommunio" + }, + { + "body": "*For St. Maur, Abbot*\nO Lord, may the reception of Your holy sacrament, and the pleas of blessed Maurus, the Abbot, prot", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-16": [ + { + "body": "*John 21:15-17*\nIf you love Me, Simon Peter, feed My lambs, feed My sheep.\n*Ps 29:2*\nI will extol You, O Lord, for You d", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we may be helped by the merits of blessed Marce", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:1-4, 10-11.*\nBeloved: I exhort the presbyters among you ", + "id": "Lectio" + }, + { + "body": "*Ps 106:32, 31*\nLet them extol him in the assembly of the people and praise him in the council of the elders.\n℣. Let the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus, having come into the distric", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nSee, I place My words in your mouth! I set you over nations and over kingdoms, to root up and to tear down,", + "id": "Offertorium" + }, + { + "body": "Having offered You our gifts, we beseech You, O Lord, mercifully to enlighten Your Church, so that Your flock may everyw", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build my Church.", + "id": "Communio" + }, + { + "body": "Since Your Church has been nourished by sacred food, govern her in Your clemency, we beseech You, O Lord, so that under ", + "id": "Postcommunio" + } + ], + "2025-01-17": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "May the intercession of the Blessed Abbot Anthony, commend us, we beseech You, O Lord, so that what we do not deserve by", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his hea", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy Abbot Anthony, prevail by his prayers, so that the offerings placed upon Your sacre", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will set", + "id": "Communio" + }, + { + "body": "May the pleading of the blessed Abbot Anthony for us, together with the partaking of Your sacrament, protect us, O Lord,", + "id": "Postcommunio" + } + ], + "2025-01-18": [ + { + "body": "*Ps 44:13 44:15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to t", + "id": "Introitus" + }, + { + "body": "O God, Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the reward of eternal salvation, grant,", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Prisca*\nGrant, we beseech You, O almighty God, that we who celebrate the anniversary of the death of ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St Paul the Apostle to Titus\n*Titus 3:4-7*\nBeloved: When the goodness and kindness of God our ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 2*\nFairer in beauty are you than the sons of men; grace is poured out upon your lips.\n℣. My heart overflows wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:15-20*\nAt that time, the shepherds were saying to one anothe", + "id": "Evangelium" + }, + { + "body": "You are happy, O holy Virgin Mary, and most worthy of all high praise; for out of you has risen the sun of justice, Chri", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Prisca*\nWe beseech You, O Lord, that this sacrificial gift which we offer in commemorating the death ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from sin and, through the intercession of the Blessed Virgin Mary, Mother of God,", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Prisca*\nFilled with the sacrament of salvation, we beseech You, O Lord, to help us by the prayers of ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-19": [ + { + "body": "*Ps 65:4*\nLet all on earth worship You, O God, and sing praise to You, sing praise to Your name, Most High.\n*Ps 65:1-2*\n", + "id": "Introitus" + }, + { + "body": "Almighty, everlasting God, You Who govern both the heavens and the earth, graciously hear the humble prayers of Your peo", + "id": "Oratio" + }, + { + "body": "Lesson from the Epistle of St. Paul to the Romans\n*Rom 12:6-16*\nBrethren: We have gifts differing according to the grace", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nThe Lord sent forth His word to heal them and to snatch them from destruction.\n℣. Let them give thanks to", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 2:1-11*\nAt that time, a marriage took place at Cana of Galilee, ", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2, 16*\nShout joyfully to God, all you on earth, sing praise to the glory of His name. Hear now, all you who fea", + "id": "Offertorium" + }, + { + "body": "Hallow our offerings, O Lord, and cleanse us from the stains of our sins.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 2:7-11*\nThe Lord said, Fill the jars with water and take to the chief steward. When the chief steward had tasted t", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You that the effects of Your power may ever increase within us; and, strengthened by the divine sacra", + "id": "Postcommunio" + } + ], + "2025-01-20": [ + { + "body": "*Ps 78:11; 78:12; 78:10*\nLet the prisoners’ sighing come before You, O Lord; repay our neighbors sevenfold into their bo", + "id": "Introitus" + }, + { + "body": "Be mindful of our weakness, almighty God, and since the burden of our sins weighs heavily upon us, may the glorious inte", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 11:33-39*\nBrethren: The Saints by faith conquered kin", + "id": "Lectio" + }, + { + "body": "*Ex 15:11*\nGod is glorious in His Saints, wonderful in majesty, a worker of wonders.\n*Ex 15:6*\n℣. Your right hand, O Lor", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 6:17-23*\nAt that time, Jesus coming down from the mountain, to", + "id": "Evangelium" + }, + { + "body": "*Ps 31:11*\nBe glad in the Lord, and rejoice, you just; exult, all you upright of heart.", + "id": "Offertorium" + }, + { + "body": "Graciously accept, O Lord, the sacrifices dedicated to You in honor of Your blessed Martyrs Fabian and Sebastian, and gr", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 6:18-19*\nA multitude of sick, and those who were troubled with unclean spirits, came to Him; for power went forth ", + "id": "Communio" + }, + { + "body": "Refreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enjoy the benefits of the rite we", + "id": "Postcommunio" + } + ], + "2025-01-21": [ + { + "body": "*Ps 118:95-96*\nSinners wait to destroy me, but I pay heed to Your decrees, O Lord. I see that all fulfillment has its li", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, You Who choose the weak things of the world to confound the strong, mercifully grant that we who ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 51:1-8, 12*\nI will give You thanks, O Lord, O King; I will praise You, O ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever.\n*Ps 44:5*\n℣. In the cause of truth and m", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nAt that time, Jesus spoke this parable to His disc", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15-16*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and jo", + "id": "Offertorium" + }, + { + "body": "Graciously accept, O Lord, the sacrificial gifts we offer You and by the intercession of blessed Agnes, Your Virgin and ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4, 6*\nThe five wise virgins took oil in their vessels with the lamps; and at midnight a cry arose, Behold the b", + "id": "Communio" + }, + { + "body": "Filled with heavenly food and drink, we humbly pray You, our God, that we may be helped by the prayers of her in whose m", + "id": "Postcommunio" + } + ], + "2025-01-22": [ + { + "body": "*Ps 78:11; 78:12; 78:10*\nLet the prisoners’ sighing come before You, O Lord; repay our neighbors sevenfold into their bo", + "id": "Introitus" + }, + { + "body": "Give heed to our humble prayers, O Lord, that we who know we are guilty of our own sin, may be saved by the intercession", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 3:1-8*\nThe souls of the just are in the hands of God, and no torment of death shall ", + "id": "Lectio" + }, + { + "body": "*Exo 15:11*\nGod is glorious in His Saints, wonderful in majesty, a worker of wonders.\n*Exo 15:6*\n℣. Your right hand, O L", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:9-19*\nAt that time, Jesus said to His disciples, When you h", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nGod is wonderful in His Saints; the God of Israel is He Who gives power and strength to His people. Blessed b", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, the gifts of our service; may they be pleasing to You for the honor of Your just ones and, through", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Wis 3:4-6*\nFor if before men they be punished, God tried them; as gold in the furnace, He proved them, and as sacrifici", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we who have eaten heavenly food may through it be protected from all harm by the inte", + "id": "Postcommunio" + } + ], + "2025-01-23": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, You Who chose blessed Raymond to be a renowned minister of the sacrament of Penance, and miraculously brought him", + "id": "Oratio" + }, + { + "body": "*For St. Emerentiana, Virgin and Martyr*\nMay blessed Emerentiana, Virgin and Martyr, who was ever pleasing to You by the", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*For St. Emerentiana, Virgin and Martyr*\nMay blessed Emerentiana, Virgin and Martyr, who was ever pleasing to You by the", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + }, + { + "body": "*For St. Emerentiana, Virgin and Martyr*\nMay the sacrament we have received, aid us, O Lord, and by the intercession of ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-24": [ + { + "body": "*Ecclus 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignit", + "id": "Introitus" + }, + { + "body": "Be mindful of our weakness, almighty God, and because the burden of our sins weighs heavily upon us, may the glorious in", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to Timothy\n*1 Tim. 6:11-16*\nBeloved: Pursue justice, godliness, fai", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nI have found David, My servant, with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 14:26-33.*\nAt that time, Jesus said to the crowds, If anyone com", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "O Lord, graciously accept, through the merits of Your blessed Martyr and Bishop N., the sacrificial gifts dedicated to Y", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36-38.*\nOnce, by My holiness, have I sworn; his posterity shall continue forever; and his throne shall be like th", + "id": "Communio" + }, + { + "body": "Refreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enjoy the benefits of the rite we", + "id": "Postcommunio" + } + ], + "2025-01-25": [ + { + "body": "*2 Tim. 1:12*\nI know Whom I have believed, and I am certain that He is able to guard the trust committed to me, against ", + "id": "Introitus" + }, + { + "body": "O God, Who taught the whole world by the preaching of Your blessed Apostle Paul, grant, we beseech You, that we who toda", + "id": "Oratio" + }, + { + "body": "*For St. Peter*\nO God, Who, when giving blessed Peter, Your Apostle, the keys of the heavenly kingdom, bestowed on him t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 9:1-22*\nIn those days, Saul, still breathing threats of slaughter against the dis", + "id": "Lectio" + }, + { + "body": "*Gal 2:8-9*\nHe Who worked in Peter for the apostleship, worked also in me among the Gentiles: and they recognized the gr", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29*\nAt that time, Peter said to Jesus, Behold we have", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", + "id": "Offertorium" + }, + { + "body": "O Lord, make holy the offerings of Your people, through the prayer of Paul, Your Apostle, that those things which You ha", + "id": "Secreta" + }, + { + "body": "*For St. Peter*\nWe beseech You, Lord, may the prayer of the blessed Apostle Peter recommend the petitions and offerings ", + "id": "Commemoratio Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you, that you who have left all things, and followed Me, shall receive a hundredfold, and ", + "id": "Communio" + }, + { + "body": "Made holy by the sacrament of salvation, we beseech You, O Lord, that the prayers of him under whose patronal care You h", + "id": "Postcommunio" + }, + { + "body": "*For St. Peter*\nO Lord, may the gift we offer bring us joy, that as we praise Your wondrous work in Your Apostle Peter, ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-26": [ + { + "body": "*Ps 96:7-8*\nAdore God, all you His angels: Sion hears and is glad, and the cities of Juda rejoice.\n*Ps 96:1*\nThe Lord is", + "id": "Introitus" + }, + { + "body": "Almighty and everlasting God, look with favor upon our weakness, and stretch forth the right hand of Your majesty to hel", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 12:16-21*\nBrethren: Be not wise in your own conceits. ", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 8:1-13*\nAt that time, when Jesus had come down from the mount", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16-17*\nThe right hand of the Lord has struck with power: the right hand of the Lord has exalted me; I shall not ", + "id": "Offertorium" + }, + { + "body": "May this offering, O Lord, we beseech You, wipe away our transgressions, and make holy the minds and bodies of Your serv", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Luke 4:22*\nAll marvelled at the words that came from the mouth of God.", + "id": "Communio" + }, + { + "body": "O Lord, as You grant us to use this great sacrament, deign, we beseech You, to make us truly worthy of its fruits.\nThrou", + "id": "Postcommunio" + } + ], + "2025-01-27": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", + "id": "Introitus" + }, + { + "body": "May heavenly grace, we beseech You, O Lord, prosper Your Church, which You mercifully enlightened by the blessed virtues", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", + "id": "Lectio" + }, + { + "body": "*Ecclus 44:16*\nBehold a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not found the like to him", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: \"You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree; like a cedar of Libanus shall he grow.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed John Chrysostom, Your Bishop and Doctor, fail us never, O Lord; may it commend our offe", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "So that your sacrificial rites may grant us salvation, we pray you, O Lord, that blessed John Chrysostom, Your Bishop an", + "id": "Postcommunio" + } + ], + "2025-01-28": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "O God, You Who, as an example of Your love, divinely taught St. Peter to enrich Your Church with new offspring, a family", + "id": "Oratio" + }, + { + "body": "*For St. Agnes Virgin and Martyr*\nO God, You Who gladden us each year by the feast of blessed Agnes, Your Virgin and Mar", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a sp", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*For St. Agnes Virgin and Martyr*\nMay a bountiful blessing, O Lord, descend upon these offerings and, through Your mercy", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + }, + { + "body": "*For St. Agnes Virgin and Martyr*\nO Lord, in celebrating this yearly feast, we have partaken of the sacrament. Grant, we", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-29": [ + { + "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", + "id": "Introitus" + }, + { + "body": "O God, Who for the salvation of souls willed that blessed Francis, Your Confessor and Bishop, should become all things t", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom and his tongue shall speak judgment.\n℣. The law of his God is ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the pious prayer of holy N. thy Bishop and illustrious Doctor be not wanting to us, O Lord, but make our offerings a", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "*Pro Doctore Pontifice.*\nMay blessed N. thy Bishop and illustrious Doctor intercede for us, O Lord, that this thy sacrif", + "id": "Postcommunio" + } + ], + "2025-01-30": [ + { + "body": "*Ps 118:46-47.*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, wh", + "id": "Introitus" + }, + { + "body": "O God, Who among the other miracles of Your power have bestowed the victory of martyrdom even upon the weaker sex, graci", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 51:1-8; 5:12*\nI will give You thanks, O Lord, O King; I will praise You, O G", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness.\n℣. Therefore God, your God, has anointed you with the oil of gladness. A", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13.*\nAt that time Jesus spoke this parable to His disc", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15-16.*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and j", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the gifts we bring on the festival of blessed N., Your Virgin and Martyr, through whose patronage we hop", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78, 80*\nLet the proud be put to shame for oppressing me unjustly; I will meditate on Your precepts, on Your stat", + "id": "Communio" + }, + { + "body": "May the sacrament we have received, aid us, O Lord, and by the intercession of blessed N., Your Virgin and Martyr, may i", + "id": "Postcommunio" + } + ], + "2025-01-31": [ + { + "body": "*3 Kings 4:29*\nGod gave him wisdom and understanding exceeding much, and largeness of heart as the sand that is on the s", + "id": "Introitus" + }, + { + "body": "O God, Who in Your Confessor, blessed John, raised up a father and teacher of youth, and willed that through him, with t", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-9*\nBrethren: Rejoice in the Lord always; aga", + "id": "Lectio" + }, + { + "body": "*Ps 36:3-5*\nTrust in the Lord and do good, that you may dwell in the land and be fed with its riches.\n℣. Take delight in", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-5*\nAt that time, the disciples came to Jesus, saying, ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nCome, children, hear me; I will teach you the fear of the Lord.", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, this pure offering of the saving Host, and grant, that loving You in all and above all, we may be found ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Rom 4:18*\nHoping against hope he believed, so that he became father of many nations, according to what was said to him.", + "id": "Communio" + }, + { + "body": "Nourished with the mystery of Your Body and Blood, grant, we beseech You, O Lord, through the intercession of Saint John", + "id": "Postcommunio" + } + ], + "2025-02-01": [ + { + "body": "*Gal 6:14*\nGod forbid that I should glory, save in the cross of our Lord Jesus Christ: by whom the world is crucified to", + "id": "Introitus" + }, + { + "body": "Be mindful of our weakness, O almighty God, and since the burden of our deeds is grievous to us, grant that the glorious", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:35-39*\nBrethren, who shall separate us from the love", + "id": "Lectio" + }, + { + "body": "*Ecclus 44:16*\nBehold a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not any found the like to", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 12:24-26*\nAt that time, Jesus said to His Disciples, \"Amen, am", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nThou hast crowned Him with glory and honor: and hast set Him over the works of Thy hands, O Lord.", + "id": "Offertorium" + }, + { + "body": "Graciously accept, O Lord, the offerings dedicated unto Thee, through the merits of blessed Ignatius Thy martyr and bish", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "I am the wheat of Christ; may I be ground by the teeth of beasts, that I may be found pure bread.", + "id": "Communio" + }, + { + "body": "Refreshed by participation in Thy holy gift, we beseech Thee, O Lord our God, that through the intercession of blessed I", + "id": "Postcommunio" + } + ], + "2025-02-02": [ + { + "body": "*If the blessing of candles and the procession cannot take place in the solemn form, because of the absence of sacred mi", + "id": "De Benedictione Candelarum" + }, + { + "body": "*Next the senior cleric goes to the altar and the celebrant, without genuflecting, receives a candle from him. Then the ", + "id": "De Distributione Candelarum" + }, + { + "body": "*First, the celebrant places incense in the thurible, then the deacon turns to the people and says:*\n℣. Let us go forth ", + "id": "De Processione" + }, + { + "body": "*Ps 47:10-11*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to the", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, we humbly beseech Your majesty that, as Your only-begotten Son was this day presented in the temp", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Malachias\n*Mal 3:1-4*\nThus says the Lord God: Lo, I am sending My messenger to prepare the way b", + "id": "Lectio" + }, + { + "body": "*Ps 47:10-11, 9.*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 2:22-32*\nAt that time, when the days of Mary's purification were", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, heed our prayer, and give us the help of Your loving kindness so that the gifts we offer before the eyes of Your", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 2:26*\nIt was revealed to Simeon by the Holy Spirit that he should not see death before he had seen the Christ of t", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord our God, that the sacrament You have given as the bulwark of our atonement may be made a saving r", + "id": "Postcommunio" + } + ], + "2025-02-03": [ + { + "body": "*Ps 96:7-8*\nAdore God, all you His angels: Sion hears and is glad, and the cities of Juda rejoice.\n*Ps 96:1*\nThe Lord is", + "id": "Introitus" + }, + { + "body": "O God, You Who know that our human frailty cannot stand fast against the great dangers that beset us, grant us health of", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Blaise*\nO God, Who gladden us with the yearly festival of blessed Blaise, Your Martyr and Bishop, mer", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:8-10*\nBrethren: Owe no man anything except to love ", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 8:23-27*\nAt that time, Jesus got into a boat, and His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16-17*\nThe right hand of the Lord has struck with power: the right hand of the Lord has exalted me; I shall not ", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the offering of this sacrifice may always cleanse and strengthen the weakness ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Blaise*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of blessed Blai", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 4:22*\nAll marvelled at the words that came from the mouth of God.", + "id": "Communio" + }, + { + "body": "May Your gifts, O God, free us from the attraction of earthly pleasures and give us new strength through Your heavenly n", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Blaise*\nMay this Communion, O Lord, cleanse us of sin, and through the intercession of blessed Blaise", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-04": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O God, Who establish ever new examples of virtue in Your Church, grant that Your people may follow the footsteps of bles", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + } + ], + "2025-02-05": [ + { + "body": "Let us all rejoice in the Lord, celebrating the feast in honor of blessed Agatha, Virgin and Martyr, for whose passion t", + "id": "Introitus" + }, + { + "body": "O God, Who among other wonders of Your power have given the victory of martyrdom even to the gentler sex, graciously gra", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 1:26-31*\nBrethren: Consider your own cal", + "id": "Lectio" + }, + { + "body": "*Ps 45:6, 5*\nGod will help her with His countenance. God is in her midst; she shall not be disturbed.\n℣. There is a stre", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:3-12*\nAt that time, there came to Jesus some Pharisees, ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15*\nBehind her the virgins of her train are brought to the King. They are borne in to You.", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the gifts we bring on the feast of blessed Agatha, Your Virgin and Martyr, under whose patronage we hope", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "I invoke Him, the living God, Who deigned to cure me of every wound, and to restore my breast to my body.", + "id": "Communio" + }, + { + "body": "May the sacrament we have received help us, O Lord, and by the intercession of blessed Agatha, Your Virgin and Martyr, m", + "id": "Postcommunio" + } + ], + "2025-02-06": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O God, Who adorned blessed Titus, Your Confessor and Bishop, with the virtues of an apostle, grant, through his merits a", + "id": "Oratio" + }, + { + "body": "*For St. Dorothy, Virgin and Martyr*\nMay blessed Dorothy, Virgin and Martyr, who was ever pleasing to You by the merit o", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, a", + "id": "Lectio" + }, + { + "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*For St. Dorothy*\nGraciously accept the sacrificial gifts offered You, O Lord, through the merits of blessed Dorothy, Yo", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + }, + { + "body": "*For St. Dorothy*\nWe who have been refreshed by the richness of Your divine sacrament beseech You, O Lord our God, that ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-07": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "May the intercession of the Blessed Abbot Romuald, commend us, we beseech You, O Lord, so that what we do not deserve by", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy Abbot N., prevail by his prayers, so that the offerings placed upon Your sacred alt", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "May the pleading of the blessed Abbot N. for us, together with the partaking of Your sacrament, protect us, O Lord, so t", + "id": "Postcommunio" + } + ], + "2025-02-08": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who graciously and by divine means founded through blessed John, the Order of the Most Holy Trinity to ransom cap", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2025-02-09": [ + { + "body": "*Ps 96:7-8*\nAdore God, all you His angels: Sion heard, and was glad; and the daughters of Juda rejoiced.\n*Ps 96:1*\nThe L", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You to keep Your household continually under Your mercy: that as it leans only upon the hope of Your ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 3:12-17*\nBrethren: Put on, as God’s chosen ones, h", + "id": "Lectio" + }, + { + "body": "*Ps 101:16*\nThe Gentiles shall fear Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord has bu", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 13:24-30*\nAt that time, Jesus spoke this parable to the c", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16-17*\nThe right hand of the lord has wrought strength; the right hand of the Lord has exalted me: I shall not d", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, this sacrifice of atonement, that You would mercifully absolve our sins and direct our faltering h", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Luke 4:22*\nThey all marveled at these things that came from the mouth of God.", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we may obtain that salvation whose pledge we have received in this divine sacrament.\nThr", + "id": "Postcommunio" + } + ], + "2025-02-10": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "O God, Who, to show us the way of innocence, caused the soul of Your Virgin, blessed Scholastica, to fly up to heaven in", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the intercession of her who", + "id": "Postcommunio" + } + ], + "2025-02-11": [ + { + "body": "*Apoc 21:2*\nI saw the holy city, New Jerusalem, coming down out of heaven from God, made ready as a bride adorned for he", + "id": "Introitus" + }, + { + "body": "O God, who by the Immaculate Conception of the Virgin prepared a worthy dwelling for Your Son, we humbly beseech You tha", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Revelation\n*Apoc 11:19; 12:1, 10*\nThe temple of God in heaven was opened, and there was seen the", + "id": "Lectio" + }, + { + "body": "*Cant 2:12, 10, 14*\nThe flowers appear in our land, the time of pruning has come, the voice of the turtle is heard in ou", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-31.*\nAt that time, the angel Gabriel was sent from God to", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28*\nHail, full of grace, the Lord is with you. Blessed are you among women.", + "id": "Offertorium" + }, + { + "body": "May the sacrifice of praise, which we offer You, O Lord, by the merits of the glorious and Immaculate Virgin be as a swe", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*Ps 64:10*\nYou have visited the land and watered it; greatly have you enriched it.", + "id": "Communio" + }, + { + "body": "May the right hand of Your Immaculate Mother support us, O Lord, whom You have filled with heavenly food, that by her he", + "id": "Postcommunio" + } + ], + "2025-02-12": [ + { + "body": "*Wis 10:20-21*\nThe just sang, O Lord, Your holy name and praised in unison your conquering hand - because wisdom opened ", + "id": "Introitus" + }, + { + "body": "O Lord Jesus Christ, Who, to keep alive the memory of Your most holy Mother’s sorrows, through the seven holy fathers en", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 44:1-15*\nLet us now praise men of renown, our ancestors, each in his own ", + "id": "Lectio" + }, + { + "body": "*Isa 65:23*\nMy elect shall not toil in vain, nor beget children for sudden destruction; for a race blessed by the Lord a", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29*\nAt that time, Peter said to Jesus, Behold, we hav", + "id": "Evangelium" + }, + { + "body": "*Isa 56:7*\nI will bring them to My holy mountain, and make them joyful in My house of prayer; their holocausts and sacri", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the sacrificial gifts we offer, so that by the intercession of Your saints we may serve ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 15:16*\nI have chosen you from the world that you should go and bear fruit, and that your fruit should remain.", + "id": "Communio" + }, + { + "body": "Strengthened by the heavenly sacrament, we beseech You, O Lord, that, following the example of those whose feast we are ", + "id": "Postcommunio" + } + ], + "2025-02-13": [ + { + "body": "*Ps 96:7-8*\nAdore God, all you His angels: Sion heard, and was glad; and the daughters of Juda rejoiced.\n*Ps 96:1*\nThe L", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You to keep Your household continually under Your mercy: that as it leans only upon the hope of Your ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 3:12-17*\nBrethren: Put on, as God’s chosen ones, h", + "id": "Lectio" + }, + { + "body": "*Ps 101:16*\nThe Gentiles shall fear Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord has bu", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 13:24-30*\nAt that time, Jesus spoke this parable to the c", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16-17*\nThe right hand of the lord has wrought strength; the right hand of the Lord has exalted me: I shall not d", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, this sacrifice of atonement, that You would mercifully absolve our sins and direct our faltering h", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 4:22*\nThey all marveled at these things that came from the mouth of God.", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we may obtain that salvation whose pledge we have received in this divine sacrament.\nThr", + "id": "Postcommunio" + } + ], + "2025-02-14": [ + { + "body": "*Ps 96:7-8*\nAdore God, all you His angels: Sion heard, and was glad; and the daughters of Juda rejoiced.\n*Ps 96:1*\nThe L", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You to keep Your household continually under Your mercy: that as it leans only upon the hope of Your ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Valentine*\nGrant, we beseech You, almighty God, that we who celebrate the anniversary of the death of", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 3:12-17*\nBrethren: Put on, as God’s chosen ones, h", + "id": "Lectio" + }, + { + "body": "*Ps 101:16*\nThe Gentiles shall fear Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord has bu", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 13:24-30*\nAt that time, Jesus spoke this parable to the c", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16-17*\nThe right hand of the lord has wrought strength; the right hand of the Lord has exalted me: I shall not d", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, this sacrifice of atonement, that You would mercifully absolve our sins and direct our faltering h", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Valentine*\nGraciously accept, O Lord, we beseech You, the gifts we reverently offer, and through the ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 4:22*\nThey all marveled at these things that came from the mouth of God.", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we may obtain that salvation whose pledge we have received in this divine sacrament.\nThr", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Valentine*\nMay the heavenly sacrament, O Lord, renew our souls and minds, so that by the intercession", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-15": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Faustinus & Jovita*\nO God, Who gladden us each year by the feast of Your holy Martyrs, Faustinus and", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nBefore all ages, in the beginning, He created me, and through all ", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "You are happy, O holy Virgin Mary, and most worthy of all praise; since out of you has risen the sun of justice, Christ ", + "id": "Offertorium" + }, + { + "body": "\nThrough Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son,", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Faustinus & Jovita*\nO Lord, heed our prayers which we pour forth on the feast of Your saints; so tha", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Faustinus & Jovita*\nFilled by these saving sacramental rites, we beseech You, O Lord, that the inter", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-16": [ + { + "body": "*Ps 17:5-7*\nThe terrors of death surged round me, the cords of the nether world enmeshed me. In my distress I called upo", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we who are justly punished for our sins may be ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 9:24-27; 10:1-5*\nBrethren: Do you not kn", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nA helper in due time in tribulation. Let them trust in thee who know thy name: for thou hast not f", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:1-16*\nAt that time, Jesus spoke to His disciples this pa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nIt is good to give thanks to the Lord, and to sing praise to Your name, Most High.", + "id": "Offertorium" + }, + { + "body": "Since You have accepted our gifts and our prayers, we beseech You, O Lord, to cleanse us by this heavenly sacrament and ", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nLet Your face shine upon Your servant; save me in Your kindness. O Lord, let me not be put to shame, for I", + "id": "Communio" + }, + { + "body": "May Your faithful people, O God, be strengthened by Your gifts; that by receiving them, they may still desire them, and ", + "id": "Postcommunio" + } + ], + "2025-02-17": [ + { + "body": "*Ps 17:5-7*\nThe terrors of death surged round me, the cords of the nether world enmeshed me. In my distress I called upo", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we who are justly punished for our sins may be ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 9:24-27; 10:1-5*\nBrethren: Do you not kn", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nA helper in due time in tribulation. Let them trust in thee who know thy name: for thou hast not f", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:1-16*\nAt that time, Jesus spoke to His disciples this pa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nIt is good to give thanks to the Lord, and to sing praise to Your name, Most High.", + "id": "Offertorium" + }, + { + "body": "Since You have accepted our gifts and our prayers, we beseech You, O Lord, to cleanse us by this heavenly sacrament and ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nLet Your face shine upon Your servant; save me in Your kindness. O Lord, let me not be put to shame, for I", + "id": "Communio" + }, + { + "body": "May Your faithful people, O God, be strengthened by Your gifts; that by receiving them, they may still desire them, and ", + "id": "Postcommunio" + } + ], + "2025-02-18": [ + { + "body": "*Ps 17:5-7*\nThe terrors of death surged round me, the cords of the nether world enmeshed me. In my distress I called upo", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we who are justly punished for our sins may be ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Simeon*\nLook mercifully, almighty God, upon our weakness, and since the burden of our sins weighs hea", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 9:24-27; 10:1-5*\nBrethren: Do you not kn", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nA helper in due time in tribulation. Let them trust in thee who know thy name: for thou hast not f", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:1-16*\nAt that time, Jesus spoke to His disciples this pa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nIt is good to give thanks to the Lord, and to sing praise to Your name, Most High.", + "id": "Offertorium" + }, + { + "body": "Since You have accepted our gifts and our prayers, we beseech You, O Lord, to cleanse us by this heavenly sacrament and ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Simeon*\nGraciously receive, O Lord, the sacrifices offered to You, by the merits of Blessed Simeon, Y", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nLet Your face shine upon Your servant; save me in Your kindness. O Lord, let me not be put to shame, for I", + "id": "Communio" + }, + { + "body": "May Your faithful people, O God, be strengthened by Your gifts; that by receiving them, they may still desire them, and ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Simeon*\nRefreshed by partaking of Your sacred gift, we beseech You, O Lord our God, that by the inter", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-19": [ + { + "body": "*Ps 17:5-7*\nThe terrors of death surged round me, the cords of the nether world enmeshed me. In my distress I called upo", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we who are justly punished for our sins may be ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 9:24-27; 10:1-5*\nBrethren: Do you not kn", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nA helper in due time in tribulation. Let them trust in thee who know thy name: for thou hast not f", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:1-16*\nAt that time, Jesus spoke to His disciples this pa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nIt is good to give thanks to the Lord, and to sing praise to Your name, Most High.", + "id": "Offertorium" + }, + { + "body": "Since You have accepted our gifts and our prayers, we beseech You, O Lord, to cleanse us by this heavenly sacrament and ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nLet Your face shine upon Your servant; save me in Your kindness. O Lord, let me not be put to shame, for I", + "id": "Communio" + }, + { + "body": "May Your faithful people, O God, be strengthened by Your gifts; that by receiving them, they may still desire them, and ", + "id": "Postcommunio" + } + ], + "2025-02-20": [ + { + "body": "*Ps 17:5-7*\nThe terrors of death surged round me, the cords of the nether world enmeshed me. In my distress I called upo", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we who are justly punished for our sins may be ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 9:24-27; 10:1-5*\nBrethren: Do you not kn", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nA helper in due time in tribulation. Let them trust in thee who know thy name: for thou hast not f", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:1-16*\nAt that time, Jesus spoke to His disciples this pa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nIt is good to give thanks to the Lord, and to sing praise to Your name, Most High.", + "id": "Offertorium" + }, + { + "body": "Since You have accepted our gifts and our prayers, we beseech You, O Lord, to cleanse us by this heavenly sacrament and ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nLet Your face shine upon Your servant; save me in Your kindness. O Lord, let me not be put to shame, for I", + "id": "Communio" + }, + { + "body": "May Your faithful people, O God, be strengthened by Your gifts; that by receiving them, they may still desire them, and ", + "id": "Postcommunio" + } + ], + "2025-02-21": [ + { + "body": "*Ps 17:5-7*\nThe terrors of death surged round me, the cords of the nether world enmeshed me. In my distress I called upo", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we who are justly punished for our sins may be ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 9:24-27; 10:1-5*\nBrethren: Do you not kn", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nA helper in due time in tribulation. Let them trust in thee who know thy name: for thou hast not f", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:1-16*\nAt that time, Jesus spoke to His disciples this pa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nIt is good to give thanks to the Lord, and to sing praise to Your name, Most High.", + "id": "Offertorium" + }, + { + "body": "Since You have accepted our gifts and our prayers, we beseech You, O Lord, to cleanse us by this heavenly sacrament and ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nLet Your face shine upon Your servant; save me in Your kindness. O Lord, let me not be put to shame, for I", + "id": "Communio" + }, + { + "body": "May Your faithful people, O God, be strengthened by Your gifts; that by receiving them, they may still desire them, and ", + "id": "Postcommunio" + } + ], + "2025-02-22": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O God, Who when giving blessed Peter, Your Apostle, the keys of the heavenly kingdom, bestowed on him the power of bindi", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 1:1-7*\nPeter, an apostle of Jesus Christ, to the sojourner", + "id": "Lectio" + }, + { + "body": "*Ps 106:32, 31*\nLet them extol him in the assembly of the people and praise him in the council of the elders.\n℣. Let the", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus having come into the district", + "id": "Evangelium" + }, + { + "body": "*Matt 16:18-19*\nYou are Peter, and upon this rock I will build My Church, and the gates of hell shall not prevail agains", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the prayer of the blessed Apostle, Peter, recommend the petitions and offerings of Your Chur", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build My Church.", + "id": "Communio" + }, + { + "body": "O Lord, may the gift we offer bring us joy, that as we praise Your wondrous work in Your Apostle Peter, so through him m", + "id": "Postcommunio" + } + ], + "2025-02-23": [ + { + "body": "*Ps 43:23-26*\nAwake! Why are You asleep, O Lord? Arise! Cast us not off forever! Why do You hide Your face, forgetting o", + "id": "Introitus" + }, + { + "body": "O God, You Who see that we put no trust in anything we do, mercifully grant that by the protection of the Doctor of the ", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 11:19-33; 12:1-9*\nBrethren: You gladly ", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nLet the nations know that God is Your name; You alone are the Most High over all the earth.\n℣. O my Go", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 8:4-15*\nAt that time, when a very great crowd was gathering to", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. Sh", + "id": "Offertorium" + }, + { + "body": "May this sacrifice which we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nI will go in to the altar of God, the God of my gladness and joy.", + "id": "Communio" + }, + { + "body": "O almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", + "id": "Postcommunio" + } + ], + "2025-02-24": [ + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", + "id": "Introitus" + }, + { + "body": "God, Who added blessed Matthias to the company of Your Apostles, grant, we beseech You, that by his intercession we may ", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 1:15-26*\nIn those days, Peter stood up in the midst of the brethren - now the num", + "id": "Lectio" + }, + { + "body": "*Ps 138:17-18*\nYour friends, O God, are exceedingly honorable; their principality is exceedingly strengthened.\n℣. Were I", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:25-30*\nAt that time, Jesus spoke and said, I praise You,", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord, through all gener", + "id": "Offertorium" + }, + { + "body": "May the prayer of Your holy Apostle Matthias, O Lord, accompany the sacrificial gifts which we offer to be hallowed in Y", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nYou who have followed Me shall sit on thrones judging the twelve tribes of Israel.", + "id": "Communio" + }, + { + "body": "Grant, almighty God, we pray You, that through the intercession of blessed Matthias, Your Apostle, we may obtain pardon ", + "id": "Postcommunio" + } + ], + "2025-02-25": [ + { + "body": "*Ps 43:23-26*\nAwake! Why are You asleep, O Lord? Arise! Cast us not off forever! Why do You hide Your face, forgetting o", + "id": "Introitus" + }, + { + "body": "O God, You Who see that we put no trust in anything we do, mercifully grant that by the protection of the Doctor of the ", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 11:19-33; 12:1-9*\nBrethren: You gladly ", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nLet the nations know that God is Your name; You alone are the Most High over all the earth.\n℣. O my Go", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 8:4-15*\nAt that time, when a very great crowd was gathering to", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. Sh", + "id": "Offertorium" + }, + { + "body": "May this sacrifice which we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nI will go in to the altar of God, the God of my gladness and joy.", + "id": "Communio" + }, + { + "body": "O almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", + "id": "Postcommunio" + } + ], + "2025-02-26": [ + { + "body": "*Ps 43:23-26*\nAwake! Why are You asleep, O Lord? Arise! Cast us not off forever! Why do You hide Your face, forgetting o", + "id": "Introitus" + }, + { + "body": "O God, You Who see that we put no trust in anything we do, mercifully grant that by the protection of the Doctor of the ", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 11:19-33; 12:1-9*\nBrethren: You gladly ", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nLet the nations know that God is Your name; You alone are the Most High over all the earth.\n℣. O my Go", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 8:4-15*\nAt that time, when a very great crowd was gathering to", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. Sh", + "id": "Offertorium" + }, + { + "body": "May this sacrifice which we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nI will go in to the altar of God, the God of my gladness and joy.", + "id": "Communio" + }, + { + "body": "O almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", + "id": "Postcommunio" + } + ], + "2025-02-27": [ + { + "body": "*Ecclus 11:13*\nThe eye of God looks favorably upon him; He raises him free of the vile dust, and lifts up his head to th", + "id": "Introitus" + }, + { + "body": "O God, Who taught blessed Gabriel to meditate continually on the sorrows of Your most sweet Mother and Who, through her,", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 2:14-17*\nBeloved: I am writing to you, young men, because yo", + "id": "Lectio" + }, + { + "body": "*Ps 30:20*\nHow great is the goodness, O Lord, which You have in store for those who fear You.\n℣. And which, toward those", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 10:13-21*\nAt that time, they were bringing little children to ", + "id": "Evangelium" + }, + { + "body": "*Ps 115:16-17*\nO Lord, for I am Your servant, the son of Your handmaid; You have loosed my bonds. To You will I offer sa", + "id": "Offertorium" + }, + { + "body": "O Lord, make us who offer You the saving sacrificial gifts in memory of blessed Gabriel recall in a fitting way the sacr", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Rev 3:20*\nBehold, I stand at the door and knock. If any man listens to My voice and opens the door to Me, I will come i", + "id": "Communio" + }, + { + "body": "O Lord, graciously accept the thanks we offer You for the gifts we have received on the feast of the blessed Gabriel, Yo", + "id": "Postcommunio" + } + ], + "2025-02-28": [ + { + "body": "*Ps 43:23-26*\nAwake! Why are You asleep, O Lord? Arise! Cast us not off forever! Why do You hide Your face, forgetting o", + "id": "Introitus" + }, + { + "body": "O God, You Who see that we put no trust in anything we do, mercifully grant that by the protection of the Doctor of the ", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 11:19-33; 12:1-9*\nBrethren: You gladly ", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nLet the nations know that God is Your name; You alone are the Most High over all the earth.\n℣. O my Go", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 8:4-15*\nAt that time, when a very great crowd was gathering to", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. Sh", + "id": "Offertorium" + }, + { + "body": "May this sacrifice which we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nI will go in to the altar of God, the God of my gladness and joy.", + "id": "Communio" + }, + { + "body": "O almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", + "id": "Postcommunio" + } + ], + "2025-03-01": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nBefore all ages, in the beginning, He created me, and through all ", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "You are happy, O holy Virgin Mary, and most worthy of all praise; since out of you has risen the sun of justice, Christ ", + "id": "Offertorium" + }, + { + "body": "\nThrough Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son,", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + } + ], + "2025-03-02": [ + { + "body": "*Ps 30:3-4*\nBe my rock of refuge, O God, a stronghold to give me safety. You are my rock and my fortress; for Your name’", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, mercifully hear our prayers; loose us from the chains of our sins and keep us from all adversity", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 13:1-13*\nBrethren: If I should speak wit", + "id": "Lectio" + }, + { + "body": "*Ps 76:15-16*\nYou are the God Who alone works wonders; among the peoples You have made known Your power.\n℣. With Your st", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:31-43*\nAt that time, Jesus taking to Himself the Twelve sai", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBlessed are You, O Lord; teach me Your statutes. With my lips I declare all the ordinances of Your mouth.", + "id": "Offertorium" + }, + { + "body": "May these offerings, O Lord, we beseech You, wash away our sins; may it sanctify the bodies and souls of Your servants f", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nThey ate and were wholly surfeited; the Lord had brought them what they craved: they were not defrauded of", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we who have received the Bread of heaven, may by it be protected from all adversity.\n", + "id": "Postcommunio" + } + ], + "2025-03-03": [ + { + "body": "*Ps 30:3-4*\nBe my rock of refuge, O God, a stronghold to give me safety. You are my rock and my fortress; for Your name’", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, mercifully hear our prayers; loose us from the chains of our sins and keep us from all adversity", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 13:1-13*\nBrethren: If I should speak wit", + "id": "Lectio" + }, + { + "body": "*Ps 76:15-16*\nYou are the God Who alone works wonders; among the peoples You have made known Your power.\n℣. With Your st", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:31-43*\nAt that time, Jesus taking to Himself the Twelve sai", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBlessed are You, O Lord; teach me Your statutes. With my lips I declare all the ordinances of Your mouth.", + "id": "Offertorium" + }, + { + "body": "May these offerings, O Lord, we beseech You, wash away our sins; may it sanctify the bodies and souls of Your servants f", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nThey ate and were wholly surfeited; the Lord had brought them what they craved: they were not defrauded of", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we who have received the Bread of heaven, may by it be protected from all adversity.\n", + "id": "Postcommunio" + } + ], + "2025-03-04": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who strengthened St. Casimir with the virtue of steadfastness amid the luxuries of a royal court and the allureme", + "id": "Oratio" + }, + { + "body": "*For St. Lucius*\nO God, Who gladden us with the yearly festival of blessed N., Your Martyr and Bishop, mercifully grant ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*For St. Lucius*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of blessed N., Your Marty", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + }, + { + "body": "*For St. Lucius*\nMay this Communion, O Lord, cleanse us of sin, and through the intercession of blessed N., Your Martyr ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-03-05": [ + { + "body": "*Antiphona.*\n*Ps 68:17*\nHear me, O Lord, for thy mercy is kind; look upon me according to the multitude of thy tender me", + "id": "Benedictio cinerum" + }, + { + "body": "*Wis 11:24-25, 27.*\nYou have mercy on all, O Lord, and hate none of the things which You have made, overlooking the sins", + "id": "Introitus" + }, + { + "body": "Grant, O Lord, that Your faithful people may, with true piety, undertake the time-honored custom of fasting and may carr", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Joel\n*Joel 2:12-19*\nThus says the Lord: Return to Me with your whole heart, with fasting, and we", + "id": "Lectio" + }, + { + "body": "*Ps 56:2, 4.*\nHave pity on me, O God; have pity on me, for in You I take refuge.\n℣. He has sent from heaven and saved me", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt. 6:16-21*\nAt that time, Jesus said to His disciples, When y", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nI will extol you, O Lord, for You drew me clear and did not let my enemies rejoice over me. O Lord, I cried ", + "id": "Offertorium" + }, + { + "body": "O Lord, we beseech You, make us truly fit to offer these gifts by which we celebrate the beginning of this venerable obs", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 1:2-3*\nHe who shall meditate day and night on the law of the Lord shall yield his fruit in due season.", + "id": "Communio" + }, + { + "body": "May the sacrament that we have received, O Lord, give us help, that our fast may be pleasing to You and may profit us as", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLook graciously O Lord, upon those who bow down before Your", + "id": "Super populum" + } + ], + "2025-03-06": [ + { + "body": "*Ps 54:17-23*\nWhen I called upon the Lord, He heard my voice from those who war against me; and He humbled them, Who is ", + "id": "Introitus" + }, + { + "body": "O God, offended by sin, and appeased by penitence, graciously hear the prayers of Your people as they entreat You to tur", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Felicitas & Perpetua*\nGrant, we beseech You, O Lord our God, that we may venerate with unceasing dev", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 38:1-6*\nIn those days, when Ezechia was mortally ill, the prophet Isaiah, son of Amo", + "id": "Lectio" + }, + { + "body": "*Ps 54:23, 17-19.*\nCast your care upon the Lord, and He will support you.\n℣. When I called upon the Lord, He heard my vo", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 8:5-13*\nAt that time, when Jesus had entered Capharnaum, th", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You, O Lord, I lift up my soul: in You, O my God, I trust; let me not be put to shame, let not my enemies", + "id": "Offertorium" + }, + { + "body": "O Lord, we beseech You to look with favor upon these offerings before You, and may they be profitable to our devotion as", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Felicitas & Perpetua*\nLook with favor, we beseech You, O Lord, upon the gifts placed on Your altar f", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nYou shall be pleased with due sacrifices, burnt offerings and holocausts on Your altar, O Lord.", + "id": "Communio" + }, + { + "body": "We humbly beseech You, almighty God, that, having received the blessing of Your heavenly gift, it may be for us the sour", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Felicitas & Perpetua*\nYou have filled us with spiritual joy and delight; grant, we beseech You, O Lo", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nSpare, O Lord, spare Your people, that, being chastened wit", + "id": "Super populum" + } + ], + "2025-03-07": [ + { + "body": "*Ps 29:11*\nThe Lord has heard, and has had pity on me; the Lord became my helper.\n*Ps 29:2*\nI will extol You, O Lord, fo", + "id": "Introitus" + }, + { + "body": "May Your kindly favor, we beseech You, O Lord, accompany the fast we have begun, that we may be able to practice with a ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Thomas Aquinas*\nO God, Who enlightened Your Church with the wondrous learning of blessed Thomas, Your", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 58:1-9*\nThus says the Lord God: Cry out full-throated and unsparingly, lift up your ", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nOne thing I ask the Lord; this I seek: to dwell in the house of the Lord.\n℣. That I may gaze on the loveliness", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:43-48; 6:1-4*\nAt that time, Jesus said to His disciples, ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154, 125*\nO Lord, for the sake of Your promise give me life, that I may know Your decrees.", + "id": "Offertorium" + }, + { + "body": "Grant, O Lord, we beseech You, that as we offer the sacrifice of Lent, our hearts may be made acceptable to You; and the", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Thomas Aquinas*\nMay the pious prayer of holy N. thy Confessor and illustrious Doctor be not wanting t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nServe the Lord with fear, and rejoice before Him with trembling; embrace discipline, lest you perish from t", + "id": "Communio" + }, + { + "body": "Fill us, O Lord, with the spirit of Your love, to unite in charity those whom You have filled with one and the same heav", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Thomas Aquinas*\n*Pro Doctore non Pontifice.*\nMay blessed N. thy Confessor and illustrious Doctor inte", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nWatch over Your people, O Lord, and mercifully cleanse them", + "id": "Super populum" + } + ], + "2025-03-08": [ + { + "body": "*Ps 29:11*\nThe Lord has heard, and has had pity on me; the Lord became my helper.\n*Ps 29:2*\nI will extol You, O Lord, fo", + "id": "Introitus" + }, + { + "body": "Hear, O Lord, our humble prayers, and grant that we may devoutly keep this fast that has been established to cure our so", + "id": "Oratio" + }, + { + "body": "*Commemoration St. John of God*\nO God, Who caused blessed John when burning with love for You, to walk unharmed through ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 58:9-14*\nThus says the Lord God: If you remove from your midst oppression, false acc", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nOne thing I ask the Lord; this I seek: to dwell in the house of the Lord.\n℣. That I may gaze on the loveliness", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 6:47-56*\nAt that time, when it was late, the ship was in the m", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154, 125*\nO Lord, for the sake of Your promise give me life, that I may know Your decrees.", + "id": "Offertorium" + }, + { + "body": "Receive, O Lord, this sacrifice by which You have graciously willed to be appeased: grant, we beseech You, that, cleanse", + "id": "Secreta" + }, + { + "body": "*Commemoration St. John of God*\nWe offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by th", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nServe the Lord with fear, and rejoice before Him with trembling; embrace discipline, lest you perish from t", + "id": "Communio" + }, + { + "body": "Fortified by the Bread of Life, we beseech You, O Lord, that what is a sacrament in this life may become a help to life ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. John of God*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay Your faithful people, O God, be strengthened by Your gi", + "id": "Super populum" + } + ], + "2025-03-09": [ + { + "body": "*Ps 90:15-16*\nHe shall call upon Me, and I will answer him; I will deliver him and glorify him; with length of days I wi", + "id": "Introitus" + }, + { + "body": "O God, You Who purify Your Church by the yearly Lenten observance, grant to Your household that what they strive to obta", + "id": "Oratio" + }, + { + "body": "A reading from the Second Letter of St. Paul to the Corinthians\n*2 Cor. 6:1-10*\nBrethren: We entreat you not to receive ", + "id": "Lectio" + }, + { + "body": "*Ps 90:11-12*\nTo His angels God has given command about you, that they guard you in all your ways.\n℣. Upon their hands t", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 4:1-11*\nAt that time, Jesus was led into the desert by the Sp", + "id": "Evangelium" + }, + { + "body": "*Ps 90:4-5*\nWith His pinions the Lord will cover you, and under His wings you shall take refuge; His faithfulness is a b", + "id": "Offertorium" + }, + { + "body": "We offer these sacrificial gifts at the beginning of Lent, praying You, O Lord, that while we practice restraint in the ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 90:4-5*\nWith His pinions the Lord will cover you, and under His wings you shall take refuge; His faithfulness is a b", + "id": "Communio" + }, + { + "body": "May the holy offering of Your sacrament renew us, O Lord, and cause us to be purified from our old ways and come to the ", + "id": "Postcommunio" + } + ], + "2025-03-10": [ + { + "body": "*Ps 122:2*\nAs the eyes of servants are on the hands of their masters, so are our eyes on the Lord, our God, till He have", + "id": "Introitus" + }, + { + "body": "O God, our Saviour, direct our minds by Your heavenly teaching, so that the Lenten fast may profit us.\nThrough our Lord…", + "id": "Oratio" + }, + { + "body": "*Commemoration Forty Holy Martyrs of Sebaste*\nGrant, we beseech You, almighty God, that we who know how courageously You", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Prophecy of Ezechiel\n*Ezech 34:11-16*\nThus says the Lord God: I Myself will look after and tend My sheep", + "id": "Lectio" + }, + { + "body": "*Ps 83:10, 9*\nBehold, O God, our Protector, and look upon Your servants.\n℣. O Lord God of Hosts, hear the prayers of You", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 25:31-46*\nAt that time, Jesus said to His disciples: When the", + "id": "Evangelium" + }, + { + "body": "*Ps 118:18, 26, 73*\nI will lift up my eyes, that I may consider Your wonders, O Lord; teach me Your statutes; give me di", + "id": "Offertorium" + }, + { + "body": "Sanctify the gifts offered unto You, O Lord, and cleanse us from the stains of our sins.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Commemoration Forty Holy Martyrs of Sebaste*\nLook with favor, O Lord, upon the prayers and offerings of Your faithful, ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Matt 25:40, 34*\nAmen I say to you: What you did for one of these, the least of My brethren, you did for Me: come, bless", + "id": "Communio" + }, + { + "body": "Refreshed by the sacramental gift of Your salvation, we humbly beseech You, O Lord, that, enjoying its savor, we may be ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Forty Holy Martyrs of Sebaste*\nBe appeased by the prayers of Your Saints, O Lord, and grant, we beseech Y", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLoose the bonds of our sins, we beseech You, O Lord, and me", + "id": "Super populum" + } + ], + "2025-03-11": [ + { + "body": "*Ps 89:1-2*\nLord, You have been our refuge through all generations; from everlasting to everlasting You are.\n*Ps 89:2*\nB", + "id": "Introitus" + }, + { + "body": "Look upon Your household, O Lord, and grant that our minds, chastened by mortification of the flesh, may, because of the", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Isaias\n*Isa 55:6-11*\nIn those days, the prophet Isaiah spoke, saying: Seek the Lord while He", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 21:10-17*\nAt that time, when Jesus entered Jerusalem, all the", + "id": "Evangelium" + }, + { + "body": "*Ps 30:15-16*\nMy trust is in You, O Lord; I say, \"You are my God.\" In Your hands is my destiny.", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by the gifts we offer, and safeguard us from all dangers.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 4:2*\nWhen I call, answer me, O my just God, You Who relieve me when I am in distress; have pity on me, O Lord, and h", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we may obtain that salvation whose pledge we have received in this divine sacrament.\n", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay our prayers ascend unto You, O Lord, and banish all wic", + "id": "Super populum" + } + ], + "2025-03-12": [ + { + "body": "*Ps 24:6, 3, 22*\nRemember that Your compassion, O Lord, and Your kindness are from of old; let not our enemies exult ove", + "id": "Introitus" + }, + { + "body": "Mercifully hear our prayers, we beseech You, O Lord; and stretch forth the right hand of Your Majesty against all things", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Exodus\n*Ex. 24:12-18*\nIn those days, the Lord said to Moses, Come up to Me on the mountain and, ", + "id": "LectioL1" + }, + { + "body": "*Ps 24:17-18*\nRelieve the troubles of my heart, and bring me out of distress, O Lord.\n℣. Put an end to my affliction and", + "id": "GradualeL1" + }, + { + "body": "We beseech You, O Lord, look graciously upon the fervor of Your people, who mortify themselves in the flesh through abst", + "id": "OratioL1" + }, + { + "body": "*Commemoration St. Gregory the Great*\nO God, Who granted the rewards of everlasting happiness to the soul of Your servan", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Kings\n*3 Kgs. 19:3-8*\nIn those days, Elias came to Bersabee of Juda, and left his servant there,", + "id": "Lectio" + }, + { + "body": "*Ps 24:17-18, 1-4.*\nBring me out of distress, O Lord; put an end to my affliction and my suffering, and take away all my", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 12:38-50*\nAt that time, certain of the Scribes and Pharisees ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly. And I will lift up my hands to Your commands w", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, this sacrifice of atonement, that You would mercifully absolve our sins and direct our faltering h", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Gregory the Great*\nGrant, we beseech You, O Lord, that through the intercession of blessed Gregory, t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nAttend to my sighing, heed my call for help, my King and my God! To You, I pray, O Lord.", + "id": "Communio" + }, + { + "body": "By receiving Your sacrament, O Lord, may we be cleansed of our secret sins and delivered from the snares of our enemies.", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Gregory the Great*\nO God, Who made Your Bishop, blessed Gregory, an equal to the saints in merit, gra", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO Lord, we beseech You, shed light upon our minds by the br", + "id": "Super populum" + } + ], + "2025-03-13": [ + { + "body": "*Ps 95.6.*\nSplendor and majesty go before Him; praise and grandeur are in His sanctuary.\n*Ps 95:1*\nSing to the Lord a ne", + "id": "Introitus" + }, + { + "body": "We beseech You, O Lord, look graciously upon the fervor of Your people, who mortify themselves in the flesh through abst", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Ezechiel\n*Ezech 18:1-9*\nIn those days, the word of the Lord came to me: Son of man, what is ", + "id": "Lectio" + }, + { + "body": "*Ps 16:8, 2*\nKeep me, O Lord, as the apple of Your eye; hide me in the shadow of Your wings.\n℣. From You let my judgment", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 15:21-28*\nAt that time, leaving there, Jesus retired to the d", + "id": "Evangelium" + }, + { + "body": "*Ps 33: 8-9*\nThe angel of the Lord encamps around those who fear Him, and delivers them. Taste and see how good the Lord", + "id": "Offertorium" + }, + { + "body": "May these sacrificial gifts, we beseech You, O Lord, be the more effective unto our salvation since they have been aided", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*John 6:52*\nThe bread that I will give is My Flesh for the life of the world.", + "id": "Communio" + }, + { + "body": "May Your generous grace sustain and help us, O Lord, in this world and make us new for the world to come.\nThrough our Lo", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant we beseech You, O Lord, that Your faithful people may", + "id": "Super populum" + } + ], + "2025-03-14": [ + { + "body": "*Ps 24:17-18*\nBring me out of distress, O Lord; put an end to my affliction and my suffering, and take away all my sins.", + "id": "Introitus" + }, + { + "body": "Be merciful to Your people, O Lord, and as You give them the grace to serve You, make them new by Your loving help.\nThro", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Ezechiel\n*Ezech 18:20-28*\nThus says the Lord God: Only the one who sins shall die. The son s", + "id": "Lectio" + }, + { + "body": "*Ps 85:2, 6*\nSave Your servant, O my God, who trusts in You.\n℣. Hearken, O Lord, to my prayer.\n\n*Tractus*\n*Ps 102:10*\nO ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 5:1-15*\nAt that time, there was a feast of the Jews, and Jesus w", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2, 5*\nBless the Lord, O my soul, and forget not all His benefits; and your youth shall be renewed like the eagle", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the offerings which we, Your servants, bring You, and graciously hallow the gifts which ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 6:11*\nAll my enemies shall be put to shame in utter terror; they shall fall back in sudden shame.", + "id": "Communio" + }, + { + "body": "By the working of this sacrament, O Lord, may our sins be erased, and our just desires fulfilled.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGraciously hear us, merciful God, and reveal to our minds t", + "id": "Super populum" + } + ], + "2025-03-15": [ + { + "body": "*Ps 87:3*\nLet my prayer come before You; incline Your ear to my call for help, O Lord.\n*Ps 87:2*\nO Lord, the God of my s", + "id": "Introitus" + }, + { + "body": "Look graciously upon Your people, we beseech You, O Lord, and in Your mercy turn away from them the scourges of Your wra", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Deuteronomy\n*Deut. 26:12-19*\nIn those days, Moses spoke to the people, saying, When you have fin", + "id": "LectioL1" + }, + { + "body": "*Ps 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God, our Saviour; be", + "id": "GradualeL1" + }, + { + "body": "Look upon us, O God our protector, so that we who are heavy laden with the burden of our sins, having received Your merc", + "id": "OratioL1" + }, + { + "body": "Lesson from the book of Deuteronomy\n*Deut. 11:22-25*\nIn those days, Moses said to the children of Israel, If you are car", + "id": "LectioL2" + }, + { + "body": "*Ps 83:10, 9*\nBehold, O God, our Protector, and look upon Your servants.\n℣. O Lord of Hosts, hear the prayer of Your ser", + "id": "GradualeL2" + }, + { + "body": "Heed our humble prayers, we beseech You, O Lord, that by Your bounty we may have grace to be humble in prosperity and un", + "id": "OratioL2" + }, + { + "body": "Lesson from the book of Machabees\n*2 Mach. 1:23-27*\nIn those days, all the priests made prayer, while the sacrifice was ", + "id": "LectioL3" + }, + { + "body": "*Ps 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants!\n℣. O Lord, You have been our refuge through all gene", + "id": "GradualeL3" + }, + { + "body": "Have mercy upon us, O God of the universe, and behold us, and show us the light of Your mercies; and put all the nations", + "id": "OratioL3" + }, + { + "body": "Lesson from the book of Ecclesiastes\n*Ecclus. 36:1-10*\nRaise Your hand against the heathen, that they may realize Your p", + "id": "LectioL4" + }, + { + "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", + "id": "GradualeL4" + }, + { + "body": "O Lord, we beseech You, precede our actions with Your favor and accompany them by Your help, so that each prayer and wor", + "id": "OratioL4" + }, + { + "body": "Lesson from the Prophecy of Daniel\n*Dan. 3:47-51*\nIn those days, the Angel of the Lord went down into the furnace with A", + "id": "LectioL5" + }, + { + "body": "O God, Who tempered the flames of fire for the three young men, mercifully grant that the flames of sin may not burn us,", + "id": "OratioL5" + }, + { + "body": "Lesson from the first Letter of St. Paul to the Thessalonians\n*1 Thess. 5:14-23*\nBrethren: We exhort you, reprove the ir", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nPraise the Lord, all you nations, glorify Him, all you peoples!\n℣. For steadfast is His kindness toward us,", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew.\n*Matt 17:1-9*\nAt that time, Jesus took Peter, James and his brothe", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nO Lord, the God of my salvation, by day I cry out, at night I clamor in Your presence. Let my prayer come be", + "id": "Offertorium" + }, + { + "body": "Sanctify our fasts by the sacrificial gifts here present, we beseech You, O Lord, that what our observance outwardly pro", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 7:2*\nO Lord my God, in You I take refuge; save me from all my pursuers and rescue me.", + "id": "Communio" + }, + { + "body": "By the workings of Your sanctifying power, almighty God, may our vices be cured and eternal remedies provided for us.\nTh", + "id": "Postcommunio" + }, + { + "body": "Let us pray.\nBow your heads to God.\nMay the blessing desired by Your faithful give them strength, O God; may it keep the", + "id": "Super populum" + } + ], + "2025-03-16": [ + { + "body": "*Ps 24:6, 3, 22*\nRemember that Your compassion, O Lord, and Your kindness are from of old; let not our enemies exult ove", + "id": "Introitus" + }, + { + "body": "O God, You Who see how we are deprived of all strength, guard us inwardly and outwardly, that in body we may be protecte", + "id": "Oratio" + }, + { + "body": "Lesson from the first Letter of St. Paul to the Thessalonians\n*1 Thess. 4:1-7*\nBrethren: Even as you have learned from u", + "id": "Lectio" + }, + { + "body": "*Ps 24:17-18*\nRelieve the troubles of my heart and bring me out of my distress, O Lord.\n℣. Put an end to my affliction a", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 17:1-9*\nAt that time, Jesus took Peter, James and his brother", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly; and I will lift up my hands to Your commands, ", + "id": "Offertorium" + }, + { + "body": "Look with favor, we beseech You, O Lord, upon the offerings here before You, that they may be beneficial for our devotio", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nAttend to my sighing; heed my call for help, my King and my God! To You I pray, O Lord.", + "id": "Communio" + }, + { + "body": "O almighty God, we humbly beseech You that those whom You refresh with Your sacrament may also worthily serve You in a w", + "id": "Postcommunio" + } + ], + "2025-03-17": [ + { + "body": "*Ps 25:11-12*\nRedeem me, O Lord, and have pity on me; my foot stands on level ground; in the assemblies I will bless the", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that Your servants who discipline the body by fasting from food, may strive after r", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Patrick*\nO, God, Who graciously sent blessed Patrick, Your Confessor and Bishop, to preach Your glory", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Prophecy of Daniel\n*Dan 9:15-19*\nIn those days, Daniel prayed to the Lord, saying, O Lord our God, Who b", + "id": "Lectio" + }, + { + "body": "*Ps 69:6, 3*\nYou are my help and my deliverer; O Lord, hold not back!\n℣. Let my enemies be put to shame and confounded, ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 8:21-29*\nAt that time, Jesus said to the multitudes of the Jews:", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7-8*\nI bless the Lord, Who counsels me; I set the Lord ever before me; with Him at my right hand, I shall not be ", + "id": "Offertorium" + }, + { + "body": "May this sacrificial gift offered in appeasement and praise, O Lord, make us worthy of Your protection.\nThrough our Lord", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Patrick*\nMay Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflec", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 8:2*\nO Lord, our Lord, how glorious is Your Name over all the earth!", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us of sin, and make us partakers of heavenly healing.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Patrick*\nGrant, we beseech You, almighty God, that as we thank You for the favors we have received, w", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGive heed to our humble prayers, almighty God, and kindly g", + "id": "Super populum" + } + ], + "2025-03-18": [ + { + "body": "*Ps 26:8-9*\nTo You my heart speaks; You my glance seeks; Your presence, O Lord, I seek. Hide not Your face from me.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Mercifully help us, O Lord, to fulfill this holy observance, that by Your grace we may carry out those things which we h", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Cyril of Jerusalem*\nGrant us, we beseech You, almighty God, through the intercession of the blessed B", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Book of Kings\n*3 Kings 17:8-16*\nIn those days, the word of the Lord came to Elias the Thesbite, saying, ", + "id": "Lectio" + }, + { + "body": "*Ps 54:23, 17-19.*\nCast your care upon the Lord, and He will support you.\n℣. When I called upon the Lord, He heard my vo", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 23:1-12*\nAt that time, Jesus spoke to the crowds and to His d", + "id": "Evangelium" + }, + { + "body": "*Ps 50:3*\nHave mercy on me, O Lord, in the greatness of Your compassion; O Lord, wipe out my offense.", + "id": "Offertorium" + }, + { + "body": "Through this sacrament, O Lord, graciously perform Your holy work, that it may cleanse us of earthly vices and bring us ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Cyril of Jerusalem*\nO Lord, look favorably upon the unblemished offering we present to You and grant ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nI will declare all Your wondrous deeds; I will be glad and exult in You; I will sing praise to Your name, Mos", + "id": "Communio" + }, + { + "body": "Grant us, O Lord, ever to obey Your commandments, that we may be worthy of Your sacred gifts.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Cyril of Jerusalem*\nO Lord, Jesus Christ, may the sacrament of Your Body and Blood which we have rece", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMercifully heed our humble prayers, O Lord, and heal the we", + "id": "Super populum" + } + ], + "2025-03-19": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "May the merits of Your most holy Mother’s spouse help us, we beseech You, O Lord, that through his intercession we may r", + "id": "Oratio" + }, + { + "body": "*Commemoration Feria IV after the II Sunday of Lent*\nLook mercifully upon Your people, we beseech You, O Lord, and grant", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 1:18-21*\nWhen Mary the Mother of Jesus had been betrothed t", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (P.T. Allel", + "id": "Offertorium" + }, + { + "body": "O Lord, we dutifully worship You, humbly entreating You by the prayers of blessed Joseph, Spouse of the Mother of Jesus ", + "id": "Secreta" + }, + { + "body": "*Commemoration Feria IV after the II Sunday of Lent*\nLook with favor upon the sacrificial gifts we offer You, O Lord, an", + "id": "Commemoratio Secreta" + }, + { + "body": "*St. Joseph*\nIt is truly meet and just, right and for our salvation, that we should at all times and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Matt 1:20*\nDo not be afraid, Joseph, son of David, to take to you Mary your wife, for that which is begotten in her is ", + "id": "Communio" + }, + { + "body": "Be with us, we beseech You, O merciful God, and by the intercession of blessed Joseph, Your Confessor, graciously keep s", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Feria IV after the II Sunday of Lent*\nHaving received Your sacrament, O Lord, may we make progress, we be", + "id": "Commemoratio Postcommunio" + } + ], + "2025-03-20": [ + { + "body": "*Ps 69:2-3*\nDeign, O God, to rescue me; O Lord, make haste to help me; let my enemies be put to shame and confounded who", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, O Lord, the help of Your grace, that, being intent, as we ought, upon fasting and prayer, we may ", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Jeremias\n*Jer 17:5-10*\nThus says the Lord God: Cursed is the man who trusts in man, who seek", + "id": "Lectio" + }, + { + "body": "*Ps 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God, our Saviour; be", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 16:19-31*\nAt that time, Jesus said to the Pharisees, There was a", + "id": "Evangelium" + }, + { + "body": "*Ex 32:11, 13-14.*\nMoses prayed in the sight of the Lord his God, and said, Why, O Lord, are You angry with Your people?", + "id": "Offertorium" + }, + { + "body": "May the fasting dedicated to Your Name, O Lord, make us holy for the present sacrifice, that what our Lenten observance ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*John 6:57*\nHe who eats My Flesh, and drinks My Blood, abides in Me, and I in him, says the Lord.", + "id": "Communio" + }, + { + "body": "May Your grace, we beseech You, O Lord, never forsake us, but make us devoted to Your holy service and ever obtain for u", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nHelp Your servants, O Lord, and grant them the lasting kind", + "id": "Super populum" + } + ], + "2025-03-21": [ + { + "body": "*Ps 16:15*\nBut I in justice shall behold Your face; I shall be content when Your glory shall appear.\n*Ps 16:1*\nHear, O L", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that with the sacred fast to purify us, we may with sincere hearts reach the coming", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Benedict*\nMay the intercession of the blessed Abbot Benedict, commend us to You, O Lord, so that thro", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Genesis\n*Gen 37:6-22*\nIn those days, Joseph said to his brothers, Listen to this dream which I h", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nIn my distress I called to the Lord, and He answered me.\n℣. O Lord, deliver me from lying lip, from treache", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 21:33-46*\nAt that time, Jesus spoke this parable to the multi", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nDeign, O Lord, to rescue me; let all be put to shame and confusion who seek to snatch away my life. Deign,", + "id": "Offertorium" + }, + { + "body": "O God, may this sacrifice which is offered, stay in us and accomplish lasting effects.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Benedict*\nWe beseech You, O Lord, may the holy Abbot Benedict, prevail by his prayers, so that the of", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 11:8*\nYou, O Lord, will keep us and preserve us always from this generation.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord, that we who have received the pledge of everlasting salvation, may properly direct our co", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Benedict*\nMay the pleading of the blessed Abbot Benedict for us, together with the partaking of Your ", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant unto Your people, we beseech You, O Lord, health of m", + "id": "Super populum" + } + ], + "2025-03-22": [ + { + "body": "*Ps 18:8*\nThe law of the Lord is perfect, refreshing the soul; the decree of the Lord is trustworthy, giving wisdom to t", + "id": "Introitus" + }, + { + "body": "Grant that our fasting may be beneficial to us, we beseech You, O Lord, so that by chastising our flesh we may obtain st", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Genesis\n*Gen 27:6-40*\nIn those days, Rebecca said to her son Jacob, I heard your father tell you", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nIt is good to give thanks to the Lord, to sing praise to Your name, Most High.\n℣. To proclaim Your kindness ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 15:11-32*\nAt that time, Jesus spoke to the Pharisees and Scribes", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nGive light to my eyes that I may not sleep in death lest my enemy say, I have overcome him.", + "id": "Offertorium" + }, + { + "body": "Appeased by these sacrificial gifts, O Lord, grant that we who pray for absolution from our own sins may not be burdened", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Luke 15:32*\nYou ought to rejoice, my son, for your brother was dead, and has come to life; he was lost, and is found.", + "id": "Communio" + }, + { + "body": "May the sacrament of which we have partaken, O Lord, penetrate the depths of our hearts and make us share in its strengt", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGuard Your household, we beseech You, O Lord, with lasting ", + "id": "Super populum" + } + ], + "2025-03-23": [ + { + "body": "*Ps 24:15-16*\nMy eyes are ever toward the Lord, for He will free my feet from the snare. Look toward me, and have pity o", + "id": "Introitus" + }, + { + "body": "We beseech You, almighty God, hear the prayers of the humble and stretch forth the right hand of Your majesty to protect", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul to the Ephesians\n*Eph 5:1-9*\nBrethren: Be imitators of God, as very dear children and", + "id": "Lectio" + }, + { + "body": "*Ps 9:20, 4*\nRise, O Lord, let not man prevail; let the nations be judged in Your presence.\n℣. Because my enemies are tu", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 11:14-28*\nAt that time, Jesus was casting out a devil, and the s", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9-12*\nThe precepts of the Lord are right, rejoicing the heart, and His ordinances are sweeter than syrup or honey", + "id": "Offertorium" + }, + { + "body": "May this offering, we beseech You, O Lord, cleanse us of our sins, and make holy the bodies and minds of Your servants f", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 83:4-5*\nThe sparrow finds a home, and the swallow a nest in which she puts her young - Your altars, O Lord of Hosts,", + "id": "Communio" + }, + { + "body": "Be merciful, O Lord, we beseech You, and free from guilt and danger those whom You grant to share in this great sacramen", + "id": "Postcommunio" + } + ], + "2025-03-24": [ + { + "body": "*Ps 55:5*\nIn God, in Whose promise I glory, in the Lord Whose word I praise, in God I trust without fear; what can flesh", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, in Your mercy, pour forth Your grace into our hearts, that, as we abstain from material food, so", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Gabriel the Archangel*\nO God, Who, out of all the angels, chose the Archangel Gabriel to announce the", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Kings\n*4 Kings, 5:1-15*\nIn those days, Naaman, general of the army of the king of Syria, was a g", + "id": "Lectio" + }, + { + "body": "*Ps 55:9, 2*\nO God, my wanderings You have counted; my tears are recorded in Your sight.\n℣. Have pity on me, O Lord, for", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 4:23-30*\nAt that time, Jesus said to the Pharisees: You will sur", + "id": "Evangelium" + }, + { + "body": "*Ps 54:2-3*\nHearken, O God, to my prayer; turn not away from my pleading; give heed to me, and answer me.", + "id": "Offertorium" + }, + { + "body": "O Lord, make for us a sacrament of salvation the gift of homage which we offer to You.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Gabriel the Archangel*\nMay this gift from us, Your servants, and the prayer of the blessed Archangel ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 13:7*\nOh, that out of Sion would come the salvation of Israel! When the Lord restores the well being of His people, ", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty and merciful God, that what we take into our mouth, we may eat with a pure heart.\nThroug", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Gabriel the Archangel*\nO God, our Lord, having received the sacrament of Your Body and Blood, we ask ", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLet Your mercy come to our help, O Lord, that under Your pr", + "id": "Super populum" + } + ], + "2025-03-25": [ + { + "body": "*Ps 44:13, 15-16.*\nAll the rich among the people seek Your face. Behind her the virgins of her train are brought to the ", + "id": "Introitus" + }, + { + "body": "O God, Who, by the message of an angel, willed Your Word to take flesh in the womb of the Blessed Virgin Mary, grant tha", + "id": "Oratio" + }, + { + "body": "*Commemoration Feria III after the III Sunday of Lent*\nHear us, almighty and merciful God, and in Your kindness grant us", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 7:10-15*\nIn those days, the Lord spoke to Achaz: Ask for a sign from the Lord, your ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy an", + "id": "Tractus" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with thee. Blessed art thou among women and blessed is the fruit ", + "id": "Offertorium" + }, + { + "body": "Fix firmly in our minds, O Lord, we beseech You, the mysteries of the true faith; that we who believe Him, conceived of ", + "id": "Secreta" + }, + { + "body": "*Commemoration Feria III after the III Sunday of Lent*\nO Lord, may this sacrament result in our redemption; keep us alwa", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*Isa 7:14*\nBehold a virgin shall be with child, and bear a Son, and shall name Him Emmanuel. (P.T. Alleluia.)", + "id": "Communio" + }, + { + "body": "Pour forth, we beseech You, O Lord, Your grace into our hearts, that we, to whom the incarnation of Christ, Your Son, wa", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Feria III after the III Sunday of Lent*\nWe beseech You, O Lord, that, purified by this holy sacrament, we", + "id": "Commemoratio Postcommunio" + } + ], + "2025-03-26": [ + { + "body": "*Ps 30:7-8*\nMy trust is in the Lord. I will rejoice and be glad of your kindness, when You have seen my affliction.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, O Lord, that, improved by wholesome fasting, and thus abstaining from harmful sin, we may the mor", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Exodus\n*Ex 20:12-24*\nThus says the Lord God: Honor your father and your mother, that you may hav", + "id": "Lectio" + }, + { + "body": "*Ps 6:3-4*\nHave pity on me, O Lord, for I am languishing; heal me, O Lord.\n℣. For my body is in terror; my soul, too, is", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 15:1-20*\nAt that time, the Scribes and Pharisees from Jerusal", + "id": "Evangelium" + }, + { + "body": "*Ps 108:21*\nO Lord, deal kindly with me for Your Name’s sake; because your kindness is generous.", + "id": "Offertorium" + }, + { + "body": "O Lord, receive, we beseech You, the prayers of Your people with offerings of sacrifices, and defend us, who celebrate Y", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 15:11*\nYou will show me the path to life, You will fill me with fullness of joys in Your presence, O Lord.", + "id": "Communio" + }, + { + "body": "May the heavenly banquet with which we have been nourished, make us holy, O Lord; may it be an atonement for all our sin", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant, almighty God, we beseech You, that we who seek the g", + "id": "Super populum" + } + ], + "2025-03-27": [ + { + "body": "I am the salvation of the people, says the Lord. From whatever tribulation they shall cry to Me, I will hear them; and I", + "id": "Introitus" + }, + { + "body": "May the blessed feast of Your saints, Cosmas and Damian, glorify You, O Lord; for on this day in Your marvelous providen", + "id": "Oratio" + }, + { + "body": "*Commemoration St. John Damascene*\nAlmighty, eternal God, Who to defend the honor paid to sacred images, filled blessed ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Prophecy of Jeremias\n*Jer 7:1-7*\nIn those days, the following message came to me from the Lord: Stand at", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nThe eyes of all look hopefully to You, O Lord, and You give them their food in due season.\n℣. You open Yo", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 4:38-44*\nAt that time, Jesus rose from the synagogue and entered", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nThough I walk amid distress, You preserve me, O Lord; against the anger of my enemies You raise Your hand; Yo", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, in honor of the meritorious death of Your just ones, this sacrifice which is the source of martyrd", + "id": "Secreta" + }, + { + "body": "*Commemoration St. John Damascene*\nO Lord, may the holy intercession of blessed John be united with that of Your Saints ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nYou have commanded that Your precepts be diligently kept. Oh, that I might be firm in the ways of keeping Y", + "id": "Communio" + }, + { + "body": "O Lord, we ask You through the merits of Your blessed martyrs, Cosmas and Damian, that Your holy sacrament will assure u", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. John Damascene*\nWe beseech You, O Lord, that the gifts we have eaten may be as heavenly weapons to gu", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay Your heavenly favor, O God, increase the number of Your", + "id": "Super populum" + } + ], + "2025-03-28": [ + { + "body": "*Ps 85:17*\nGrant me, O Lord, a proof of Your favor, that my enemies may see, to their confusion, that You, O Lord, have ", + "id": "Introitus" + }, + { + "body": "O Lord, graciously be with us during this fast, and, we beseech You, help our spirit to abstain from sin as our body fas", + "id": "Oratio" + }, + { + "body": "*Commemoration St. John of Capistrano*\nO God, Who, through blessed John, made Your faithful people conquer the enemies o", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Numbers\n*Num 20:1, 3; 6-13.*\nIn those days, the Israelites held a council against Moses and Aaro", + "id": "Lectio" + }, + { + "body": "*Ps 27:7, 1*\nIn God my heart trusts, and I find help; then my heart exults, and with my song I give Him thanks.\n℣. To Yo", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 4:5-42*\nAt that time, Jesus came, accordingly, to a town of Sama", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4*\nHeed my call for help, my King, and my God! To You I pray, O Lord.", + "id": "Offertorium" + }, + { + "body": "Look with favor, we beseech You, O Lord, upon the gifts we offer You, that they may be pleasing to you and ever helpful ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. John of Capistrano*\nLook with favor, O Lord, upon the sacrifice we offer; that by the intercession of", + "id": "Commemoratio Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Jn 4:13-14*\nHe who drinks of the water that I will give him, says the Lord, it shall become in him a fountain of water,", + "id": "Communio" + }, + { + "body": "May the reception of this sacrament, O Lord, cleanse us from sin and bring us into the heavenly kingdom.\nThrough our Lor", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. John of Capistrano*\nFilled with heavenly food and invigorated by the spiritual chalice, we beseech Yo", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant, we beseech You, almighty God, that we who trust in Y", + "id": "Super populum" + } + ], + "2025-03-29": [ + { + "body": "*Ps 5:2-3*\nHearken to my words, O Lord, attend to my sighing. Heed my call for help, my King and my God!\n*Ps 5:4 To*\nTo ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we who chastise our flesh by abstaining from food, may fast from sin by strivi", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Daniel\n*Dan 13:1-9, 15-17, 19-30, 33-62.*\nIn those days, in Babylon there lived a man named ", + "id": "Lectio" + }, + { + "body": "*Ps 22:4*\nEven though I walk in the dark valley, I fear no evil; for You are at my side, O Lord.\n℣. With Your rod and Yo", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 8:1-11*\nAt that time, Jesus went to the Mount of Olives. And at ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:133*\nSteady my footsteps according to Your promise, and let no iniquity rule over me, O Lord.", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the offering of this sacrifice may always cleanse and strengthen the weakness ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Jn 8:10-11*\nHas no one condemned you, woman? No one, Lord. Neither will I condemn you; now sin no more.", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we may be numbered among the members of Him, Whose Body and Blood we receive in commu", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nStretch forth to Your faithful people, O Lord, the hand of ", + "id": "Super populum" + } + ], + "2025-03-30": [ + { + "body": "*Isa 66:10-11*\nRejoice, O Jerusalem, and come together, all you who love her: rejoice with joy, you who have been in sor", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we who justly suffer for our sins may find relief in the help of Your grace.\nT", + "id": "Oratio" + }, + { + "body": "Lesson from the Epistle of St. Paul to the Galatians\n*Gal 4:22-31*\nBrethren: It is written that Abraham had two sons, th", + "id": "Lectio" + }, + { + "body": "*Ps 121: 1, 7*\nI rejoiced because they said to me, We will go up to the house of the Lord.\n℣. May peace be within your w", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 6:1-15*\nAt that time, Jesus went away to the other side of the s", + "id": "Evangelium" + }, + { + "body": "*Ps 134:3, 6*\nPraise the Lord, for He is good; sing praise to His Name, for He is sweet; all that He wills He does in he", + "id": "Offertorium" + }, + { + "body": "Look with favor, we beseech You, O Lord, upon the offerings here before You, that they may be beneficial for our devotio", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 121:3-4*\nJerusalem, built as a city, with compact unity: to it the tribes go up, the tribes of the Lord, to give tha", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, merciful God, that we may treat with sincere reverence, and consume with heartfelt faith Your sac", + "id": "Postcommunio" + } + ], + "2025-03-31": [ + { + "body": "*Ps 53:3-4*\nO God, by your Name save me, and by your might deliver me, O God, hear my prayer; hearken to the words of my", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we who devoutly keep the sacred observances year by year, may be pleasing to Y", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Kings\n*3 Kings 3:16-28*\nIn those days, there came two women who were harlots, to king Solomon, a", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nBe my rock of refuge, O God, a stronghold to give me safety.\n*Ps 70:1*\n℣. In You, O God, I take refuge; O Lord", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 2:13-25*\nAt that time, the Passover of the Jews was at hand, and", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1-2*\nSing joyfully to God, all you lands; serve the Lord with gladness; come before Him with joyful song: for the", + "id": "Offertorium" + }, + { + "body": "May this sacrifice that we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 18:13-14*\nCleanse me from my unknown faults, O Lord! From wanton sin especially, restrain Your servant.", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You, that as we have partaken of Your saving sacraments, we may make progress toward our everlasting ", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGenerously heed our entreaty, O Lord, we beseech You, and g", + "id": "Super populum" + } + ], + "2025-04-01": [ + { + "body": "*Ps 54:2-3*\nHearken, O God, to my prayer; turn not away from my pleading; give heed to me, and answer me.\n*Ps 54:3-4*\nI ", + "id": "Introitus" + }, + { + "body": "May the sacred practice of fasting, we beseech You, O Lord, win for us increased holiness of life and the continuing hel", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Exodus\n*Ex 32:7-14*\nIn those days, the Lord said to Moses, Go down from the mountain to your peo", + "id": "Lectio" + }, + { + "body": "*Ps 43:26, 2*\nArise, O Lord, help us! Redeem us for Your Name’s sake.\n℣. O God, our ears have heard, our fathers have de", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 7:14-31*\nAt that time, when the feast was already half over, Jes", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2-4*\nI have waited, waited for the Lord, and He stooped toward me and heard my cry. And He put a new song into my", + "id": "Offertorium" + }, + { + "body": "May this offering, O Lord, we beseech You, wipe away our sins, and make holy the minds and bodies of Your servants for c", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 19:6*\nMay we shout for joy at Your victory and raise the standards in the Name of the Lord our God.", + "id": "Communio" + }, + { + "body": "May the reception of this sacrament, O Lord, cleanse us from guilt and bring us to the kingdom of heaven.\nThrough our Lo", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nHave mercy on Your people, O Lord, and graciously grant the", + "id": "Super populum" + } + ], + "2025-04-02": [ + { + "body": "*Ezechiel 36:23-26*\nWhen I shall be sanctified in you, I will gather you from every land: and I will pour upon you clean", + "id": "Introitus" + }, + { + "body": "O God, Who graciously grant to the righteous the rewards of their merits, and to sinners forgiveness through fasting, ha", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Ezechiel\n*Ezech 36:23-28*\nThus says the Lord God: I will prove the holiness of My great Name", + "id": "LectioL1" + }, + { + "body": "*Ps 33:12, 6*\nCome, children, hear Me, I will teach you the fear of the Lord.\n℣. Look to Him that you may be radiant wit", + "id": "GradualeL1" + }, + { + "body": "Grant, we beseech You, almighty God, that we who are chastising the flesh by fasting, may rejoice in this holy practice,", + "id": "OratioL1" + }, + { + "body": "Lesson from the Prophecy of Isaias\n*Isa. 1:16-19*\nThus says the Lord God: Wash yourselves clean! Put away your misdeeds ", + "id": "Lectio" + }, + { + "body": "*Ps 32:12, 6*\nHappy the nation whose God is the Lord, the people whom He has chosen for His own inheritance.\n℣. By the w", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 9:1-38*\nAt that time, Jesus, passing by, saw a man blind from bi", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9, 20*\nBless the Lord our God, you peoples, loudly sound His praise; He has given life to my soul, and has not ", + "id": "Offertorium" + }, + { + "body": "We humbly entreat You, almighty God, that these sacrificial gifts may cleanse us from sin, for in this way You grant us ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Jn 9:11*\nThe Lord made clay of spittle, and anointed my eyes: and I went, and I washed, and I saw, and I have believed ", + "id": "Communio" + }, + { + "body": "May the sacrament we have received, O Lord, both fill us with spiritual nourishment and sustain us with bodily aid.\nThro", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay Your merciful ears be open, O Lord, to the prayers of t", + "id": "Super populum" + } + ], + "2025-04-03": [ + { + "body": "*Ps 104:3-4*\nRejoice, O hearts that seek the Lord! Look to the Lord, and be strengthened; seek His face evermore.\n*Ps 10", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we who are chastising the flesh by fasting, may rejoice in this holy practice ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Kings\n*4 Kings 4:25-38*\nIn those days, a Sunamite woman came to Eliseus to Mount Carmel: and whe", + "id": "Lectio" + }, + { + "body": "*Ps 73:20, 19, 22*\nLook, O Lord, to Your covenant; be not forever unmindful of the lives of Your afflicted ones.\n℣. Aris", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 7:11-16*\nAt that time, Jesus went into a city called Naim; and H", + "id": "Evangelium" + }, + { + "body": "*Ps 69:2-4*\nO Lord, make haste to help me. Let all those be put to shame who desire the ruin of Your servants.", + "id": "Offertorium" + }, + { + "body": "Cleanse us, O merciful God, so that the prayers of Your Church, which we bring You as a pleasing gift, may be even more ", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nO Lord, I will tell of Your singular justice. O God, You have taught me from my youth; and now that I am o", + "id": "Communio" + }, + { + "body": "O Lord, we beseech you, do not allow the heavenly gifts, which You have given for healing Your faithful people, to becom", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO God, teacher and ruler of Your people, drive out the sins", + "id": "Super populum" + } + ], + "2025-04-04": [ + { + "body": "*Ps 18:15*\nLet the thought of my heart find favor before You, O Lord, my Rock and my Redeemer.\n*Ps 18:2*\nThe heavens dec", + "id": "Introitus" + }, + { + "body": "O God, Who by your wondrous sacraments renew the world, grant that Your church may benefit from Your eternal decrees and", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Kings\n*3 Kings 17:17-24*\nIn those days, the son of the woman, the mistress of the house, fell si", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nIt is better to take refuge in the Lord rather than to trust in man.\n℣. It is better to take refuge in the ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 11:1-45*\nAt that time, a certain man was sick, Lazarus of Bethan", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28, 32*\nLowly people You save, O Lord, but haughty eyes You bring low; for who is God except You, O Lord?", + "id": "Offertorium" + }, + { + "body": "May the gifts we offer, O Lord, cleanse us, we beseech You, that You may be always merciful to us.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Jn 11:33, 35, 43-44, 39*\nThe Lord, seeing the sisters of Lazarus weeping at the tomb, wept before the Jews, and cried o", + "id": "Communio" + }, + { + "body": "May the reception of this sacrament, we beseech You, O Lord, always free us from sin and protect us from all that works ", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant us, we beseech You, almighty God, that, conscious of ", + "id": "Super populum" + } + ], + "2025-04-05": [ + { + "body": "*Isa 55:1*\nAll you who thirst, come to the waters, says the Lord: and you who have no money, come and drink with joy.\n*P", + "id": "Introitus" + }, + { + "body": "Make fruitful, we beseech You, O Lord, the zeal of our fervent devotion; for only if it pleases You shall the fasting we", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Isaias\n*Isa 49:8-15*\nThus says the Lord: In a time of favor I answer you, on the day of salv", + "id": "Lectio" + }, + { + "body": "*Ps 9:14, 1-2.*\nOn You, O Lord, the unfortunate man depends; of the fatherless You are the helper.\n℣. Why, O Lord, do Yo", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 8:12-20*\nAt that time, Jesus spoke to the multitudes of the Jews", + "id": "Evangelium" + }, + { + "body": "*Ps 17:3*\nThe Lord is become my rock, my fortress, my deliverer; and in Him will I put my trust.", + "id": "Offertorium" + }, + { + "body": "Graciously accept our offerings, O Lord, we beseech You, and mercifully direct our still rebellious wills to You.\nThroug", + "id": "Secreta" + }, + { + "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*Ps 22:1-2*\nThe Lord is my Shepherd; I shall not want. In verdant pastures He gives me repose; beside restful waters He ", + "id": "Communio" + }, + { + "body": "May Your holy sacrament cleanse us, we beseech You, O Lord, and may its power make us pleasing to You.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO God, Who would rather show mercy than anger toward those ", + "id": "Super populum" + } + ], + "2025-04-06": [ + { + "body": "*Ps 42:1-2*\nDo me justice, O God, and fight my fight against a faithless people; from the deceitful and impious man resc", + "id": "Introitus" + }, + { + "body": "Look graciously upon Your household, almighty God, we beseech You, that by Your grace we may be governed in body, and by", + "id": "Oratio" + }, + { + "body": "Reading from the letter of St. Paul to the Hebrews\n*Heb 9:11-15.*\nBrethren: When Christ appeared as high priest of the g", + "id": "Lectio" + }, + { + "body": "*Ps 142:9-10.*\nRescue me from my enemies, O Lord; teach me to do Your will.\n*Ps 17:48-49*\nO Lord, my deliverer from the ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 8:46-59.*\nAt that time, Jesus said to the crowds of the Jews: Wh", + "id": "Evangelium" + }, + { + "body": "*Ps 118:17, 107*\nI praise You, O Lord, with all my heart; be good to Your servant, that I may live and keep Your words. ", + "id": "Offertorium" + }, + { + "body": "May these offerings, we beseech You, O Lord, loose the bonds of our wickedness, and obtain for us the gifts of Your merc", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*1 Cor. 11:24-25*\nThis is My Body, which shall be given up for you: this is the cup of the new covenant in My Blood, say", + "id": "Communio" + }, + { + "body": "Stand by us, O Lord our God, and protect by Your everlasting help those to whom You have given new strength through Your", + "id": "Postcommunio" + } + ], + "2025-04-07": [ + { + "body": "*Ps 55:2*\nHave pity on me, O Lord, for men trample upon me; all the day they press their attack against me.\n*Ps 55:3*\nMy", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, make holy our fasting, and graciously lavish upon us forgiveness for all our sins.\nThrough our L", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Jonas\n*Jonas 3:1-10*\nIn those days, the word of the Lord came to Jona a second time: Set out", + "id": "Lectio" + }, + { + "body": "*Ps 53:4, 3*\nO God, hear my prayer; hearken to the words of my mouth.\n℣. O God, by Your Name save me, and by your might ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 7:32-39*\nAt that time, the rulers and Pharisees sent attendants ", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nReturn, O Lord, save my life; rescue me because of Your kindness.", + "id": "Offertorium" + }, + { + "body": "Grant us, O Lord our God, that this saving sacrifice may cleanse us of our sins and gain us the favor of Your majesty.\nT", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 23:10*\nThe Lord of Hosts, He is the King of Glory.", + "id": "Communio" + }, + { + "body": "May the sacrament of salvation which we have received, we beseech You, O Lord, cleanse and restore us.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO Lord, we beseech You, grant unto Your people health of so", + "id": "Super populum" + } + ], + "2025-04-08": [ + { + "body": "*Ps 26:14*\nWait for the Lord with courage; be stouthearted, and wait for the Lord.\n*Ps 26:1*\nThe Lord is my light and my", + "id": "Introitus" + }, + { + "body": "May our fasting be acceptable to You, we beseech You, O Lord; may it be atonement for our sins, make us worthy of Your g", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Daniel\n*Dan 14:27-42*\nIn those days, the Babylonians went to the king and demanded: Hand ove", + "id": "Lectio" + }, + { + "body": "*Ps 42:1, 3*\nFight my fight, O Lord; from the deceitful and impious man rescue me.\n℣. Send forth Your light and Your fid", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 7:1-13*\nAt that time, Jesus went about in Galilee, for He did no", + "id": "Evangelium" + }, + { + "body": "*Ps 9:11-13*\nThey trust in You who cherish your Name, O Lord, for You forsake not those who seek You. Sing praise to the", + "id": "Offertorium" + }, + { + "body": "O Lord, we bring You the gifts for sacrifice, as tokens of consolation in this life, so that we may not despair of Your ", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 24:22*\nRedeem me, O God of Israel, from all my distress.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, almighty God that by constantly performing these holy acts, we may be worthy to come closer to", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO Lord, we beseech You, make us always obedient servants of", + "id": "Super populum" + } + ], + "2025-04-09": [ + { + "body": "*Ps 17:48-49*\nMy deliverer from the angry nations; truly above my adversaries You exalt me and from the violent man You ", + "id": "Introitus" + }, + { + "body": "In Your mercy, O Lord, may this hallowing fast enlighten the hearts of Your faithful people, and since You have given th", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Leviticus\n*Lev 19:1-2, 11-19, 25*\nIn those days, the Lord said to Moses, Speak to the whole Isra", + "id": "Lectio" + }, + { + "body": "*Ps 29:2-4*\nI will extol You, O Lord, for You drew me clear and did not let my enemies rejoice over me.\n℣. O Lord, my Go", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 10:22-38*\nAt that time, there took place at Jerusalem the feast ", + "id": "Evangelium" + }, + { + "body": "*Ps 58:2*\nRescue me from my enemies, O my God; from my adversaries defend me, O Lord.", + "id": "Offertorium" + }, + { + "body": "O merciful God, permit us to offer in sincere submission the gift of satisfaction and praise.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 25:6-7*\nI wash my hands in innocence, and I go around Your altar, O Lord, giving voice to my thanks, and recounting ", + "id": "Communio" + }, + { + "body": "We who have shared in the blessing of the heavenly gift humbly pray You, almighty God, that it may be for us the source ", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nComply with our humble prayers, almighty God, and graciousl", + "id": "Super populum" + } + ], + "2025-04-10": [ + { + "body": "*Dan 3:31*\nAll that You have done to us, O Lord, You have done in true judgment: because we have sinned against You, and", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that the dignity of human nature, weakened by excessive self-indulgence, may be res", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Daniel\n*Dan 3:25, 34-45.*\nIn those days, Azaria prayed to the Lord, saying: O Lord, our God,", + "id": "Lectio" + }, + { + "body": "*Ps 95:8-9*\nBring gifts and enter His courts; worship the Lord in His holy court.\n*Ps 28:9*\nThe Lord strips the forests,", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 7:36-50*\nAt that time, one of the Pharisees asked Jesus to dine ", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nBy the streams of Babylon we sat and wept when we remembered Sion.", + "id": "Offertorium" + }, + { + "body": "O Lord, our God, Who have especially commanded that these created things, which You have fashioned for the support of ou", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nRemember Your word to Your servant, O Lord, since You have given me hope. This is my comfort in my afflic", + "id": "Communio" + }, + { + "body": "May we receive with pure mind, O Lord, what we have taken by mouth, and as a gift in time, may it become for us a remedy", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nBe merciful to Your people, we beseech You, O Lord, that as", + "id": "Super populum" + } + ], + "2025-04-11": [ + { + "body": "*Ps 30:10, 16, 18*\nHave pity on me, O Lord, for I am in distress; rescue me from the clutches of my enemies and my perse", + "id": "Introitus" + }, + { + "body": "Graciously pour forth Your grace into our hearts, we beseech You, O Lord, that, keeping our sinful inclinations under co", + "id": "Oratio" + }, + { + "body": "*For Our Lady of the Seven Sorrows*\nO God, in Whose Passion the sword, according to the prophecy of blessed Simeon, pier", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from Jeremiah the Prophet\n*Jer 17:13-18*\nIn those days, Jeremia said: O Lord, all who forsake You shall be in dis", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nMy enemies spoke peaceably to me: and in anger they afflicted me.\n℣. You, O Lord, have seen; be not silen", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to\n*John 11:47-54*\nAt that time, the chief priests and Pharisees gathered toge", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBlessed are You, O Lord; teach me Your statutes. Let not the proud oppress me; so shall I have an a", + "id": "Offertorium" + }, + { + "body": "Grant us, O merciful God, that we may ever have the grace to serve Your altars worthily, and may we be saved by constant", + "id": "Secreta" + }, + { + "body": "*For the Seven Sorrows*\nO Lord Jesus Christ, we offer You prayers and sacrificial gifts, humbly beseeching You that, as ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nGive me not up, O Lord, to the wishes of my foes; for false witnesses have risen up against me, and such as b", + "id": "Communio" + }, + { + "body": "May the abiding protection of the sacrament we have received, O Lord, never forsake us, and always keep us from all thin", + "id": "Postcommunio" + }, + { + "body": "*For the Seven Sorrows*\nO Lord Jesus Christ, may the sacrifices of which we have partaken, while devoutly celebrating th", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant, we beseech You, almighty God, that we who seek the g", + "id": "Super populum" + } + ], + "2025-04-12": [ + { + "body": "*Ps 30:10, 16, 18*\nHave pity on me, O Lord, for I am in distress; rescue me from the clutches of my enemies and my perse", + "id": "Introitus" + }, + { + "body": "O Lord, may the people dedicated to You desire to serve You more and more, that, taught by these sacred rites, they may ", + "id": "Oratio" + }, + { + "body": "Lesson from the Prophecy of Jeremias\n*Jer 18:18-23*\nIn those days, the wicked Jews said to one another, Come, let us con", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nMy enemies spoke peaceably to me: and in anger they afflicted me.\n℣. You, O Lord, have seen; be not silen", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 12:10-36*\nAt that time, the chief priests planned to put Lazarus", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBlessed are You, O Lord; teach me Your statutes. Let not the proud oppress me; so shall I have an a", + "id": "Offertorium" + }, + { + "body": "Be propitiated, we beg You, O Lord, and pardon all our offenses, whom You grant to be sharers in so great a mystery.\nThr", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nGive me not up, O Lord, to the wishes of my foes; for false witnesses have risen up against me, and such as b", + "id": "Communio" + }, + { + "body": "O Lord, our God, we beseech You, that we who have been filled with the riches of Your divine gift may always find life w", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLet Your right hand, we beseech You, O Lord, guard Your peo", + "id": "Super populum" + } + ], + "2025-04-13": [ + { + "body": "*The Celebrant in red cope, with his ministers also vested in red, the red of royaltriumph, proceeds to the Blessing", + "id": "Benedictio Palmorum" + }, + { + "body": "*The celebrant distributes the palms, first to the clergy, then to the faithful. Meanwhile the choir sings*\n", + "id": "De distributione ramorum" + }, + { + "body": "*When the palms have been distributed the deacon puts the gospel book on the altar and the priest puts incense into the ", + "id": "De lectione Evangelica" + }, + { + "body": "*The procession now takes place. When the priest places incense in the thurible, the deacon, turning toward the people,", + "id": "De processione cum ramis benedictis" + }, + { + "body": "\n*Choir:*\nGlory, praise and honor to Thee, O King Christ, the Redeemer: to whom children poured their glad and sweet hos", + "id": "Hymnus ad Christum Regem" + }, + { + "body": "*Ps 21:20, 22*\nO Lord, be not far from me; O my help, hasten to aid me. Save me from the lion's mouth; form the horns of", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, Who, to provide mankind an example of humility for it to imitate, willed that the Saviour should ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul to the Philippians\n*Phil 2:5-11*\nBrethren: Have this in mind in you which was also in", + "id": "Lectio" + }, + { + "body": "*Ps 72:24, 1-3*\nYou have hold of my right hand; with Your counsel You guide me; and in the end You will receive me in gl", + "id": "Graduale" + }, + { + "body": "The Passion of Our Lord Jesus Christ according to Matthew.\n*Matt. 26:36-75; 27:1-60.*\nThen Jesus came with them into a c", + "id": "Evangelium" + }, + { + "body": "*Ps 68:21-22*\nInsult has broken my heart, and I am weak; I looked for sympathy, but there was none; for comforters, and ", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Matt 26:42*\nFather, if this cup cannot pass away, unless I drink it, Your will be done.", + "id": "Communio" + }, + { + "body": "By the working of this sacred rite, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", + "id": "Postcommunio" + } + ], + "2025-04-14": [ + { + "body": "*Ps 34:1-2*\nJudge thou, O Lord, them that wrong me : overthrow them that fight against me. Take hold of arms and shield ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, almighty God, that we who fail through our weakness in so many difficulties, may be relieved thr", + "id": "Oratio" + }, + { + "body": "Lesson from the Book of Isaias, the Prophet\n*Isa 50:5-10*\nThe Lord God hath opened my ear, and I do not resist: I have n", + "id": "Lectio" + }, + { + "body": "*Ps 34:23; 34:3*\nArise, and be attentive to my judgment : to my cause, my God, and my Lord.\n℣. Bring out the sword, and ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to John\n*John 12:1-9*\nJesus therefore, six days before the pasch, came to Beth", + "id": "Evangelium" + }, + { + "body": "*Ps 142:9-10*\nDeliver me from my enemies, O Lord, to thee have I fled: teach me to do thy will, for thou art my God.", + "id": "Offertorium" + }, + { + "body": "May these sacrifices, almighty God, make us, whom thou cleansest by thy mighty power, to approach their source with grea", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 34:26*\nLet them blush: and be ashamed together, who rejoice at my evils. Let them be clothed with confusion and sham", + "id": "Communio" + }, + { + "body": "Let thy holy mysteries, O Lord, inspire us with divine fervor, that we may delight both in their celebration and in thei", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nHelp us, O God, our Saviour, and grant that we may draw nig", + "id": "Super populum" + } + ], + "2025-04-15": [ + { + "body": "*Gal 6:14.*\nBut God forbid that I should glory, save in the cross of our Lord Jesus Christ; by whom the world is crucifi", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, grant us so to celebrate the mysteries of our Lord's Passion, that we may deserve to obtain fo", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Jeremias the Prophet.\n*Jer 11:18-20*\nBut thou, O Lord, hast shewn me, and I have known: then tho", + "id": "Lectio" + }, + { + "body": "*Ps 34:13; 34:1-2*\nBut as for me, when they were troublesome to me, I was clothed with haircloth. I humbled my soul with", + "id": "Graduale" + }, + { + "body": "\n\n \nPassion of our Lord Jesus Christ, according to Mark\n\n*Mark 14:32-72; 15, 1-46*\n\nAnd they came to a farm called Geths", + "id": "Evangelium" + }, + { + "body": "*Ps 139:5*\nKeep me, O Lord, from the hand of the wicked: and from unjust men deliver me.", + "id": "Offertorium" + }, + { + "body": "May these sacrifices, we beseech thee, O Lord, which are observed along with health-giving fasts, speedily restore us.\nT", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 68:13-14*\nThey that sat in the gate spoke against me: and they that drank wine made me their song. But as for me, my", + "id": "Communio" + }, + { + "body": "By thy holy mysteries, almighty God, may our vices be cured, and everlasting healing be granted to us.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay thy mercy, O God, cleanse us from all traces of our old", + "id": "Super populum" + } + ], + "2025-04-16": [ + { + "body": "*Phil 2:10; 2:8; 2:11*\nThat in the name of Jesus every knee should bow, of those that are in heaven, on earth, and under", + "id": "Introitus" + }, + { + "body": "Grant we beseech thee Almighty God, that we who are continually afflicted by reason of our waywardness, may be delivered", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias the Prophet\n*Isa 63:1-7*\nThus sayeth the Lord God: telleth the daughter of Sion: Behold t", + "id": "LectioL1" + }, + { + "body": "*Ps 68:18; 68:2-3*\nAnd turn not away thy face from thy servant: for I am in trouble, hear me speedily.\n℣. Save me, O God", + "id": "GradualeL1" + }, + { + "body": "O God, who to drive far from us the power of the enemy, didst will that thy Son should suffer for us on the gibbet of th", + "id": "OratioL1" + }, + { + "body": "Lesson from the book of Isaias the Prophet\n*Isa 53:1-12*\nWho hath believed our report? and to whom is the arm of the Lor", + "id": "Lectio" + }, + { + "body": "*Ps. 101:2-5,14*\nHear, O Lord, my prayer: and let my cry come to thee.\n℣. Turn not away thy face from me: in the day whe", + "id": "Graduale" + }, + { + "body": "\n\n \nThe Passion of Our Lord Jesus Christ according to Luke.\n\n*Luc 22:39-71; 23:1-53*\n\n\nAt that time, going out, Jesus we", + "id": "Evangelium" + }, + { + "body": "*Ps 101:2-3*\nHear, O Lord, my prayer: and let my cry come to thee. Turn not away thy face from me.", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech thee, O Lord, the gift we offer; and graciously effect, that what we celebrate in mystery of the Pass", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Ps 101:13; 101:14*\nI mingled my drink with weeping: for having lifted me up, tho hast thrown me down, and I am withered", + "id": "Communio" + }, + { + "body": "Grant to us, almighty God, to feel that through the temporal death of thy Son which these venerable mysteries testify, w", + "id": "Postcommunio" + }, + { + "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLook down we beseech thee, O Lord, on this thy family on wh", + "id": "Super populum" + } + ], + "2025-04-17": [ + { + "body": "*Gal 6:14.*\nBut it behooves us to glory in the cross of Our Lord Jesus Christ: in Whom is our salvation, life, and resur", + "id": "Introitus" + }, + { + "body": "O God, from whom Judas received the punishment of his guilt, and the thief the reward of his confession: grant unto us t", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of blessed Paul the Apostle to the Corinthians\n*1 Cor 11:20-32.*\nBrethren, When you come th", + "id": "Lectio" + }, + { + "body": "*Phil 2:8-9*\nChrist became obedient for us unto death, even to the death of the cross.\n℣. For which cause God also exalt", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the holy Gospel according to John\n*Joann 13:1-15*\nBefore the festival-day of the Pasch, Jesus knowing ", + "id": "Evangelium" + }, + { + "body": "*The washing of the feet takes place after the homily, though it may be done at some other time to-day. The celebrant gi", + "id": "Maundi" + }, + { + "body": "*Ps 117:16 et 17.*\nThe right hand of the Lord hath wrought strength: the right hand of the Lord hath exalted me. I shall", + "id": "Offertorium" + }, + { + "body": "We beseech Thee, O holy Lord, Father almighty, everlasting God, that He Himself may render our Sacrifice acceptable to T", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "Communicating and celebrating the most sacred day in which our Lord Jesus Christ was betrayed for us: and also honoring ", + "id": "Communicantes" + }, + { + "body": "*Joann 13:12, 13 et*\nThe Lord Jesus, after He had supped with His disciples, washed their feet, and said to them: Know y", + "id": "Communio" + }, + { + "body": "Strengthened with life-giving Food, we beseech Thee, O Lord, our God, that what we do in our mortal life may bring us to", + "id": "Postcommunio" + }, + { + "body": "*Po skończeniu Mszy św. kapłan zmienia ornat na kapę i okadziwszy Najświętszy Sakrament przenosi Go w uroczystej procesj", + "id": "Post Missam" + }, + { + "body": "\n*On the returning from the Altar of Repose the Celebrant and his assistants go to the Sacristy where white vestmen", + "id": "Denudatione altaris" + } + ], + "2025-04-18": [ + { + "body": "\n*The sacred ministers, wearing black stoles, come to the altar, lie prostrate before it, and pray silently for a few mo", + "id": "Lectiones" + }, + { + "body": "*The Deacons of the Passion then kneel and bow low before the celebrant, who pronounces in a clear voice:*\n\nP. May the L", + "id": "Passio" + }, + { + "body": "*While the Sacred Ministers put on black vestments, two acolytes spread a cloth on the altar and place the Missal in the", + "id": "Oratio Fidelium" + }, + { + "body": "\n*After these Collects, the Ministers lay aside their cope and chasubles and stand at the sedilia. The Deacon goes with", + "id": "Crucis Adoratione" + }, + { + "body": "*At the High Altar the Deacon places the Ciborium on a corporal, and the Celebrant and Subdeacon with double genuflectio", + "id": "CommunioQ" + } + ], + "2025-04-19": [ + { + "body": "*At the appointed hour, the altar is prepared, but candles are not lit until the beginning of Mass. Meanwhile, fire is s", + "id": "Benedictio ignis" + }, + { + "body": "*One of the ministers carries the paschal candle and stands in front of the celebrant, who inscribes a cross between the", + "id": "De benedictione cerei Paschalis" + }, + { + "body": "*Celebrant puts incense in the thurible. The Deacon takes off*\n*violet vestments and he puts white stole and the dalmati", + "id": "De solemni processione" + }, + { + "body": "*The deacon receives the book and asks for the blessing*\n\nSir, give me Thy blessing.\n\n*Celebrant responses*\n\nC. May the ", + "id": "De praeconio paschali" + }, + { + "body": "*The deacon, at the sedilia or some other appropriate place, lays aside his white vestments and again vests in violet. T", + "id": "De lectionibus" + }, + { + "body": "*After the prayer concluding the fourth reading, all kneel, and the Litany of the Saints is sung, up to the invocation '", + "id": "De prima parte Litaniarum" + }, + { + "body": "℣. The Lord be with you.\n℟. And with thy spirit.\nLet us pray\nAlmighty and everlasting God, be present at these Mysteries", + "id": "De benedictione aquae baptismalis" + }, + { + "body": "\n*The celebrant Then he stands in front of the candle, facing the people, or from the ambo or pulpit, proceeds with the ", + "id": "De renovatione promissionum baptismatis" + }, + { + "body": "*After the renewal of baptismal promises, if there are cantors or clerics present to sing the litany, the celebrant and ", + "id": "De altera parte Litaniarum" + }, + { + "body": "*At the end of the litany, the cantors solemnly intone the 'Kyrie, eleison' as the celebrant and the sacred ministers or", + "id": "De Missa solemni Vigiliae paschalis" + }, + { + "body": "℣. The Lord be with you.\n℟. And with thy spirit.\nLet us pray\nO God, who dost illuminate this most holy night by the glor", + "id": "Oratio" + }, + { + "body": "Lesson from the Epistle of Blessed Paul the Apostle to the Colossians.\n*Col 3:1-4*\nBrethren, if you be risen with Christ", + "id": "Lectio" + }, + { + "body": "*Ps 116*\n℣. O praise the Lord, all ye nations, and praise Him all ye people.\n℣. For His mercy is confirmed upon us: and ", + "id": "Tractus" + }, + { + "body": "*While singing the Gospel candles are not being hold.*\n\nContinuation of the holy Gospel according to St. Matthew.\n*Matt ", + "id": "Evangelium" + }, + { + "body": "Accept, we beseech Thee, O Lord, the prayers of Thy people together with the sacrifice they offer: that what has begun b", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*The choir begins singing the office of Lauds upon completion of the ablutions.*\n\n\nAnt. Alleluia, alleluia, alleluia.\n\n*", + "id": "Pro Laudibus" + }, + { + "body": "℣. The Lord be with you.\n℟. And with thy spirit.\nLet us pray\nPour forth upon us, O Lord, the spirit of Thy love: that th", + "id": "Postcommunio" + }, + { + "body": "℣. Go, the Mass is offered, alleluia, alleluia.\n℟. Thanks be to God, alleluia, alleluia.", + "id": "Conclusio" + } + ], + "2025-04-20": [ + { + "body": "*Ps 138:18; 138:5-6*\nI arose, and am still with Thee, alleluia; Thou hast laid Thy hand upon me, alleluia; Thy knowledge", + "id": "Introitus" + }, + { + "body": "O God, who, on this day, through Thine only-begotten Son, hast conquered death, and thrown open to us the gate of everla", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor 5:7-8*\nBrethren, purge out the old leaven", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia\n*Ps. 117:24; 117:1*\nThis is the day which the Lord hath made: let us rejoice and be glad in it.\n℣. Gi", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:1-7*\nAt that time, Mary Magdalen, and Mary the mother of Ja", + "id": "Evangelium" + }, + { + "body": "*Ps. 75:9-10.*\nThe earth trembled and was still when God arose in judgment, alleluia.", + "id": "Offertorium" + }, + { + "body": "We beseech Thee, O Lord, accept the prayers of Thy people together with the Sacrifice they offer, that what has been beg", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*1 Cor 5:7-8*\nChrist our Pasch is immolated, alleluia: therefore let us feast with the unleavened bread of sincerity and", + "id": "Communio" + }, + { + "body": "Pour forth upon us, O Lord, the spirit of Thy love, that, by Thy loving kindness, Thou mayest make to be of one mind tho", + "id": "Postcommunio" + } + ], + "2025-04-21": [ + { + "body": "*Exod 13:5; 13:9*\nAnd when the Lord shall have brought thee a land that floweth with milk and honey, alleluia; and that ", + "id": "Introitus" + }, + { + "body": "O God, Who dost heal the sick world by the solemn gladness of the Passover, continue, we beseech thee, to pour forth thi", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 10:37-43.*\nIn those days Peter standing among the people, said: You know the word", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:2.*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n℣. Let Israel now say,", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 24:13-35*\nIn that time two of them went, the same day, to a to", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAn angel of the Lord descended from heaven, and said to the women: Jesus, whom you seek He is not he", + "id": "Offertorium" + }, + { + "body": "Adept, O Lord we beseech thee, the prayers with the sacrifices of the people, and grant that what we have begun at these", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Luke 24:34*\nThe Lord is risen indeed, and hath appeared to Simon.", + "id": "Communio" + }, + { + "body": "Pour forth upon us, O Lord, the spirit of Thy love, that, by Thy loving kindness, Thou mayest make to be of one mind tho", + "id": "Postcommunio" + } + ], + "2025-04-22": [ + { + "body": "*Sir 15:3-4*\nHe gave them the water of wholesome wisdom to drink, alleluia; and it shall be made strong in him, and shal", + "id": "Introitus" + }, + { + "body": "O God, Who art ever multiplying the Children of thy Church, grant unto the same thy servants that they may lead the rest", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 13:16; 13:26-33*\nIn that time Paul rising up, and with his hand bespeaking silenc", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia\n*Ps 117:24;*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n*Ps 106:2*", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 24:36-47*\nIn that time Jesus stood in the midst of them, and s", + "id": "Evangelium" + }, + { + "body": "*Ps 17:14; 17:16*\nAnd the Lord thundered from heaven, and the highest gave his voice: Then the fountains of waters appe", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the prayers and the sacrifice of thy faithful; that by these services of pious devotion, we may come to ", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Col 3:1-2*\nIf you be risen with Christ, seek the things that are above; where Christ is sitting at the right hand of Go", + "id": "Communio" + }, + { + "body": "Grant, we beseech thee, Almighty God, that the grace of paschal sacrament which we have received may ever abide in our s", + "id": "Postcommunio" + } + ], + "2025-04-23": [ + { + "body": "*Matt 25:34*\nCome, ye blessed of my Father, possess you the kingdom alleluia, prepared for you from the foundation of th", + "id": "Introitus" + }, + { + "body": "O God, Who gledden us with the annual solemnity of the Lord's Resurrection, mercifully grant that by celebrating these t", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 3:13-15; 3:17-19*\nIn that time, Peter opened his mouth and said: Men of Israel, a", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:16*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n℣. The right hand of t", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 21:1-14*\nIn that time, Jesus shewed himself again to the disci", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nAnd he had opened the doors of heaven, and had given them the bread of heaven. Man ate the bread of angel", + "id": "Offertorium" + }, + { + "body": "Amidst the joys of Easter, we offer unto thee, O Lord, the sacrifice wherewith thy Church is wonderfully fed and nourish", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Rom 6:9*\nChrist rising again from the dead, dieth now no more, death shall no more have dominion over him, allelúja, al", + "id": "Communio" + }, + { + "body": "O Lord, we beseech Thee, that we, reverently receiving thy Sacrament, may be cleansed from all our former defilement, an", + "id": "Postcommunio" + } + ], + "2025-04-24": [ + { + "body": "*Wis 10:20-21*\nThey sung to thy holy name, O Lord, and they praised with one accord thy victorious hand, alleluia. For w", + "id": "Introitus" + }, + { + "body": "O God, Who dost make all nations, how diverse soever they be, to become one family in giving of praise to thy Name, gran", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 8:26-40*\nIn that time, an angel of the Lord spoke to Philip, saying: Arise, go to", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:22-23.*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n℣. The stone which", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20:11-18*\nIn that time: Mary stood at the sepulchre without, w", + "id": "Evangelium" + }, + { + "body": "*Exod 13:5*\nIn the day of your solemnity, said the Lord, I will bring you into a land that floweth with milk and honey, ", + "id": "Offertorium" + }, + { + "body": "Graciously receive, we beseech thee, O Lord, the offering of thy people, and grant that they who are renewed by baptism ", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*1 Pet 2:9*\nBut you are a chosen generation, a kingly priesthood, a holy nation, a purchased people: that you may declar", + "id": "Communio" + }, + { + "body": "O Lord, hear our prayers; that the holy channels of our redemption may obtain us help in this our present life, and secu", + "id": "Postcommunio" + } + ], + "2025-04-25": [ + { + "body": "*Ps 77:53*\nAnd he brought them out in hope, and they feared not: and the sea overwhelmed their enemies, allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, in the Easter sacrament thou instituted the covenant, whereby thou forgavest mankind; grant to", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 3:18-22*\nBeloved: Christ also died once for our sins, the j", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:26-27*\nThis is the day which the Lord hath made: let us be glad and rejoice therein. Blessed be he that ", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 28:16-20*\nIn that time: the eleven disciples went into Gal", + "id": "Evangelium" + }, + { + "body": "*Exod 12:14*\nAnd this day shall be for a memorial to you: and you shall keep it a feast to the Lord in your generations ", + "id": "Offertorium" + }, + { + "body": "In thy forgiving mercy, O Lord we pray, accept the sacrifice which we offer, to atone for the sins of those who are born", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 28:18-19*\nAll power is given to me in heaven and in earth. Going therefore, teach ye all nations; baptizing them i", + "id": "Communio" + }, + { + "body": "O Lord, we beseech thee, behold thy people, and as thou hast decided to quicken them with the mysteries of eternity, mer", + "id": "Postcommunio" + } + ], + "2025-04-26": [ + { + "body": "*Ps 104:43*\nHe brought forth his people with joy, and his chosen with gladness, allelúja, allelúja.\n*Ps 4:1*\nGive glory ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, O Almighty God, that we who have kept worshipfully the Easter solemnities, may at last worthily ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:1-10*\nBeloved: Wherefore laying away all malice, and all ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia\n*Ps 117:24*\nThis is the day the Lord has made; let us be glad and rejoice in it. Allelúja,\n*Ps 112:1*", + "id": "Graduale" + }, + { + "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20:1-9*\nIn that time, on the first day of the week, Mary Magda", + "id": "Evangelium" + }, + { + "body": "*Ps 117:26-27*\nBlessed be he that cometh in the name of the Lord. We have blessed you out of the house of the Lord. The ", + "id": "Offertorium" + }, + { + "body": "Grant us O Lord, we beseech thee, ever to rejoyce in these Paschal mysteries, that, by the continual application of our ", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Gal 3:27*\nFor as many of you as have been baptized in Christ, have put on Christ, allelúja.", + "id": "Communio" + }, + { + "body": "Invigorated by the gift of redemption, we beseech thee, O Lord, that by this means of eternal salvation, the true faith ", + "id": "Postcommunio" + } + ], + "2025-04-27": [ + { + "body": "*1 Pet 2:2*\nAs newborn babes, alleluia, desire the rational milk without guile, alleluia, alleluia, alleluia.\n*Ps. 80. 2", + "id": "Introitus" + }, + { + "body": "Grant, we beseech Thee, almighty God, that we who have celebrated the Paschal Feast, may, by Thy bounty, retain its frui", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 5:4-10*\nDearly beloved, Whatsoever is born of God overcometh", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Matt 28:7*\n℣. On the day of My Resurrection, saith the Lord, I will go before you into Galilee. All", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20. 19-31*\nAt that time, when it was late that same day, the f", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAn Angel of the Lord descended from heaven, and said to the women; He whom you seek is risen, as He ", + "id": "Offertorium" + }, + { + "body": "Receive, we beseech Thee, O Lord, the gifts of Thine exultant Church: and to her whom Thou hast given cause for so great", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 20:27*\nPut in thy hand, and know the place of the nails, alleluia; and be not faithless, but believing, alleluia, ", + "id": "Communio" + }, + { + "body": "We beseech Thee, O Lord, our God, to make the most holy Mysteries which Thou hast given us as a defense of our renewal, ", + "id": "Postcommunio" + } + ], + "2025-04-28": [ + { + "body": "*Gal 2:19-20*\nWith Christ I am nailed to the cross. And I live, now not I; but Christ liveth in me. And that I live now ", + "id": "Introitus" + }, + { + "body": "Lord Jesus Christ, Who didst gift thine holy servant Paul with great love that he might preach the mystery of thy cross,", + "id": "Oratio" + }, + { + "body": "*For St. Vitalis, Martyr*\nGrant we beseech the almighty God, that we who celebrate the martyrdom of blessed Vitalis, thr", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor 1:17-25.*\nBrothers: Christ sent me not to", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*2 Cor 5:15*\nAnd Christ died for all; that they also who live, may not now live to themselves, but un", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nIn that time: the Lord appointed also other seventy-tw", + "id": "Evangelium" + }, + { + "body": "*Eph 5:2*\nAnd walk in love, as Christ also hath loved us, and hath delivered himself for us, an oblation and a sacrifice", + "id": "Offertorium" + }, + { + "body": "May these mysteries of thy passion and death, O Lord, fill us with that heavenly fervor, with which St. Paul, when he of", + "id": "Secreta" + }, + { + "body": "*For St. Vitalis, Martyr*\nAs thou hast received our gifts and prayers, O Lord, cleanse us, we ask by thy heavenly myster", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*1 Pet 4:13*\nBut if you partake of the sufferings of Christ, rejoice that when his glory shall be revealed, you may also", + "id": "Communio" + }, + { + "body": "We have received, O Lord, the divine sacrament, which is a perpetual memorial, of thy boundless love; grant we pray, tha", + "id": "Postcommunio" + }, + { + "body": "*For St. Vitalis, Martyr*\nGrant, we pray, O Lord our God, that we who in time render joyful service in memory of thy sai", + "id": "Commemoratio Postcommunio" + } + ], + "2025-04-29": [ + { + "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", + "id": "Introitus" + }, + { + "body": "Grant us grace, we beseech thee, O Almighty God, to follow with zeal conformable thereto after the pattern of that great", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim 2:8-10; 3:10-12*\nBe mindful that the Lord Jesus ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints.", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:34-42*\nIn that time: Jesus said to his disciples: Do not", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", + "id": "Offertorium" + }, + { + "body": "Graciously regard, O Lord, the prayers we offer thee, through the intercession of blessed Peter, thy Martyr; and keep ev", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", + "id": "Communio" + }, + { + "body": "May the Sacrament, O Lord, which we, the faithful people have received, hold us in safe keeping, and through the interce", + "id": "Postcommunio" + } + ], + "2025-04-30": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "Hear us, O God, our Saviour, that as we are gladdened by the festival of blessed N. thy virgin, so we may learn from it ", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "Allelúia, allelúja\n*Ps 44:15-16*\nAfter her shall virgins be brought to the king: They shall be brought with gladness and", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the service of thy holy people be acceptable to Thee, O Lord, and honorable to thy saints, through whose merits we k", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "Thou hast fed thy servants, O Lord, with the holy gifts; comfort us ever we pray, by her intercession whose festival we ", + "id": "Postcommunio" + } + ], + "2025-05-01": [ + { + "body": "*Sap. 10:17*\nWisdom rendered to the just the wages of their labors, and conducted them in a wonderful way: and she was t", + "id": "Introitus" + }, + { + "body": "O God, Creator of all things, Who dost impose on man the law of work; grant in Thy goodness that, by the example and pat", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul to the Colossians\n*Col. 3:14-15, 17, 23-24*\nBrethren: Have charity, which is the bond", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\nIn whatever tribulation they shall cry to me, I will hear them and be their protector always. Allelú", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:54-58*\nAt that time: Jesus coming into His country, He t", + "id": "Evangelium" + }, + { + "body": "*Ps 89:17*\nLet the brightness of the Lord our God be upon us: and direct Thou the works of our hands over us; yea, the w", + "id": "Offertorium" + }, + { + "body": "May these gifts, the work of our hands, that we offer Thee in sacrifice, O Lord, become for us, by the intercession of b", + "id": "Secreta" + }, + { + "body": "*St. Joseph*\nIt is truly meet and just, right and for our salvation, that we should at all times and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Matt 13:54-55*\nHow came this Man by this wisdom and miracles? Is not this the carpenter's Son? Is not His mother called", + "id": "Communio" + }, + { + "body": "May these holy mysteries which we have received, O Lord, by the intercession of blessed Joseph, supply what is wanting i", + "id": "Postcommunio" + } + ], + "2025-05-02": [ + { + "body": "*Ecclus 15:5.*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and u", + "id": "Introitus" + }, + { + "body": "Hear, we beseech You, O Lord, our prayers which we offer You on the feast of blessed Athanasius, Your Bishop and Confess", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 4:5-14*\nBrethren: We preach not ourselv", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps. 109:4.*\n℣. You are a priest forever, according to the order of Melchisedec. Alleluia.\n*Jas 1:12", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:23-28*\nAt that time, Jesus said to His disciples, When t", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, that the yearly feast of Saint Athanasius, Your Confessor, make us pleasing to You; that the rit", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 10:27*\nWhat I tell you in darkness, speak it in the light, says the Lord; and what you hear whispered, preach it o", + "id": "Communio" + }, + { + "body": "O God, the rewarder of faithful souls, grant that we may obtain pardon through the prayers of blessed Athanasius, Your C", + "id": "Postcommunio" + } + ], + "2025-05-03": [ + { + "body": "*Sedelius*\nHail Holy Parent, who didst bring forth the King, who rules heaven and earth forever, allelúja, allelúja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, O Lord God, unto all thy servants, that they may remain continually in the enjoyment of soundnes", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Alexander & Companions*\nGrant, we beseech You, almighty God, that we who commemorate the anniversary", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nFrom the beginning, and before the world, was I created, and unto ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Num 17:8*\nThe rod of Jesse had blossomed, virgin hath brought forth God and man: God hath restored ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:25-27*\nNow there stood by the cross of Jesus, his mother, a", + "id": "Evangelium" + }, + { + "body": "Blessed art thou, O Virgin Mary, who didst bear the Creator of all things, thou didst bring forth who made thee, and rem", + "id": "Offertorium" + }, + { + "body": "Through thy mercy, O Lord, at the intercession of blessed Mary, ever Virgin, let this offering obtain for us welfare and", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Alexander & Companions*\nMay a bountiful blessing, O Lord, descend upon these offerings and, through ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of Eternal Father, alleluia.", + "id": "Communio" + }, + { + "body": "Grant, O Lord, that we who have partaken of aids of salvation, may be everywhere defended by the intercession of Blessed", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Alexander & Companions*\nWith our strength renewed from having shared in Your sacred gift, we beseech", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-04": [ + { + "body": "*Ps 32:5-6*\nThe earth is full of the goodness of the Lord, alleluia: by the word of the Lord were the heavens made, alle", + "id": "Introitus" + }, + { + "body": "O God, who, by the humility of Thy Son, didst lift up a fallen world, grant unending happiness to Thy faithful: that tho", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:21-25*\nDearly beloved, Christ suffered for us, leaving yo", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Luke 24:35*\nThe disciples knew the Lord Jesus in the breaking of bread. Allelúja.\n*John 10:14*\nI am", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time Jesus said to the Pharisees: I am the g", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nO God, my God, to Thee do I watch at break of day: and in Thy Name I will lift up my hands, allelúja.", + "id": "Offertorium" + }, + { + "body": "May this holy offering, O Lord, always bring to us Thy healing blessing: that what it represents in a Mystery, it may ac", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 10:14*\nI am the good Shepherd, alleluia: and I know My sheep, and Mine know Me, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Grant unto us, we beseech Thee, almighty God, that having received the grace of a new life, we may ever glory in Thy gif", + "id": "Postcommunio" + } + ], + "2025-05-05": [ + { + "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", + "id": "Introitus" + }, + { + "body": "O, God, Who graciously chose blessed Pius as Supreme Pontiff, to crush the enemies of Your Church and to restore divine ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Matt 16:18*\nAnd I say to thee: That thou art Peter; and upon this rock I will build My Church.\n*Ps 4", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", + "id": "Offertorium" + }, + { + "body": "Having offered You our gifts, we beseech You, O Lord, mercifully to enlighten Your Church, so that Your flock may everyw", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", + "id": "Communio" + }, + { + "body": "Since Your Church has been nourished by sacred food, govern her in Your clemency, we beseech You, O Lord, so that under ", + "id": "Postcommunio" + } + ], + "2025-05-06": [ + { + "body": "*Ps 32:5-6*\nThe earth is full of the goodness of the Lord, alleluia: by the word of the Lord were the heavens made, alle", + "id": "Introitus" + }, + { + "body": "O God, who, by the humility of Thy Son, didst lift up a fallen world, grant unending happiness to Thy faithful: that tho", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:21-25*\nDearly beloved, Christ suffered for us, leaving yo", + "id": "Lectio" + }, + { + "body": "\n*Luke 24:35*\nThe disciples knew the Lord Jesus in the breaking of bread. \n*John 10:14*\nI am the good Shepherd: and I kn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time Jesus said to the Pharisees: I am the g", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nO God, my God, to Thee do I watch at break of day: and in Thy Name I will lift up my hands, allelúja.", + "id": "Offertorium" + }, + { + "body": "May this holy offering, O Lord, always bring to us Thy healing blessing: that what it represents in a Mystery, it may ac", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 10:14*\nI am the good Shepherd, alleluia: and I know My sheep, and Mine know Me, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Grant unto us, we beseech Thee, almighty God, that having received the grace of a new life, we may ever glory in Thy gif", + "id": "Postcommunio" + } + ], + "2025-05-07": [ + { + "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", + "id": "Introitus" + }, + { + "body": "O God, in defense of Whose honor Stanislaus, the glorious Bishop, died by the swords of wicked men, grant, we beseech Yo", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nShe conducted the just, when he fled from his brother's wrath, through the", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints.", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:34-42*\nIn that time: Jesus said to his disciples: Do not", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", + "id": "Offertorium" + }, + { + "body": "Sanctify, O Lord, the gifts dedicated to You, and by the intercession of Blessed Stanislaus, Your Martyr and Bishop, let", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us from guilt, and, through the intercession of Blessed Stanislaus, Your Martyr and ", + "id": "Postcommunio" + } + ], + "2025-05-08": [ + { + "body": "*Ps 32:5-6*\nThe earth is full of the goodness of the Lord, alleluia: by the word of the Lord were the heavens made, alle", + "id": "Introitus" + }, + { + "body": "O God, who, by the humility of Thy Son, didst lift up a fallen world, grant unending happiness to Thy faithful: that tho", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:21-25*\nDearly beloved, Christ suffered for us, leaving yo", + "id": "Lectio" + }, + { + "body": "\n*Luke 24:35*\nThe disciples knew the Lord Jesus in the breaking of bread. \n*John 10:14*\nI am the good Shepherd: and I kn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time Jesus said to the Pharisees: I am the g", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nO God, my God, to Thee do I watch at break of day: and in Thy Name I will lift up my hands, allelúja.", + "id": "Offertorium" + }, + { + "body": "May this holy offering, O Lord, always bring to us Thy healing blessing: that what it represents in a Mystery, it may ac", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 10:14*\nI am the good Shepherd, alleluia: and I know My sheep, and Mine know Me, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Grant unto us, we beseech Thee, almighty God, that having received the grace of a new life, we may ever glory in Thy gif", + "id": "Postcommunio" + } + ], + "2025-05-09": [ + { + "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", + "id": "Introitus" + }, + { + "body": "O God, Who gave to Your people, blessed Gregory, as a minister of salvation, grant, we beseech You, that we who cherishe", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 39:6-14*\nHe will give his heart to resort early to the Lord that made him, a", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Eccli 45:9*\nThe Lord loved him and decorated him: He hath clothed him in a stole of glory.\n*Osee 14", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the pious prayer of holy N. thy Bishop and illustrious Doctor be not wanting to us, O Lord, but make our offerings a", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "*Pro Doctore Pontifice.*\nMay blessed N. thy Bishop and illustrious Doctor intercede for us, O Lord, that this thy sacrif", + "id": "Postcommunio" + } + ], + "2025-05-10": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O Lord, may the merits of St. Antoninus, Your Confessor and Bishop, help us; and just as we praise You for the wonders Y", + "id": "Oratio" + }, + { + "body": "*For Sts. Gordian and Epimachus, Martyrs*\nGrant, almighty God, we beseech You, that we who keep the feast of Your blesse", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps. 109:4*\nYou are a priest forever, according to the order of Melchisedec. Alleluia.\n℣. This is th", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*For Sts. Gordian and Epimachus, Martyrs*\nGraciously accept, O Lord, the sacrifices dedicated to Your blessed Martyrs Go", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + }, + { + "body": "*For Sts. Gordian and Epimachus, Martyrs*\nWe who have eaten of the heavenly food beseech You, almighty God, that it may ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-11": [ + { + "body": "*Ps 65:1-2*\nShout with joy to God, all the earth, allelúja, sing ye a psalm to his name, allelúja; give glory to his pra", + "id": "Introitus" + }, + { + "body": "Almighty God, Who showest to them that be in error the light of thy truth, to the intent that they may return into the w", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Philip & James*\nO God, Who gladden us each year by the feast of Your holy Apostles Philip and James,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:11-19*\nDearly beloved, I beseech you as strangers and pil", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 110:9*\nHe hath sent redemption to his people:\n*Luke 24:46*\nThus it behoved Christ to suffer, and", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:16-22*\nIn that time: Jesus said to his disciples: A little ", + "id": "Evangelium" + }, + { + "body": "*Ps 145:2*\nPraise the Lord, O my soul, in my life I will praise the Lord: as long as I shall be. Allelúja.", + "id": "Offertorium" + }, + { + "body": "Confer on us, O Lord, by these mysteries the moderation of our earthly desires: and teach us to love the things of heave", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Philip & James*\nGraciously accept, O Lord, the offerings we bring for the feast of Your Apostles Phi", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 16:16*\nA little while, and now you shall not see me; and again a little while, and you shall see me: because I go ", + "id": "Communio" + }, + { + "body": "May the Sacraments which we have received, O Lord, we ask, refresh us with spiritual nourishment, and preserve us with b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Philip & James*\nFilled with the sacrament of salvation, we beseech You, O Lord, to help us by the pr", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-12": [ + { + "body": "*Ps. 32:18-20.*\nBut see, the eyes of the Lord are upon those who fear Him, upon those who hope in His kindness, alleluia", + "id": "Introitus" + }, + { + "body": "May the holy feast of Your Martyrs, Nereus, Achilleus, Domitilla and Pancras, ever comfort us, we beseech You, O Lord, a", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 5:1-5.*\nThe just shall stand with great assurance before their oppressors who set at", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n℣. This is the true brotherhood, which overcame the wickedness of the world; it followed Christ, att", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 4:46-53.*\nAt that time, there was a certain royal official who", + "id": "Evangelium" + }, + { + "body": "*Ps. 88:6*\nThe heavens proclaim Your wonders, O Lord, and Your faithfulness, in the assembly of the holy ones, alleluia,", + "id": "Offertorium" + }, + { + "body": "May the witnessing to the faith made by Your holy Martyrs, Nereus, Achilleus, Domitilla and Pancras, be pleasing to You,", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Ps. 32:1*\nExult, you just, in the Lord, alleluia: praise from the upright is fitting, alleluia.", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You, that the holy sacrament we have received may, by the pleadings of Your blessed Martyrs, Nereus, ", + "id": "Postcommunio" + } + ], + "2025-05-13": [ + { + "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", + "id": "Introitus" + }, + { + "body": "O God, Who endowed blessed Robert, Your Bishop and Doctor, with wondrous learning and virtue to repel the deceits of err", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis. 7:7-14*\nI prayed, and prudence was given me; I pleaded, and the spirit of Wisdom ca", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Dan. 12:3*\n℣. The wise shall shine brightly like the splendor of the firmament. Alleluia.\n℣. Those ", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", + "id": "Evangelium" + }, + { + "body": "*Ps. 72:28*\nBut for me, to be near God is my good; to make the Lord God my refuge. I shall declare all Your works in the", + "id": "Offertorium" + }, + { + "body": "O God, we offer these sacrificial gifts to You as a sweet fragrance; grant that, taught by the counsels and example of b", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 5:14; 5:16*\nYou are the light of the world. Even so, let your light shine before men, in order that they may see y", + "id": "Communio" + }, + { + "body": "May the sacrament we have received, O Lord, our God, enkindle in us the fire of love which flamed so ardently in blessed", + "id": "Postcommunio" + } + ], + "2025-05-14": [ + { + "body": "*Ps 65:1-2*\nShout with joy to God, all the earth, allelúja, sing ye a psalm to his name, allelúja; give glory to his pra", + "id": "Introitus" + }, + { + "body": "Almighty God, Who showest to them that be in error the light of thy truth, to the intent that they may return into the w", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Boniface*\nGrant, almighty God, we beseech You, that we who keep the feast of Your blessed Martyr Boni", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:11-19*\nDearly beloved, I beseech you as strangers and pil", + "id": "Lectio" + }, + { + "body": "\n*Ps 110:9*\nHe hath sent redemption to his people:\n*Luke 24:46*\nThus it behoved Christ to suffer, and to rise again from", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:16-22*\nIn that time: Jesus said to his disciples: A little ", + "id": "Evangelium" + }, + { + "body": "*Ps 145:2*\nPraise the Lord, O my soul, in my life I will praise the Lord: as long as I shall be. Allelúja.", + "id": "Offertorium" + }, + { + "body": "Confer on us, O Lord, by these mysteries the moderation of our earthly desires: and teach us to love the things of heave", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Boniface*\nAccept our offerings and prayers, we beseech You, O Lord; cleanse us by this heavenly rite,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 16:16*\nA little while, and now you shall not see me; and again a little while, and you shall see me: because I go ", + "id": "Communio" + }, + { + "body": "May the Sacraments which we have received, O Lord, we ask, refresh us with spiritual nourishment, and preserve us with b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Boniface*\nWe who have been refreshed by partaking of the sacred gift, beseech You, O Lord, our God, t", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-15": [ + { + "body": "*Ps. 36:30-31.*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in", + "id": "Introitus" + }, + { + "body": "O God, Who raised up the holy Confessor John Baptist for the Christian education of the poor and to strengthen youth in ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Eccli 31:8-11*\nHappy the man found without fault, who turns not aside after gain", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Jas 1:12*\nBlessed is the man who endures temptation; for when he has been tried, he shall receive t", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-5*\nAt that time the disciples came to Jesus, saying, W", + "id": "Evangelium" + }, + { + "body": "*Ps. 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (Alleluia.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2025-05-16": [ + { + "body": "*Ps 65:1-2*\nShout with joy to God, all the earth, allelúja, sing ye a psalm to his name, allelúja; give glory to his pra", + "id": "Introitus" + }, + { + "body": "Almighty God, Who showest to them that be in error the light of thy truth, to the intent that they may return into the w", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Ubaldus*\nMercifully give us Your help, we beseech You, O Lord, and by the intercession of blessed Uba", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:11-19*\nDearly beloved, I beseech you as strangers and pil", + "id": "Lectio" + }, + { + "body": "\n*Ps 110:9*\nHe hath sent redemption to his people:\n*Luke 24:46*\nThus it behoved Christ to suffer, and to rise again from", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:16-22*\nIn that time: Jesus said to his disciples: A little ", + "id": "Evangelium" + }, + { + "body": "*Ps 145:2*\nPraise the Lord, O my soul, in my life I will praise the Lord: as long as I shall be. Allelúja.", + "id": "Offertorium" + }, + { + "body": "Confer on us, O Lord, by these mysteries the moderation of our earthly desires: and teach us to love the things of heave", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Ubaldus*\nMay Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflec", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 16:16*\nA little while, and now you shall not see me; and again a little while, and you shall see me: because I go ", + "id": "Communio" + }, + { + "body": "May the Sacraments which we have received, O Lord, we ask, refresh us with spiritual nourishment, and preserve us with b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Ubaldus*\nGrant, we beseech You, almighty God, that as we thank You for the favors we have received, w", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-17": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who endowed blessed Paschal, Your Confessor, with a wondrous love for the sacred mysteries of Your Body and Blood", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Jas 1:12*\nBlessed is the man who endures temptation; for when he has been tried, he shall receive t", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2025-05-18": [ + { + "body": "*Ps 97:1; 97:2*\nSing ye to the Lord a new canticle, alleluia: because the Lord hath done wonderful things, alleluia. He ", + "id": "Introitus" + }, + { + "body": "O God, of Whom it cometh that the minds of thy faithful people be all of one will, grant unto the same thy people that t", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. James the Apostle\n*Jas 1:17-21*\nDearly beloved: Every best gift, and every perfect gift, i", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps 117:16*\nThe right hand of the Lord hath wrought strength: the right hand of the Lord hath exalte", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:5-14*\nAt that time: Jesus said to His disciples: I go to hi", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 85:16*\nShout with joy to God, all the earth, sing ye a psalm to His Name: come and hear, and I will tell you", + "id": "Offertorium" + }, + { + "body": "O God, who by the august communion of this sacrifice hast make us partakers of one Sovereign Godhead, grant we beseech t", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 16:8*\nAnd when he is come, he will convince the world of sin, and of justice, and of judgment, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Stand by us, O Lord, our God, that by what we have faithfully received we may be cleansed from our vices and rescued fro", + "id": "Postcommunio" + } + ], + "2025-05-19": [ + { + "body": "*John 21:15-17*\nIf you love Me, Simon Peter, feed My lambs, feed My sheep. Alleluia, alleluia.\n*Ps 29:2*\nI will extol Yo", + "id": "Introitus" + }, + { + "body": "O God, Who raised blessed Peter Celestine to the lofty dignity of Supreme Pontiff and taught him to prefer self-abasemen", + "id": "Oratio" + }, + { + "body": "*For S. Pudentiana*\nGraciously hear us, O God our Saviour, that as we rejoice in the festival of blessed Pudentiana, You", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:1-4; 5:10-11.*\nBeloved: I exhort the presbyters among yo", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Matt 16:18*\n℣. You are Peter and upon this rock I will build My Church. Alleluia.\n*Ps 44:17-18*\nYou", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus, having come into the distric", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nSee, I place My words in your mouth! I set you over nations and over kingdoms, to root up and to tear down,", + "id": "Offertorium" + }, + { + "body": "By the offered gifts we beg You, O Lord: enlighten kindly Your Church: so that Your flock everywhere may be increasing, ", + "id": "Secreta" + }, + { + "body": "*For S. Pudentiana*\nMay the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, th", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build My Church. Alleluia.", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You, graciously govern Your Church, which You have fed with a holy meal; so that, directed by a might", + "id": "Postcommunio" + }, + { + "body": "*For S. Pudentiana*\nYou have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the int", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-20": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O Lord Jesus, Who bestowed on blessed Bernardine, Your Confessor, an unusual love for Your holy name, we beseech You, by", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Eccli 31:8-11*\nHappy the man found without fault, who turns not aside after gain", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Jas 1:12*\n℣. Blessed is the man who endures temptation; for when he has been tried, he shall receiv", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29*\nAt that time, Peter said to Jesus, Behold, we hav", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (Alleluia.)", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2025-05-21": [ + { + "body": "*Ps 97:1; 97:2*\nSing ye to the Lord a new canticle, alleluia: because the Lord hath done wonderful things, alleluia. He ", + "id": "Introitus" + }, + { + "body": "O God, of Whom it cometh that the minds of thy faithful people be all of one will, grant unto the same thy people that t", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. James the Apostle\n*Jas 1:17-21*\nDearly beloved: Every best gift, and every perfect gift, i", + "id": "Lectio" + }, + { + "body": "\n*Ps 117:16*\nThe right hand of the Lord hath wrought strength: the right hand of the Lord hath exalted me: \n*Rom 6:9*\nKn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:5-14*\nAt that time: Jesus said to His disciples: I go to hi", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 85:16*\nShout with joy to God, all the earth, sing ye a psalm to His Name: come and hear, and I will tell you", + "id": "Offertorium" + }, + { + "body": "O God, who by the august communion of this sacrifice hast make us partakers of one Sovereign Godhead, grant we beseech t", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 16:8*\nAnd when he is come, he will convince the world of sin, and of justice, and of judgment, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Stand by us, O Lord, our God, that by what we have faithfully received we may be cleansed from our vices and rescued fro", + "id": "Postcommunio" + } + ], + "2025-05-22": [ + { + "body": "*Ps 97:1; 97:2*\nSing ye to the Lord a new canticle, alleluia: because the Lord hath done wonderful things, alleluia. He ", + "id": "Introitus" + }, + { + "body": "O God, of Whom it cometh that the minds of thy faithful people be all of one will, grant unto the same thy people that t", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. James the Apostle\n*Jas 1:17-21*\nDearly beloved: Every best gift, and every perfect gift, i", + "id": "Lectio" + }, + { + "body": "\n*Ps 117:16*\nThe right hand of the Lord hath wrought strength: the right hand of the Lord hath exalted me: \n*Rom 6:9*\nKn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:5-14*\nAt that time: Jesus said to His disciples: I go to hi", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 85:16*\nShout with joy to God, all the earth, sing ye a psalm to His Name: come and hear, and I will tell you", + "id": "Offertorium" + }, + { + "body": "O God, who by the august communion of this sacrifice hast make us partakers of one Sovereign Godhead, grant we beseech t", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 16:8*\nAnd when he is come, he will convince the world of sin, and of justice, and of judgment, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Stand by us, O Lord, our God, that by what we have faithfully received we may be cleansed from our vices and rescued fro", + "id": "Postcommunio" + } + ], + "2025-05-23": [ + { + "body": "*Ps 97:1; 97:2*\nSing ye to the Lord a new canticle, alleluia: because the Lord hath done wonderful things, alleluia. He ", + "id": "Introitus" + }, + { + "body": "O God, of Whom it cometh that the minds of thy faithful people be all of one will, grant unto the same thy people that t", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. James the Apostle\n*Jas 1:17-21*\nDearly beloved: Every best gift, and every perfect gift, i", + "id": "Lectio" + }, + { + "body": "\n*Ps 117:16*\nThe right hand of the Lord hath wrought strength: the right hand of the Lord hath exalted me: \n*Rom 6:9*\nKn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:5-14*\nAt that time: Jesus said to His disciples: I go to hi", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 85:16*\nShout with joy to God, all the earth, sing ye a psalm to His Name: come and hear, and I will tell you", + "id": "Offertorium" + }, + { + "body": "O God, who by the august communion of this sacrifice hast make us partakers of one Sovereign Godhead, grant we beseech t", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*John 16:8*\nAnd when he is come, he will convince the world of sin, and of justice, and of judgment, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Stand by us, O Lord, our God, that by what we have faithfully received we may be cleansed from our vices and rescued fro", + "id": "Postcommunio" + } + ], + "2025-05-24": [ + { + "body": "*Sedelius*\nHail Holy Parent, who didst bring forth the King, who rules heaven and earth forever, allelúja, allelúja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, O Lord God, unto all thy servants, that they may remain continually in the enjoyment of soundnes", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nFrom the beginning, and before the world, was I created, and unto ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Num 17:8*\nThe rod of Jesse had blossomed, virgin hath brought forth God and man: God hath restored ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:25-27*\nNow there stood by the cross of Jesus, his mother, a", + "id": "Evangelium" + }, + { + "body": "Blessed art thou, O Virgin Mary, who didst bear the Creator of all things, thou didst bring forth who made thee, and rem", + "id": "Offertorium" + }, + { + "body": "Through thy mercy, O Lord, at the intercession of blessed Mary, ever Virgin, let this offering obtain for us welfare and", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of Eternal Father, alleluia.", + "id": "Communio" + }, + { + "body": "Grant, O Lord, that we who have partaken of aids of salvation, may be everywhere defended by the intercession of Blessed", + "id": "Postcommunio" + } + ], + "2025-05-25": [ + { + "body": "*Isa 48:20*\nDeclare it with the voice of joy: make this to be heard, allelúja: and speak it out even to the ends of the ", + "id": "Introitus" + }, + { + "body": "O God, from Whom all good things do come, grant to us thy humble servants that by thy holy inspiration we may think thos", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St James the Apostle\n*Jas 1:22-27*\nDearly beloved: But be ye doers of the word, and not hearer", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. Christ is risen and hath shone upon us whom he redeemed with his blood. Alleluia.\n*John 16:28*\nI ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:23-30*\nIn that time, Jesus said to His disciples: Amen, ame", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9; 65:20*\nO bless our God, ye Gentiles: and make the voice of his praise to be heard. Who hath set my soul to l", + "id": "Offertorium" + }, + { + "body": "Receive, O Lord, the prayers of thy faithful with offerings of victims, that by these services of pious devotion we may ", + "id": "Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Ps 95:2*\nSing ye to the Lord and bless his name: shew forth his salvation from day to day, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Grant us, O Lord, fed with the virtue of a heavenly table, to desire what is right, and to gain what we desire.\nThrough ", + "id": "Postcommunio" + } + ], + "2025-05-26": [ + { + "body": "*Rom 5:5*\nThe charity of God is poured forth in our hearts, by His Spirit dwelling within us. (Alleluia, alleluia.)\n*Ps ", + "id": "Introitus" + }, + { + "body": "O God, Who raised blessed Philip, Your Confessor, to the glory of Your Saints, graciously grant that we who rejoice in h", + "id": "Oratio" + }, + { + "body": "*Pro S. Eleutherio*\nBe mindful of our weakness, almighty God, and because the burden of our sins weighs heavily upon us,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 7:7-14*\nI prayed, and prudence was given me; I pleaded, and the spirit of Wisdom cam", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Lam 1:13*\n℣. From above He has sent a fire into my bones, and has instructed me. Alleluia.\n*Ps 38:4", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:32*\nI will run the way of Your commands when You enlarge my heart. (Alleluia.)", + "id": "Offertorium" + }, + { + "body": "Look favorably, we beseech You, O Lord, upon the sacrificial gifts here before You; and grant that the Holy Spirit may e", + "id": "Secreta" + }, + { + "body": "*Pro S. Eleutherio*\nO Lord, graciously accept, through the merits of Your blessed Martyr and Bishop N., the sacrificial ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Ps 83:3*\nMy heart and my flesh cry out for the living God. (Alleluia.)", + "id": "Communio" + }, + { + "body": "Nourished by Your heavenly food, O Lord, we beseech You that, through the merits and example of blessed Philip, Your Con", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Eleutherio*\nRefreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enjoy the ben", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-27": [ + { + "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", + "id": "Introitus" + }, + { + "body": "O God, Who enlightened Your Church with the learning of blessed Bede, Your Confessor and Doctor, graciously grant that Y", + "id": "Oratio" + }, + { + "body": "*For St. John I.*\nO God, Who gladden us with the yearly festival of blessed N., Your Martyr and Bishop, mercifully grant", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Eccli 45:9*\nThe Lord loved him and decorated him: He hath clothed him in a stole of glory.\n*Osee 14", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed Bede, Your Bishop and Doctor, fail us never, O Lord; may it commend our offerings and e", + "id": "Secreta" + }, + { + "body": "*For St. John I.*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of blessed N., Your Mart", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "So that your sacrificial rites may grant us salvation, we pray you, O Lord, that blessed Bede, Your Bishop and illustrio", + "id": "Postcommunio" + }, + { + "body": "*For St. John I.*\nMay this Communion, O Lord, cleanse us of sin, and through the intercession of blessed N., Your Martyr", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-28": [ + { + "body": "*Isa. 48:20.*\nDeclare the word of joy, and let it be heard, alleluia: declare it even to the ends of the earth; the Lord", + "id": "Introitus" + }, + { + "body": "O God, from Whom all good things come, grant, we beseech You, that by Your inspiration, we may think what is right and u", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Augustine of Canterbury*\nO God, Who graciously enlightened the English peoples with the light of the ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph. 4:7-13.*\nBrethren: To each one of us grace was giv", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n℣. Christ is risen, and has shone upon us, whom He redeemed with His Blood. Alleluia.\n*John 16:28*\n℣", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 17:1-11.*\nAt that time, raising His eyes to heaven, Jesus said", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9, 20*\nBless the Lord our God, you peoples, loudly sound His praise; He has given life to my soul, and has not ", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the prayers and gifts of Your faithful people, that, through these rites of love and devotion we may pas", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Augustine of Canterbury*\nWe offer sacrifice unto You, O Lord, on the feast of blessed Augustine, Your", + "id": "Commemoratio Secreta" + }, + { + "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", + "id": "Prefatio" + }, + { + "body": "*Ps. 95:2.*\nSing to the Lord, alleluia; sing to the Lord; bless His name; announce His salvation day after day, alleluia", + "id": "Communio" + }, + { + "body": "Grant, O Lord, that we who have been fed with the strengthening food of Your heavenly table, may desire what is right an", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Augustine of Canterbury*\nStrengthened by the sacrifice of salvation, we humbly pray You, O Lord, that", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-29": [ + { + "body": "*Acts 1:11*\nYe men of Galilee, why stand you looking up to heaven? alleluia: This Jesus who is taken up from you into he", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, Almighty God, that like as we do believe thine Only-Begotten Son our Saviour to have this day as", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 1:1-11*\nThe former treatise I made, O Theophilus, of all things which Jesus began", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet. Allelúja.\n*Ps 67:18-", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:14-20*\nAt length he appeared to the eleven as they were at ", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet, allelúja.", + "id": "Offertorium" + }, + { + "body": "Receive, O Lord, the gifts which we offer for the glorious Ascension of thy Son, and mercifully grant that we may be del", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nSing ye to the Lord, who mounteth above the heaven of heavens to the East, alleluia.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech thee, almighty and merciful God, that what we have taken and received in visible mysteries, may pro", + "id": "Postcommunio" + } + ], + "2025-05-30": [ + { + "body": "*Acts 1:11*\nYe men of Galilee, why stand you looking up to heaven? alleluia: This Jesus who is taken up from you into he", + "id": "Introitus" + }, + { + "body": "Grant, we beseech thee, Almighty God, that like as we do believe thine Only-Begotten Son our Saviour to have this day as", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Felix I*\nGrant, we beseech thee, almighty God, that we who celebrate the martyrdom of blessed N., thr", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 1:1-11*\nThe former treatise I made, O Theophilus, of all things which Jesus began", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet. \n*Ps 67:18-19*\nThe Lord is in Sinai, in", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:14-20*\nAt length he appeared to the eleven as they were at ", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet, allelúja.", + "id": "Offertorium" + }, + { + "body": "Receive, O Lord, the gifts which we offer for the glorious Ascension of thy Son, and mercifully grant that we may be del", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Felix I*\nAs thou hast received our gifts and prayers, O Lord, cleanse us, we ask by thy heavenly myst", + "id": "Commemoratio Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nSing ye to the Lord, who mounteth above the heaven of heavens to the East, alleluia.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech thee, almighty and merciful God, that what we have taken and received in visible mysteries, may pro", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Felix I*\nGrant, we beseech thee, O our God, that we who in time render joyful service in memory of th", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-31": [ + { + "body": "Let us all rejoice in the Lord, celebrating a feast in honor of the blessed Virgin Mary, our Queen, on whose solemnity t", + "id": "Introitus" + }, + { + "body": "Grant we beseech You, O Lord, that we who keep the feast of the Blessed Virgin Mary, Our Queen, safe under her protectio", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Petronilla*\nHear us, O God, our Saviour, that as we are gladdened by the festival of blessed N. thy v", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Eccli 24:5; 14:7; 14:9-11; 24:30-31*\nFrom the mouth of the Most High I came fort", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n℣. Blessed are you, O Virgin Mary, who stood beneath the Cross of the Lord. Alleluia.\n℣. Now with Hi", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-33*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "Sprung from a royal line, all radiant is Mary, by whose prayers we most devoutly beg to be helped both in mind and in sp", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the gifts of the rejoicing Church and grant by the pleading merits of the Blessed Virgin", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Petronilla*\nMay the service of thy holy people be acceptable to Thee, O Lord, and honorable to thy sa", + "id": "Commemoratio Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nMost worthy Queen of the world, Mary ever Virgin, who have borne Christ the Lord, the Saviour of all, in", + "id": "Communio" + }, + { + "body": "We who have celebrated the sacred rites in honor of Holy Mary, our Queen, pray, O Lord, that through the intercession of", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Petronilla*\nThou hast fed thy servants, O Lord, with the holy gifts; comfort us ever we pray, by her ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-01": [ + { + "body": "*Ps. 26:7-9.*\nHear, O Lord, the sound of my call, alleluia; to You my heart speaks; Your glance I seek; Your presence, O", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, give us a will ever dedicated to You, and a true heart to serve Your majesty.\nThrough our Lord", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 4:7-11.*\nBeloved: Be prudent and watchful in prayers. But a", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps. 46:9.*\n℣. The Lord reigns over all the nations, God sits upon His holy throne. Alleluia.\n*John ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:26-27; 16:1-4.*\nAt that time, Jesus said to His disciples: ", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6.*\nGod mounts His throne amid shouts of joy; the Lord, amid trumpet blasts. Alleluia.", + "id": "Offertorium" + }, + { + "body": "May this pure sacrifice cleanse us, O Lord, and impart to our minds the strength of heavenly grace.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*John 17:12-13; 17:15*\nFather, while I was with them, I kept them whom You have given Me, alleluia; but now I am coming ", + "id": "Communio" + }, + { + "body": "We who have been filled with heavenly gifts beseech You, O Lord, grant us to continue giving thanks to You.\nThrough our ", + "id": "Postcommunio" + } + ], + "2025-06-02": [ + { + "body": "*Ps. 26:7-9.*\nHear, O Lord, the sound of my call, alleluia; to You my heart speaks; Your glance I seek; Your presence, O", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, give us a will ever dedicated to You, and a true heart to serve Your majesty.\nThrough our Lord", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Marcellinus, Peter, & Erasmus *\nO God, Who gladden us each year by the feast of Your holy Martyrs, M", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 4:7-11.*\nBeloved: Be prudent and watchful in prayers. But a", + "id": "Lectio" + }, + { + "body": "\n*Ps. 46:9.*\n℣. The Lord reigns over all the nations, God sits upon His holy throne. \n*John 14:18*\n℣. I will not leave y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:26-27; 16:1-4.*\nAt that time, Jesus said to His disciples: ", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6.*\nGod mounts His throne amid shouts of joy; the Lord, amid trumpet blasts. Alleluia.", + "id": "Offertorium" + }, + { + "body": "May this pure sacrifice cleanse us, O Lord, and impart to our minds the strength of heavenly grace.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Marcellinus, Peter, & Erasmus *\nWe beseech You, O Lord, that this sacrificial gift, which we offer i", + "id": "Commemoratio Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*John 17:12-13; 17:15*\nFather, while I was with them, I kept them whom You have given Me, alleluia; but now I am coming ", + "id": "Communio" + }, + { + "body": "We who have been filled with heavenly gifts beseech You, O Lord, grant us to continue giving thanks to You.\nThrough our ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Marcellinus, Peter, & Erasmus *\nWe who have been filled with Your sacred gifts, humbly pray You, O L", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-03": [ + { + "body": "*Ps. 26:7-9.*\nHear, O Lord, the sound of my call, alleluia; to You my heart speaks; Your glance I seek; Your presence, O", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, give us a will ever dedicated to You, and a true heart to serve Your majesty.\nThrough our Lord", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 4:7-11.*\nBeloved: Be prudent and watchful in prayers. But a", + "id": "Lectio" + }, + { + "body": "\n*Ps. 46:9.*\n℣. The Lord reigns over all the nations, God sits upon His holy throne. \n*John 14:18*\n℣. I will not leave y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:26-27; 16:1-4.*\nAt that time, Jesus said to His disciples: ", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6.*\nGod mounts His throne amid shouts of joy; the Lord, amid trumpet blasts. Alleluia.", + "id": "Offertorium" + }, + { + "body": "May this pure sacrifice cleanse us, O Lord, and impart to our minds the strength of heavenly grace.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*John 17:12-13; 17:15*\nFather, while I was with them, I kept them whom You have given Me, alleluia; but now I am coming ", + "id": "Communio" + }, + { + "body": "We who have been filled with heavenly gifts beseech You, O Lord, grant us to continue giving thanks to You.\nThrough our ", + "id": "Postcommunio" + } + ], + "2025-06-04": [ + { + "body": "*Ps. 21:15; 68:10*\nMy heart has become like wax melting away within my bosom, because zeal for Your house consumes me.\n*", + "id": "Introitus" + }, + { + "body": "O God, Who endowed blessed Francis, the founder of a new Order, with zeal for prayer and love of penance, grant that You", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis. 4:7-14.*\nThe just man, though he die early, shall be at rest. For the age that is h", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Jas 1:12*\nBlessed is the man who endures temptation; for when he has been tried, he shall receive t", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40.*\nAt that time, Jesus said to His disciples, Let your", + "id": "Evangelium" + }, + { + "body": "*Ps. 91:13.*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow.", + "id": "Offertorium" + }, + { + "body": "Grant, most merciful Jesus, that, as we commemorate the renowned merits of blessed Francis, and aflame with the same fir", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Ps. 30:20.*\nHow great is the goodness, O Lord, which You have in store for those who fear You.", + "id": "Communio" + }, + { + "body": "O Lord, may the most holy sacrifice, which we have today offered unto Your majesty on the feast of blessed Francis leave", + "id": "Postcommunio" + } + ], + "2025-06-05": [ + { + "body": "*Isa. 65:19; 65:23*\nI will rejoice in Jerusalem and exult in My people. No longer shall the sound of weeping be heard th", + "id": "Introitus" + }, + { + "body": "O God, Who, through the zeal of blessed Boniface, Your Martyr and Bishop, graciously called a multitude of people to the", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus. 44:1-15.*\nLet us now praise men of renown, our ancestors, each in his ow", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints.", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:1-12*\nAt that time, Jesus seeing the crowds, went up the ", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7-8*\nI bless the Lord Who counsels me; I set God ever before me; with Him at my right hand I shall not be disturb", + "id": "Offertorium" + }, + { + "body": "May a bountiful blessing, O Lord, descend upon these offerings and, through Your mercy, may it help to make us holy and ", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Rev 3:21*\nHe who overcomes, I will permit him to sit with Me upon My throne; as I also have overcome and have sat with ", + "id": "Communio" + }, + { + "body": "Made holy by the sacrament of salvation, we beseech You, O Lord, that the prayers of blessed Boniface, Your Martyr and B", + "id": "Postcommunio" + } + ], + "2025-06-06": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O God, Who made blessed Norbert, Your Confessor and Bishop, a brilliant preacher of Your word, and through him enriched ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps. 109:4*\nYou are a priest forever, according to the order of Melchisedec. Alleluia.\n℣. This is th", + "id": "GradualeP" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + } + ], + "2025-06-07": [ + { + "body": "*Ez. 36:23-26.*\nWhen I prove My holiness through you, I will gather you from all the foreign lands; and I will sprinkle ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that the brightness of Your glory may shine upon us, and that the light of Your lig", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 19:1-8.*\nIn those days, it was while Apollos was in Corinth that Paul, after pass", + "id": "Lectio" + }, + { + "body": "Alleluia.\n*Ps 106:1*\nGive thanks to the Lord, for He is good, for His kindness endures forever!\n*Ps. 116:1-2.*\nPraise th", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 14:15-21.*\nAt that time, Jesus said to His disciples, If you l", + "id": "Evangelium" + }, + { + "body": "*Ps. 103:30-31.*\nSend forth Your Spirit, and they shall be created, and You shall renew the face of the earth. May the g", + "id": "Offertorium" + }, + { + "body": "Hallow, we beseech You, O Lord, the gifts we offer, and cleanse our minds through the enlightenment of the Holy Spirit.\n", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 7:37-39.*\nOn the last day of the feast, Jesus said, He who believes in Me, from within him there shall flow rivers", + "id": "Communio" + }, + { + "body": "May the inpouring of the Holy Spirit cleanse our hearts, O Lord, and make them fertile through the dew He sprinkles upon", + "id": "Postcommunio" + } + ], + "2025-06-08": [ + { + "body": "*Wis 1:7.*\nThe Spirit of the Lord fills the world, alleluia, is all-embracing, and knows man’s utterance, alleluia, alle", + "id": "Introitus" + }, + { + "body": "O God, You Who on this day have taught the hearts of the faithful by the light of the Holy Spirit, grant us by that Holy", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 2:1-11.*\nWhen the days of Pentecost were drawing to a close, they were all togeth", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps. 103:30*\n℣. Send forth Your Spirit, and they shall be created: and You shall renew the face of t", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 14:23-31.*\nAt that time, Jesus said to His disciples: If anyon", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nConfirm, O God, what You have wrought in us; from Your temple, which is in Jerusalem, kings shall offer gi", + "id": "Offertorium" + }, + { + "body": "Sanctify these offerings, we beseech You, O Lord, and cleanse our hearts by the light of the Holy Spirit.\nThrough our Lo", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*Acts 2:2; 2:4*\nSuddenly there came a sound from heaven, as of a violent wind blowing, where they were sitting, alleluia", + "id": "Communio" + }, + { + "body": "May the inpouring of the Holy Spirit cleanse our hearts, O Lord, and make them fertile through the dew He sprinkles upon", + "id": "Postcommunio" + } + ], + "2025-06-09": [ + { + "body": "*Ps. 80:17*\nHe fed them with the best of wheat, alleluia: and filled them with honey from the rock, alleluia, alleluia.\n", + "id": "Introitus" + }, + { + "body": "O God, You Who gave the Holy Spirit to Your apostles, grant that the devout prayers of Your people may be effective and,", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of the Apostles\n*Acts 10:34, 42-48*\nIn those days, Peter opening his mouth, said, Men, brethren, th", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Acts 2:4*\n℣. The Apostles spoke in foreign tongues the wonderful works of God. Alleluia. (Kneel.)\n", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 3:16-21*\nAt that time, Jesus said to Nicodemus: God so loved t", + "id": "Evangelium" + }, + { + "body": "*Ps. 17:14, 16*\nThe Lord thundered from heaven, the Most High gave forth His voice; and the fountains of waters appeared", + "id": "Offertorium" + }, + { + "body": "Graciously hallow these gifts, we beseech You, O Lord, and accepting the offering of the spiritual sacrifice, make us al", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 14:26*\nThe Holy Spirit will teach you, alleluia: whatever I have said to you, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Be near to Your people, we beseech You, O Lord, and defend against the fury of the enemy those whom You have penetrated ", + "id": "Postcommunio" + } + ], + "2025-06-10": [ + { + "body": "*Esdr 2:36-37*\nReceive the joy of your glory, alleluia: giving thanks to God, alleluia, who has called you to the heaven", + "id": "Introitus" + }, + { + "body": "Let the power of the Holy Spirit be present within us, O Lord, graciously to cleanse our hearts as well as to guard us f", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 8:14-17.*\nIn those days, when the Apostles in Jerusalem heard that Samaria had re", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*John 14:26*\n℣. The Holy Spirit will teach you whatever I have said to you. Alleluia. (Kneel.)\n℣. Co", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:1-10.*\nAt that time, Jesus said to the Pharisees, Amen, ame", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nThe Lord opened the doors of heaven; He rained manna upon them for food and gave them heavenly bread. The ", + "id": "Offertorium" + }, + { + "body": "May the offering of this gift here before You, O Lord, make us pure and worthy to take part in this sacred rite.\nThrough", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 15:26; 16:14*\nThe Spirit Who proceeds from the Father, alleluia: He will glorify Me, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "May the Holy Spirit, we beseech You, O Lord, renew our minds through the heavenly sacrament, for He Himself is the forgi", + "id": "Postcommunio" + } + ], + "2025-06-11": [ + { + "body": "*Ps 67:8-9*\nO God, when You went forth at the head of Your people, making a passage for them, dwelling in their midst, a", + "id": "Introitus" + }, + { + "body": "May the Paraclete Who proceeds from You, enlighten our minds, we beseech You, O Lord, and guide us to all truth, as Your", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 2:14-21.*\nIn those days, Peter, standing up with the Eleven, lifted up his voice ", + "id": "LectioL1" + }, + { + "body": "Alleluia.\n*Ps 32:6*\n℣. By the word of the Lord the heavens were made; by the breath of His mouth all their host.\n\n##Glor", + "id": "GradualeL1" + }, + { + "body": "Grant, we beseech You, almighty and most merciful God, that the Holy Spirit may come to dwell in us, graciously making u", + "id": "OratioL1" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 5:12-16*\nIn those days, by the hands of the Apostles many signs and wonders were ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n℣. (Kneel.) Come, O Holy Spirit, fill the hearts of Your faithful; and kindle in them the fire of Yo", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 6:44-52.*\nAt that time, Jesus said to the Jews: No one can com", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly. And I will lift up my hands to Your commands, ", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the gifts we offer, and graciously bring it about that we may practice by a holy life wh", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 14:27.*\nPeace I leave with you, alleluia; My peace I give to you, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "As we receive Your heavenly sacrament we beseech You, merciful Lord, may we reap in the joys of eternity the fruits of w", + "id": "Postcommunio" + } + ], + "2025-06-12": [ + { + "body": "*Wis 1:7*\nThe Spirit of the Lord fills the world, alleluia, is all-embracing, and knows man’s utterance, alleluia, allel", + "id": "Introitus" + }, + { + "body": "O God, You Who on this day have taught the hearts of the faithful by the light of the Holy Spirit, grant us by that Holy", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 8:5-8*\nIn those days, Philip went down to the city of Samaria and preached the Ch", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Ps 103:30*\n℣. Send forth Your Spirit, and they shall be created: and You shall renew the face of th", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 9:1-6*\nAt that time, having summoned the twelve apostles, Jesu", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nConfirm, O God, what You have wrought in us; from Your temple, which is in Jerusalem, kings shall offer gi", + "id": "Offertorium" + }, + { + "body": "Sanctify these offerings, we beseech You, O Lord, and cleanse our hearts by the light of the Holy Spirit.\nThrough our Lo", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*Acts 2:2; 2:4*\nSuddenly there came a sound from heaven, as of a violent wind blowing, where they were sitting, alleluia", + "id": "Communio" + }, + { + "body": "May the inpouring of the Holy Spirit cleanse our hearts, O Lord, and make them fertile through the dew He sprinkles upon", + "id": "Postcommunio" + } + ], + "2025-06-13": [ + { + "body": "*Ps 70:8; 70:23*\nLet my mouth be filled with Your praise, alleluia: that I may sing, alleluia. My lips shall shout for j", + "id": "Introitus" + }, + { + "body": "Grant to Your Church, we beseech You, almighty God, that, united by the Holy Spirit, she may in no way be harmed by any ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Joel\n*Joel 2:23-24; 26-27*\nThus says the Lord God: O children of Sion, exult and rejoice in the ", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n*Wis 12:1*\n℣. O how good and sweet is Your Spirit, O Lord, within us! Alleluia. (Kneel.)\n℣. Come, O ", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 5:17-26*\nAt that time, it came to pass on one of the days, tha", + "id": "Evangelium" + }, + { + "body": "*Wis 145:1-2*\nPraise the Lord, O my soul; I will praise the Lord all my life; I will sing praise to my God while I live,", + "id": "Offertorium" + }, + { + "body": "May the sacrificial gifts offered in Your sight, O Lord, be consumed by that divine fire which the Holy Spirit enkindled", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 14:18*\nI will not leave you orphans; I will come to you again, alleluia: and your heart shall rejoice, alleluia.", + "id": "Communio" + }, + { + "body": "We who have received the gift of Your Blessed Sacrament, O Lord, humbly pray that what You have taught us to do in comme", + "id": "Postcommunio" + } + ], + "2025-06-14": [ + { + "body": "*Rom 5:5.*\nThe charity of God is poured forth in our hearts, alleluia: by His Spirit dwelling in us, alleluia, alleluia.", + "id": "Introitus" + }, + { + "body": "Graciously pour into our minds, we beseech You, O Lord, the Holy Spirit, Whose wisdom created us and Whose providence go", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Joel\n*Joel 2:28-32.*\nThus says the Lord God: I will pour out My Spirit upon all mankind. Your so", + "id": "LectioL1" + }, + { + "body": "Alleluia.\n*John 6:64*\nIt is the Spirit that gives life; but the flesh profits nothing.", + "id": "GradualeL1" + }, + { + "body": "May the Holy Spirit, we beseech You, O Lord, inflame us with that fire which our Lord Jesus Christ cast upon the earth a", + "id": "OratioL1" + }, + { + "body": "Lesson from the book of Leviticus\n*Lev. 23:9-11; 15-17, 21.*\nIn those days, the Lord spoke to Moses, saying: Speak to th", + "id": "LectioL2" + }, + { + "body": "Alleluia.\n*Job 26:13*\n℣. His Spirit has adorned the heavens.", + "id": "GradualeL2" + }, + { + "body": "O God, Who for the healing of our souls has commanded that our bodies should be disciplined by devout fasting, mercifull", + "id": "OratioL2" + }, + { + "body": "Lesson from the book of Deuteronomy\n*Deut. 26:1-3; 7-11*\nIn those days, Moses said to the Israelites: Hear, O Israel, th", + "id": "LectioL3" + }, + { + "body": "Alleluia.\n*Acts 2:1*\n℣. When the days of Pentecost were accomplished, they were all sitting together.", + "id": "GradualeL3" + }, + { + "body": "Grant, we beseech You, almighty God, that we, disciplined by wholesome fasting and refraining from all wrong-doing, may ", + "id": "OratioL3" + }, + { + "body": "Lesson from the book of Leviticus\n*Lev. 26:3-12.*\nIn those days, the Lord said to Moses. Speak to the Israelites, and te", + "id": "LectioL4" + }, + { + "body": "Alleluia.\n℣. (Kneel.) Come, O Holy Spirit, fill the hearts of Your faithful; and kindle in them the fire of Your love.", + "id": "GradualeL4" + }, + { + "body": "Grant, we beseech You, almighty God, that we may so fast from bodily food as to abstain also from the sins that beset us", + "id": "OratioL4" + }, + { + "body": "Lesson from the book of Daniel\n*Dan. 3:47-51.*\nIn those days, the Angel of the Lord went down into the furnace with Azar", + "id": "LectioL5" + }, + { + "body": "Alleluia.\n*Dan 3:52*\nBlessed are You, O Lord, the God of our fathers, and worthy to be praised forever.", + "id": "GradualeL5" + }, + { + "body": "O God, You Who tempered the flames of fire for the three young men, mercifully grant that the flames of sin may not burn", + "id": "OratioL5" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 5:1-5.*\nBrethren: Having been justified by faith, let ", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nPraise the Lord, all you nations; glorify Him, all you peoples! For steadfast is His kindness toward us, an", + "id": "Graduale" + }, + { + "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 4:38-44.*\nAt that time, Jesus rose from the synagogue and ente", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nO Lord, the God of my salvation, by day I cry out, at night I clamor in Your presence. Let my prayer come be", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, O Lord, that we may offer You a heart cleansed by this sacred rite so that our fast may be acc", + "id": "Secreta" + }, + { + "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", + "id": "Prefatio" + }, + { + "body": "*John 3:8.*\nThe Spirit breaths where He will, and you hear His voice, alleluia, alleluia; but do not know whence He come", + "id": "Communio" + }, + { + "body": "May Your holy things, O Lord, fill us with divine eagerness to enjoy their celebration together with their effects.\nThro", + "id": "Postcommunio" + } + ], + "2025-06-15": [ + { + "body": "*Tob 12:6*\nBlessed be the Holy Trinity and undivided Unity: we will give glory to Him, because He has shown His mercy to", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, You Who have given Your servants, in the confession of the true faith, to acknowledge the glory o", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 11:33-36.*\nOh, the depth of the riches of the wisdom a", + "id": "Lectio" + }, + { + "body": "*Dan 3:55-56*\nBlessed are You, O Lord, Who look into the depths from Your throne upon the Cherubim.\n℣. Blessed are You, ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 28:18-20*\nAt that time, Jesus said to His disciples: All po", + "id": "Evangelium" + }, + { + "body": "*Tob. 12:6.*\nBlessed be God the Father, and the only-begotten Son of God, and also the Holy Spirit: because He has shown", + "id": "Offertorium" + }, + { + "body": "We call upon Your Name, O Lord, and beseech You to hallow this sacrificial offering and through it to make us an eternal", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Tob 12:6*\nWe bless the God of heaven, and before all living we will praise Him; because He has shown His mercy to us.", + "id": "Communio" + }, + { + "body": "May the reception of this sacrament, O Lord our God, and the profession of our faith in the eternal holy Trinity and und", + "id": "Postcommunio" + } + ], + "2025-06-16": [ + { + "body": "*Ps 12:6*\nO Lord, I have trusted in thy mercy. My heart shall rejoice in thy salvation: I will sing to the Lord, who giv", + "id": "Introitus" + }, + { + "body": "O God, the Strength of all them that put their trust in thee, mercifully accept our prayers, and because through the wea", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 4:8-21*\nDearly beloved: He that loveth not, knoweth not God:", + "id": "Lectio" + }, + { + "body": "*Ps 40:5; 40:2*\nI said: O Lord, be thou merciful to me : heal my soul, for I have sinned against thee. Blessed is he tha", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 6:36-42*\nIn that time Jesus said to his disciples: Be ye there", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4*\nHearken to the voice of my prayer, O my King and my God. For to thee will I pray: O Lord.", + "id": "Offertorium" + }, + { + "body": "Be appeased O Lord, we beseech thee, and accept the victims we dedicate to thee, and grant that they may avail us for pe", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nI will relate all thy wonders. I will be glad and rejoice in thee: I will sing to thy name, O thou most high.", + "id": "Communio" + }, + { + "body": "Filled O Lord, as we are with so great bounties, we beseech thee that we may receive the gifts of salvation and never ce", + "id": "Postcommunio" + } + ], + "2025-06-17": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O God, Who have willed that Blessed Gregory, Your Confessor and Bishop, be renowned for the care of his flock and compas", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + } + ], + "2025-06-18": [ + { + "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", + "id": "Introitus" + }, + { + "body": "O God, Who willed to enlighten Your Church by the wondrous learning and glorious merits of the life of blessed Ephrem, Y", + "id": "Oratio" + }, + { + "body": "*For SS. Mark and Marcellianus*\nGrant, we beseech You, almighty God, that we who celebrate the anniversary of the death ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the loving prayer of blessed Ephrem, Your Confessor and Doctor, fail us not, both to make our gifts acceptab", + "id": "Secreta" + }, + { + "body": "*For SS. Mark and Marcellianus*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of blessed", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "May blessed Ephrem, Your Confessor, and renowned Doctor, plead for us, so that the sacrifice we offer You may bring us s", + "id": "Postcommunio" + }, + { + "body": "*For SS. Mark and Marcellianus*\nRefreshed by the sacramental gift of Your salvation, we humbly beseech You, O Lord, thro", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-19": [ + { + "body": "*Ps. 80:17.*\nHe fed them with the best of wheat, alleluia; and filled them with honey from the rock, alleluia, alleluia,", + "id": "Introitus" + }, + { + "body": "O God, You Who in this wondrous sacrament have left us a memorial of Your passion, grant us, we beseech You, so to vener", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 23-29.*\nBrethren: I myself have received", + "id": "Lectio" + }, + { + "body": "*Ps. 144:15-16.*\nThe eyes of all look hopefully to You, O Lord; and You give them their food in due season.\n℣. You open ", + "id": "Graduale" + }, + { + "body": "O Sion, thy Redeemer praising,\nSongs of joy to Him upraising,\nLaud thy Pastor and thy Guide:\n\nSwell thy notes most high ", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 6:56-59.*\nAt that time, Jesus said to the crowds of the Jews: ", + "id": "Evangelium" + }, + { + "body": "*Lev 21:6*\nThe priests of the Lord offer incense and loaves to God, and therefore they shall be sacred to their God and ", + "id": "Offertorium" + }, + { + "body": "Graciously give Your Church, we beseech You, O Lord, the gifts of unity and peace which are betokened by the gifts we of", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*1 Cor. 11:26-27.*\nAs often as you shall eat this Bread and drink the cup, you proclaim the death of the Lord, until He ", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord, that we may be filled with that everlasting enjoyment of Your Godhead, as foreshadowed he", + "id": "Postcommunio" + } + ], + "2025-06-20": [ + { + "body": "*Ps 12:6*\nO Lord, I have trusted in thy mercy. My heart shall rejoice in thy salvation: I will sing to the Lord, who giv", + "id": "Introitus" + }, + { + "body": "O God, the Strength of all them that put their trust in thee, mercifully accept our prayers, and because through the wea", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Silverius*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, b", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 4:8-21*\nDearly beloved: He that loveth not, knoweth not God:", + "id": "Lectio" + }, + { + "body": "*Ps 40:5; 40:2*\nI said: O Lord, be thou merciful to me : heal my soul, for I have sinned against thee. Blessed is he tha", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 6:36-42*\nIn that time Jesus said to his disciples: Be ye there", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4*\nHearken to the voice of my prayer, O my King and my God. For to thee will I pray: O Lord.", + "id": "Offertorium" + }, + { + "body": "Be appeased O Lord, we beseech thee, and accept the victims we dedicate to thee, and grant that they may avail us for pe", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Silverius*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so th", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nI will relate all thy wonders. I will be glad and rejoice in thee: I will sing to thy name, O thou most high.", + "id": "Communio" + }, + { + "body": "Filled O Lord, as we are with so great bounties, we beseech thee that we may receive the gifts of salvation and never ce", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Silverius*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, th", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-21": [ + { + "body": "*Ps 8:6*\nYou have made him little less than the angels, and crowned him with glory and honor.\n*Ps 148:2*\nPraise the Lord", + "id": "Introitus" + }, + { + "body": "O God, bestower of heavenly gifts, Who in the angelic youth Aloysius joined wondrous innocence of life to an equally won", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Eccli 31:8-11*\nHappy the man found without fault, who turns not aside after gain", + "id": "Lectio" + }, + { + "body": "*Ps 70:5-6*\nMy trust, O Lord, from my youth; on You I depend from birth; from my mother’s womb You are my strength.\n*Ps ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:29-40*\nAt that time, Jesus answered and said to the Sadd", + "id": "Evangelium" + }, + { + "body": "*Ps 23:3-4*\nWho can ascend the mountain of the Lord? or who may stand in His holy place? He whose hands are sinless, who", + "id": "Offertorium" + }, + { + "body": "Make us take our place, O Lord, at Your heavenly banquet clothed in the wedding-garment which the loving preparation and", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 77:24-25*\nHe gave them heavenly bread; the bread of the angels was eaten by men.", + "id": "Communio" + }, + { + "body": "Grant, O Lord, that we who have been fed with the food of angels may also live angelic lives, and, following the example", + "id": "Postcommunio" + } + ], + "2025-06-22": [ + { + "body": "*Ps. 17:19-20.*\nThe Lord came to my support. He set me free in the open, and rescued me, because He loves me.\n*Ps 17:2-3", + "id": "Introitus" + }, + { + "body": "Grant, O Lord, that we may always fear and love Your holy Name, for You never fail to guide those whom You firmly establ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 3:13-18.*\nBeloved: Do not be surprised if the world hates yo", + "id": "Lectio" + }, + { + "body": "*Ps. 119:1-2.*\nIn my distress I called to the Lord, and He answered me.\n℣. O Lord, deliver me from lying lip, from treac", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:16-24.*\nAt that time, Jesus spoke to the Pharisees this par", + "id": "Evangelium" + }, + { + "body": "*Ps. 6:5.*\nReturn, O Lord, save my life; rescue me because of Your kindness.", + "id": "Offertorium" + }, + { + "body": "May the sacrifice we are about to offer unto Your holy Name, O Lord, make us pure, and day by day help us to live a more", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 12:6.*\nI will sing of the Lord, He has been good to me; and I will sing to the Name of the Lord the Most High.", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord, that having received Your gifts, each partaking of this sacrament may increase within us its sav", + "id": "Postcommunio" + } + ], + "2025-06-23": [ + { + "body": "*Luke 1:13; 1:15; 1:14*\nDo not be afraid, Zachary, your prayer has been heard, and your wife Elizabeth shall bear you a ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that Your household may walk in the way of salvation and, by following the counsels", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Jeremias\n*Jer 1:4-10*\nIn those days, the word of the Lord came to me thus: Before I formed you i", + "id": "Lectio" + }, + { + "body": "*John 1:6-7*\nThere was a man, one sent from God, whose name was John.\n℣. This man came to bear witness concerning the li", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:5-17*\nIn the days of Herod, king of Judea, there was a certa", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nYou crowned him with glory and honor. You have given him rule over the works of Your hands, O Lord.", + "id": "Offertorium" + }, + { + "body": "Sanctify, O Lord, the gifts offered to You, and, by the intercession of Blessed John the Baptist, purify us by them from", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 20:6*\nGreat is his glory in Your victory; majesty and splendor You conferred upon him, O Lord.", + "id": "Communio" + }, + { + "body": "May the powerful prayer of blessed John the Baptist go with us, O Lord, and may he plead with our Lord Jesus Christ, You", + "id": "Postcommunio" + } + ], + "2025-06-24": [ + { + "body": "*Isa 49:1-2*\nFrom my mother’s womb the Lord called me by my name, and made of me a sharp-edged sword; He concealed me in", + "id": "Introitus" + }, + { + "body": "O God, Who made this a day most worthy of our celebration because of blessed John; grant Your people the grace of spirit", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 49:1-3, 5-7.*\nHear me, O coastlands, listen, O distant peoples. The Lord called me f", + "id": "Lectio" + }, + { + "body": "*Jer 1:5, 9*\nBefore I formed you in the womb, I knew you; and before you were born, I dedicated you.\n℣. The Lord put for", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:57-68*\nElizabeth’s time was fulfilled that she should be del", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just man shall flourish like the palm tree; like a cedar of Lebanon shall he grow.", + "id": "Offertorium" + }, + { + "body": "We heap Your altar with gifts, O Lord, celebrating the birth of him who announced the coming of the Saviour of the world", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 1:76*\nYou, child, shall be called the prophet of the Most High; for you shall go before the face of the Lord to pr", + "id": "Communio" + }, + { + "body": "May Your Church, O God, rejoice at the birth of blessed John the Baptist, through whom she knew the author of her own re", + "id": "Postcommunio" + } + ], + "2025-06-25": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who made Your Saints an example and a help for our weakness; grant us, as we walk the path of salvation, so to ve", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy Abbot William, prevail by his prayers, so that the offerings placed upon Your sacre", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "May the pleading of the blessed Abbot William for us, together with the partaking of Your sacrament, protect us, O Lord,", + "id": "Postcommunio" + } + ], + "2025-06-26": [ + { + "body": "*Ps 33:20-21*\nMany are the troubles of the just, but out of them all the Lord delivers them; the Lord watches over all t", + "id": "Introitus" + }, + { + "body": "We beseech You, almighty God, that on this feast-day we may have the double joy of celebrating blessed John and Paul, tr", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Eccli 44:10-15*\nThese were godly men whose virtues have not been forgotten; thei", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nBehold, how good it is, and how pleasant, where brethren dwell as one! It is as when the precious ointment ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:1-8*\nAt that time, Jesus said to His disciples, Beware of t", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nAll who love Your name shall glory in You, for You, O Lord, bless the just man; O Lord, You surround us wit", + "id": "Offertorium" + }, + { + "body": "O Lord, graciously accept, through the merits of Your holy Martyrs John and Paul, the sacrificial gifts dedicated to You", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Wis 3:4-6*\nFor if before men they were punished, God tried them; as gold in the furnace He proved them, and as sacrific", + "id": "Communio" + }, + { + "body": "We have partaken of the heavenly sacrament, O Lord, as we celebrate the feast of Your holy Martyrs John and Paul; grant,", + "id": "Postcommunio" + } + ], + "2025-06-27": [ + { + "body": "*Ps. 32:11, 19*\nThe thoughts of His Heart are to all generations: to deliver them from death and preserve them in spite ", + "id": "Introitus" + }, + { + "body": "O God, Who in the Heart of Your Son, wounded by our sins, mercifully lavish upon us the infinite riches of love, grant, ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph. 3:8-12, 14-19.*\nBrethren: To me, the very least of", + "id": "Lectio" + }, + { + "body": "*Ps. 24:8-9*\nGood and upright is the Lord; thus He shows sinners the way.\n℣. He guides the humble to justice; He teaches", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:31-37.*\nAt that time, the Jews, since it was the Preparatio", + "id": "Evangelium" + }, + { + "body": "*Ps. 68:21.*\nMy heart expected reproach and misery; I looked for sympathy, but there was none; and for comforters, and I", + "id": "Offertorium" + }, + { + "body": "Look, we beseech You, O Lord, upon the Heart of Your beloved Son, with its boundless love, so that what we offer, may be", + "id": "Secreta" + }, + { + "body": "*Sacred Heart*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*John 19:34.*\nOne of the soldiers opened His side with a lance, and immediately there came out blood and water.", + "id": "Communio" + }, + { + "body": "May Your sacrament, O Lord Jesus, give us holy zeal, so that, seeing the sweetness of Your most loving Heart, we may lea", + "id": "Postcommunio" + } + ], + "2025-06-28": [ + { + "body": "*John 21:18-19*\nThe Lord said to Peter, When you were young you girded yourself and walked where you would. But when you", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we, whom you solidly established upon the rock of apostolic faith, be not trou", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 3:1-10*\nIn those days, Peter and John were going up into the temple at the ninth ", + "id": "Lectio" + }, + { + "body": "*Ps 18:5, 2*\nThrough all the earth their voice resounds, and to the ends of the world, their message.\n℣. The heavens dec", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 21:15-19*\nAt that time, Jesus said to Simon Peter, Simon, son ", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable, their principality is exceedingly strengthened.", + "id": "Offertorium" + }, + { + "body": "Sanctify the gift of Your people, we beseech You, O Lord, by the intercession of the Apostles, and cleanse us from the s", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 21:15, 17*\nSimon, son of John, do you love Me more than these do? Lord, You know all things; You know, Lord, that ", + "id": "Communio" + }, + { + "body": "O Lord, by the intercession of Your Apostles, defend from all harm those whom You have filled with heavenly food.\nThroug", + "id": "Postcommunio" + } + ], + "2025-06-29": [ + { + "body": "*Acts 12:11*\nNow I know for certain that the Lord has sent His angel, and rescued me from the power of Herod, and from a", + "id": "Introitus" + }, + { + "body": "O God, Who made this day holy by the martyrdom of Your Apostles Peter and Paul, grant Your Church to follow in all thing", + "id": "Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 12:1-11*\nIn those days, Herod the king set hands on certain members of the Church", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus having come into the district", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord, through all gener", + "id": "Offertorium" + }, + { + "body": "May the prayers of Your holy Apostles, O Lord, accompany the sacrificial gifts which we offer to be hallowed in Your nam", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build My Church.", + "id": "Communio" + }, + { + "body": "O Lord, by the prayer of Your Apostles, protect from all harm those whom You have fed with heavenly food.\nThrough our Lo", + "id": "Postcommunio" + } + ], + "2025-06-30": [ + { + "body": "*2 Tim. 1:12*\nI know Whom I have believed, and I am certain that He is able to guard the trust committed to Him, against", + "id": "Introitus" + }, + { + "body": "O God, Who taught vast numbers of the Gentiles by the preaching of the blessed Apostle Paul, grant we beseech You that, ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 1:11-20*\nBrethren: I give you to understand, that t", + "id": "Lectio" + }, + { + "body": "*Gal 2:8-9*\nHe Who worked in Peter for the apostleship, worked also in me among the Gentiles; and they recognized the gr", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:16-22*\nAt that time, Jesus said to His disciples, Behold", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", + "id": "Offertorium" + }, + { + "body": "O Lord, make holy the offerings of Your people, through the prayer of Paul, Your Apostle, that those things which You ha", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you that you who have left all things and followed Me, shall receive a hundredfold, and sh", + "id": "Communio" + }, + { + "body": "Having received Your sacrament, O Lord, we implore You, that what we have celebrated in honor of St. Paul, Your Apostle,", + "id": "Postcommunio" + } + ], + "2025-07-01": [ + { + "body": "*Apoc 5:9-10*\nYou have redeemed us, O Lord, with Your Blood, out of every tribe and tongue and people and nation, and ha", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, Who made Your only-begotten Son the Redeemer of the world, and willed to be reconciled by His Blo", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 9:11-15*\nBrethren: When Christ appeared as High Pries", + "id": "Lectio" + }, + { + "body": "*1 John 5:6-8*\nThis is He Who came in water and in blood, Jesus Christ; not in the water only, but in the water and in t", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:30-35*\nAt that time, when Jesus had taken the wine, He said", + "id": "Evangelium" + }, + { + "body": "*1 Cor. 10:16*\nThe Cup of blessing that we bless, is it not the sharing of the Blood of Christ? And the Bread that we br", + "id": "Offertorium" + }, + { + "body": "Through this divine rite, we beseech You, may we draw near to Jesus, the mediator of the new covenant, and renew upon Yo", + "id": "Secreta" + }, + { + "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", + "id": "Prefatio" + }, + { + "body": "*Heb 9:28*\nChrist was offered once to take away the sins of many; the second time with no part in sin He will appear unt", + "id": "Communio" + }, + { + "body": "Admitted to the sacred banquet, O Lord, we have drawn water in joy from the Saviour’s fountain; may His Blood, we beseec", + "id": "Postcommunio" + } + ], + "2025-07-02": [ + { + "body": "*Sedulius*\nHail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth forever and ever.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Bestow upon Your servants, we beseech You, O Lord, the gift of heavenly grace, that as the child-bearing of the Blessed ", + "id": "Oratio" + }, + { + "body": "*Commemoration SS. Processus and Martinian*\nO God, Who surround and protect us with the glorious profession of faith of ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Canticles\n*Song 2:8-14*\nHark! here He comes springing across the mountains, leaping across the h", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, without spot were found the Mother of the Saviour.\n℣. O Virgin, Mothe", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:39-47*\nAt that time, Mary arose and went with haste into the", + "id": "Evangelium" + }, + { + "body": "Blessed are you, O Virgin Mary, you who bore the Creator of all things; you brought forth Him Who made you, and remain a", + "id": "Offertorium" + }, + { + "body": "May the humanity of Your only-begotten Son keep us, O Lord, for He, Who was born of a virgin did not lessen but consecra", + "id": "Secreta" + }, + { + "body": "*Commemoration SS. Processus and Martinian*\nAccept our prayers and gifts, O Lord, and, that they may be made worthy in Y", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "O Lord, in celebration of this yearly feast, we have partaken of the sacrament: grant, we beseech You, that it may give ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration SS. Processus and Martinian*\nFilled with the offering of Your sacred Body and Your precious Blood, we bes", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-03": [ + { + "body": "*Mal 2:6*\nThe law of truth was in his mouth, and iniquity was not found in his lips: he walked with Me in peace, and in ", + "id": "Introitus" + }, + { + "body": "O God, Who enabled blessed Irenaeus, Your Martyr and Bishop, to overcome heresy with true doctrine and to establish peac", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 3:14-17; 4:1-5*\nBeloved: Continue in the things", + "id": "Lectio" + }, + { + "body": "*Ps 121:8*\nBecause of my relatives and friends I will say, Peace be within you!\n*Ps 36:37*\n℣. Keep innocence, and behold", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:28-33*\nAt that time, Jesus said to His disciples, Do not", + "id": "Evangelium" + }, + { + "body": "*Eccli 24:44*\nI send my teachings forth to all shining like the dawn, and I will make them known afar off.", + "id": "Offertorium" + }, + { + "body": "O God, Who do not allow the nations that believe in You to be troubled by any distress, graciously accept the prayers an", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ecclus 24:47*\nSee that I have not labored for myself only, but for all who seek out the truth.", + "id": "Communio" + }, + { + "body": "O God, author and lover of peace, to know You is to live, and to serve You is to rule; protect from all assaults those w", + "id": "Postcommunio" + } + ], + "2025-07-04": [ + { + "body": "*Ps. 24:16, 18*\nLook toward me, and have pity on me, O Lord, for I am alone and afflicted. Put an end to my affliction a", + "id": "Introitus" + }, + { + "body": "O God, protector of all who hope in You, without Whom nothing is strong, nothing is holy, increase Your mercy toward us,", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:6-11*\nBeloved: Humble yourselves under the mighty hand o", + "id": "Lectio" + }, + { + "body": "*Ps. 54:23, 17, 19*\nCast your care upon the Lord, and He will support you.\n℣. When I called upon the Lord, He heard my v", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 15:1-10*\nAt that time, the publicans and sinners were drawing ", + "id": "Evangelium" + }, + { + "body": "*Ps. 9:11-13*\nThey trust in You who cherish Your name, O Lord, for You forsake not those who seek You. Sing praise to th", + "id": "Offertorium" + }, + { + "body": "Look favorably, O Lord, upon the offerings of Your prayerful Church and grant that those who believe may, in continual h", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 15:10*\nI say to you: there is joy among the angels of God over one sinner who repents.", + "id": "Communio" + }, + { + "body": "May the holy things of which we have partaken bring us to life and prepare for Your everlasting mercy those whom You hav", + "id": "Postcommunio" + } + ], + "2025-07-05": [ + { + "body": "*1 Cor. 2:4*\nMy speech and my preaching were not in the persuasive words of human wisdom, but in the demonstration of th", + "id": "Introitus" + }, + { + "body": "Grant us, O Lord God, to learn in the spirit of Paul the Apostle that excelling knowledge of Jesus Christ, by which St. ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to Timothy\n*1 Tim. 4:8-16*\nDearly beloved: Godliness is profitable ", + "id": "Lectio" + }, + { + "body": "*Phil 1:8-11*\nGod is my witness how I long after you all in the heart of Christ Jesus. And this I pray, that your charit", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 10:15-21*\nAt that time, Jesus said to His disciples, Whoever d", + "id": "Evangelium" + }, + { + "body": "*Ps 137:1-2*\nIn the presence of the angels I will sing Your praise; I will worship at Your holy temple and give thanks t", + "id": "Offertorium" + }, + { + "body": "May we bring to the table of the heavenly banquet, O Lord, that purity of mind and body with which St. Anthony Mary was ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Phil 3:17*\nBrethren, be imitators of me, and mark those who walk after the pattern you have in us.", + "id": "Communio" + }, + { + "body": "May the heavenly banquet at which we have been fed, O Lord Jesus Christ, set our hearts aflame with that fire of love wi", + "id": "Postcommunio" + } + ], + "2025-07-06": [ + { + "body": "*Ps. 26:1-2*\nThe Lord is my light and my salvation; whom should I fear? The Lord is my life’s refuge; of whom should I b", + "id": "Introitus" + }, + { + "body": "Grant us, we beseech You, O Lord, that the course of the world may be directed according to Your rule in peace and that ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:18-23*\nBrethren: I reckon that the sufferings of the", + "id": "Lectio" + }, + { + "body": "*Ps. 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God our Saviour; be", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 5:1-11*\nAt that time, while the crowds were pressing upon Jesu", + "id": "Evangelium" + }, + { + "body": "*Ps. 12:4-5*\nGive light to my eyes that I may never sleep in death, lest my enemy say, I have overcome him.", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by accepting our offerings, and in Your kindness make even our rebellious wills tur", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps. 17:3*\nO Lord, my rock, my fortress, my deliverer: my God, my rock of refuge!", + "id": "Communio" + }, + { + "body": "May the sacrament we have received cleanse us, we beseech You, O Lord, and by its grace protect us.\nThrough our Lord…", + "id": "Postcommunio" + } + ], + "2025-07-07": [ + { + "body": "*Ps 131:9-10*\nMay Your priests, O Lord, be clothed with justice; let Your faithful ones shout merrily for joy. For the s", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, Who granted to the Slavonic people that they should come to the knowledge of your name through Yo", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 7:23-27*\nBrethren: The priests were numerous, because", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\nHer priests I will clothe with salvation, and her faithful ones shall shout merrily for joy.\n℣. In her wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nGod is wonderful in His Saints; the God of Israel is He Who gives power and strength to His people. Blessed b", + "id": "Offertorium" + }, + { + "body": "Look with favor, O Lord, upon the prayers and offerings of Your faithful, that they may be pleasing to You for the feast", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 10:27*\nWhat I tell you in darkness, speak it in the light, says the Lord; and what you hear whispered, preach it o", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, Who mercifully dost bestow upon us these heavenly gifts, grant that we may despise all ear", + "id": "Postcommunio" + } + ], + "2025-07-08": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "Most merciful God, Who among other admirable gifts, endowed blessed Queen Elizabeth with the special grace of calming th", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", + "id": "Postcommunio" + } + ], + "2025-07-09": [ + { + "body": "*Ps. 26:1-2*\nThe Lord is my light and my salvation; whom should I fear? The Lord is my life’s refuge; of whom should I b", + "id": "Introitus" + }, + { + "body": "Grant us, we beseech You, O Lord, that the course of the world may be directed according to Your rule in peace and that ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:18-23*\nBrethren: I reckon that the sufferings of the", + "id": "Lectio" + }, + { + "body": "*Ps. 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God our Saviour; be", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 5:1-11*\nAt that time, while the crowds were pressing upon Jesu", + "id": "Evangelium" + }, + { + "body": "*Ps. 12:4-5*\nGive light to my eyes that I may never sleep in death, lest my enemy say, I have overcome him.", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by accepting our offerings, and in Your kindness make even our rebellious wills tur", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 17:3*\nO Lord, my rock, my fortress, my deliverer: my God, my rock of refuge!", + "id": "Communio" + }, + { + "body": "May the sacrament we have received cleanse us, we beseech You, O Lord, and by its grace protect us.\nThrough our Lord…", + "id": "Postcommunio" + } + ], + "2025-07-10": [ + { + "body": "*Ps 112:1, 9*\nPraise the Lord, you children, praise the name of the Lord. He establishes in her home the barren wife as ", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we, who know how courageously Your holy Martyrs have confessed the faith, may ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 123:7-8*\nWe were rescued like a bird from the fowlers’ snare.\n℣. Broken was the snare, and we were freed. Our help i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 12:46-50*\nAt that time, as Jesus was still speaking to the ", + "id": "Evangelium" + }, + { + "body": "*Ps 123:7*\nWe were rescued like a bird from the fowlers’ snare; broken was the snare, and we were freed.", + "id": "Offertorium" + }, + { + "body": "Look with favor, we beseech You, O Lord, upon the offerings here before You, that, through the intercession of Your Sain", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 12:50*\nWhoever does the will of My Father in heaven, he is My brother and sister and mother, says the Lord.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that, by the intercession of Your Saints, we may obtain the effect of that salvatio", + "id": "Postcommunio" + } + ], + "2025-07-11": [ + { + "body": "*Ps. 26:1-2*\nThe Lord is my light and my salvation; whom should I fear? The Lord is my life’s refuge; of whom should I b", + "id": "Introitus" + }, + { + "body": "Grant us, we beseech You, O Lord, that the course of the world may be directed according to Your rule in peace and that ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Pius I*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, by t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:18-23*\nBrethren: I reckon that the sufferings of the", + "id": "Lectio" + }, + { + "body": "*Ps. 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God our Saviour; be", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 5:1-11*\nAt that time, while the crowds were pressing upon Jesu", + "id": "Evangelium" + }, + { + "body": "*Ps. 12:4-5*\nGive light to my eyes that I may never sleep in death, lest my enemy say, I have overcome him.", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by accepting our offerings, and in Your kindness make even our rebellious wills tur", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Pius I*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 17:3*\nO Lord, my rock, my fortress, my deliverer: my God, my rock of refuge!", + "id": "Communio" + }, + { + "body": "May the sacrament we have received cleanse us, we beseech You, O Lord, and by its grace protect us.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Pius I*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-12": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in ", + "id": "Introitus" + }, + { + "body": "May the intercession of the blessed Abbot John commend us to You, O Lord, so that through his merits we may obtain that ", + "id": "Oratio" + }, + { + "body": "*Ss Naboris et Felicis*\nGrant we beseech You, O Lord, that as we never fail to celebrate the anniversary of the death of", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:43-48*\nAt that time, Jesus said to His disciples, You hav", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his hea", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy Abbot John prevail by his prayers, so that the offerings placed upon Your sacred al", + "id": "Secreta" + }, + { + "body": "*Ss Naboris et Felicis*\nMay the gifts of Your people, we beseech You, O Lord, by the prayers of Your holy Martyrs, Nabor", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will set", + "id": "Communio" + }, + { + "body": "May the pleading of the blessed Abbot John for us, together with the partaking of Your sacrament, protect us, O Lord, so", + "id": "Postcommunio" + }, + { + "body": "*Ss Naboris et Felicis*\nOn the anniversary of the death of Your Saints, we beseech You, O Lord, that, being strengthened", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-13": [ + { + "body": "*Ps. 26:7, 9*\nHear, O Lord, the sound of my call; be my helper: forsake me not: despise me not, O God my Saviour.\n*Ps 26", + "id": "Introitus" + }, + { + "body": "O God, You Who have prepared good things as yet unseen for those who love You, pour a burning love into our hearts, so t", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 3:8-15.*\nBeloved: Be all like-minded in prayer, compassiona", + "id": "Lectio" + }, + { + "body": "*Ps. 83:10, 9*\nBehold, O God, our protector, and look on Your servants.\n℣. O Lord God of Hosts, hear the prayers of Your", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:20-24.*\nAt that time, Jesus said to His disciples: Unless", + "id": "Evangelium" + }, + { + "body": "*Ps. 15:7-8.*\nI bless the Lord Who counsels me; I set God ever before me; with Him at my right hand I shall not be distu", + "id": "Offertorium" + }, + { + "body": "Be propitious to our supplications, O Lord, and graciously receive these oblations of Your servants and handmaids, that ", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps. 26:4.*\nOne thing I ask of the Lord; this I seek: to dwell in the house of the Lord all the days of my life.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that we whom You have filled with the heavenly gift may be cleansed of our hidden sins", + "id": "Postcommunio" + } + ], + "2025-07-14": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", + "id": "Introitus" + }, + { + "body": "O God, Who gave to Your people, blessed Bonaventure, as a minister of salvation, grant, we beseech You, that we who cher", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom and his tongue utters what is right.\n℣. The law of his God is in his", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: You are ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed Bonaventure, Your Confessor and Doctor, fail us never, O Lord; may it commend our offer", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their rations of ", + "id": "Communio" + }, + { + "body": "So that your sacrificial rites may grant us salvation, we pray you, O Lord, that blessed Bonaventure, Your Bishop and il", + "id": "Postcommunio" + } + ], + "2025-07-15": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who on this day took St. Henry, Your Confessor, to the everlasting kingdom from the throne of an earthly empire; ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:12, 14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples: Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2025-07-16": [ + { + "body": "*Ps. 26:7, 9*\nHear, O Lord, the sound of my call; be my helper: forsake me not: despise me not, O God my Saviour.\n*Ps 26", + "id": "Introitus" + }, + { + "body": "O God, You Who have prepared good things as yet unseen for those who love You, pour a burning love into our hearts, so t", + "id": "Oratio" + }, + { + "body": "*Commemoration Our Lady of Mt. Carmel*\nO God, Who honored the Order of Carmel with the special title of the most blessed", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 3:8-15.*\nBeloved: Be all like-minded in prayer, compassiona", + "id": "Lectio" + }, + { + "body": "*Ps. 83:10, 9*\nBehold, O God, our protector, and look on Your servants.\n℣. O Lord God of Hosts, hear the prayers of Your", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:20-24.*\nAt that time, Jesus said to His disciples: Unless", + "id": "Evangelium" + }, + { + "body": "*Ps. 15:7-8.*\nI bless the Lord Who counsels me; I set God ever before me; with Him at my right hand I shall not be distu", + "id": "Offertorium" + }, + { + "body": "Be propitious to our supplications, O Lord, and graciously receive these oblations of Your servants and handmaids, that ", + "id": "Secreta" + }, + { + "body": "*Commemoration Our Lady of Mt. Carmel*\nO Lord, we beseech You, make holy the sacrificial gifts we offer, and by the most", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 26:4.*\nOne thing I ask of the Lord; this I seek: to dwell in the house of the Lord all the days of my life.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that we whom You have filled with the heavenly gift may be cleansed of our hidden sins", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Our Lady of Mt. Carmel*\nMay the venerable intercession of Your glorious Mother Mary, ever Virgin, help us", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-17": [ + { + "body": "*Ps. 26:7, 9*\nHear, O Lord, the sound of my call; be my helper: forsake me not: despise me not, O God my Saviour.\n*Ps 26", + "id": "Introitus" + }, + { + "body": "O God, You Who have prepared good things as yet unseen for those who love You, pour a burning love into our hearts, so t", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Alexis*\nO God, Who gladden us with the annual feast of blessed N. , Your Confessor, mercifully grant ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 3:8-15.*\nBeloved: Be all like-minded in prayer, compassiona", + "id": "Lectio" + }, + { + "body": "*Ps. 83:10, 9*\nBehold, O God, our protector, and look on Your servants.\n℣. O Lord God of Hosts, hear the prayers of Your", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:20-24.*\nAt that time, Jesus said to His disciples: Unless", + "id": "Evangelium" + }, + { + "body": "*Ps. 15:7-8.*\nI bless the Lord Who counsels me; I set God ever before me; with Him at my right hand I shall not be distu", + "id": "Offertorium" + }, + { + "body": "Be propitious to our supplications, O Lord, and graciously receive these oblations of Your servants and handmaids, that ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Alexis*\nWe offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 26:4.*\nOne thing I ask of the Lord; this I seek: to dwell in the house of the Lord all the days of my life.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that we whom You have filled with the heavenly gift may be cleansed of our hidden sins", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Alexis*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be help", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-18": [ + { + "body": "*John 15:13*\nGreater love than this no one has, that one lay down his life for his friends.\n*Ps 40:2*\nHappy is he who ha", + "id": "Introitus" + }, + { + "body": "O God, Who endowed St. Camillus with a special gift of charity for the help of souls struggling in their final agony, po", + "id": "Oratio" + }, + { + "body": "*Ss Symphorosæ et septem Filiorum ejus Mm*\nO God, Who permits us to celebrate the anniversary of the death of Your holy ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St John the Apostle\n*1 John 3:13-18*\nBeloved: Do not be surprised if the world hates you", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:12-16*\nAt that time, Jesus said to His disciples, This is M", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "Through the prayers of St. Camillus may this spotless sacrificial offering, by which we renew the work of our Lord Jesus", + "id": "Secreta" + }, + { + "body": "*Ss Symphorosæ et septem Filiorum ejus Mm*\nWe offer You, O Lord, the gifts of our homage; may they be pleasing to You in", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:36, 40*\nI was sick and you visited Me: Amen, amen, I say to you, as long as you did it for one of these the lea", + "id": "Communio" + }, + { + "body": "Through this heavenly food which we have received with holy devotion as we celebrate the feast of St. Camillus, Your Con", + "id": "Postcommunio" + }, + { + "body": "*Ss Symphorosæ et septem Filiorum ejus Mm*\nGrant, we beseech You, O Lord, by the intercession of Your holy Martyrs, Symp", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-19": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "O God, Who endowed St. Vincent with apostolic strength to preach the Gospel to the poor and to enhance the dignity of cl", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a sp", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", + "id": "Postcommunio" + } + ], + "2025-07-20": [ + { + "body": "*Ps. 27:8-9.*\nThe Lord is the strength of His people, the saving refuge of His anointed. Save Your people, O Lord, and b", + "id": "Introitus" + }, + { + "body": "O God of the heavenly powers, creator of all good things, implant in our hearts the love of Your Name, and bestow upon u", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:3-11.*\nBrethren: All we who have been baptized into ", + "id": "Lectio" + }, + { + "body": "*Ps. 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants!\n℣. O Lord, You have been our refuge through all gen", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 8:1-9*\nAt that time, when there was a great crowd with Jesus, ", + "id": "Evangelium" + }, + { + "body": "*Ps. 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. S", + "id": "Offertorium" + }, + { + "body": "Mercifully hear our humble prayers, O Lord, and graciously accept these offerings of Your people, and grant that no pray", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps. 26:6*\nI will go round, and offer in His tent, sacrifices with shouts of gladness; I will sing and chant praise to t", + "id": "Communio" + }, + { + "body": "We have been filled with Your gifts, O Lord; grant, we beseech You, that we may be cleansed and strengthened by their ef", + "id": "Postcommunio" + } + ], + "2025-07-21": [ + { + "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", + "id": "Introitus" + }, + { + "body": "O God, Who, to enable him to accomplish tasks, no matter how difficult, for the glory of Your name and the salvation of ", + "id": "Oratio" + }, + { + "body": "*St. Praxedes, Virgin*\nGraciously hear us, O God our Saviour, that, as we rejoice in the festival of blessed Praxedes, Y", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the pious prayer of holy N. thy Bishop and illustrious Doctor be not wanting to us, O Lord, but make our offerings a", + "id": "Secreta" + }, + { + "body": "*S Praxedes, Virgin*\nMay the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "*Pro Doctore Pontifice.*\nMay blessed N. thy Bishop and illustrious Doctor intercede for us, O Lord, that this thy sacrif", + "id": "Postcommunio" + }, + { + "body": "*S Praxedes, Virgin*\nYou have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the int", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-22": [ + { + "body": "*Ps 118:95-96*\nSinners wait to destroy me, but I pay heed to Your decrees, O Lord. I see that all fulfillment has its li", + "id": "Introitus" + }, + { + "body": "May the prayers of blessed Mary Magdalen help us, O Lord, Who were moved by her prayers and brought back alive from the ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Canticles\n*Song 3:2-5; 8:6-7*\nI will rise and go about the city; in the streets and crossings I ", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate iniquity.\n℣. Therefore God, your God, has anointed you with the oil of gladness. All", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:36-50*\nAt that time, one of the Pharisees asked Jesus to din", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings come to meet You; the queen takes her place at Your right hand in gilded clothing, sur", + "id": "Offertorium" + }, + { + "body": "O Lord, may our gifts be acceptable to You through the glorious merits of blessed Mary Magdalen, whose offering of homag", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:121-122; 118:128.*\nI have fulfilled just ordinances, O Lord; let not the proud oppress me. For in all Your prece", + "id": "Communio" + }, + { + "body": "After receiving Your Body and precious Blood, the one and only saving remedy, we beseech You, O Lord, that, under the pr", + "id": "Postcommunio" + } + ], + "2025-07-23": [ + { + "body": "*Dan 3:84, 87*\nPriests of the Lord, bless the Lord; holy men of humble heart, praise God.\n*Dan. 3:57*\nBless the Lord, al", + "id": "Introitus" + }, + { + "body": "O God, the rewarder of faithful souls, grant that we may obtain pardon through the prayers of blessed Apollinaris, Your ", + "id": "Oratio" + }, + { + "body": "*St. Liborius Bishop and Confessor*\nGrant, we beseech You, almighty God, that the venerable feast of blessed Liborius, Y", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:1-11*\nBeloved: I exhort the presbyters among you - I, yo", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 22:24-30*\nAt that time, there arose a dispute among the discip", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "O Lord, graciously look down upon these gifts which we bring in commemoration of Your blessed Priest and Martyr Apollina", + "id": "Secreta" + }, + { + "body": "*St. Liborius Bishop and Confessor*\nMay Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while w", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:20-21*\nMaster, you handed over to me five talents; behold, I have gained five others in addition. Well done, go", + "id": "Communio" + }, + { + "body": "Receiving Your holy sacrament, we beseech You, O Lord, that the lasting protection of St. Apollinaris may support us; fo", + "id": "Postcommunio" + }, + { + "body": "*St. Liborius Bishop and Confessor*\nGrant, we beseech You, almighty God, that as we thank You for the favors we have rec", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-24": [ + { + "body": "*Ps. 27:8-9.*\nThe Lord is the strength of His people, the saving refuge of His anointed. Save Your people, O Lord, and b", + "id": "Introitus" + }, + { + "body": "O God of the heavenly powers, creator of all good things, implant in our hearts the love of Your Name, and bestow upon u", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Christina*\nMay Blessed Christina, Your Virgin and Martyr, we beseech You, O Lord, implore pardon for ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:3-11.*\nBrethren: All we who have been baptized into ", + "id": "Lectio" + }, + { + "body": "*Ps. 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants!\n℣. O Lord, You have been our refuge through all gen", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 8:1-9*\nAt that time, when there was a great crowd with Jesus, ", + "id": "Evangelium" + }, + { + "body": "*Ps. 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. S", + "id": "Offertorium" + }, + { + "body": "Mercifully hear our humble prayers, O Lord, and graciously accept these offerings of Your people, and grant that no pray", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Christina*\nGraciously receive, O Lord, the sacrifices offered to You, by the merits of Blessed Christ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps. 26:6*\nI will go round, and offer in His tent, sacrifices with shouts of gladness; I will sing and chant praise to t", + "id": "Communio" + }, + { + "body": "We have been filled with Your gifts, O Lord; grant, we beseech You, that we may be cleansed and strengthened by their ef", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Christina*\nFilled with the abundance of Your divine gift, we beseech You, O Lord our God, that, by th", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-25": [ + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", + "id": "Introitus" + }, + { + "body": "Protect Your people and make them holy, O Lord, so that, guarded by the help of Your Apostle James, they may please You ", + "id": "Oratio" + }, + { + "body": "*Of St. Christopher*\nGrant, we beseech You, almighty God, that we, who honor the anniversary of the death of blessed Chr", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:9-15*\nBrethren: I think God has set fo", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:20-23*\nAt that time, the mother of the sons of Zebedee c", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nThrough all the earth their voice resounds, and to the ends of the world, their message.", + "id": "Offertorium" + }, + { + "body": "May the holy martyrdom of blessed James, the Apostle, make acceptable the offerings of Your people; and because our own ", + "id": "Secreta" + }, + { + "body": "*Of St. Christopher*\nGrant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration o", + "id": "Commemoratio Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nYou who have followed Me shall sit on thrones, judging the twelve tribes of Israel.", + "id": "Communio" + }, + { + "body": "Help us, O Lord, we beseech You, by the intercession of blessed James, Your Apostle, for whose festival we have joyfully", + "id": "Postcommunio" + }, + { + "body": "*Of St. Christopher*\nGrant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration o", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-26": [ + { + "body": "Let us all rejoice in the Lord, celebrating a festival in honor of blessed Anne, on whose solemnity the angels rejoice, ", + "id": "Introitus" + }, + { + "body": "O God, Who in Your kindness gave blessed Anne the grace to be the mother of her who mothered Your only-begotten Son, gra", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness.\n℣. Therefore God, your God, has anointed you with the oil of gladness. A", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nThe daughters of kings come to meet You, the queen takes her place at Your right hand in gilded clothing, surr", + "id": "Offertorium" + }, + { + "body": "Look with favor, O Lord, upon the offerings here before You, that, through the intercession of blessed Anne who bore the", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Communio" + }, + { + "body": "Strengthened by the heavenly sacrament, we beseech You, O Lord our God, that, by the intercession of blessed Anne, whom ", + "id": "Postcommunio" + } + ], + "2025-07-27": [ + { + "body": "*Ps 46:2*\nAll you peoples clap your hands, shout to God with cries of gladness.\n*Ps 46:3*\nFor the Lord, the Most High, t", + "id": "Introitus" + }, + { + "body": "O God, Whose providence never fails to set things in order, we humbly beseech You to remove from us whatever is harmful ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:19-23*\nBrethren: I speak in a human way because of t", + "id": "Lectio" + }, + { + "body": "*Ps 33:12, 6*\nCome, children, hear me; I will teach you the fear of the Lord.\n℣. Look to Him that you may be radiant wit", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 7:15-21*\nAt that time, Jesus said to His disciples: Beware ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nAs though it were holocausts of rams and bullocks, or thousands of fat lambs, so let our sacrifice be in Your", + "id": "Offertorium" + }, + { + "body": "O God, You Who have given us in one perfect sacrifice the fulfillment of the various sacrifices made under the Old Law, ", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nIncline Your ear to me, make haste to deliver me.", + "id": "Communio" + }, + { + "body": "May Your healing action, O Lord, mercifully rid us of our evil inclinations and lead us to do good.\nThrough our Lord…", + "id": "Postcommunio" + } + ], + "2025-07-28": [ + { + "body": "*Ps 78:11; 78:12; 78:10*\nLet the prisoners’ sighing come before You, O Lord; repay our neighbors sevenfold into their bo", + "id": "Introitus" + }, + { + "body": "May the martyrdom of Your Saints Nazarius, Celsus, Victor and Innocent, give us courage, O Lord, and may it give us a he", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 10:17-20*\nGod gave the holy ones the recompense of their labors, conducted them by a", + "id": "Lectio" + }, + { + "body": "*Ex 15:11*\nGod is glorious in His Saints, wonderful in majesty, a worker of wonders.\n*Ex 15:6*\n℣. Your right hand, O Lor", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:9-19*\nAt that time, Jesus said to His disciples, When you h", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nGod is wonderful in His Saints; the God of Israel is He Who gives power and strength to His people. Blessed b", + "id": "Offertorium" + }, + { + "body": "Grant, almighty God, that we may please You by these gifts which we bring in honor of Your Saints Nazarius, Celsus, Vict", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Wis 3:4-6*\nFor if before men they be punished, God tried them; as gold in the furnace, He proved them, and as sacrifici", + "id": "Communio" + }, + { + "body": "Be appeased by the prayers of Your Saints Nazarius, Celsus, Victor and Innocent, O Lord, and grant, we beseech You, that", + "id": "Postcommunio" + } + ], + "2025-07-29": [ + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Introitus" + }, + { + "body": "Graciously hear us, God our Saviour, that as we rejoice in the festival of blessed Martha, Your Virgin, so may we be nou", + "id": "Oratio" + }, + { + "body": "*Ss Felicis, Simplicii, Faustini et Beatricis.*\nGrant, we beseech You, O Lord, that as Christian people on earth rejoice", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 10:17-18; 11:1-2*\nBrethren: He who boas", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nIn your splendor and your beauty ride on triumphant, and reign.\n℣. In the cause of truth and mercy and for the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:38-42*\nAt that time, Jesus entered a certain village; and a", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings come to meet You; the queen takes her place at Your right hand in gilded clothing, sur", + "id": "Offertorium" + }, + { + "body": "May the offerings of Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits they ", + "id": "Secreta" + }, + { + "body": "*Ss Felicis, Simplicii, Faustini et Beatricis.*\nIn memory of Your holy Martyrs, Felix, Simplicius, Faustinus and Beatric", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4, 6*\nThe five wise virgins took oil in their vessels with the lamps: and at midnight a cry arose, Behold, the ", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us by the intercession of her whose festival we are", + "id": "Postcommunio" + }, + { + "body": "*Ss Felicis, Simplicii, Faustini et Beatricis.*\nWe beseech You, almighty God, that the feast of Your holy Martyrs, Felix", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-30": [ + { + "body": "*Ps 46:2*\nAll you peoples clap your hands, shout to God with cries of gladness.\n*Ps 46:3*\nFor the Lord, the Most High, t", + "id": "Introitus" + }, + { + "body": "O God, Whose providence never fails to set things in order, we humbly beseech You to remove from us whatever is harmful ", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Abdon & Sennen*\nO God, Who bestowed upon Your Saints, Abdon and Sennen, an abundance of grace to bri", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:19-23*\nBrethren: I speak in a human way because of t", + "id": "Lectio" + }, + { + "body": "*Ps 33:12, 6*\nCome, children, hear me; I will teach you the fear of the Lord.\n℣. Look to Him that you may be radiant wit", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 7:15-21*\nAt that time, Jesus said to His disciples: Beware ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nAs though it were holocausts of rams and bullocks, or thousands of fat lambs, so let our sacrifice be in Your", + "id": "Offertorium" + }, + { + "body": "O God, You Who have given us in one perfect sacrifice the fulfillment of the various sacrifices made under the Old Law, ", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Abdon & Sennen*\nMay this sacrificial gift, we beseech You, O Lord, which we offer in commemorating t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nIncline Your ear to me, make haste to deliver me.", + "id": "Communio" + }, + { + "body": "May Your healing action, O Lord, mercifully rid us of our evil inclinations and lead us to do good.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Abdon & Sennen*\nBy the working of this sacred rite O Lord, may our sins be erased, and through the i", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-31": [ + { + "body": "*Phil. 2:10-11*\nAt the name of Jesus every knee should bend of those in heaven, on earth and under the earth, and every ", + "id": "Introitus" + }, + { + "body": "O God, Who, to spread abroad the greater glory of Your name through St. Ignatius, strengthened the Church militant with ", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 2:8-10; 3:10-12*\nBeloved: Remember that Jesus C", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "May the prayers of St. Ignatius be present with our offerings, O Lord God, that the most holy sacrament in which you pla", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:49*\nI have come to cast fire upon the earth, and what will I but that it be kindled?", + "id": "Communio" + }, + { + "body": "May the sacrifice of praise, O Lord, offered in thanksgiving in honor of St. Ignatius bring us, by his intercession, to ", + "id": "Postcommunio" + } + ], + "2025-08-01": [ + { + "body": "*Ps 46:2*\nAll you peoples clap your hands, shout to God with cries of gladness.\n*Ps 46:3*\nFor the Lord, the Most High, t", + "id": "Introitus" + }, + { + "body": "O God, Whose providence never fails to set things in order, we humbly beseech You to remove from us whatever is harmful ", + "id": "Oratio" + }, + { + "body": "*Commemoration Holy Machabees *\nMay the brotherly crown of Your Martyrs, O Lord, give us joy and may it afford to our fa", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:19-23*\nBrethren: I speak in a human way because of t", + "id": "Lectio" + }, + { + "body": "*Ps 33:12, 6*\nCome, children, hear me; I will teach you the fear of the Lord.\n℣. Look to Him that you may be radiant wit", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 7:15-21*\nAt that time, Jesus said to His disciples: Beware ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nAs though it were holocausts of rams and bullocks, or thousands of fat lambs, so let our sacrifice be in Your", + "id": "Offertorium" + }, + { + "body": "O God, You Who have given us in one perfect sacrifice the fulfillment of the various sacrifices made under the Old Law, ", + "id": "Secreta" + }, + { + "body": "*Commemoration Holy Machabees *\nMay we perform with pious mind the sacramental rite, O Lord, in honor of Your holy Marty", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nIncline Your ear to me, make haste to deliver me.", + "id": "Communio" + }, + { + "body": "May Your healing action, O Lord, mercifully rid us of our evil inclinations and lead us to do good.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Holy Machabees *\nGrant, we beseech You, almighty God, that we may follow more and more the faith of those", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-02": [ + { + "body": "*Luke 4:18*\nThe Spirit of the Lord is upon me, because He has anointed me; to bring good news to the poor He has sent me", + "id": "Introitus" + }, + { + "body": "O God, Who through blessed Alphonsus Mary, Your Confessor and Bishop, fired with love for souls, enriched Your Church wi", + "id": "Oratio" + }, + { + "body": "*For St. Stephen I, Pope and Martyr*\nO God, Who gladden us with the yearly festival of blessed N., Your Martyr and Bisho", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 2:1-7*\nDearly beloved: Be strengthened in the g", + "id": "Lectio" + }, + { + "body": "*Ps 118:52-53*\nI remember your ordinances of old, O Lord, and I am comforted. Indignation seizes me because of the wicke", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Pr 3:9, 27*\nHonor the Lord with your wealth, and give Him the first fruits of all your produce. Do not withhold him fro", + "id": "Offertorium" + }, + { + "body": "O Lord, Jesus Christ, Who granted to St. Aphonsus Mary to celebrate this rite and thereby offer himself as a holy victim", + "id": "Secreta" + }, + { + "body": "*For St. Stephen I, Pope and Martyr*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of bl", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ecclus 50:1, 9*\nA great priest, who in his time renovated the house, and in his days reinforced the temple, as a bright", + "id": "Communio" + }, + { + "body": "O God, Who made St. Alphonsus Mary, Your Confessor and Bishop, a faithful dispenser of this divine sacrament, grant by h", + "id": "Postcommunio" + }, + { + "body": "*For St. Stephen I, Pope and Martyr*\nMay this Communion, O Lord, cleanse us of sin, and through the intercession of bles", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-03": [ + { + "body": "*Ps 47:10-11*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to the", + "id": "Introitus" + }, + { + "body": "Ever graciously bestow upon us, we beseech You, O Lord, the spirit of thinking and doing what is right, so that we, who ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:12-17*\nBrethren: We are debtors, not to the flesh, t", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nBe my rock of refuge, O God, a stronghold to give me safety.\n*Ps 70:1*\n℣. In You, O God, I take refuge; O Lord", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 16:1-9*\nAt that time, Jesus spoke to His disciples this parabl", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28, 32*\nLowly people You save, O Lord, but haughty eyes You bring low; for who is God except You, O Lord?", + "id": "Offertorium" + }, + { + "body": "Accept, we beseech You, O Lord, the gifts which we bring to You out of Your own bounty, so that these most holy sacramen", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nTaste and see how good the Lord is; happy the man who takes refuge in Him.", + "id": "Communio" + }, + { + "body": "May the heavenly sacrament, O Lord, renew our minds and bodies, so that we may feel the benefit of the worship we perfor", + "id": "Postcommunio" + } + ], + "2025-08-04": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who graciously enlightened Your Church by the good works and teaching of St. Dominic, Your Confessor, grant by hi", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Sanctify, O Lord, the gifts dedicated to You, that by the merits of St. Dominic, Your Confessor, they may obtain a heali", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that we who are heavy laden by the weight of our sins may be sustained by the spiri", + "id": "Postcommunio" + } + ], + "2025-08-05": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nBefore all ages, in the beginning, He created me, and through all ", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, without spot to your maidenhood, were made the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with you; blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "We have received help for our salvation, O Lord; grant, we beseech You, that we may everywhere be protected by the patro", + "id": "Postcommunio" + } + ], + "2025-08-06": [ + { + "body": "*Ps 76:19*\nYour lightening illumined the world; the earth quivered and quaked.\n*Ps 83:2-3*\nHow lovely is Your dwelling p", + "id": "Introitus" + }, + { + "body": "O God, Who in the glorious Transfiguration of Your only-begotten Son strengthened the mysteries of faith by the testimon", + "id": "Oratio" + }, + { + "body": "*Of Pope Sixtus II, Felicissimus and Agapitus, Martyrs.*\nO God, Who permits us to celebrate the anniversary of the death", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Peter the Apostle\n*2 Pet. 1:16-19*\nBeloved: We were not following fictitious tales ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 17:1-9*\nAt that time, Jesus took Peter, James and his broth", + "id": "Evangelium" + }, + { + "body": "*Ps 111:3*\nWealth and riches shall be in His house; His generosity shall endure forever. Alleluia.", + "id": "Offertorium" + }, + { + "body": "Hallow our offerings, we beseech You, O Lord, through the glorious Transfiguration of Your only-begotten Son, and cleans", + "id": "Secreta" + }, + { + "body": "*Of Pope Sixtus II, Felicissimus and Agapitus, Martyrs.*\nWe offer You, O Lord, the gifts of our homage; may they be plea", + "id": "Commemoratio Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 17:9*\nTell the vision you have seen to no one, till the Son of Man has risen from the dead.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that by the understanding of our minds made pure, we may grasp the mystery of the T", + "id": "Postcommunio" + }, + { + "body": "*Of Pope Sixtus II, Felicissimus and Agapitus, Martyrs.*\nGrant, we beseech You, O almighty and merciful God, that throug", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-07": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who bestowed upon St. Cajetan, Your Confessor, the grace to follow the apostolic way of life; grant us by his int", + "id": "Oratio" + }, + { + "body": "*For St. Donatus*\nO God, the glory of Your priests, grant, we beseech You, that we may enjoy the help of Your holy Marty", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 31:8-11*\nHappy the man found without fault, who turns not aside after gai", + "id": "Lectio" + }, + { + "body": "*Ps 91:12, 14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 6:24-33*\nAt that time, Jesus said to His disciples: No man ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that our humble offerings may be pleasing to You as an honor paid to Your saints, a", + "id": "Secreta" + }, + { + "body": "*For St. Donatus*\nGrant, we beseech You, O Lord, through the intercession of Your holy Martyr and Bishop, Donatus, whom ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that we who have partaken of heavenly nourishment, may, by the intercession of St. Cajetan", + "id": "Postcommunio" + }, + { + "body": "*For St. Donatus*\nAlmighty and merciful God, Who make us both the partakers and the ministers of Your sacraments, grant,", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-08": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, Who made St. John Mary glorious by priestly zeal and untiring fervor in prayer and penance, g", + "id": "Oratio" + }, + { + "body": "*Commemoration of Ss. Cyriacus, Largus and Smaragdus, Martyrs*\nO God, Who gladden us with the annual festival of Your ho", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Commemoration of Ss. Cyriacus, Largus and Smaragdus, Martyrs*\nMay our service be acceptable in Your sight, O Lord, and ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + }, + { + "body": "*Commemoration of Ss. Cyriacus, Largus and Smaragdus, Martyrs*\nWith our strength renewed from having shared in Your sacr", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-09": [ + { + "body": "*Ps 111:9*\nLavishly he gives to the poor; his generosity shall endure forever; his horn shall be exalted in glory.\n*Ps 1", + "id": "Introitus" + }, + { + "body": "Heed our prayers, O Lord, and by the intercession of Your blessed Martyr Lawrence, whose feast we anticipate, graciously", + "id": "Oratio" + }, + { + "body": "*For St. Romanus, Martyr*\nGrant, we beseech You, almighty God, that by the intercession of St. Romanus, Your Martyr, we ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 51:1-8, 12*\nI will give You thanks, O Lord, O King; I will praise You, O ", + "id": "Lectio" + }, + { + "body": "*Ps 111:9, 2*\nLavishly he gives to the poor; his generosity shall endure forever.\n℣. His posterity shall be mighty upon ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:24-27*\nAt that time, Jesus said to His disciples, If any", + "id": "Evangelium" + }, + { + "body": "*Job 16:20*\nMy prayer is pure, and therefore I ask that a place may be given to my voice in heaven; for there is my judg", + "id": "Offertorium" + }, + { + "body": "Look with favor upon the sacrificial gifts we offer You, O Lord, and through this holy exchange, loosen the bonds of our", + "id": "Secreta" + }, + { + "body": "*For St. Romanus, Martyr*\nHaving received our gifts and prayers, we beseech You, O Lord, mercifully hear us and cleanse ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord, our God, that as we joyfully commemorate St. Lawrence, Your Martyr, in this life, so may ", + "id": "Postcommunio" + }, + { + "body": "*For St. Romanus, Martyr*\nWe beseech You, O almighty God, that we who have eaten the food of heaven may find in it, by t", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-10": [ + { + "body": "*Ps 53:6-7*\nBehold, God is my helper, the Lord sustains my life. Turn back the evil upon my foes; in Your faithfulness d", + "id": "Introitus" + }, + { + "body": "May Your merciful ears be open, O Lord, to the prayers of those who humbly entreat You; grant that they may ask for what", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Lawrence*\nGrant us, we beseech You, almighty God, to extinguish the flames of our sins, as You grante", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 10:6-13*\nBrethren: We should not lust af", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nO Lord, our Lord, how glorious is Your name over all the earth!\n℣. You have elevated Your Majesty above the hea", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:41-47*\nAt that time, when Jesus drew near to Jerusalem and ", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9-12*\nThe precepts of the Lord are right, rejoicing the heart, and His ordinances sweeter than syrup or honey fro", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, O Lord, to take part worthily and frequently in this sacramental action: for as often as this ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Lawrence*\nReceive, we beseech You, O Lord, the gifts fully offered to You, and, by the interceding me", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*John 6:57*\nHe who eats My Flesh, and drinks My Blood, abides in Me, and I in him, says the Lord.", + "id": "Communio" + }, + { + "body": "May the partaking of Your sacrament, we beseech You, O Lord, cleanse us and unite us.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Lawrence*\nFilled with Your sacred gifts, we humbly pray You, O Lord, that as we perform this sacred a", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-11": [ + { + "body": "*Ps 53:6-7*\nBehold, God is my helper, the Lord sustains my life. Turn back the evil upon my foes; in Your faithfulness d", + "id": "Introitus" + }, + { + "body": "May Your merciful ears be open, O Lord, to the prayers of those who humbly entreat You; grant that they may ask for what", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Tiburtius & Susanna*\nMay the constant protection of Your holy Martyrs, Tiburtius and Susanna, suppor", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 10:6-13*\nBrethren: We should not lust af", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nO Lord, our Lord, how glorious is Your name over all the earth!\n℣. You have elevated Your Majesty above the hea", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:41-47*\nAt that time, when Jesus drew near to Jerusalem and ", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9-12*\nThe precepts of the Lord are right, rejoicing the heart, and His ordinances sweeter than syrup or honey fro", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, O Lord, to take part worthily and frequently in this sacramental action: for as often as this ", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Tiburtius & Susanna*\nHeed the prayers of Your people, O Lord; look with favor on their offerings, so", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 6:57*\nHe who eats My Flesh, and drinks My Blood, abides in Me, and I in him, says the Lord.", + "id": "Communio" + }, + { + "body": "May the partaking of Your sacrament, we beseech You, O Lord, cleanse us and unite us.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Tiburtius & Susanna*\nWe have received, O Lord, the pledge of everlasting redemption; may it, by the ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-12": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "Hear us, O God, our Saviour, that as we are gladdened by the festival of blessed N. thy virgin, so we may learn from it ", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the service of thy holy people be acceptable to Thee, O Lord, and honorable to thy saints, through whose merits we k", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "Thou hast fed thy servants, O Lord, with the holy gifts; comfort us ever we pray, by her intercession whose festival we ", + "id": "Postcommunio" + } + ], + "2025-08-13": [ + { + "body": "*Ps 53:6-7*\nBehold, God is my helper, the Lord sustains my life. Turn back the evil upon my foes; in Your faithfulness d", + "id": "Introitus" + }, + { + "body": "May Your merciful ears be open, O Lord, to the prayers of those who humbly entreat You; grant that they may ask for what", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Hippolytus & Cassian*\nGrant, we beseech You, almighty God, that the great festival of Your blessed M", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 10:6-13*\nBrethren: We should not lust af", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nO Lord, our Lord, how glorious is Your name over all the earth!\n℣. You have elevated Your Majesty above the hea", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:41-47*\nAt that time, when Jesus drew near to Jerusalem and ", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9-12*\nThe precepts of the Lord are right, rejoicing the heart, and His ordinances sweeter than syrup or honey fro", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, O Lord, to take part worthily and frequently in this sacramental action: for as often as this ", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Hippolytus & Cassian*\nLook with favor, O Lord, upon the offerings of Your people on the devout festi", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 6:57*\nHe who eats My Flesh, and drinks My Blood, abides in Me, and I in him, says the Lord.", + "id": "Communio" + }, + { + "body": "May the partaking of Your sacrament, we beseech You, O Lord, cleanse us and unite us.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Hippolytus & Cassian*\nMay the eating of Your sacrament save us, O Lord, and make us stand firm in th", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-14": [ + { + "body": "*Ps 44:13; 44:15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to ", + "id": "Introitus" + }, + { + "body": "O God, Who chose for Your dwelling the virginal womb of the blessed Mary, grant, we beseech You, that, with the help of ", + "id": "Oratio" + }, + { + "body": "*For St. Eusebius*\nO God, Who gladden us with the annual feast of blessed Eusebius, Your Confessor, mercifully grant tha", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:23-31*\nI bud forth delights like the vine, my blossoms become fruit fa", + "id": "Lectio" + }, + { + "body": "℣. Blessed and venerable are you, O Virgin Mary, who, without spot were made the Mother of the Saviour.\n℣. O Virgin, Mot", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "Blessed are you, O Virgin Mary, you who bore the Creator of all things; you brought forth Him Who made you, and you rema", + "id": "Offertorium" + }, + { + "body": "O Lord, may the prayer of the Mother of God, recommend our offerings to Your mercy, that she, whom You transported from ", + "id": "Secreta" + }, + { + "body": "*For St. Eusebius*\nWe offer these sacrifices of praise, O Lord, in memory of Your Saints, trusting that by them we may b", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the Eternal Father.", + "id": "Communio" + }, + { + "body": "Grant Your protection for our weakness, O merciful God, that we who look forward to the feast of God’s holy Mother, may,", + "id": "Postcommunio" + }, + { + "body": "*For St. Eusebius*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by hi", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-15": [ + { + "body": "*Apoc 12:1*\nA great sign appeared in heaven: a woman clothed with the sun, and the moon was under her feet, and upon her", + "id": "Introitus" + }, + { + "body": "Almighty, everlasting God, Who took up, body and soul, the Immaculate Virgin Mary, Mother of Your Son, into heavenly glo", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Judith\n*Judith 13:22-25; 15:10*\nThe Lord has blessed you by His power, because by you He has bro", + "id": "Lectio" + }, + { + "body": "*Ps 44:11-12, 14*\nHear, O daughter, and see; turn your ear; for the King shall desire your beauty.\n℣. All glorious is th", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:41-50*\nAt that time, Elizabeth was filled with the Holy Spir", + "id": "Evangelium" + }, + { + "body": "*Gen 3:15*\nI will put enmity between you and the Woman, between your seed and her seed.", + "id": "Offertorium" + }, + { + "body": "May the offering of our devotion rise unto You, O Lord, and by the intercession of the most Blessed Virgin Mary, who was", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*Luke 1:48-49*\nAll generations shall call me blessed; because He Who is mighty has done great things for me.", + "id": "Communio" + }, + { + "body": "Having partaken, O Lord, of the sacrament of salvation, grant, we beseech You, that through the merits and intercession ", + "id": "Postcommunio" + } + ], + "2025-08-16": [ + { + "body": "*Ps 111:9*\nLavishly he gives to the poor, his generosity shall endure forever; his horn shall be exalted in glory.\n*Ps 1", + "id": "Introitus" + }, + { + "body": "O God, Who, in preference to Your other Saints, willed St. Joachim to be the father of Your Son’s Mother; grant, we bese", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 31:8-11*\nHappy the man found without fault, who turns not aside after gai", + "id": "Lectio" + }, + { + "body": "*Ps 111:9, 2*\nLavishly he gives to the poor; his generosity shall endure forever.\n℣. His posterity shall be mighty upon ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 1:1-16*\nThe book of the origin of Jesus Christ, the Son of ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nYou crowned him with glory and honor. You have given him rule over the works of Your hands, O Lord.", + "id": "Offertorium" + }, + { + "body": "Graciously accept, most merciful God, the sacrifice offered to Your majesty in honor of the holy Patriarch Joachim, fath", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that by this sacrament which we have received, and by the pleading merits of holy Joachim,", + "id": "Postcommunio" + } + ], + "2025-08-17": [ + { + "body": "*Ps 54:17-20; 54:23*\nWhen I call upon the Lord, He heard my voice, from those who war against me; and He humbled them, W", + "id": "Introitus" + }, + { + "body": "O God, You manifest Your power, particularly in forbearance and pity, show us Your mercy again and again, so that hasten", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 12:2-11*\nBrethren: You know that when yo", + "id": "Lectio" + }, + { + "body": "*Ps 16:8, 2*\nKeep me, O Lord, as the apple of Your eye; hide me in the shadow of Your wings.\n℣. From You let judgment co", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:9-14*\nAt that time, Jesus spoke this parable to some who tr", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul, O Lord. In You, O my God, I trust; let me not be put to shame, let not my enemies ", + "id": "Offertorium" + }, + { + "body": "Let the sacred gifts be offered to You, O Lord, Who have given them to be presented for the honor of Your name, for in t", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nYou shall be pleased with due sacrifices, burnt offerings and holocausts on Your altar, O Lord.", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord our God, that in Your mercy You will not withhold Your help from those whom You constantly restor", + "id": "Postcommunio" + } + ], + "2025-08-18": [ + { + "body": "*Ps 54:17-20; 54:23*\nWhen I call upon the Lord, He heard my voice, from those who war against me; and He humbled them, W", + "id": "Introitus" + }, + { + "body": "O God, You manifest Your power, particularly in forbearance and pity, show us Your mercy again and again, so that hasten", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Agapitus*\nMay Your Church rejoice, O God, trusting in the support of St. Agapitus, Your Martyr, and, ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 12:2-11*\nBrethren: You know that when yo", + "id": "Lectio" + }, + { + "body": "*Ps 16:8, 2*\nKeep me, O Lord, as the apple of Your eye; hide me in the shadow of Your wings.\n℣. From You let judgment co", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:9-14*\nAt that time, Jesus spoke this parable to some who tr", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul, O Lord. In You, O my God, I trust; let me not be put to shame, let not my enemies ", + "id": "Offertorium" + }, + { + "body": "Let the sacred gifts be offered to You, O Lord, Who have given them to be presented for the honor of Your name, for in t", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Agapitus*\nAccept, O Lord, the gifts we bring on his festival by whose spiritual protection we hope to", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nYou shall be pleased with due sacrifices, burnt offerings and holocausts on Your altar, O Lord.", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord our God, that in Your mercy You will not withhold Your help from those whom You constantly restor", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Agapitus*\nYou have fed Your household, O Lord, with the holy sacrament; ever comfort us, we beseech Y", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-19": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who wondrously enkindled St. John, Your Confessor, to promote the religious veneration of the Sacred Hearts of Je", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2025-08-20": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", + "id": "Introitus" + }, + { + "body": "O God, Who gave to Your people, blessed Bernard, as a minister of salvation, grant, we beseech You, that we who cherishe", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 39:6-14*\nThe just man will give his heart to resort early to the Lord his", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: \"You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree; like a cedar of Libanus shall he grow.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed Bernard, Your Confessor and Doctor, fail us never, O Lord; may it commend our offerings", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "So that Your sacrificial rites may grant us salvation, we pray You, O Lord, that blessed Bernard, Your Confessor and ill", + "id": "Postcommunio" + } + ], + "2025-08-21": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, Who endowed St. Jane Frances, burning with love of You, with a wondrous strength of spirit th", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may this sacrificial gift enkindle in us that fire of love which burned so warmly in the heart of St. Jane Franc", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "Pour upon us, O Lord, the spirit of Your love, that You Who have filled us with the strength of heavenly bread, may thro", + "id": "Postcommunio" + } + ], + "2025-08-22": [ + { + "body": "*Heb 4:16*\nLet us draw near with confidence to the throne of grace, that we may obtain mercy and find grace to help in t", + "id": "Introitus" + }, + { + "body": "Almighty, everlasting God, Who in the Heart of the Blessed Virgin Mary prepared a dwelling place worthy of the Holy Spir", + "id": "Oratio" + }, + { + "body": "*Commemoration of Sts. Timothy, Hippolytus and Symphorianus, Martyrs*\nMercifully give us Your help, we beseech You, O Lo", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:23-31*\nI bud forth delights like the vine, my blossoms become fruit fa", + "id": "Lectio" + }, + { + "body": "*Ps 12:6*\nLet my Heart rejoice in Your salvation; let me sing of the Lord, He has been good to me. Yes, I will sing to t", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:25-27*\nAt that time, there were standing by the Cross of Je", + "id": "Evangelium" + }, + { + "body": "*Luke 1:47, 49*\nMy spirit rejoices in God my Saviour; because He Who is mighty has done great things for me, and holy is", + "id": "Offertorium" + }, + { + "body": "Offering the spotless Lamb to Your Majesty, O Lord, we pray that our hearts may be set aflame by the fire that burned so", + "id": "Secreta" + }, + { + "body": "*Commemoration of Sts. Timothy, Hippolytus and Symphorianus, Martyrs*\nAccept, O Lord, the offering which Your consecrate", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*John 19:27*\nJesus said to His Mother, Woman, behold your son. Then He said to the disciple, Behold your mother. And fro", + "id": "Communio" + }, + { + "body": "Refreshed by divine gifts, we humbly beseech You, O Lord, that by the intercession of the Blessed Virgin Mary, the solem", + "id": "Postcommunio" + }, + { + "body": "*Commemoration of Sts. Timothy, Hippolytus and Symphorianus, Martyrs*\nFilled with the abundance of the divine sacrament,", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-23": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "O God, Who through St. Philip, Your Confessor, gave us an outstanding example of humility, grant that Your household may", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a spe", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", + "id": "Postcommunio" + } + ], + "2025-08-24": [ + { + "body": "*Ps 67:6 67:7 67:36*\nGod is in His holy dwelling, God Who makes men of one mind to dwell in a house; He shall give power", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, You Who in the abundance of Your love always grant more than Your humble petitioners deserve, and", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Bartholomew*\nAlmighty, eternal God, Who bestowed on us the devout and holy joy of this day to celebra", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 15:1-10*\nBrethren: I recall to your mind", + "id": "Lectio" + }, + { + "body": "*Ps 27:7*\nIn God my heart trusts, and I find help; then my heart exults, and with my song I give Him thanks.\n℣. To You, ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 7:31-37*\nAt that time, Jesus departing from the district of Ty", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nI will extol You, O Lord, for You drew me near and did not let my enemies rejoice over me; O Lord, I cried o", + "id": "Offertorium" + }, + { + "body": "Look with mercy, we beseech You, O Lord, upon our act of worship that the gift we offer may be acceptable to You and may", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Bartholomew*\nWe beseech You, O Lord, that we who keep the feast of Your blessed Apostle Bartholomew, ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Prov 3:9-10*\nHonor the Lord with your wealth, with first fruits of all your produce. Then will your barns be filled wit", + "id": "Communio" + }, + { + "body": "By receiving Your sacrament, O Lord, may we experience Your help in mind and body, that being cured in both, we may glor", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Bartholomew*\nWe have received, O Lord, the pledge of everlasting redemption; may it, by the intercess", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-25": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who transported Your blessed Confessor Louis from an earthly throne to the glory of the heavenly kingdom, by his ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nThe Lord guided the just in direct ways, showed him the kingdom of God, an", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:12-26*\nAt that time, Jesus spoke this parable to His discip", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (Alleluia.)", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that as blessed Louis, Your Confessor, spurning the delights of the world, labored ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "O God, Who made Your blessed Confessor, Louis, wonderful on earth and glorious in heaven, make him, we beseech You, the ", + "id": "Postcommunio" + } + ], + "2025-08-26": [ + { + "body": "*Ps 67:6 67:7 67:36*\nGod is in His holy dwelling, God Who makes men of one mind to dwell in a house; He shall give power", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, You Who in the abundance of Your love always grant more than Your humble petitioners deserve, and", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Zephyrinus*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 15:1-10*\nBrethren: I recall to your mind", + "id": "Lectio" + }, + { + "body": "*Ps 27:7*\nIn God my heart trusts, and I find help; then my heart exults, and with my song I give Him thanks.\n℣. To You, ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 7:31-37*\nAt that time, Jesus departing from the district of Ty", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nI will extol You, O Lord, for You drew me near and did not let my enemies rejoice over me; O Lord, I cried o", + "id": "Offertorium" + }, + { + "body": "Look with mercy, we beseech You, O Lord, upon our act of worship that the gift we offer may be acceptable to You and may", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Zephyrinus*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Prov 3:9-10*\nHonor the Lord with your wealth, with first fruits of all your produce. Then will your barns be filled wit", + "id": "Communio" + }, + { + "body": "By receiving Your sacrament, O Lord, may we experience Your help in mind and body, that being cured in both, we may glor", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Zephyrinus*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, t", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-27": [ + { + "body": "*Ps 33:12*\nCome, children, hear me; I will teach you the fear of the Lord.\n*Ps 33:2*\nI will bless the Lord at all times;", + "id": "Introitus" + }, + { + "body": "O God, Who through St. Joseph, Your Confessor, did graciously will to provide Your Church with a new help for the traini", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nThe Lord guided the just in direct ways, showed him the kingdom of God, an", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-5*\nAt that time, the disciples came to Jesus, saying, ", + "id": "Evangelium" + }, + { + "body": "*Ps 9:17*\nThe desire of the afflicted the Lord hears; You pay heed to the strengthening of their hearts.", + "id": "Offertorium" + }, + { + "body": "Upon Your altar we heap our offerings, O Lord, that they may win mercy for us through the prayer of him whom You have gi", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 10:14*\nLet the little children come to Me, and do not hinder them, for of such is the kingdom of God.", + "id": "Communio" + }, + { + "body": "Made holy by the sacrament of salvation, O Lord, we pray that, by the intercession of St. Joseph, Your Confessor, we may", + "id": "Postcommunio" + } + ], + "2025-08-28": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", + "id": "Introitus" + }, + { + "body": "Give heed to our humble prayers, almighty God, and through the intercession of blessed Augustine, Your Confessor and Bis", + "id": "Oratio" + }, + { + "body": "*For St. Hermes*\nO God, Who strengthened blessed Hermes, Your Martyr, with the virtue of steadfastness in his suffering,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time, Jesus said to His disciples: \"You ar", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree; like a cedar of Libanus shall he grow.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed Augustine, Your Bishop and Doctor, fail us never, O Lord; may it commend our offerings ", + "id": "Secreta" + }, + { + "body": "*For St. Hermes*\nWe offer You, O Lord, the sacrifice of praise in memory of Your Saints; grant, we beseech You, that wha", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "So that Your sacrificial rites may grant us salvation; we pray You, O Lord, that blessed Augustine, Your Bishop and illu", + "id": "Postcommunio" + }, + { + "body": "*For St. Hermes*\nFilled with heavenly blessings, O Lord, we beseech Your mercy that, by the intercession of blessed Herm", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-29": [ + { + "body": "*Ps 118:46-47*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, whi", + "id": "Introitus" + }, + { + "body": "May the great festival of St. John the Baptist, Your Precursor and Martyr, we beseech You, O Lord, assure for us the res", + "id": "Oratio" + }, + { + "body": "*For St. Sabina*\nO God, Who among the other miracles of Your power bestowed the victory of martyrdom even upon the weake", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Jeremias\n*Jer 1:17-19*\nIn those days, the word of the Lord came to me, saying: Gird your loins; ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 6:17-29*\nAt that time, Herod had sent and taken John, and boun", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "We pray, O Lord, that the offerings we bring You in memory of the agonizing death of Your holy Martyr, John the Baptist,", + "id": "Secreta" + }, + { + "body": "*For St. Sabina*\nGraciously accept the sacrificial gifts offered You, O Lord, through the merits of blessed Sabina, Your", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nYou placed on his head, O Lord, a crown of pure gold.", + "id": "Communio" + }, + { + "body": "May the solemn festival of St. John the Baptist bring us the grace, O Lord, both to venerate the foreshadowing of the wo", + "id": "Postcommunio" + }, + { + "body": "*For St. Sabina*\nWe who have been refreshed by the richness of Your divine sacrament, beseech You, O Lord our God, that ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-30": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "Almighty God, Giver of all good things, Who willed that blessed Rose, imbued in early life with the dew of heavenly grac", + "id": "Oratio" + }, + { + "body": "*For Sts. Felix and Adauctus*\nWe humbly entreat Your Majesty, O Lord, that as You continually gladden us by the commemor", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", + "id": "Secreta" + }, + { + "body": "*For Sts. Felix and Adauctus*\nLook with favor, O Lord, on the offerings of Your people; may they find profitable for the", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us by the intercession of her whose festival we are", + "id": "Postcommunio" + }, + { + "body": "*For Sts. Felix and Adauctus*\nFilled by the holy sacrament, O Lord, we beseech You that, by the intercession of Your Sai", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-31": [ + { + "body": "*Ps 69:2-3*\nDeign, O God, to rescue me; O Lord, make haste to help me. Let them be put to shame and confounded who seek ", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, by Whose grace Your faithful people serve You worthily and righteously, grant, we beseech You", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 3:4-9*\nBrethren: Such is the assurance ", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nI will bless the Lord at all times; His praise shall be ever in my mouth.\n℣. Let my soul glory in the Lord; ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:23-37*\nAt that time, Jesus said to His disciples: Blessed a", + "id": "Evangelium" + }, + { + "body": "*Ex 32:11, 13-14.*\nMoses prayed in the sight of the Lord his God and said, Why, O Lord, is Your indignation enkindled ag", + "id": "Offertorium" + }, + { + "body": "O Lord, we beseech You, graciously look upon the offerings which we lay upon Your sacred altar; so that they may bring u", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13-15*\nThe earth is replete with the fruit of Your works, O Lord; You produce bread from the earth, and wine to ", + "id": "Communio" + }, + { + "body": "May the holy reception of this sacrament, we beseech You, O Lord, restore us to life, and bestow upon us forgiveness and", + "id": "Postcommunio" + } + ], + "2025-09-01": [ + { + "body": "*Ps 69:2-3*\nDeign, O God, to rescue me; O Lord, make haste to help me. Let them be put to shame and confounded who seek ", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, by Whose grace Your faithful people serve You worthily and righteously, grant, we beseech You", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Giles*\nMay the pleading of blessed Aegidius Abbot make us acceptable unto thee O Lord, we pray; that ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 3:4-9*\nBrethren: Such is the assurance ", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nI will bless the Lord at all times; His praise shall be ever in my mouth.\n℣. Let my soul glory in the Lord; ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:23-37*\nAt that time, Jesus said to His disciples: Blessed a", + "id": "Evangelium" + }, + { + "body": "*Ex 32:11, 13-14.*\nMoses prayed in the sight of the Lord his God and said, Why, O Lord, is Your indignation enkindled ag", + "id": "Offertorium" + }, + { + "body": "O Lord, we beseech You, graciously look upon the offerings which we lay upon Your sacred altar; so that they may bring u", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Giles*\nWe offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13-15*\nThe earth is replete with the fruit of Your works, O Lord; You produce bread from the earth, and wine to ", + "id": "Communio" + }, + { + "body": "May the holy reception of this sacrament, we beseech You, O Lord, restore us to life, and bestow upon us forgiveness and", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Giles*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helpe", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-02": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "We beseech You, almighty God, that Your Church be worthy to have as her glorious defender in heaven blessed Stephen, You", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 31:8-11*\nHappy the man found without fault, who turns not aside after gai", + "id": "Lectio" + }, + { + "body": "*Ps 91:12, 14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:12-26*\nAt that time, Jesus spoke this parable to His discip", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (Alleluia.)", + "id": "Offertorium" + }, + { + "body": "Look with favor, almighty God, upon the offerings we bring to you, and grant that we, who celebrate the mysteries of our", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that we may follow in proper reverence the faith of blessed Stephen, Your Confessor", + "id": "Postcommunio" + } + ], + "2025-09-03": [ + { + "body": "*Ps 88:20-22*\nI have raised up the chosen one from the people; with My holy oil I have anointed him, that My hand may be", + "id": "Introitus" + }, + { + "body": "O God Who, for the defense of the Catholic faith and the restoration of all things in Christ, filled St. Pius, the Supre", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Thessalonians\n*1 Thess. 2:2-8*\nBrethren: We had confidence i", + "id": "Lectio" + }, + { + "body": "*Ps 39:10-11*\nI announced Your justice in the vast assembly; I did not restrain my lips as You, O Lord, know.\n℣. Your ju", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 21:15-17*\nAt that time, Jesus said to Simon Peter, Simon, son ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nCome, children, hear me; I will teach you the fear of the Lord.", + "id": "Offertorium" + }, + { + "body": "Having graciously accepted our offerings, we beseech You, O Lord, that we may ever treat this divine sacrament with sinc", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 6:56-57*\nMy Flesh is food indeed, and My Blood is drink indeed. He who eats My Flesh and drinks My Blood, abides i", + "id": "Communio" + }, + { + "body": "We, who have been filled with strength at the heavenly table, beseech You, O Lord, our God, that by the intercession of ", + "id": "Postcommunio" + } + ], + "2025-09-04": [ + { + "body": "*Ps 69:2-3*\nDeign, O God, to rescue me; O Lord, make haste to help me. Let them be put to shame and confounded who seek ", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, by Whose grace Your faithful people serve You worthily and righteously, grant, we beseech You", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 3:4-9*\nBrethren: Such is the assurance ", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nI will bless the Lord at all times; His praise shall be ever in my mouth.\n℣. Let my soul glory in the Lord; ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:23-37*\nAt that time, Jesus said to His disciples: Blessed a", + "id": "Evangelium" + }, + { + "body": "*Ex 32:11, 13-14.*\nMoses prayed in the sight of the Lord his God and said, Why, O Lord, is Your indignation enkindled ag", + "id": "Offertorium" + }, + { + "body": "O Lord, we beseech You, graciously look upon the offerings which we lay upon Your sacred altar; so that they may bring u", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13-15*\nThe earth is replete with the fruit of Your works, O Lord; You produce bread from the earth, and wine to ", + "id": "Communio" + }, + { + "body": "May the holy reception of this sacrament, we beseech You, O Lord, restore us to life, and bestow upon us forgiveness and", + "id": "Postcommunio" + } + ], + "2025-09-05": [ + { + "body": "*Ecclus. 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the digni", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that the venerable feast of Your blessed Confessor and Bishop Laurence may increase", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, a", + "id": "Lectio" + }, + { + "body": "*Ecclus 44:16*\nBehold, a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not found the like to hi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + } + ], + "2025-09-06": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + } + ], + "2025-09-07": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nLook to Your covenant, O Lord, forsake not forever the lives of Your afflicted ones. Arise, O L", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, grant us an increase of faith, hope and charity; and make us love what You command so that we may", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 3:16-22*\nBrethren: The promises were made to Abraha", + "id": "Lectio" + }, + { + "body": "*Ps 73:20, 19, 22*\nLook to Your covenant, O Lord, be not unmindful of the lives of Your afflicted ones.\n℣. Arise, O Lord", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 17:11-19*\nAt that time, Jesus was going to Jerusalem, He was p", + "id": "Evangelium" + }, + { + "body": "*Ps 30:15-16*\nMy trust is in You, O Lord; I say, You are my God. In Your hands is my destiny.", + "id": "Offertorium" + }, + { + "body": "Look with favor upon Your people, O Lord, look with favor upon their gifts; so that, appeased by this offering, You will", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Wis 16:20*\nYou have given us, O Lord, bread from heaven, endowed with all delights and the sweetness of every taste.", + "id": "Communio" + }, + { + "body": "Having received Your heavenly sacrament, O Lord, may we make progress, we beseech You, toward our everlasting salvation.", + "id": "Postcommunio" + } + ], + "2025-09-08": [ + { + "body": "Hail, holy Mother, who brought forth the King Who rules heaven and earth forever and ever.\n*Ps 44:2*\nMy heart overflows ", + "id": "Introitus" + }, + { + "body": "Bestow upon Your servants, we beseech You, O Lord, the gift of heavenly grace, that, as the child-bearing of the Blessed", + "id": "Oratio" + }, + { + "body": "*For St. Adrian*\nGrant, we beseech You, almighty God, that we, who venerate the anniversary of the death of blessed Adri", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 8:22-35*\nThe Lord begot me, the firstborn of His ways, the forerunner of His prod", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, without spot to your maidenhood, were made the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 1:1-16*\nThe book of the origins of Jesus Christ, the Son of", + "id": "Evangelium" + }, + { + "body": "Blessed are you, O Virgin Mary, you who bore the Creator of all things; you brought forth Him Who made you, and you rema", + "id": "Offertorium" + }, + { + "body": "May the humanity of Your only-begotten Son help us, O Lord, as He, Who, born of a virgin did not lessen but consecrated ", + "id": "Secreta" + }, + { + "body": "*For St. Adrian*\nNow that You have received our gifts and prayers, we beseech You, O Lord, cleanse us by Your heavenly m", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "We have partaken of the solemn sacrament on this annual feast: grant we beseech You, that it may bring us assistance bot", + "id": "Postcommunio" + }, + { + "body": "*For St. Adrian*\nGrant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration of Yo", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-09": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nLook to Your covenant, O Lord, forsake not forever the lives of Your afflicted ones. Arise, O L", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, grant us an increase of faith, hope and charity; and make us love what You command so that we may", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Gorgonius*\nMay Gorgonius, Your Saint, O Lord, gladden us by his intercession, and cause us to rejoice", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 3:16-22*\nBrethren: The promises were made to Abraha", + "id": "Lectio" + }, + { + "body": "*Ps 73:20, 19, 22*\nLook to Your covenant, O Lord, be not unmindful of the lives of Your afflicted ones.\n℣. Arise, O Lord", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 17:11-19*\nAt that time, Jesus was going to Jerusalem, He was p", + "id": "Evangelium" + }, + { + "body": "*Ps 30:15-16*\nMy trust is in You, O Lord; I say, You are my God. In Your hands is my destiny.", + "id": "Offertorium" + }, + { + "body": "Look with favor upon Your people, O Lord, look with favor upon their gifts; so that, appeased by this offering, You will", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Gorgonius*\nO Lord, may the offering which we, Your servants, present be pleasing to You because St. G", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Wis 16:20*\nYou have given us, O Lord, bread from heaven, endowed with all delights and the sweetness of every taste.", + "id": "Communio" + }, + { + "body": "Having received Your heavenly sacrament, O Lord, may we make progress, we beseech You, toward our everlasting salvation.", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Gorgonius*\nMay Your everlasting kindness fill Your faithful people with new life, and may they be eve", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-10": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "Be mindful, O Lord, of our humble prayers in this commemoration of Your Saints, so that we, who have no confidence in ou", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a spe", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", + "id": "Postcommunio" + } + ], + "2025-09-11": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nLook to Your covenant, O Lord, forsake not forever the lives of Your afflicted ones. Arise, O L", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, grant us an increase of faith, hope and charity; and make us love what You command so that we may", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Protus & Hyacinth*\nMay the precious witness of Your blessed Martyrs, Protus and Hyacinth, comfort us", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 3:16-22*\nBrethren: The promises were made to Abraha", + "id": "Lectio" + }, + { + "body": "*Ps 73:20, 19, 22*\nLook to Your covenant, O Lord, be not unmindful of the lives of Your afflicted ones.\n℣. Arise, O Lord", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 17:11-19*\nAt that time, Jesus was going to Jerusalem, He was p", + "id": "Evangelium" + }, + { + "body": "*Ps 30:15-16*\nMy trust is in You, O Lord; I say, You are my God. In Your hands is my destiny.", + "id": "Offertorium" + }, + { + "body": "Look with favor upon Your people, O Lord, look with favor upon their gifts; so that, appeased by this offering, You will", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Protus & Hyacinth*\nO Lord, in memory of Your holy Martyrs, Protus and Hyacinth, we pay our debt to Y", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Wis 16:20*\nYou have given us, O Lord, bread from heaven, endowed with all delights and the sweetness of every taste.", + "id": "Communio" + }, + { + "body": "Having received Your heavenly sacrament, O Lord, may we make progress, we beseech You, toward our everlasting salvation.", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Protus & Hyacinth*\nThrough the prayer of Your blessed Martyrs, Protus and Hyacinth, may the receptio", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-12": [ + { + "body": "*Ps 44:13, 15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to the", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that through the protection of the most holy Virgin Mary, Your faithful people who ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:23-31*\nI bud forth delights like the vine, my blossoms become fruit fa", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, without spot were made the Mother of the Saviour.\n℣. O Virgin, Mother", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with you; blessed are you among women, and blessed is the fruit o", + "id": "Offertorium" + }, + { + "body": "By Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, may this offering bring us prosperity and p", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord, that having partaken of these helps for our salvation, we may be protected, wherever we a", + "id": "Postcommunio" + } + ], + "2025-09-13": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + } + ], + "2025-09-14": [ + { + "body": "*Ps 83:10-11*\nBehold, O God, our Protector, and look upon the face of Your Anointed. Better is one day in Your courts th", + "id": "Introitus" + }, + { + "body": "Protect Your Church by Your abiding mercy, we beseech You, O Lord, and since all mortals fall without You, may Your help", + "id": "Oratio" + }, + { + "body": "*Commemoration Exaltation of the Holy Cross*\nO God, Who gladden us this day by the yearly feast of the Exaltation of the", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:16-24*\nBrethren: Walk in the Spirit, and you will", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nIt is better to take refuge in the Lord than to trust in man.\n℣. It is better to take refuge in the Lord th", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 6:24-33*\nAt that time, Jesus said to His disciples: No man ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nThe Angel of the Lord encamps around those who fear Him, and delivers them. Taste and see how good the Lord ", + "id": "Offertorium" + }, + { + "body": "Grant us, Lord, we beseech You, that this salutary sacrifice may be not only a cleansing from our sins but also a propit", + "id": "Secreta" + }, + { + "body": "*Commemoration Exaltation of the Holy Cross*\nWe who are about to take as nourishment the Body and Blood of Jesus Christ ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Matt 6:33*\nSeek first the Kingdom of God; and all things shall be given you besides, says the Lord.", + "id": "Communio" + }, + { + "body": "May Your sacrament, O God, ever cleanse and strengthen us, and bring us to everlasting salvation.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Exaltation of the Holy Cross*\nStand by us, O Lord our God, and protect by Your everlasting help those to ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-15": [ + { + "body": "*Jn. 19:25*\nThere were standing by the Cross of Jesus His Mother, and His Mother’s sister, Mary of Cleophas, and Salome,", + "id": "Introitus" + }, + { + "body": "O God, in Whose Passion the sword, according to the prophecy of blessed Simeon, pierced through the soul of Mary, the gl", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Judith\n*Judith 13:22; 13:25*\nThe Lord has blessed you by His power, Who by you has brought our e", + "id": "Lectio" + }, + { + "body": "Sorrowful and tearful are you, O Virgin Mary, standing by the Cross of the Lord Jesus, your Son and Redeemer.\n℣. O Virgi", + "id": "Graduale" + }, + { + "body": "At the Cross her station keeping,\nStood the mournful Mother weeping,\nClose to Jesus to the last.\n\nThrough her heart, His", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:25-27*\nAt that time, there were standing by the Cross of Je", + "id": "Evangelium" + }, + { + "body": "*Jer 18:20*\nBe mindful, O Virgin Mother of God, when you stand in the sight of the Lord, to speak good things for us, an", + "id": "Offertorium" + }, + { + "body": "O Lord Jesus Christ, we offer You prayers and sacrificial gifts, humbly beseeching You that, as we prayerfully recall th", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Happy the Heart of the Blessed Virgin Mary, which without dying earned the palm of martyrdom beneath the Cross of our Lo", + "id": "Communio" + }, + { + "body": "O Lord Jesus Christ, may the sacrifices of which we have partaken, while devoutly celebrating the piercing of Your Virgi", + "id": "Postcommunio" + } + ], + "2025-09-16": [ + { + "body": "*Ps 78:11; 78:12; 78:10*\nLet the prisoners’ sighing come before You, O Lord; repay our neighbors sevenfold into their bo", + "id": "Introitus" + }, + { + "body": "May the feast of the blessed Martyrs and Bishops, Cornelius and Cyprian, protect us, O Lord, we beseech You, and may the", + "id": "Oratio" + }, + { + "body": "*For Sts. Euphemia, Lucy and Geminianus*\nO Lord, grant that our prayers may bear fruit in joy, that we who each year dev", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Wisdom\n*Wis 3:1-8*\nThe souls of the just are in the hands of God, and no torment of death shall ", + "id": "Lectio" + }, + { + "body": "*Exo 15:11*\nGod is glorious in His Saints, wonderful in majesty, a worker of wonders.\n*Exo 15:6*\n℣. Your right hand, O L", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:9-19*\nAt that time, Jesus said to His disciples, When you h", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nGod is wonderful in His Saints; the God of Israel is He Who gives power and strength to His people. Blessed b", + "id": "Offertorium" + }, + { + "body": "Be mindful, O Lord, of our humble prayers in this commemoration of Your Saints, that we who have no confidence in our ow", + "id": "Secreta" + }, + { + "body": "*For Sts. Euphemia, Lucy and Geminianus*\nGraciously look upon the prayers of Your people, O Lord, and grant that we may ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Wis 3:4-6*\nFor if before men they be punished, God tried them; as gold in the furnace, He proved them, and as sacrifici", + "id": "Communio" + }, + { + "body": "Refreshed by the sacrament of salvation, we beseech You, O Lord, that we may be aided by the prayers of those whose fest", + "id": "Postcommunio" + }, + { + "body": "*For Sts. Euphemia, Lucy and Geminianus*\nO Lord, hear our prayers and comfort us by the continual assistance of Your Mar", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-17": [ + { + "body": "*Ps 83:10-11*\nBehold, O God, our Protector, and look upon the face of Your Anointed. Better is one day in Your courts th", + "id": "Introitus" + }, + { + "body": "Protect Your Church by Your abiding mercy, we beseech You, O Lord, and since all mortals fall without You, may Your help", + "id": "Oratio" + }, + { + "body": "*Commemoration Stigmata of St. Francis*\nO Lord, Jesus Christ, Who, to inflame our hearts with the fire of Your love when", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:16-24*\nBrethren: Walk in the Spirit, and you will", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nIt is better to take refuge in the Lord than to trust in man.\n℣. It is better to take refuge in the Lord th", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 6:24-33*\nAt that time, Jesus said to His disciples: No man ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nThe Angel of the Lord encamps around those who fear Him, and delivers them. Taste and see how good the Lord ", + "id": "Offertorium" + }, + { + "body": "Grant us, Lord, we beseech You, that this salutary sacrifice may be not only a cleansing from our sins but also a propit", + "id": "Secreta" + }, + { + "body": "*Commemoration Stigmata of St. Francis*\nMake holy the gifts dedicated to You, O Lord, and by the intercession of blessed", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 6:33*\nSeek first the Kingdom of God; and all things shall be given you besides, says the Lord.", + "id": "Communio" + }, + { + "body": "May Your sacrament, O God, ever cleanse and strengthen us, and bring us to everlasting salvation.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Stigmata of St. Francis*\nO God, Who in many ways showed in blessed Francis the wondrous mysteries of the ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-18": [ + { + "body": "*Ecclus 1:14-15*\nThe love of God is honorable wisdom; and they to whom she shall show herself, love her by the sight, an", + "id": "Introitus" + }, + { + "body": "O God, Who willed that all things be drawn unto Your Son when He was raised above the earth, mercifully grant, by the me", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor 13:1-8*\nBrethren: If I should speak with ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:1-14*\nAt that time, Jesus spoke to the chief priests and", + "id": "Evangelium" + }, + { + "body": "*Ps 34:13*\nBut as for me, when they were troublesome to me, I was clothed with haircloth, and I humbled my soul with fas", + "id": "Offertorium" + }, + { + "body": "We offer these sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from bo", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 68:30-31*\nI am afflicted and in pain; let Your saving help, O God, protect me. I will praise the name of God in song", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2025-09-19": [ + { + "body": "*Ps 36:39*\nThe salvation of the just is from the Lord; He is their refuge in time of distress.\n*Ps 36:1*\nBe not vexed ov", + "id": "Introitus" + }, + { + "body": "O God, Who gladden us by the annual festival of Your Martyrs Januarius and Companions, grant that we may be inspired by ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St Paul the Apostle to the Jews\n*Heb 10:32-38*\nBrethren: Call to mind the days gone by, in whi", + "id": "Lectio" + }, + { + "body": "*Ps 39:18-19*\nWhen the just cry out the Lord hears them, and from all their distress He rescues them.\n℣. The Lord is clo", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:3-13*\nAt that time, as Jesus was sitting on the Mount of", + "id": "Evangelium" + }, + { + "body": "*Wis 3:1-3*\nThe souls of the just are in the hand of God, and no torment shall touch them. They seemed, in the view of t", + "id": "Offertorium" + }, + { + "body": "Be appeased by the gifts we offer You, O Lord, and through the intercession of Your holy Martyrs Januarius and companion", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 10:27*\nWhat I tell you in darkness, speak it in the light, says the Lord; and what you hear whispered, preach it o", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us of sin, and, through the intercession of Your holy Martyrs Januarius and companio", + "id": "Postcommunio" + } + ], + "2025-09-20": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Eustace & Companions*\nO God, who dost permit us to keep the birthday of thy holy Martyrs Eustache an", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Eustace & Companions*\nWe present to thee, O Lord, these gifts for our sacrifice, as honoring thy hol", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Eustace & Companions*\nGrant, we beseech You, O almighty and merciful God, that through the intercess", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-21": [ + { + "body": "*Ps 85:1-3*\nIncline Your ear, O Lord; answer me; save Your servant, O my God, who trusts in You. Have pity on me, O Lord", + "id": "Introitus" + }, + { + "body": "May Your abiding mercy, O Lord, cleanse and strengthen Your Church, and, since without You she cannot exist in safety, l", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Matthew*\nMay we be helped, O Lord, by the prayers of the blessed Apostle and Evangelist Matthew, that", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:25-26; 6:1-10*\nBrethren: If we live by the Spirit", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nIt is good to give thanks to the Lord, to sing to Your name, Most High.\n℣. To proclaim Your kindness at dawn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:11-16*\nAt that time, Jesus went to a town called Naim; and H", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2-4*\nI have waited, waited for the Lord, and He stooped toward me, and heard my cry. And He put a new song into m", + "id": "Offertorium" + }, + { + "body": "May Your sacrament, O Lord, always keep us and guard us from the assaults of the devil.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Matthew*\nMay the prayers of the blessed Apostle and Evangelist, Matthew, recommend to You the offerin", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*John 6:52*\nThe bread that I will give is My Flesh for the life of the world.", + "id": "Communio" + }, + { + "body": "May the working of the heavenly gift, O Lord, so possess us, mind and body, that the action of the sacrament, rather tha", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Matthew*\nHaving received Your sacrament, O Lord, we implore You, that what we have celebrated in hono", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-22": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "O God, Who endowed blessed Bishop Thomas with the virtue of special pity for the poor, we beseech You, through his inter", + "id": "Oratio" + }, + { + "body": "*For St. Maurice and Companions, Martyrs*\nBe merciful, almighty God, we beseech You, that the solemn feast of Your marty", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May the annual festival of blessed Thomas, Your Confessor and Bishop, we beseech You, O Lord, render us pleasing to Your", + "id": "Secreta" + }, + { + "body": "*For St. Maurice and Companions, Martyrs*\nLook graciously, we beseech You, O Lord, upon the offerings we bring in commem", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "O God, Who rewards faithful souls, grant that, through the prayers of blessed Thomas, Your Confessor and Bishop, whose h", + "id": "Postcommunio" + }, + { + "body": "*For St. Maurice and Companions, Martyrs*\nRefreshed and made joyful by the heavenly sacrament, we humbly beseech You, O ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-23": [ + { + "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", + "id": "Introitus" + }, + { + "body": "Eternal Shepherd, look with favor upon Your flock. Safeguard and shelter it forevermore through blessed Linus, Your Mart", + "id": "Oratio" + }, + { + "body": "*For St. Thecla*\nGrant, we beseech You, O almighty God, that we who celebrate the\nanniversary of the death of blessed Th", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nAnd let them exalt him in the church of the people: and praise him in the chair of the ancients.\n℣. ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", + "id": "Offertorium" + }, + { + "body": "By the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that thy flock may everywhere pr", + "id": "Secreta" + }, + { + "body": "*For St. Thecla*\nAccept, O Lord, the gifts we bring on the festival of blessed\nThecla, Your Virgin and Martyr, through w", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", + "id": "Communio" + }, + { + "body": "Being appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that under thy direction and pow", + "id": "Postcommunio" + }, + { + "body": "*For St. Thecla*\nMay the sacrament we have received, aid us, O Lord, and by the\nintercession of blessed Thecla, Your Vir", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-24": [ + { + "body": "*Ps 80:2-5*\nSing joyfully to God our strength; acclaim the God of Jacob. Take up a pleasant psalm with the harp; blow th", + "id": "Introitus" + }, + { + "body": "May our frailty, we beseech You, O Lord, find support in the help of Your mercy; so that what is marred by its own natur", + "id": "Oratio" + }, + { + "body": "*Amos 9:13-15*\nThus says the Lord God: Yes, days are coming, when the plowman shall overtake the reaper, and the vintage", + "id": "LectioL1" + }, + { + "body": "*Ps 112:5-7*\nWho is like the Lord, our God, Who is enthroned on high and looks upon the heavens and the earth below?\n℣. ", + "id": "GradualeL1" + }, + { + "body": "O Lord, we beseech You, grant to Your praying household that, as they fast from bodily food, they may also abstain menta", + "id": "OratioL1" + }, + { + "body": "*Commemoration Our Lady of Ransom*\nO God, Who for the deliverance of Christians from the power of the pagans, graciously", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Esdra\n*2 Esd. 8:1-10*\nIn those days, all the people were gathered together as one man, to the st", + "id": "Lectio" + }, + { + "body": "*Ps 32:12, 6*\nHappy the nation whose God is the Lord, the people the Lord has chosen for His own inheritance.\n℣. By the ", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Mark\n*Mark 9:16-28*\nAt that time, one of the crowd answering, said to Jesus", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly. And I will lift up my hands to Your commands, ", + "id": "Offertorium" + }, + { + "body": "May this offering, O Lord, we beseech You, wipe away our transgressions, and make holy the minds and bodies of Your serv", + "id": "Secreta" + }, + { + "body": "*Commemoration Our Lady of Ransom*\nThrough Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*2 Esd. 8:10*\nEat fat meats, and drink sweet wine, and send portions to those who have not prepared for themselves: beca", + "id": "Communio" + }, + { + "body": "In partaking of Your heavenly gifts, we humbly entreat You, O Lord, that by Your grace we may receive what, through Your", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Our Lady of Ransom*\nWe have received help for our salvation, O Lord; grant, we beseech You, that we may e", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-25": [ + { + "body": "*Ps 85:1-3*\nIncline Your ear, O Lord; answer me; save Your servant, O my God, who trusts in You. Have pity on me, O Lord", + "id": "Introitus" + }, + { + "body": "May Your abiding mercy, O Lord, cleanse and strengthen Your Church, and, since without You she cannot exist in safety, l", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:25-26; 6:1-10*\nBrethren: If we live by the Spirit", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nIt is good to give thanks to the Lord, to sing to Your name, Most High.\n℣. To proclaim Your kindness at dawn", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:11-16*\nAt that time, Jesus went to a town called Naim; and H", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2-4*\nI have waited, waited for the Lord, and He stooped toward me, and heard my cry. And He put a new song into m", + "id": "Offertorium" + }, + { + "body": "May Your sacrament, O Lord, always keep us and guard us from the assaults of the devil.\nThrough our Lord…", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 6:52*\nThe bread that I will give is My Flesh for the life of the world.", + "id": "Communio" + }, + { + "body": "May the working of the heavenly gift, O Lord, so possess us, mind and body, that the action of the sacrament, rather tha", + "id": "Postcommunio" + } + ], + "2025-09-26": [ + { + "body": "*Ps 104:3-4*\nRejoice, O hearts that seek the Lord! Look to the Lord, and be strengthened; seek His face evermore.\n*Ps 10", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that we who devoutly keep the sacred observances year by year may be pleasing unto ", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Cyprian & Justina *\nMay the continual protection of the blessed Martyrs Cyprian and Justina comfort ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Osee the Prophet\n*Osee 14:2-10*\nThus says the Lord God: Return, O Israel, to the Lord, your God;", + "id": "Lectio" + }, + { + "body": "*Ps 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants.\n℣. O Lord, You have been our refuge through all gene", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to Luke\n*Luke 7:36-50*\nAt that time, one of the Pharisees asked Jesus to dine ", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2, 5*\nBless the Lord, O my soul, and forget not all His benefits; and your youth shall be renewed like the eagle", + "id": "Offertorium" + }, + { + "body": "May the gift of our fasting, we beseech You, O Lord, be acceptable to You, and by its purifying power make us worthy of ", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Cyprian & Justina *\nWe offer You, O Lord, the gifts of our devotion; may they by Your mercy, be rend", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:22, 24*\nTake away from me reproach and contempt, for I observe Your decrees, O Lord. Your decrees are my delight", + "id": "Communio" + }, + { + "body": "We beseech You, O almighty God, that, showing gratitude for the gifts we have received, we may obtain yet greater benefi", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Cyprian & Justina *\nGrant us, we beseech You, O Lord, through the intercession of Your holy Martyrs,", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-27": [ + { + "body": "*Ps 94:6-7*\nCome, let us bow down in worship to God; let us kneel before the Lord. Let us weep before Him Who made us; f", + "id": "Introitus" + }, + { + "body": "Almighty, everlasting God, You Who cure body and soul through healing self-denial, we humbly entreat Your majesty to hea", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Leviticus\n*Lev 23:26-32*\nIn those days, the Lord said to Moses, The tenth of this seventh month ", + "id": "LectioL1" + }, + { + "body": "*Ps 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God our Saviour; bec", + "id": "GradualeL1" + }, + { + "body": "Grant us, we beseech You, almighty God, that by fasting we may be filled with Your grace, and by abstinence we may be ma", + "id": "OratioL1" + }, + { + "body": "Lesson from the book of Leviticus\n*Lev 23:39-43*\nIn those days, the Lord said to Moses, On the fifteenth day, then, of t", + "id": "LectioL2" + }, + { + "body": "*Ps 83:10, 9*\nBehold, O God, our Protector, and look upon Your servants.\n℣. O Lord God of Hosts, hear the prayers of You", + "id": "GradualeL2" + }, + { + "body": "Protect Your people, we beseech You, O Lord, so that we may by Your gift, obtain those means of eternal salvation which ", + "id": "OratioL2" + }, + { + "body": "*Mich. 7:14, 16, 18-20.*\nO Lord, our God, shepherd Your people with Your staff, the flock of Your inheritance, that dwel", + "id": "LectioL3" + }, + { + "body": "*Ps 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants.\n℣. O Lord, You have been our refuge through all gene", + "id": "GradualeL3" + }, + { + "body": "Grant, we beseech You, almighty God, that we may so fast from bodily food as to abstain also from the sins that beset us", + "id": "OratioL3" + }, + { + "body": "*Zach. 8:14-19*\nIn those days, the word of the Lord came to me saying: Thus says the Lord of Hosts: As I determined to h", + "id": "LectioL4" + }, + { + "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", + "id": "GradualeL4" + }, + { + "body": "As You give us the grace, O Lord, to offer You our solemn fast, grant us, we beseech You, the support of Your forgivenes", + "id": "OratioL4" + }, + { + "body": "*Dan 3:49-51*\nIn those day, the Angel of the Lord went down into the furnace with Azaria and his companions, drove the f", + "id": "LectioL5" + }, + { + "body": "O God, You Who tempered the flames of fire for the three young men, mercifully grant that the flames of sin may not burn", + "id": "OratioL5" + }, + { + "body": "*Commemoration Sts. Cosmas & Damian*\nGrant, we beseech You, almighty God, that we who celebrate the anniversary of the d", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson\n*Heb 9:2-12*\nBrethren: There was set up a tabernacle in the outer part of which were the lampstand and the table ", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nPraise the Lord, all you nations; glorify Him, all you peoples!\n℣. For steadfast is His kindness toward us,", + "id": "Graduale" + }, + { + "body": "Continuation of the Holy Gospel according to\n*Luke 13:6-17*\nAt that time, Jesus spoke to the multitudes this parable: A ", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nO Lord, the God of my salvation, by day I cry out, at night I clamor in Your presence. Let my prayer come be", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the gift in the sight of Your majesty may obtain for us the grace of reverent ", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Cosmas & Damian*\nLet not the gracious prayer of Your saints fail us, O Lord, but may it make our off", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Lev 21:41, 43*\nIn the seventh month you shall keep this feast, as I made the Israelites dwell in booths, when I led the", + "id": "Communio" + }, + { + "body": "May Your sacrament, we beseech You, O Lord, produce in us what it contains, and may we share in reality what we now perf", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Cosmas & Damian*\nMay the participation granted in Your heavenly banquet and the united prayers of th", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-28": [ + { + "body": "*Ps 85:3; 85:5*\nHave pity on me, O Lord, for to You I call all the day; for You, O Lord, are good and forgiving, aboundi", + "id": "Introitus" + }, + { + "body": "May Your grace, we beseech You, O Lord, ever go before us and follow us, and may it make us ever intent upon good works.", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 3:13-21*\nBrethren: I pray you not to be disheartene", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:1-11*\nAt that time, when Jesus entered the house of one of ", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nDeign, O Lord, to rescue me; let all be put to shame and confusion who seek to snatch away my life. Deign,", + "id": "Offertorium" + }, + { + "body": "Cleanse us by this sacrifice, we beseech You, O Lord, and by the workings of Your mercy, make us worthy to receive it.\nT", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nO Lord, I will tell of Your singular justice; O God, You have taught me from my youth; and now that I am o", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You, graciously cleanse and renew our minds with the heavenly sacrament, so we may thereby also recei", + "id": "Postcommunio" + } + ], + "2025-09-29": [ + { + "body": "*Ps 102:20*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding, obeying His spoken word. (Al", + "id": "Introitus" + }, + { + "body": "O God, Who assign according to a wondrous order the duties of Angels and men, mercifully grant that our life on earth be", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Revelation\n*Apoc 1:1-5*\nIn those days, God signified those things which must shortly come to pas", + "id": "Lectio" + }, + { + "body": "*Ps 102:20; 102:1*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding.\n℣. Bless the Lord, O ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-10*\nAt that time, the disciples came to Jesus, saying,", + "id": "Evangelium" + }, + { + "body": "*Apoc 8:3-4*\nAn Angel stood near the altar of the temple, having a golden censer in his hand, and there was given to him", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, humbly praying You to accept them graciously and to grant that they may be he", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nAll you Angels of the Lord, bless the Lord: sing a hymn, and exalt Him above all forever. (Alleluia.)", + "id": "Communio" + }, + { + "body": "Relying upon the intercession of blessed Michael, Your Archangel, O Lord, we humbly pray You, that what we have received", + "id": "Postcommunio" + } + ], + "2025-09-30": [ + { + "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", + "id": "Introitus" + }, + { + "body": "O God, Who graciously gave Your Church blessed Jerome, Your Confessor and peerless teacher, to explain the Holy Scriptur", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "By Your heavenly gifts, grant us, O Lord, we pray, to serve You with a free mind, so that the offerings we present, may,", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "Filled with heavenly food, we beseech You, O Lord, that by the intercession of blessed Jerome, Your Confessor, we may be", + "id": "Postcommunio" + } + ], + "2025-10-01": [ + { + "body": "*Ps 85:3; 85:5*\nHave pity on me, O Lord, for to You I call all the day; for You, O Lord, are good and forgiving, aboundi", + "id": "Introitus" + }, + { + "body": "May Your grace, we beseech You, O Lord, ever go before us and follow us, and may it make us ever intent upon good works.", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Remigius*\nGrant, we beseech Thee, almighty God, that the solemn feast of blessed Remigius, Thy Confes", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 3:13-21*\nBrethren: I pray you not to be disheartene", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:1-11*\nAt that time, when Jesus entered the house of one of ", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nDeign, O Lord, to rescue me; let all be put to shame and confusion who seek to snatch away my life. Deign,", + "id": "Offertorium" + }, + { + "body": "Cleanse us by this sacrifice, we beseech You, O Lord, and by the workings of Your mercy, make us worthy to receive it.\nT", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Remigius*\nMay Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we refle", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nO Lord, I will tell of Your singular justice; O God, You have taught me from my youth; and now that I am o", + "id": "Communio" + }, + { + "body": "O Lord, we beseech You, graciously cleanse and renew our minds with the heavenly sacrament, so we may thereby also recei", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Remigius*\nGrant, we beseech You, almighty God, that as we thank You for the favors we have received, ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-02": [ + { + "body": "*Ps 102:20*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding, obeying His spoken word.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, Who in Your wondrous providence graciously send Your Angels to watch over us, grant that we who pray to You may b", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Exodus\n*Exod 23:20-23*\nThus says the Lord God: See, I am sending My Angel before you, to guard y", + "id": "Lectio" + }, + { + "body": "*Ps 90:11-12*\nTo His Angels God has given command about you, that they guard you in all your ways.\n℣. Upon their hands t", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-10*\nAt that time, the disciples came to Jesus, saying,", + "id": "Evangelium" + }, + { + "body": "*Ps 102:20-21*\nBless the Lord, all you His Angels, His ministers, who do His will, obeying His spoken word.", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the gifts which we offer in honor of Your holy Angels, and mercifully grant that we may be freed from pr", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nAll you Angels of the Lord, bless the Lord: sing a hymn, and exalt Him above all forever.", + "id": "Communio" + }, + { + "body": "Rejoicing on the feast of Your holy Angels, O Lord, we have received the divine sacrament; we pray that we may ever be f", + "id": "Postcommunio" + } + ], + "2025-10-03": [ + { + "body": "*Song 4:8-9*\nCome from Lebanon, My bride, come from Lebanon, come! You have ravished My Heart, My sister, My bride; you ", + "id": "Introitus" + }, + { + "body": "O Lord, Who said: Unless you become as little children, you shall not enter into the Kingdom of Heaven, grant us, we bes", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 66:12-14*\nThus says the Lord: Lo, I will spread prosperity over her like a river, an", + "id": "Lectio" + }, + { + "body": "*Matt 11:25*\nI praise You, Father, Lord of heaven and earth, that You did hide these things from the wise and prudent, a", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-4*\nAt that time, the disciples came to Jesus, saying, ", + "id": "Evangelium" + }, + { + "body": "*Luke 1:46; 1:48-49.*\nMy soul magnifies the Lord, and my spirit rejoices in God my Saviour; because He has regarded the ", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy prayers of blessed Theresa, Your Virgin, commend our sacrifice to You, so that it m", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Deut 32:10-12*\nHe led her about and taught her, and He guarded her as the apple of His eye. As an eagle He spread His w", + "id": "Communio" + }, + { + "body": "May the heavenly sacrament, O Lord, enkindle in us that fire of love which urged blessed Theresa, Your Virgin, to offer ", + "id": "Postcommunio" + } + ], + "2025-10-04": [ + { + "body": "*Gal 6:14*\nBut as for me, God forbid that I should glory, save in the Cross of our Lord Jesus Christ, through Whom the w", + "id": "Introitus" + }, + { + "body": "O God, Who by the good works of blessed Francis enriched Your Church by establishing a new religious family, grant us to", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 6:14-18*\nBrethren: But as for me, God forbid that I", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:25-30*\nAt that time, Jesus spoke and said, I praise You,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Make holy the gifts dedicated to You, O Lord, and by the intercession of blessed Francis, cleanse us from every stain of", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "May heavenly grace, we beseech You, O Lord, increase Your Church, which You mercifully enlightened by the glorious virtu", + "id": "Postcommunio" + } + ], + "2025-10-05": [ + { + "body": "*Ps 118:137; 118:124*\nYou are just, O Lord, and Your ordinance is right. Deal with Your servant according to Your kindne", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, O Lord, that Your people may avoid the temptations of the devil, and with pure minds follow You, ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:1-6*\nBrethren: I, the prisoner in the Lord, exhor", + "id": "Lectio" + }, + { + "body": "*Ps 32:12; 32:6*\nHappy the nation whose God is the Lord, the people the Lord has chosen for His own inheritance.\n℣. By t", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:34-46*\nAt that time, the Pharisees came to Jesus and one", + "id": "Evangelium" + }, + { + "body": "*Dan 9:17-19*\nI, Daniel, prayed to my God, saying, Hear, O Lord, the prayers of Your servant; show Your face upon Your s", + "id": "Offertorium" + }, + { + "body": "O Lord, we humbly pray Your Majesty that the holy rite which we are celebrating may free us from past and future sins.\nT", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 75:12-13*\nMake vows to the Lord, your God, and fulfill them; let all round about Him bring gifts to the terrible Lor", + "id": "Communio" + }, + { + "body": "By the workings of Your sanctifying power, almighty God, may our vices be cured and eternal remedies provided for us.\nTh", + "id": "Postcommunio" + } + ], + "2025-10-06": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "May we be aided by the intercession of St. Bruno, Your Confessor, we beseech You, O\nLord; that we, who have grievously o", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we who have received heavenly nourishment, may thereby, through the intercession of bles", + "id": "Postcommunio" + } + ], + "2025-10-07": [ + { + "body": "Let us all rejoice in the Lord, keeping a feastday in honor of the Blessed Virgin Mary, for whose celebration the angels", + "id": "Introitus" + }, + { + "body": "O God, Whose only-begotten Son, by His life, death and resurrection, has merited for us the grace of eternal salvation, ", + "id": "Oratio" + }, + { + "body": "*For St. Mark*\nGraciously hear our supplications, O Lord, and for the sake of thy Blessed Confessor and Bishop Mark, gra", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 8:22-24, 32-35.*\nThe Lord begot me, the firstborn of His ways, the forerunner of ", + "id": "Lectio" + }, + { + "body": "*Ps 44:5, 11-12.*\nIn the cause of truth and mercy and for the sake of justice: may your right hand show you wondrous dee", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "*Ecclus 24:25; 39:17*\nIn me is all grace of the way and of the truth, in me is all hope of life and of virtue. Like a ro", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, O Lord, to be properly prepared to offer these gifts, and, through the mysteries of the most h", + "id": "Secreta" + }, + { + "body": "*For St. Mark*\nMay the service of thy holy people be acceptable to Thee, O Lord, and honorable to thy saints, through wh", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*Ecclus 39:19*\nBreak forth in blossoms like the lily, and yield a smell, and bring forth leaves in grace, and praise wit", + "id": "Communio" + }, + { + "body": "May the prayers of Your most holy Mother, whose Rosary we are honoring, help us, we beseech You, O Lord, that we may der", + "id": "Postcommunio" + }, + { + "body": "*For St. Mark*\nGrant, O Lord, we beseech thee, that thy faithful people may always joyfully honour thy saints, and ever ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-08": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "O Lord, our God, Who through your only-begotten Son revealed secrets to blessed Bridget, grant that through her kind int", + "id": "Oratio" + }, + { + "body": "*For St. Sergius and Companions*\nMay the blessed merits of Your holy Martyrs, Sergius, Bacchus, Marcellus and Apuleius, ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to Timothy\n*1 Tim. 5:3-10*\nBeloved: Honor widows who are truly wido", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy an", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", + "id": "Secreta" + }, + { + "body": "*For St. Sergius and Companions*\nBy the worthy prayer of Your Saints, we beseech You, O Lord, may this victim, fitting f", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", + "id": "Postcommunio" + }, + { + "body": "*For St. Sergius and Companions*\nMay we be strengthened, O Lord, by the sacrament we have received, and protected throug", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-09": [ + { + "body": "*Ecclus 42:15-16*\nAt the Lord’s word were His works brought into being. As the rising sun is clear to all, so the glory ", + "id": "Introitus" + }, + { + "body": "O God, Who in a wondrous way graciously urged blessed John, Your Confessor, to propagate Your faith among the pagans, an", + "id": "Oratio" + }, + { + "body": "*For St. Dionysius and companions*\nO God, Who on this day strengthened blessed Dionysius, Your Martyr and Bishop, with t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 4:1-6; 4:15-18*\nBrethren: Discharging th", + "id": "Lectio" + }, + { + "body": "*Ps 72:21; 68:10*\nMy heart was embittered and my soul was pierced; zeal for Your house consumed me.\n*Isa 49:2*\n℣. He mad", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Col 1:25*\nI have become a minister of Christ in virtue of the office that God has given me, for I am to preach the word", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the pure offering of this saving sacrifice, and by the intercession of blessed John, Your Confessor, gra", + "id": "Secreta" + }, + { + "body": "*For St. Dionysius and companions*\nGraciously accept, O Lord, the gifts of Your people in honor of Your Saints, and make", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Phil 3:7*\nThe things that were gain to me, these, for the sake of Christ, I have counted loss.", + "id": "Communio" + }, + { + "body": "Refreshed by the holy sacrament of Your precious Body and Blood, we beseech You, O Lord, that, following the example of ", + "id": "Postcommunio" + }, + { + "body": "*For St. Dionysius and companions*\nWe who have received Your sacrament beseech You, Lord, that through the intercession ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-10": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O Lord Jesus Christ, model of true humility and its reward, we beseech You, that as You made blessed Francis one of Your", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, may the holy Francis, prevail by his prayers, so that the offerings placed upon Your sacred alta", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "May the pleading of the blessed Francis for us, together with the partaking of Your sacrament, protect us, O Lord, so th", + "id": "Postcommunio" + } + ], + "2025-10-11": [ + { + "body": "*Isa 7:14*\nBehold, the Virgin shall be with child and bear a Son, and shall name Him Emmanuel.\n*Ps 97:1*\nSing to the Lor", + "id": "Introitus" + }, + { + "body": "O God, Who, by the message of an Angel, willed to take flesh in the womb of the Blessed Virgin Mary, grant that we, your", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:23-31*\nI bud forth delights like the vine, my blossoms become fruit fa", + "id": "Lectio" + }, + { + "body": "*Isa 11:1-2*\nA shoot shall sprout from the stump of Jesse, and from his roots a bud shall blossom.\n℣. And the Spirit of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:43-51*\nAt that time, when they were returning, the Boy Jesus", + "id": "Evangelium" + }, + { + "body": "*Matt 1:18*\nWhen Mary His Mother had been betrothed to Joseph, she was found to be with child by the Holy Spirit.", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us of sin, and by the intercession of the Blessed Virgin Mary, the Mother of God, ma", + "id": "Postcommunio" + } + ], + "2025-10-12": [ + { + "body": "*Eccli 36:18*\nGive peace, O Lord, to those who have hoped in You, and let Your Prophets be proved true. Hear the prayers", + "id": "Introitus" + }, + { + "body": "May the working of Your mercy, we beseech You, O Lord, guide our hearts, for without You, we cannot please You.\nThrough ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 1:4-8*\nBrethren: I give thanks to my God", + "id": "Lectio" + }, + { + "body": "*Ps 121:1, 7*\nI rejoiced because they said to me, We will go up to the house of the Lord.\n℣. May peace be within your wa", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:1-8*\nAt that time, Jesus, getting into a boat, crossed ov", + "id": "Evangelium" + }, + { + "body": "*Ex 24:4-5*\nMoses consecrated an altar to the Lord, offering upon it holocausts, and sacrificing victims: he made an eve", + "id": "Offertorium" + }, + { + "body": "O God, Who, through the gifts we have exchanged with You in this sacrament, have made us partakers of the supreme Godhea", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nBring gifts and enter His courts; worship the Lord in His holy court.", + "id": "Communio" + }, + { + "body": "Strengthened by Your sacred gift, we thank You, O Lord, beseeching Your mercy to make us receive it worthily.\nThrough ou", + "id": "Postcommunio" + } + ], + "2025-10-13": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, Who crowned blessed King Edward with the glory of eternity, grant us, we beseech You, so to venerate him on earth", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + } + ], + "2025-10-14": [ + { + "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", + "id": "Introitus" + }, + { + "body": "O God, Who behold how we fail in our weakness, mercifully restore us to Your love through the examples of Your Saints.\nT", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nAnd let them exalt him in the church of the people: and praise him in the chair of the ancients.\n℣. ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", + "id": "Offertorium" + }, + { + "body": "May this sacrificial offering help to cleanse us of our sins, O Lord, and to assure us of Your everlasting salvation.\nTh", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, that these consecrated gifts may cleanse us of our sins and by their effect make us lead h", + "id": "Postcommunio" + } + ], + "2025-10-15": [ + { + "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", + "id": "Introitus" + }, + { + "body": "Graciously hear us, O God, our Saviour, that as we rejoice on the feast-day of blessed Teresa, Your Virgin, we may be so", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", + "id": "Offertorium" + }, + { + "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the intercession of her who", + "id": "Postcommunio" + } + ], + "2025-10-16": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "O God, Who taught blessed Hedwig to forsake worldly vanities that she might with her whole heart humbly follow Your cros", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", + "id": "Postcommunio" + } + ], + "2025-10-17": [ + { + "body": "*Cant 2:3*\nI rest in His shadow Whom I desire, and His fruit is sweet to my mouth.\n*Ps 83:2-3*\nHow lovely is Your dwelli", + "id": "Introitus" + }, + { + "body": "O Lord Jesus Christ, Who wondrously revealed the unsearchable riches of Your Heart to blessed Margaret Mary, the Virgin,", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 3:8-9, 14-19*\nBrethren: To me, the very least of al", + "id": "Lectio" + }, + { + "body": "*Cant 8:7*\nDeep waters cannot quench love, nor floods sweep it away.\n*Ps 72:26*\n℣. My flesh and my heart waste away; God", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:25-30*\nAt that time, Jesus spoke and said, I praise You,", + "id": "Evangelium" + }, + { + "body": "*Zach 9:17*\nWhat wealth is His, and what beauty! grain that makes the chosen ones flourish, and new wine, the maidens.", + "id": "Offertorium" + }, + { + "body": "May the gifts of Your people be acceptable to You, O Lord, and grant that we be enkindled with that divine fire radiatin", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Cant 6:2*\nI belong to my lover and my lover to me; He browses among the lilies.", + "id": "Communio" + }, + { + "body": "Having received the sacrament of Your Body and Blood, we beseech You, O Lord Jesus, grant us by the intercession of bles", + "id": "Postcommunio" + } + ], + "2025-10-18": [ + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, that Luke, Your holy Evangelist, who for the honor of Your name bore continually in his body the", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 8:16-24*\nBrethren: I give thanks to God", + "id": "Lectio" + }, + { + "body": "*Ps 18:5, 2*\nThrough all the earth their voice resounds, and to the ends of the world, their message.\n℣. The heavens dec", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nTo me, your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", + "id": "Offertorium" + }, + { + "body": "By Your heavenly gifts, grant us, O Lord, we pray, to serve You with a free mind, so that the offerings we present, may,", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nYou who have followed Me shall sit upon thrones, judging the twelve tribes of Israel.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that what we have received from Your holy altar may, by the prayers of Your blessed", + "id": "Postcommunio" + } + ], + "2025-10-19": [ + { + "body": "I am the salvation of the people, says the Lord; in whatever tribulation they shall cry to Me, I will hear them; and I w", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, graciously keep away from us all misfortune, that, unhampered in soul and body, we may perfor", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:23-28*\nBrethren: Be renewed in the spirit of your", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:1-14*\nAt that time, Jesus spoke to the chief priests and", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nThough I walk amid distress, You preserve me, O Lord; against the anger of my enemies You raise Your hand; Yo", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, O Lord, that these gifts which we offer in the sight of Your majesty, may be the means of our sal", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nYou have commanded that Your precepts be diligently kept. Oh, that I might be firm in the ways of keeping Y", + "id": "Communio" + }, + { + "body": "May Your healing power, O Lord, mercifully deliver us from our waywardness and make us ever keep Your commandments.\nThro", + "id": "Postcommunio" + } + ], + "2025-10-20": [ + { + "body": "*Sir 18:12-13*\nMan may be merciful to his fellow man, but God’s mercy reaches all flesh. He has mercy, teaches and guide", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that by following the example of blessed John, Your Confessor, we may advance in a ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St James the Apostle\n*James 2:12-17*\nDearly beloved: So speak and so act as men about to be ju", + "id": "Lectio" + }, + { + "body": "*Ps 106:8-9*\nLet them give thanks to the Lord for His kindness and His wondrous deeds to the children of men.\n℣. Because", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Job 29:14-16*\nI wore my honesty like a garment; justice was my robe and my turban. I was eyes to the blind, and feet to", + "id": "Offertorium" + }, + { + "body": "Graciously accept these sacrificial gifts, we beseech You, O Lord, through the merits of blessed John, Your Confessor, a", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 6:38*\nGive, and it shall be given to you; good measure, pressed down, shaken together, running over, shall they po", + "id": "Communio" + }, + { + "body": "Filled with the good food of Your precious Body and Blood, we humbly implore Your clemency, O Lord, that by the merits a", + "id": "Postcommunio" + } + ], + "2025-10-21": [ + { + "body": "I am the salvation of the people, says the Lord; in whatever tribulation they shall cry to Me, I will hear them; and I w", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, graciously keep away from us all misfortune, that, unhampered in soul and body, we may perfor", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Hilarion *\nMay the intercession of the blessed Abbot N., commend us to You, O Lord, so that through h", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:23-28*\nBrethren: Be renewed in the spirit of your", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:1-14*\nAt that time, Jesus spoke to the chief priests and", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nThough I walk amid distress, You preserve me, O Lord; against the anger of my enemies You raise Your hand; Yo", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, O Lord, that these gifts which we offer in the sight of Your majesty, may be the means of our sal", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Hilarion *\nWe beseech You, O Lord, may the holy Abbot N., prevail by his prayers, so that the offerin", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nYou have commanded that Your precepts be diligently kept. Oh, that I might be firm in the ways of keeping Y", + "id": "Communio" + }, + { + "body": "May Your healing power, O Lord, mercifully deliver us from our waywardness and make us ever keep Your commandments.\nThro", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Hilarion *\nMay the pleading of the blessed Abbot N. for us, together with the partaking of Your sacra", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-22": [ + { + "body": "I am the salvation of the people, says the Lord; in whatever tribulation they shall cry to Me, I will hear them; and I w", + "id": "Introitus" + }, + { + "body": "Almighty and merciful God, graciously keep away from us all misfortune, that, unhampered in soul and body, we may perfor", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:23-28*\nBrethren: Be renewed in the spirit of your", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:1-14*\nAt that time, Jesus spoke to the chief priests and", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nThough I walk amid distress, You preserve me, O Lord; against the anger of my enemies You raise Your hand; Yo", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, O Lord, that these gifts which we offer in the sight of Your majesty, may be the means of our sal", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nYou have commanded that Your precepts be diligently kept. Oh, that I might be firm in the ways of keeping Y", + "id": "Communio" + }, + { + "body": "May Your healing power, O Lord, mercifully deliver us from our waywardness and make us ever keep Your commandments.\nThro", + "id": "Postcommunio" + } + ], + "2025-10-23": [ + { + "body": "*Ps 131:9-10.*\nMay Your priests, O Lord, be clothed with justice; let Your faithful ones shout merrily for joy. For the ", + "id": "Introitus" + }, + { + "body": "O God, Who glorified blessed Anthony Mary, Your Confessor and Bishop, because of his zeal for souls, and through him est", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 7:23-27*\nBrethren: The priests were numerous, because", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\nHer priests I will clothe with salvation, and her faithful ones shall shout merrily for joy.\n℣. In her wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:42-47*\nAt that time, Jesus said to His disciples, \"Watch", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exulted.", + "id": "Offertorium" + }, + { + "body": "May the annual festival of blessed Anthony Mary, Your Confessor and Bishop, we beseech You, O Lord render us pleasing to", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "O God, Who rewards faithful souls, grant that, through the prayers of blessed Anthony Mary, Your Confessor and Bishop, w", + "id": "Postcommunio" + } + ], + "2025-10-24": [ + { + "body": "*Ps 102:20*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding, obeying His spoken word.\n*Ps", + "id": "Introitus" + }, + { + "body": "O God, Who gave blessed Raphael the Archangel as a traveling companion to Your servant Tobias, grant us, Your servants, ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Tobias\n*Tob 12:7-15*\nIn those days, the Angel Raphael said to Tobias: It is good to hide the sec", + "id": "Lectio" + }, + { + "body": "*Tob 8:3*\nThe Angel of the Lord, Raphael, took and bound the devil.\n*Ps 146:5*\n℣. Great is our Lord and mighty in power.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 5:1-4*\nAt that time, there was a feast of the Jews, and Jesus ", + "id": "Evangelium" + }, + { + "body": "*Apoc 8:3-4*\nAn Angel stood near the altar of the temple, having a golden censer in his hand, and there was given to him", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, humbly praying You to accept them graciously, and to grant that they may be h", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nAll you Angels of the Lord, bless the Lord: sing a hymn, and exalt Him above all forever.", + "id": "Communio" + }, + { + "body": "O Lord, graciously send Your holy Archangel Raphael to help us, that he who we know stands ever in the presence of Your ", + "id": "Postcommunio" + } + ], + "2025-10-25": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "*Commemoration Sts. Chrysanthus & Daria*\nMay the prayer of Your blessed Martyrs, Chrysanthus and Daria, defend us, O Lor", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Commemoration Sts. Chrysanthus & Daria*\nO Lord, may the offering which Your people sacrifice on the anniversary of the ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Sts. Chrysanthus & Daria*\nYou have filled us with spiritual joy and delight; grant, we beseech You, O Lor", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-26": [ + { + "body": "*Apoc 5:12; 1:6*\nWorthy is the Lamb Who was slain to receive power, and divinity, and wisdom, and strength, and honor. ", + "id": "Introitus" + }, + { + "body": "Almighty and eternal God, Who willed to restore all things in Your beloved Son, the King of the Universe, graciously gra", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:12-20.*\nBrethren: We give thanks to God the Fath", + "id": "Lectio" + }, + { + "body": "*Ps 71:8, 11*\nHe shall rule from sea to sea, and from the River to the ends of the earth.\n℣. All kings shall pay Him hom", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 18:33-37*\nAt that time, Pilate said to Jesus, Are You the King", + "id": "Evangelium" + }, + { + "body": "*Ps 2:8*\nAsk of Me and I will give You the nations for an inheritance and the ends of the earth for Your possession.", + "id": "Offertorium" + }, + { + "body": "O Lord, we offer You this sacrificial Victim of mankind's reconciliation with You; grant, we beseech You, that our Lord ", + "id": "Secreta" + }, + { + "body": "*Christ the King*\nIt is meet and just, right and for our salvation, that we should at all times, and in all places, give", + "id": "Prefatio" + }, + { + "body": "*Ps 28:10-11*\nThe Lord is enthroned as King forever; may the Lord bless His people with peace!", + "id": "Communio" + }, + { + "body": "We have received the food of eternal life, and we beseech You, O Lord, that we who are proud to serve under the flag of ", + "id": "Postcommunio" + } + ], + "2025-10-27": [ + { + "body": "*Dan 3:31; 3:29; 3:35*\nAll that You have done to us, O Lord, You have done in true judgment; because we have sinned agai", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously grant Your faithful forgiveness and peace, that they may be cleansed of all sin and s", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 5:15-21*\nBrethren: See to it that you walk with car", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nThe eyes of all look hopefully to You, O Lord, and You give them their food in due season.\n℣. You open Yo", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 4:46-53*\nAt that time, there was a certain royal official whos", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nBy the streams of Babylon we sat and wept when we remembered you, O Sion.", + "id": "Offertorium" + }, + { + "body": "May these sacramental rites, O Lord, we beseech You, be our heavenly medicine and expel evil from our hearts.\nThrough ou", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nRemember Your word to Your servant, O Lord, since You have given me hope. This is my comfort in my afflic", + "id": "Communio" + }, + { + "body": "That we may be made worthy, O Lord, of Your sacred gifts, make us, we beseech You, ever obedient to Your commandments.\nT", + "id": "Postcommunio" + } + ], + "2025-10-28": [ + { + "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", + "id": "Introitus" + }, + { + "body": "O God, Who have given us a way of coming to know Your name through Your blessed Apostles Simon and Jude, grant us to hon", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:7-13*\nBrethren: To each one of us grace was given", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:17-25*\nAt that time, Jesus said to His disciples, These thi", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nThrough all the earth their voice resounds, and to the ends of the world, their message.", + "id": "Offertorium" + }, + { + "body": "We honor, O Lord, the everlasting glory of Your holy Apostles Simon and Jude; we beseech You, that, purified by this sac", + "id": "Secreta" + }, + { + "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nYou who have followed Me shall sit on thrones, judging the twelve tribes of Israel.", + "id": "Communio" + }, + { + "body": "Having received Your sacrament, we humbly beseech You, O Lord, that, by the intercession of Your blessed Apostles Simon ", + "id": "Postcommunio" + } + ], + "2025-10-29": [ + { + "body": "*Dan 3:31; 3:29; 3:35*\nAll that You have done to us, O Lord, You have done in true judgment; because we have sinned agai", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously grant Your faithful forgiveness and peace, that they may be cleansed of all sin and s", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 5:15-21*\nBrethren: See to it that you walk with car", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nThe eyes of all look hopefully to You, O Lord, and You give them their food in due season.\n℣. You open Yo", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 4:46-53*\nAt that time, there was a certain royal official whos", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nBy the streams of Babylon we sat and wept when we remembered you, O Sion.", + "id": "Offertorium" + }, + { + "body": "May these sacramental rites, O Lord, we beseech You, be our heavenly medicine and expel evil from our hearts.\nThrough ou", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nRemember Your word to Your servant, O Lord, since You have given me hope. This is my comfort in my afflic", + "id": "Communio" + }, + { + "body": "That we may be made worthy, O Lord, of Your sacred gifts, make us, we beseech You, ever obedient to Your commandments.\nT", + "id": "Postcommunio" + } + ], + "2025-10-30": [ + { + "body": "*Dan 3:31; 3:29; 3:35*\nAll that You have done to us, O Lord, You have done in true judgment; because we have sinned agai", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously grant Your faithful forgiveness and peace, that they may be cleansed of all sin and s", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 5:15-21*\nBrethren: See to it that you walk with car", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nThe eyes of all look hopefully to You, O Lord, and You give them their food in due season.\n℣. You open Yo", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 4:46-53*\nAt that time, there was a certain royal official whos", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nBy the streams of Babylon we sat and wept when we remembered you, O Sion.", + "id": "Offertorium" + }, + { + "body": "May these sacramental rites, O Lord, we beseech You, be our heavenly medicine and expel evil from our hearts.\nThrough ou", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nRemember Your word to Your servant, O Lord, since You have given me hope. This is my comfort in my afflic", + "id": "Communio" + }, + { + "body": "That we may be made worthy, O Lord, of Your sacred gifts, make us, we beseech You, ever obedient to Your commandments.\nT", + "id": "Postcommunio" + } + ], + "2025-10-31": [ + { + "body": "*Dan 3:31; 3:29; 3:35*\nAll that You have done to us, O Lord, You have done in true judgment; because we have sinned agai", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, graciously grant Your faithful forgiveness and peace, that they may be cleansed of all sin and s", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 5:15-21*\nBrethren: See to it that you walk with car", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nThe eyes of all look hopefully to You, O Lord, and You give them their food in due season.\n℣. You open Yo", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 4:46-53*\nAt that time, there was a certain royal official whos", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nBy the streams of Babylon we sat and wept when we remembered you, O Sion.", + "id": "Offertorium" + }, + { + "body": "May these sacramental rites, O Lord, we beseech You, be our heavenly medicine and expel evil from our hearts.\nThrough ou", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nRemember Your word to Your servant, O Lord, since You have given me hope. This is my comfort in my afflic", + "id": "Communio" + }, + { + "body": "That we may be made worthy, O Lord, of Your sacred gifts, make us, we beseech You, ever obedient to Your commandments.\nT", + "id": "Postcommunio" + } + ], + "2025-11-01": [ + { + "body": "Let us all rejoice in the Lord, celebrating a feast day in honor of all the Saints, on whose solemnity the angels rejoic", + "id": "Introitus" + }, + { + "body": "Almighty, eternal God, Who granted us to honor the merits of all Your Saints in a single solemn festival, bestow on us, ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Revelation\n*Apoc 7:2-12*\nIn those days, behold, I John, saw another angel ascending from the ris", + "id": "Lectio" + }, + { + "body": "*Ps 33:10-11*\nFear the Lord, you His holy ones, for nought is lacking to those who fear Him.\n℣. But those who seek the L", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:1-12*\nAt that time, Jesus seeing the crowds, went up the ", + "id": "Evangelium" + }, + { + "body": "*Wis 3:1-3*\nThe souls of the just are in the hand of God, and no torment shall touch them. They seemed, in the view of t", + "id": "Offertorium" + }, + { + "body": "We offer You, O Lord, the gifts of our service; may they be pleasing to You for the honor of Your just ones and, through", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 5:8-10*\nBlessed are the clean of heart, for they shall see God. Blessed are the peacemakers, for they shall be cal", + "id": "Communio" + }, + { + "body": "Grant Your faithful people, we beseech You, O Lord, ever to rejoice in the veneration of all the Saints, and to be prote", + "id": "Postcommunio" + } + ], + "2025-11-02": [ + { + "body": "*Esth 13:9-11*\nIn Your will are all things, O Lord, and there is none that can resist Your will; for You have made all t", + "id": "Introitus" + }, + { + "body": "Guard Your household, we beseech You, O Lord, with unceasing care, that under Your protection it may be free from all ha", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 6:10-17*\nBrethren: Be strengthened in the Lord and ", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nO Lord, You have been our refuge through all generations.\n℣. Before the mountains were begotten and the eart", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:23-35*\nAt that time, Jesus spoke to His disciples this p", + "id": "Evangelium" + }, + { + "body": "*Job 1.1*\nThere was a man in the land of Hus, whose name was Job, simple, and upright, and fearing God, whom Satan besou", + "id": "Offertorium" + }, + { + "body": "Graciously accept these sacrificial gifts, O Lord, with which You have willed us to find favor with You, and, by Your mi", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nMy soul pines for Your salvation; I hope in Your word. When will You do judgment on my perse", + "id": "Communio" + }, + { + "body": "We who have eaten the food of eternal life beseech You, O Lord, that what we take by mouth, we may strive after with pur", + "id": "Postcommunio" + } + ], + "2025-11-03": [ + { + "body": "*4 Esd. 2:34-35.*\nEternal rest give to them, O Lord; and let perpetual light shine upon them.\n*Ps 64:2-3*\nTo You we owe ", + "id": "Introitus" + }, + { + "body": "O God, Creator and Redeemer of all the faithful, grant to the souls of Your servants and handmaids the remission of all ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 15:51-57*\nBrethren: Behold, I tell you a", + "id": "Lectio" + }, + { + "body": "*4 Esd. 2:34-35.*\nEternal rest give to them, O Lord; and let perpetual light shine upon them.\n*Ps 111:7*\nThe just man sh", + "id": "Graduale" + }, + { + "body": "Dreaded day, that day of ire,\nWhen the world shall melt in fire,\nTold by Sibyl and David’s lyre.\n\nFright men’s hearts sh", + "id": "Sequentia" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 5:25-29*\nAt that time, Jesus said to the multitudes of the Jew", + "id": "Evangelium" + }, + { + "body": "O Lord, Jesus Christ, King of glory, deliver the souls of all the faithful departed from the pains of hell and the deep ", + "id": "Offertorium" + }, + { + "body": "Look with mercy, we beseech You, O Lord, upon the sacrificial gifts we offer for the souls of Your servants and handmaid", + "id": "Secreta" + }, + { + "body": "*Dead*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", + "id": "Prefatio" + }, + { + "body": "*4 Esdr 2:35; 2:34*\nMay light eternal shine upon them, O Lord, with Your Saints forever, for You are kind.\n℣. Grant them", + "id": "Communio" + }, + { + "body": "May the prayer of Your suppliants, O Lord, benefit the souls of Your servants and handmaids, that You may deliver them f", + "id": "Postcommunio" + } + ], + "2025-11-04": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "Safeguard Your Church, O Lord, under the continual protection of St. Charles, Your Confessor and Bishop, so that just as", + "id": "Oratio" + }, + { + "body": "*For Ss. Vitalis and Agrícola Martyrs*\nGrant, almighty God, we beseech You, that we who keep the feast of Your blessed M", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "*Sir 44:16, 20*\nBehold, a great priest, who in his days pleased God.\n℣. There was not found the like to him, who kept th", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, my servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech you, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*For Ss. Vitalis and Agrícola Martyrs*\nBe appeased, O Lord, we beseech You, by the gifts we offer, and by the intercessi", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + }, + { + "body": "*For Ss. Vitalis and Agrícola Martyrs*\nMay this Communion, O Lord, cleanse us of sin and make us partakers of heavenly h", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-05": [ + { + "body": "*Esth 13:9-11*\nIn Your will are all things, O Lord, and there is none that can resist Your will; for You have made all t", + "id": "Introitus" + }, + { + "body": "Guard Your household, we beseech You, O Lord, with unceasing care, that under Your protection it may be free from all ha", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 6:10-17*\nBrethren: Be strengthened in the Lord and ", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nO Lord, You have been our refuge through all generations.\n℣. Before the mountains were begotten and the eart", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:23-35*\nAt that time, Jesus spoke to His disciples this p", + "id": "Evangelium" + }, + { + "body": "*Job 1.1*\nThere was a man in the land of Hus, whose name was Job, simple, and upright, and fearing God, whom Satan besou", + "id": "Offertorium" + }, + { + "body": "Graciously accept these sacrificial gifts, O Lord, with which You have willed us to find favor with You, and, by Your mi", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nMy soul pines for Your salvation; I hope in Your word. When will You do judgment on my perse", + "id": "Communio" + }, + { + "body": "We who have eaten the food of eternal life beseech You, O Lord, that what we take by mouth, we may strive after with pur", + "id": "Postcommunio" + } + ], + "2025-11-06": [ + { + "body": "*Esth 13:9-11*\nIn Your will are all things, O Lord, and there is none that can resist Your will; for You have made all t", + "id": "Introitus" + }, + { + "body": "Guard Your household, we beseech You, O Lord, with unceasing care, that under Your protection it may be free from all ha", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 6:10-17*\nBrethren: Be strengthened in the Lord and ", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nO Lord, You have been our refuge through all generations.\n℣. Before the mountains were begotten and the eart", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:23-35*\nAt that time, Jesus spoke to His disciples this p", + "id": "Evangelium" + }, + { + "body": "*Job 1.1*\nThere was a man in the land of Hus, whose name was Job, simple, and upright, and fearing God, whom Satan besou", + "id": "Offertorium" + }, + { + "body": "Graciously accept these sacrificial gifts, O Lord, with which You have willed us to find favor with You, and, by Your mi", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nMy soul pines for Your salvation; I hope in Your word. When will You do judgment on my perse", + "id": "Communio" + }, + { + "body": "We who have eaten the food of eternal life beseech You, O Lord, that what we take by mouth, we may strive after with pur", + "id": "Postcommunio" + } + ], + "2025-11-07": [ + { + "body": "*Esth 13:9-11*\nIn Your will are all things, O Lord, and there is none that can resist Your will; for You have made all t", + "id": "Introitus" + }, + { + "body": "Guard Your household, we beseech You, O Lord, with unceasing care, that under Your protection it may be free from all ha", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 6:10-17*\nBrethren: Be strengthened in the Lord and ", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nO Lord, You have been our refuge through all generations.\n℣. Before the mountains were begotten and the eart", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:23-35*\nAt that time, Jesus spoke to His disciples this p", + "id": "Evangelium" + }, + { + "body": "*Job 1.1*\nThere was a man in the land of Hus, whose name was Job, simple, and upright, and fearing God, whom Satan besou", + "id": "Offertorium" + }, + { + "body": "Graciously accept these sacrificial gifts, O Lord, with which You have willed us to find favor with You, and, by Your mi", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nMy soul pines for Your salvation; I hope in Your word. When will You do judgment on my perse", + "id": "Communio" + }, + { + "body": "We who have eaten the food of eternal life beseech You, O Lord, that what we take by mouth, we may strive after with pur", + "id": "Postcommunio" + } + ], + "2025-11-08": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "*Commemoration Four Holy Crowned Martyrs*\nGrant, we beseech You, almighty God, that we who know how courageously Your ho", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Commemoration Four Holy Crowned Martyrs*\nMay Your bountiful blessing descend upon us, O Lord, and by the prayers of You", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Four Holy Crowned Martyrs*\nWe who have been fed with heavenly sacraments and joys, humbly pray You, O Lor", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-09": [ + { + "body": "*Ps 129:3-4*\nIf You, O Lord, mark iniquities, Lord, who can stand? But with You is forgiveness, O God of Israel.\n*Ps 129", + "id": "Introitus" + }, + { + "body": "O God, our refuge and our strength, the very source of holiness, heed the devout prayers of Your Church, and grant that ", + "id": "Oratio" + }, + { + "body": "*Commemoration Dedication of the Archbasilica of Our Holy Savior*\n*Prayer on the anniversary of the dedication:*\nO God, ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 1:6-11*\nBrethren: We are confident in the Lord J", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nBehold how good it is, and how pleasant where brethren dwell as one!\n℣. It is as when the precious ointment", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:15-21*\nAt that time, the Pharisees went and took counsel", + "id": "Evangelium" + }, + { + "body": "*Esther 14:12-13*\nRemember me, O Lord, You Who rule above all power: and give a well-ordered speech in my mouth, that my", + "id": "Offertorium" + }, + { + "body": "Grant, O merciful God, that this saving sacrifice may always free us from sin, and protect us from all that works agains", + "id": "Secreta" + }, + { + "body": "*Commemoration Dedication of the Archbasilica of Our Holy Savior*\nLook with favor upon our prayers, we beseech You, O Lo", + "id": "Commemoratio Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nI call upon You, for You will answer me, O God; incline Your ear to me; hear my word.", + "id": "Communio" + }, + { + "body": "We who have received the gift of Your blessed sacrament, O Lord, humbly pray that what You have taught us to do in comme", + "id": "Postcommunio" + }, + { + "body": "*Commemoration Dedication of the Archbasilica of Our Holy Savior*\n*On the day of dedication*\nWe beseech You, almighty Go", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-10": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "O God, by his difficult vow to make daily progress in holiness, You placed in the heart of blessed Andrew, Your Confesso", + "id": "Oratio" + }, + { + "body": "*For St. Tryphon and Companions, Martyrs*\nMake us, we beseech You, O Lord, ever faithful to observe the feast-day of You", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", + "id": "Secreta" + }, + { + "body": "*For St. Tryphon and Companions, Martyrs*\nWe offer You, O Lord, the gifts of our homage; may they be made pleasing to Yo", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", + "id": "Postcommunio" + }, + { + "body": "*For St. Tryphon and Companions, Martyrs*\nGrant, we beseech You, O Lord, by the intercession of blessed Tryphon, Respici", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-11": [ + { + "body": "*Ecclus 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignit", + "id": "Introitus" + }, + { + "body": "O God, Who see that we cannot survive by any power of our own, mercifully grant that, by the intercession of blessed Mar", + "id": "Oratio" + }, + { + "body": "*For St. Mennas*\nGrant, we beseech You, almighty God, that we, who honor the anniversary of the death of blessed Mennas,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "*Sir 44:16, 20*\nBehold a great priest, who in his days pleased God.\n℣. There was not found the like to him, who kept the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:33-36*\nAt that time, Jesus said to His disciples, No one li", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Sanctify, we beseech You, O Lord God, the gifts we offer on the feast of Your holy Bishop, Martin, that through them our", + "id": "Secreta" + }, + { + "body": "*For St. Mennas*\nNow that You have received our gifts and prayers, we beseech You, O Lord, cleanse us by Your heavenly m", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord our God, that this sacrifice may be beneficial for our salvation, by the intercession of t", + "id": "Postcommunio" + }, + { + "body": "*For St. Mennas*\nGrant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration of Yo", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-12": [ + { + "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", + "id": "Introitus" + }, + { + "body": "Look forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, by the intercession of blessed ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nAnd let them exalt him in the church of the people: and praise him in the chair of the ancients.\n℣. ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", + "id": "Offertorium" + }, + { + "body": "By the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that thy flock may everywhere pr", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", + "id": "Communio" + }, + { + "body": "Being appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that under thy direction and pow", + "id": "Postcommunio" + } + ], + "2025-11-13": [ + { + "body": "*Ps 129:3-4*\nIf You, O Lord, mark iniquities, Lord, who can stand? But with You is forgiveness, O God of Israel.\n*Ps 129", + "id": "Introitus" + }, + { + "body": "O God, our refuge and our strength, the very source of holiness, heed the devout prayers of Your Church, and grant that ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Didacus*\nAlmighty, eternal God, Who in Your wondrous providence choose the weak things of the world t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 1:6-11*\nBrethren: We are confident in the Lord J", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nBehold how good it is, and how pleasant where brethren dwell as one!\n℣. It is as when the precious ointment", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:15-21*\nAt that time, the Pharisees went and took counsel", + "id": "Evangelium" + }, + { + "body": "*Esther 14:12-13*\nRemember me, O Lord, You Who rule above all power: and give a well-ordered speech in my mouth, that my", + "id": "Offertorium" + }, + { + "body": "Grant, O merciful God, that this saving sacrifice may always free us from sin, and protect us from all that works agains", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Didacus*\nGrant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nI call upon You, for You will answer me, O God; incline Your ear to me; hear my word.", + "id": "Communio" + }, + { + "body": "We who have received the gift of Your blessed sacrament, O Lord, humbly pray that what You have taught us to do in comme", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Didacus*\nWe pray You, almighty God, that we who have received heavenly nourishment may thereby, throu", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-14": [ + { + "body": "Let us all rejoice in the Lord, celebrating a feast-day in honor of the Blessed Martyr Josaphat, at whose martyrdom the ", + "id": "Introitus" + }, + { + "body": "Arouse in Your Church, O Lord, the spirit with which blessed Josaphat, Your Martyr and Bishop, was filled when he laid d", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 5:1-6*\nBrethren: Every high priest taken from among m", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time, Jesus said to the Pharisees: I am the ", + "id": "Evangelium" + }, + { + "body": "*John 15:13*\nGreater love than this no one has, that one lay down his life for his friends.", + "id": "Offertorium" + }, + { + "body": "Most merciful God, shower these offerings with Your blessing and strengthen us in the faith which St. Josaphat, Your Mar", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 10:14*\nI am the Good Shepherd, and I know My sheep, and Mine know Me.", + "id": "Communio" + }, + { + "body": "May this heavenly food, O Lord, impart to us that spirit of strength which unfailingly sustained the life of blessed Jos", + "id": "Postcommunio" + } + ], + "2025-11-15": [ + { + "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", + "id": "Introitus" + }, + { + "body": "O God, Who made blessed Albert, Your Bishop and Doctor, eminent in the submission of human wisdom to divine faith, grant", + "id": "Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom and his tongue shall speak judgment.\n℣. The law of his God is ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "Look favorably upon these sacrificial gifts, O Lord, we beseech You, so that what we perform in the sacrificial rite of ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "Through this holy food which we have eaten, defend us, O Lord, from the onslaughts of our enemies and grant that by the ", + "id": "Postcommunio" + } + ], + "2025-11-16": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "Forgive, we beseech You, O Lord, the sins of Your faithful people, so that by Your goodness we may be released from the ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:17-21; 4:1-3*\nBrethren: Be imitators of me, an", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:18-26*\nAt that time, as Jesus was speaking to the crowds,", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "We offer You O Lord, the sacrifice of praise that we may serve You even better, so that You may graciously complete what", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "We beseech You, almighty God, let not human dangers overcome us to whom You grant joyful participation in things divine.", + "id": "Postcommunio" + } + ], + "2025-11-17": [ + { + "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", + "id": "Introitus" + }, + { + "body": "Grant, we beseech You, almighty God, that the venerable feast of Your blessed Confessor and Bishop may increase our devo", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", + "id": "Lectio" + }, + { + "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 11:22-24*\nAt that time, Jesus answered and said to His discipl", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", + "id": "Postcommunio" + } + ], + "2025-11-18": [ + { + "body": "*Gen. 28:17.*\nHow awesome is this place! This is none other than the house of God; this is the gate of heaven; and it sh", + "id": "Introitus" + }, + { + "body": "O God, Who for us bring each year the recurrence of the consecration day of this Your holy temple, and always bring us b", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Revelation\n*Rev 21:2-5*\nIn those days, I saw the holy city, New Jerusalem, coming down out of he", + "id": "Lectio" + }, + { + "body": "This place was made by God, a priceless mystery; it is without reproof.\n℣. O God, before Whom stands the choir of angels", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:1-10*\nAt that time, Jesus entered and was passing through J", + "id": "Evangelium" + }, + { + "body": "*1 Par 29:17-18*\nO Lord God, in the simplicity of my heart I have joyfully offered all these things; and I have seen wit", + "id": "Offertorium" + }, + { + "body": "*Outside the dedicated church*\nLook with favor upon our prayers, we beseech You, O Lord, that as we offer our prayers be", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 21:13*\nMy house shall be called a house of prayer, says the Lord; in it everyone who asks receives: and he who see", + "id": "Communio" + }, + { + "body": "*On the anniversary of the dedication*\nO God, Who from living and chosen stones prepare an eternal dwelling place for Yo", + "id": "Postcommunio" + } + ], + "2025-11-19": [ + { + "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", + "id": "Introitus" + }, + { + "body": "O merciful God, enlighten the hearts of Your faithful people, and through the glorious prayers of blessed Elizabeth, mak", + "id": "Oratio" + }, + { + "body": "*For St. Pontianus*\nBe mindful of our weakness, almighty God, and because the burden of our sins weighs heavily upon us,", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", + "id": "Secreta" + }, + { + "body": "*For St. Pontianus*\nO Lord, graciously accept, through the merits of Your blessed Martyr and Bishop N., the sacrificial ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", + "id": "Postcommunio" + }, + { + "body": "*For St. Pontianus*\nRefreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enjoy the ben", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-20": [ + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", + "id": "Introitus" + }, + { + "body": "O God, Who by heavenly inspiration graciously called forth blessed Felix, Your Confessor, from the desert to the work of", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a spe", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", + "id": "Communio" + }, + { + "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", + "id": "Postcommunio" + } + ], + "2025-11-21": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "O God, by Whose will the blessed Mary, ever Virgin, the dwelling place of the Holy Spirit, was on this day presented in ", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nBefore all ages, in the beginning, He created me, and through all ", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, without spot to your maidenhood, were made the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with you; blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "We have received help for our salvation, O Lord; grant, we beseech You, that we may everywhere be protected by the patro", + "id": "Postcommunio" + } + ], + "2025-11-22": [ + { + "body": "*Ps 118:46-47*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, whi", + "id": "Introitus" + }, + { + "body": "O God, Who gladden us by the annual feast of blessed Cecilia, Your Virgin and Martyr, grant, we beseech You, that we may", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 51:13-17*\nO Lord, my God, You have exalted my dwelling place upon the ear", + "id": "Lectio" + }, + { + "body": "*Ps 44:11-12, 5*\nHear, O daughter, and see; turn your ear; for the King shall desire your beauty.\nIn your splendor and y", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nAt that time, Jesus spoke this parable to His disc", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15-16*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and jo", + "id": "Offertorium" + }, + { + "body": "May this sacrifice of atonement and praise, we beseech You, O Lord, by the intercession of blessed Cecilia, Your Virgin ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78, 80*\nLet the proud be put to shame for oppressing me unjustly; I will meditate on Your precepts, on Your stat", + "id": "Communio" + }, + { + "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us by the intercession of her whose festival we are", + "id": "Postcommunio" + } + ], + "2025-11-23": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, arouse the wills of Your faithful people that, by a more earnest search for the fruit of Your di", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:9-14*\nBrethren: We have been praying for you unc", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:15-35*\nAt that time, Jesus said to His disciples: When y", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Be merciful, O Lord, to our humble requests and accept the offerings and prayers of Your people: turn the hearts of all ", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that all the evil in our hearts may be cured by the healing power of the sacrament we ", + "id": "Postcommunio" + } + ], + "2025-11-24": [ + { + "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", + "id": "Introitus" + }, + { + "body": "O God, Who made blessed John, Your Confessor and Teacher, an extraordinary lover of perfect self-denial and the Cross, g", + "id": "Oratio" + }, + { + "body": "*For St. Chrysogonus*\nHarken, O Lord, to our humble prayers, so that we who realize our guilt because of the evil we hav", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed John, Your Confessor and Doctor, fail us never, O Lord; may it commend our offerings an", + "id": "Secreta" + }, + { + "body": "*For St. Chrysogonus*\nBe appeased by the gifts we offer You, O Lord, and through the intercession of blessed Chrysogonus", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "So that your sacrificial rites may grant us salvation, we pray You, O Lord, that blessed John, Your Confessor and illust", + "id": "Postcommunio" + }, + { + "body": "*For St. Chrysogonus*\nThrough the reception of Your sacrament, O Lord, may we be cleansed from our hidden sins and deliv", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-25": [ + { + "body": "*Ps 118:46-47.*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, wh", + "id": "Introitus" + }, + { + "body": "O God, Who gave the law to Moses on Sinai's height and through your holy angels miraculously placed there the body of bl", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 51:1-8; 5:12*\nI will give You thanks, O Lord, O King; I will praise You, O G", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nYou love justice and hate wickedness.\n℣. Therefore God, your God, has anointed you with the oil of gladness. A", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13.*\nAt that time Jesus spoke this parable to His disc", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15-16.*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and j", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the gifts we bring on the festival of blessed Catherine, Your Virgin and Martyr, through whose patronage", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78, 80*\nLet the proud be put to shame for oppressing me unjustly; I will meditate on Your precepts, on Your stat", + "id": "Communio" + }, + { + "body": "May the sacrament we have received, aid us, O Lord, and by the intercession of blessed Catherine, Your Virgin and Martyr", + "id": "Postcommunio" + } + ], + "2025-11-26": [ + { + "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", + "id": "Introitus" + }, + { + "body": "Most merciful God, Who when the holy Abbot Sylvester was devoutly meditating upon the vanity of this world beside an ope", + "id": "Oratio" + }, + { + "body": "*For St. Peter Of Alexandria*\nBe mindful of our weakness, almighty God, and because the burden of our sins weighs heavil", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, that while offering these sacrificial gifts to Your Divine Majesty, we may become like the bless", + "id": "Secreta" + }, + { + "body": "*For St. Peter of Alexandria*\nO Lord, graciously accept, through the merits of Your blessed Martyr and Bishop, Peter, th", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", + "id": "Communio" + }, + { + "body": "We pray You, O Lord, grant that we who have renewed our strength at the heavenly banquet may closely follow in the foots", + "id": "Postcommunio" + }, + { + "body": "*For St. Peter of Alexandria*\nRefreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enj", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-27": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, arouse the wills of Your faithful people that, by a more earnest search for the fruit of Your di", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:9-14*\nBrethren: We have been praying for you unc", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:15-35*\nAt that time, Jesus said to His disciples: When y", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Be merciful, O Lord, to our humble requests and accept the offerings and prayers of Your people: turn the hearts of all ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that all the evil in our hearts may be cured by the healing power of the sacrament we ", + "id": "Postcommunio" + } + ], + "2025-11-28": [ + { + "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", + "id": "Introitus" + }, + { + "body": "O Lord, we beseech You, arouse the wills of Your faithful people that, by a more earnest search for the fruit of Your di", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:9-14*\nBrethren: We have been praying for you unc", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:15-35*\nAt that time, Jesus said to His disciples: When y", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", + "id": "Offertorium" + }, + { + "body": "Be merciful, O Lord, to our humble requests and accept the offerings and prayers of Your people: turn the hearts of all ", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, that all the evil in our hearts may be cured by the healing power of the sacrament we ", + "id": "Postcommunio" + } + ], + "2025-11-29": [ + { + "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", + "id": "Introitus" + }, + { + "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Saturninus*\nO God, You Who give us the joy of celebrating the anniversary of the death of blessed Sat", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", + "id": "Lectio" + }, + { + "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", + "id": "Evangelium" + }, + { + "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", + "id": "Offertorium" + }, + { + "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Saturninus*\nO Lord, make holy the sacrificial gifts we offer to You, and through the intercession of ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", + "id": "Communio" + }, + { + "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Saturninus*\nMay the reception of Your sacrament, we beseech You, O Lord, make us holy, and by the int", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-30": [ + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and come, that with You as our protector we may be rescued from the impend", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:11-14*\nBrethren: Understand, for it is now the hour", + "id": "Lectio" + }, + { + "body": "*Ps 24:3-4*\nNo one who waits for You shall be put to shame.\n℣. Your ways, O Lord, make known to me; teach me Your paths.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:25-33*\nAt that time, Jesus said to His disciples: There wil", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", + "id": "Offertorium" + }, + { + "body": "May these offerings, O Lord, cleanse us by their mighty power and thus make us come purer before You Who are their autho", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13*\nThe Lord will give His benefits: and our land shall yield its increase.", + "id": "Communio" + }, + { + "body": "May we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with due observance for the coming fest", + "id": "Postcommunio" + } + ], + "2025-12-01": [ + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and come, that with You as our protector we may be rescued from the impend", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:11-14*\nBrethren: Understand, for it is now the hour", + "id": "Lectio" + }, + { + "body": "*Ps 24:3-4*\nNo one who waits for You shall be put to shame.\n℣. Your ways, O Lord, make known to me; teach me Your paths.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:25-33*\nAt that time, Jesus said to His disciples: There wil", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", + "id": "Offertorium" + }, + { + "body": "May these offerings, O Lord, cleanse us by their mighty power and thus make us come purer before You Who are their autho", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13*\nThe Lord will give His benefits: and our land shall yield its increase.", + "id": "Communio" + }, + { + "body": "May we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with due observance for the coming fest", + "id": "Postcommunio" + } + ], + "2025-12-02": [ + { + "body": "*Ps 118:95-96.*\nSinners wait to destroy me, but I pay heed to Your decrees, O Lord. I see that all fulfillment has its l", + "id": "Introitus" + }, + { + "body": "O God, giver of all good gifts, You Who in Your servant, Bibiana, joined the flower of virginity with the palm of martyr", + "id": "Oratio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nPut forth Your power, O Lord, we beseech You, and come, that with You as our protecto", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Sir 51:13-17.*\nO Lord, my God, You have exalted my dwelling place upon the earth", + "id": "Lectio" + }, + { + "body": "*Ps 45:6, 5*\nGod will help her with His countenance. God is in her midst; she shall not be disturbed.\n℣. There is a stre", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52.*\nAt that time, Jesus spoke this parable to His di", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", + "id": "Offertorium" + }, + { + "body": "Graciously accept the sacrificial gifts offered You, O Lord, through the merits of blessed Bibiana, Your Virgin and Mart", + "id": "Secreta" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay these offerings, O Lord, cleanse us by their mighty power and thus make us come p", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:121-122; 118:128*\nI have fulfilled just ordinances, O Lord; let not the proud oppress me. For in all Your precep", + "id": "Communio" + }, + { + "body": "We who have been refreshed by the richness of Your divine sacrament beseech You, O Lord our God, that through the interc", + "id": "Postcommunio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-03": [ + { + "body": "*Ps 118:46-47*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, whi", + "id": "Introitus" + }, + { + "body": "O God, You Who were pleased to gather into Your Church the peoples of the Indies by the preaching and miracles of blesse", + "id": "Oratio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nPut forth Your power, O Lord, we beseech You, and come, that with You as our protecto", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 10:10-18*\nBrethren: With the heart a man believes unto", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:15-18*\nAt that time, Jesus said to His disciples, Go into t", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, O almighty God, that the offering we make of our lowliness may be pleasing to You for the honor o", + "id": "Secreta" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay these offerings, O Lord, cleanse us by their mighty power and thus make us come p", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBlessed is that servant, whom his master, when he comes, shall find watching. Amen I say to you, he will", + "id": "Communio" + }, + { + "body": "We beseech You, O almighty God, that we who have eaten the food of heaven may find in it, by the intercession of blessed", + "id": "Postcommunio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-04": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", + "id": "Introitus" + }, + { + "body": "O God, Who willed to foreshow divinely that blessed Peter Chrysologus would be a great Doctor to rule and teach Your Chu", + "id": "Oratio" + }, + { + "body": "*For St. Barbara,*\nO God, Who among the other miracles of Your power have bestowed the victory of martyrdom even upon th", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", + "id": "Lectio" + }, + { + "body": "*Ecclus 44:16*\nBehold a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not found the like to him", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: \"You are", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", + "id": "Offertorium" + }, + { + "body": "May the loving prayer of blessed Peter, Your Confessor and Doctor, fail us never, O Lord; may it commend our offerings a", + "id": "Secreta" + }, + { + "body": "*For St. Barbara, ℣. M.*\nAccept, O Lord, the gifts we bring on the festival of blessed Barbara, Your Virgin and Martyr, ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:20-21*\nMaster, you handed over to me five talents; behold, I have gained five others in addition. Well done, go", + "id": "Communio" + }, + { + "body": "So that your sacrificial rites may grant us salvation, we pray you, O Lord, that blessed Peter, Your Bishop and illustri", + "id": "Postcommunio" + }, + { + "body": "*For St. Barbara, ℣. M.*\nMay the sacrament we have received, aid us, O Lord, and by the intercession of blessed Barbara,", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-05": [ + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and come, that with You as our protector we may be rescued from the impend", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Sabbas*\nMay the intercession of the Blessed Abbot Sabbas, commend us, we beseech You, O Lord, so that", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:11-14*\nBrethren: Understand, for it is now the hour", + "id": "Lectio" + }, + { + "body": "*Ps 24:3-4*\nNo one who waits for You shall be put to shame.\n℣. Your ways, O Lord, make known to me; teach me Your paths.", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:25-33*\nAt that time, Jesus said to His disciples: There wil", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", + "id": "Offertorium" + }, + { + "body": "May these offerings, O Lord, cleanse us by their mighty power and thus make us come purer before You Who are their autho", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Sabbas*\nWe beseech You, O Lord, may the holy Abbot N., prevail by his prayers, so that the offerings ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13*\nThe Lord will give His benefits: and our land shall yield its increase.", + "id": "Communio" + }, + { + "body": "May we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with due observance for the coming fest", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Sabbas*\nMay the intercession of the Blessed Abbot Sabbas, as well as the reception of Your sacrament,", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-06": [ + { + "body": "*Ecclus 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignit", + "id": "Introitus" + }, + { + "body": "O God, You who made the holy Bishop Nicholas renowned for countless miracles, grant, we beseech You, that by his merits ", + "id": "Oratio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nPut forth Your power, O Lord, we beseech You, and come, that with You as our protecto", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 13:7-17*\nBrethren: Remember your superiors, who spoke", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", + "id": "Offertorium" + }, + { + "body": "Sanctify, we beseech You, O Lord God, the gifts we offer on the feast of Your holy Bishop, Nicholas, that through them o", + "id": "Secreta" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay these offerings, O Lord, cleanse us by their mighty power and thus make us come p", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36-38*\nOnce, by My holiness, have I sworn; his posterity shall continue forever, and his throne shall be like the", + "id": "Communio" + }, + { + "body": "May the sacrifice in which we have shared on the feast of Your holy Bishop Nicholas guard us with its lasting protection", + "id": "Postcommunio" + }, + { + "body": "*Commemoration I Sunday of Advent*\nMay we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-07": [ + { + "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", + "id": "Introitus" + }, + { + "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", + "id": "Communio" + }, + { + "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", + "id": "Postcommunio" + } + ], + "2025-12-08": [ + { + "body": "*Isa 61:10*\nI will heartily rejoice in the Lord, in my God is the joy of my soul; for He has clothed me with a robe of s", + "id": "Introitus" + }, + { + "body": "O God, Who by the Immaculate Conception of the Virgin, prepared a worthy dwelling for Your Son, and Who, by Your Son’s d", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Proverbs\n*Prov 8:22-35*\nThe Lord begot me, the firstborn of His ways, the forerunner of His prod", + "id": "Lectio" + }, + { + "body": "*Judith 13:23*\nBlessed are you, O Virgin Mary, by the Lord the most high God, above all women upon the earth.\n*Judith 15", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-28*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28*\nHail Mary full of grace, the Lord is with you; blessed are you among women. Alleluia.", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the sacrifice of salvation which we offer You on the feast of the Immaculate Conception of the Blessed V", + "id": "Secreta" + }, + { + "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", + "id": "Prefatio" + }, + { + "body": "*Ps 86:3, Luc 1:49*\nGlorious things are said of you, O Mary, for He Who is mighty has done great things for you.", + "id": "Communio" + }, + { + "body": "May the sacrament we have received, O Lord our God, heal in us the wounds of that sin from which by a singular privilege", + "id": "Postcommunio" + } + ], + "2025-12-09": [ + { + "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", + "id": "Introitus" + }, + { + "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", + "id": "Communio" + }, + { + "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", + "id": "Postcommunio" + } + ], + "2025-12-10": [ + { + "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", + "id": "Introitus" + }, + { + "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", + "id": "Oratio" + }, + { + "body": "*Commemoration St. Melchiades*\nO God, Who by the Immaculate Conception of the Virgin, prepared a worthy dwelling for You", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", + "id": "Secreta" + }, + { + "body": "*Commemoration St. Melchiades*\nAccept, O Lord, the sacrifice of salvation which we offer You on the feast of the Immacul", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", + "id": "Communio" + }, + { + "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", + "id": "Postcommunio" + }, + { + "body": "*Commemoration St. Melchiades*\nMay the sacrament we have received, O Lord our God, heal in us the wounds of that sin fro", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-11": [ + { + "body": "*John 21:15-17*\nIf you love Me, Simon Peter, feed My lambs, feed my sheep.\n*Ps 29:2*\nI will extol You, O Lord, for You d", + "id": "Introitus" + }, + { + "body": "Eternal Shepherd, look with favor upon Your flock. Safeguard and shelter it forevermore through blessed Damasus, Supreme", + "id": "Oratio" + }, + { + "body": "*Commemoration II Sunday of Advent*\nStir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:1-4, 10-11.*\nBeloved: I exhort the presbyters among you ", + "id": "Lectio" + }, + { + "body": "*Ps 106:32, 31*\nLet them extol him in the assembly of the people and praise him in the council of the elders.\n℣. Let the", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus, having come into the distric", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nSee, I place My words in your mouth! I set you over nations and over kingdoms, to root up and to tear down,", + "id": "Offertorium" + }, + { + "body": "Having offered You our gifts, we beseech You, O Lord, mercifully to enlighten Your Church, so that Your flock may everyw", + "id": "Secreta" + }, + { + "body": "*Commemoration II Sunday of Advent*\nBe appeased, we beseech You, O Lord, by the prayers and offerings of our human frail", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build My Church.", + "id": "Communio" + }, + { + "body": "Since Your Church has been nourished by sacred food, govern her in Your clemency, we beseech You, O Lord, so that under ", + "id": "Postcommunio" + }, + { + "body": "*Commemoration II Sunday of Advent*\nWe who have been refreshed by the food of spiritual nourishment, humbly beseech You,", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-12": [ + { + "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", + "id": "Introitus" + }, + { + "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", + "id": "Offertorium" + }, + { + "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", + "id": "Communio" + }, + { + "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", + "id": "Postcommunio" + } + ], + "2025-12-13": [ + { + "body": "*Ps4 4:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", + "id": "Introitus" + }, + { + "body": "Hear us, O God our Saviour, that, as we rejoice on the feast of blessed Lucy, Your Virgin and Martyr, so we may grow in ", + "id": "Oratio" + }, + { + "body": "*Commemoration II Sunday of Advent*\nStir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that t", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 10:17-18; 11:1-2*\nBrethren: He who boas", + "id": "Lectio" + }, + { + "body": "*Ps4 4:8*\nYou love justice and hate wickedness.\n℣. Therefore God, your God, has anointed you with oil of gladness. Allel", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", + "id": "Evangelium" + }, + { + "body": "*Ps4 4:15-16*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and jo", + "id": "Offertorium" + }, + { + "body": "Graciously accept the offering of Your holy people O Lord, in honor of Your Saints, through whose merits we have receive", + "id": "Secreta" + }, + { + "body": "*Commemoration II Sunday of Advent*\nBe appeased, we beseech You, O Lord, by the prayers and offerings of our human frail", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps11 8:161-162*\nPrinces persecute me without cause, but my heart stands in awe of Your word. I rejoice at Your promise,", + "id": "Communio" + }, + { + "body": "O Lord, O You have filled Your household with sacred gifts; always comfort us, we beseech You, by the intercession of he", + "id": "Postcommunio" + }, + { + "body": "*Commemoration II Sunday of Advent*\nWe who have been refreshed by the food of spiritual nourishment, humbly beseech You,", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-14": [ + { + "body": "*Phil. 4:4-6*\nRejoice in the Lord always: again I say, rejoice. Let your moderation be known to all men: for the Lord is", + "id": "Introitus" + }, + { + "body": "Lend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of our minds by the grace of Your coming", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-7*\nBrethren: Rejoice in the Lord always; aga", + "id": "Lectio" + }, + { + "body": "*Ps 79:2-3, 2*\nFrom Your throne, O Lord, upon the Cherubim, rouse Your power, and come.\n℣. O Shepherd of Israel, hearken", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:19-28*\nAt that time, the Jews sent to John from Jerusalem pr", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nYou have favored, O Lord, Your land; You have restored the well-being of Jacob. You have forgiven the guilt of", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continually, so that the sacramental rite Yo", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Isa 35:4*\nSay to those who are frightened: Be strong, fear not! Here is our God, He comes to save us.", + "id": "Communio" + }, + { + "body": "We entreat You, merciful Lord, that these divine helps may cleanse us from our sins and prepare us for the coming festal", + "id": "Postcommunio" + } + ], + "2025-12-15": [ + { + "body": "*Phil. 4:4-6*\nRejoice in the Lord always: again I say, rejoice. Let your moderation be known to all men: for the Lord is", + "id": "Introitus" + }, + { + "body": "Lend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of our minds by the grace of Your coming", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-7*\nBrethren: Rejoice in the Lord always; aga", + "id": "Lectio" + }, + { + "body": "*Ps 79:2-3, 2*\nFrom Your throne, O Lord, upon the Cherubim, rouse Your power, and come.\n℣. O Shepherd of Israel, hearken", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:19-28*\nAt that time, the Jews sent to John from Jerusalem pr", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nYou have favored, O Lord, Your land; You have restored the well-being of Jacob. You have forgiven the guilt of", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continually, so that the sacramental rite Yo", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Isa 35:4*\nSay to those who are frightened: Be strong, fear not! Here is our God, He comes to save us.", + "id": "Communio" + }, + { + "body": "We entreat You, merciful Lord, that these divine helps may cleanse us from our sins and prepare us for the coming festal", + "id": "Postcommunio" + } + ], + "2025-12-16": [ + { + "body": "*Dan 3:84, 87*\nPriests of the Lord, bless the Lord; holy men of humble heart, praise God.\n*Dan 3:57*\nBless the Lord, all", + "id": "Introitus" + }, + { + "body": "O God, Who gladden us with the yearly festival of blessed N., Your Martyr and Bishop, mercifully grant that, as we vener", + "id": "Oratio" + }, + { + "body": "*Commemoration III Sunday of Advent*\nLend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 1:3-7*\nBrethren: Blessed be the God and", + "id": "Lectio" + }, + { + "body": "*Ps 8:6-7*\nYou crowned him with glory and honor.\n℣. You have given him rule over the works of Your hands, O Lord. Allelu", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:24-27.*\nAt that time, Jesus said to His disciples, If an", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", + "id": "Offertorium" + }, + { + "body": "Sanctify the offerings dedicated to You, O Lord, and through the intercession of blessed N., Your Martyr and Bishop, loo", + "id": "Secreta" + }, + { + "body": "*Commemoration III Sunday of Advent*\nWe beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nYou placed on his head, O Lord, a crown of pure gold.", + "id": "Communio" + }, + { + "body": "May this Communion, O Lord, cleanse us of sin, and through the intercession of blessed N., Your Martyr and Bishop, may i", + "id": "Postcommunio" + }, + { + "body": "*Commemoration III Sunday of Advent*\nWe entreat You, merciful Lord, that these divine helps may cleanse us from our sins", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-17": [ + { + "body": "*Isa 45:8*\nDrop down dew, you heavens, from above, and let the clouds rain the just: let the earth be opened and bud for", + "id": "Introitus" + }, + { + "body": "Grant us, we beseech You, almighty God, that the coming feast of our redemption may bring us both help for our present l", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa. 2:2-5*\nIn those days the prophet Isaiah said: In days to come, the mountain of the ", + "id": "LectioL1" + }, + { + "body": "*Ps 23:7; 23:3-4*\nLift up, O gates, your lintels; reach up, you ancient portals, that the King of glory may come in!\n℣. ", + "id": "GradualeL1" + }, + { + "body": "Hasten, we beseech You, O Lord, and delay not; bestow upon us the help of power from on high, that they who trust in You", + "id": "OratioL1" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 7:10-15*\nIn those days, the Lord spoke to Achaz: Ask for a sign from the Lord, your ", + "id": "Lectio" + }, + { + "body": "*Ps 144:18, 21*\nThe Lord is near to all who call upon Him, to all who call upon Him in truth.\n℣. May my mouth speak the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", + "id": "Evangelium" + }, + { + "body": "*Isa 35:4*\nBe strong, fear no longer! For, behold, our God will bring judgment. He Himself will come to save us.", + "id": "Offertorium" + }, + { + "body": "May our fasting, we beseech You, O Lord, be acceptable to You, and by its purifying power make us worthy of Your grace a", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Isa 7:14*\nBehold, the virgin shall be with child and bear a Son, and shall name Him Emmanuel.", + "id": "Communio" + }, + { + "body": "Refreshed by the sacramental gift of Your salvation, we humbly beseech You, O Lord, that enjoying its savor we may be ma", + "id": "Postcommunio" + } + ], + "2025-12-18": [ + { + "body": "*Phil. 4:4-6*\nRejoice in the Lord always: again I say, rejoice. Let your moderation be known to all men: for the Lord is", + "id": "Introitus" + }, + { + "body": "Lend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of our minds by the grace of Your coming", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-7*\nBrethren: Rejoice in the Lord always; aga", + "id": "Lectio" + }, + { + "body": "*Ps 79:2-3, 2*\nFrom Your throne, O Lord, upon the Cherubim, rouse Your power, and come.\n℣. O Shepherd of Israel, hearken", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:19-28*\nAt that time, the Jews sent to John from Jerusalem pr", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nYou have favored, O Lord, Your land; You have restored the well-being of Jacob. You have forgiven the guilt of", + "id": "Offertorium" + }, + { + "body": "We beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continually, so that the sacramental rite Yo", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Isa 35:4*\nSay to those who are frightened: Be strong, fear not! Here is our God, He comes to save us.", + "id": "Communio" + }, + { + "body": "We entreat You, merciful Lord, that these divine helps may cleanse us from our sins and prepare us for the coming festal", + "id": "Postcommunio" + } + ], + "2025-12-19": [ + { + "body": "*Ps 118:151-152*\nYou, O Lord, are near, and all Your ways are truth. Of old I know from Your decrees that You are foreve", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and come; that those who trust in Your goodness may soon be delivered from", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 11:1-5*\nThus says the Lord God: A shoot shall sprout from the stump of Jesse, and fr", + "id": "Lectio" + }, + { + "body": "*Ps 84:8, 2*\nShow us, O Lord, Your kindness, and grant us Your salvation.\n℣. You have favored, O Lord, Your land; You ha", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:39-47*\nAt that time, Mary arose and went with haste into the", + "id": "Evangelium" + }, + { + "body": "*Ps 84: 7-8.*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindnes", + "id": "Offertorium" + }, + { + "body": "Accept our offering and prayers, we beseech You, O Lord; cleanse us by this heavenly rite, and in Your mercy hear us.\nTh", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Zach 14:5-6*\nBehold, the Lord shall come, and all His holy ones with Him: and there shall be in that day a great light.", + "id": "Communio" + }, + { + "body": "May the devout reception of Your sacrament, O Lord, give us new strength, purge us of our old selves and let us come to ", + "id": "Postcommunio" + } + ], + "2025-12-20": [ + { + "body": "*Ps 79:4, 2*\nCome, O Lord, from Your throne upon the Cherubim; if Your face shine upon us, then we shall be safe.\n*Ps 79", + "id": "Introitus" + }, + { + "body": "O God, You Who see how we are troubled by our evil tendencies, mercifully grant that we may find consolation in Your com", + "id": "Oratio" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 19:20-22*\nIn those days, they shall cry out to the Lord against their oppressors, an", + "id": "LectioL1" + }, + { + "body": "*Ps 18:7, 2*\nAt one end of the heavens He comes forth, and His course is to their other end.\n℣. The heavens declare the ", + "id": "GradualeL1" + }, + { + "body": "Grant, we beseech You, almighty God, that we who are heavy-laden under the yoke of sin may be delivered from the bondage", + "id": "OratioL1" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 35:1-7*\nThus says the Lord: The desert and the parched land will exult; the steppe w", + "id": "LectioL2" + }, + { + "body": "*Ps 18:6-7*\nHe has pitched His tent in the sun, and He comes forth like the groom from his bridal chamber.\n℣. At one end", + "id": "GradualeL2" + }, + { + "body": "Saddened by the guilt of our deeds, we, Your unworthy servants, beseech You, O Lord, to gladden us by the coming of Your", + "id": "OratioL2" + }, + { + "body": "Lesson from the book of Isaias\n*Isa 40:9-11*\nThus says the Lord: Go up onto a high mountain, Sion, herald of glad tiding", + "id": "LectioL3" + }, + { + "body": "*Ps 79:20; 79:3*\nO Lord God of Hosts, restore us; if Your face shine upon us, then we shall be safe.\n℣. Rouse Your power", + "id": "GradualeL3" + }, + { + "body": "Grant, we beseech You, almighty God, that the coming festival of Your Son may bring us healing today and rewards eternal", + "id": "OratioL3" + }, + { + "body": "Lesson from the book of Isaias\n*Isa. 45:1-8*\nThus says the Lord to His anointed, Cyrus, whose right hand I grasp, subdui", + "id": "LectioL4" + }, + { + "body": "*Ps 79:3, 2, 3*\nRouse Your power, O Lord, and come to save us.\n℣. O Shepherd of Israel, hearken, O Guide of the flock of", + "id": "GradualeL4" + }, + { + "body": "Heed in Your mercy, we beseech You, O Lord, the prayers of Your people, that we, who are justly chastised for our sins, ", + "id": "OratioL4" + }, + { + "body": "Lesson from the book of Daniel\n*Dan. 3:47-51*\nIn those days, the Angel of the Lord went down into the furnace with Azari", + "id": "LectioL5" + }, + { + "body": "O God, You Who tempered the flames of fire for the three young men, mercifully grant that the flames of sin may not burn", + "id": "OratioL5" + }, + { + "body": "Lesson from the second letter of St. Paul the Apostle to the Thessalonians\n*2 Thess. 2:1-8*\nWe beseech you, brethren, by", + "id": "Lectio" + }, + { + "body": "*Ps 79:2-3*\nO Shepherd of Israel, hearken, O Guide of the flock of Joseph!\n℣. From Your throne upon the Cherubim, shine ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 3:1-6*\nNow in the fifteenth year of the reign of Tiberius Caes", + "id": "Evangelium" + }, + { + "body": "*Zach 9:9*\nRejoice heartily, O daughter of Sion, shout for joy, O daughter of Jerusalem! See, your King shall come to yo", + "id": "Offertorium" + }, + { + "body": "Look with favor, we beseech You, O Lord, upon the offerings here before You, that they may be beneficial for our devotio", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 18:6-7*\nHe has rejoiced as a giant to run the way: at one end of the heavens He comes forth, and His course is to th", + "id": "Communio" + }, + { + "body": "We beseech You, O Lord our God, that the sacrament You have given as the bulwark of our atonement may be made a saving r", + "id": "Postcommunio" + } + ], + "2025-12-21": [ + { + "body": "*Isa 45:8*\nLet the Just One descend, O heavens, like dew from above, like gentle rain let the skies drop Him down. Let t", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and delay not: and with Your great might come to our aid, so that what is ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:1-5*\nBrethren: Let a man so account us", + "id": "Lectio" + }, + { + "body": "*Ps 144:18, 21*\nThe Lord is near to all who call upon Him, to all who call upon Him in truth.\n℣. May my mouth speak the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 3:1-6*\nNow in the fifteenth year of the reign of Tiberius Caes", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28*\nHail, Mary, full of grace, the Lord is with you, blessed are you among women, and blessed is the fruit of yo", + "id": "Offertorium" + }, + { + "body": "Look with favor, O Lord, we beseech You, upon the offerings here present, that they may be profitable for our devotion a", + "id": "Secreta" + }, + { + "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", + "id": "Prefatio" + }, + { + "body": "*Isa 7:14*\nBehold, a virgin shall be with child and bear a son, and shall name Him Emmanuel.", + "id": "Communio" + }, + { + "body": "Having received Your gifts, we beseech You, O Lord, that each partaking of this sacrament may increase within us its sav", + "id": "Postcommunio" + } + ], + "2025-12-22": [ + { + "body": "*Isa 45:8*\nLet the Just One descend, O heavens, like dew from above, like gentle rain let the skies drop Him down. Let t", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and delay not: and with Your great might come to our aid, so that what is ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:1-5*\nBrethren: Let a man so account us", + "id": "Lectio" + }, + { + "body": "*Ps 144:18, 21*\nThe Lord is near to all who call upon Him, to all who call upon Him in truth.\n℣. May my mouth speak the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 3:1-6*\nNow in the fifteenth year of the reign of Tiberius Caes", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28*\nHail, Mary, full of grace, the Lord is with you, blessed are you among women, and blessed is the fruit of yo", + "id": "Offertorium" + }, + { + "body": "Look with favor, O Lord, we beseech You, upon the offerings here present, that they may be profitable for our devotion a", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Isa 7:14*\nBehold, a virgin shall be with child and bear a son, and shall name Him Emmanuel.", + "id": "Communio" + }, + { + "body": "Having received Your gifts, we beseech You, O Lord, that each partaking of this sacrament may increase within us its sav", + "id": "Postcommunio" + } + ], + "2025-12-23": [ + { + "body": "*Isa 45:8*\nLet the Just One descend, O heavens, like dew from above, like gentle rain let the skies drop Him down. Let t", + "id": "Introitus" + }, + { + "body": "Put forth Your power, O Lord, we beseech You, and delay not: and with Your great might come to our aid, so that what is ", + "id": "Oratio" + }, + { + "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:1-5*\nBrethren: Let a man so account us", + "id": "Lectio" + }, + { + "body": "*Ps 144:18, 21*\nThe Lord is near to all who call upon Him, to all who call upon Him in truth.\n℣. May my mouth speak the ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 3:1-6*\nNow in the fifteenth year of the reign of Tiberius Caes", + "id": "Evangelium" + }, + { + "body": "*Luke 1:28*\nHail, Mary, full of grace, the Lord is with you, blessed are you among women, and blessed is the fruit of yo", + "id": "Offertorium" + }, + { + "body": "Look with favor, O Lord, we beseech You, upon the offerings here present, that they may be profitable for our devotion a", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Isa 7:14*\nBehold, a virgin shall be with child and bear a son, and shall name Him Emmanuel.", + "id": "Communio" + }, + { + "body": "Having received Your gifts, we beseech You, O Lord, that each partaking of this sacrament may increase within us its sav", + "id": "Postcommunio" + } + ], + "2025-12-24": [ + { + "body": "*Ex 16:6-7*\nThis day you shall know that the Lord will come, and save us: and in the morning you shall see His glory.\n*P", + "id": "Introitus" + }, + { + "body": "O God, You Who gladden us year after year with the expectation of our redemption, grant that we, who now welcome with jo", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 1:1-6*\nPaul, the servant of Jesus Christ, called to be", + "id": "Lectio" + }, + { + "body": "*Exod 16:6-7*\nThis day you shall know that the Lord will come and save us: and in the morning you shall see His glory.\n*", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 1:18-21*\nWhen Mary, the Mother of Jesus, has been betrothed", + "id": "Evangelium" + }, + { + "body": "*Ps 23:7*\nLift up, O gates, your lintels; reach up, you ancient portals, that the King of glory may come in.", + "id": "Offertorium" + }, + { + "body": "Grant us, we beseech You, almighty God, that, as we anticipate the celebration of Your Son’s birthday, so we may joyfull", + "id": "Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Isa 40:5*\nThe glory of the Lord shall be revealed, and all mankind shall see the salvation of our God.", + "id": "Communio" + }, + { + "body": "Grant us, we beseech You, O Lord, to begin a new life with this commemoration of the birth of Your only-begotten Son, Wh", + "id": "Postcommunio" + } + ], + "2025-12-25": [ + { + "body": "*Ps 2:7*\nThe Lord said to Me, You are My Son; this day I have begotten You.\n*Ps 2:1*\nWhy do the nations rage and the peo", + "id": "Introitus" + }, + { + "body": "O God, Who have brightened this most holy night with the splendor of the true light, grant, we beseech You, that we may ", + "id": "Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", + "id": "Lectio" + }, + { + "body": "*Ps 109:3; 109:1*\nYours is princely power in the day of Your birth, in holy splendor; before the daystar, I have begotte", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:1-14*\nAt that time, there went forth a decree from Caesar Au", + "id": "Evangelium" + }, + { + "body": "*Ps 95:11, 13*\nLet the heavens be glad and the earth rejoice before the Lord, for He comes.", + "id": "Offertorium" + }, + { + "body": "May the offering of this day’s festivity, we beseech You, O Lord, find acceptance with You; that, by the bounty of Your ", + "id": "Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Ps 109:3*\nIn holy splendor, before the daystar I have begotten You.", + "id": "Communio" + }, + { + "body": "Grant, we beseech You, O Lord our God, that we who joyfully celebrate the birth of our Lord Jesus Christ, in this sacram", + "id": "Postcommunio" + } + ], + "2025-12-26": [ + { + "body": "*Ps 118:23, 86, 23*\nPrinces met and talked against me, and the wicked persecuted me wrongfully; help me, O Lord my God, ", + "id": "Introitus" + }, + { + "body": "Grant us, we beseech You, O Lord, to imitate what we celebrate, so that we may learn to love even our enemies; because w", + "id": "Oratio" + }, + { + "body": "*For Octave of the Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotte", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the Acts of Apostles\n*Acts 6:8-10; 7:54-59*\nIn those days, Stephen, full of grace and power, was working gre", + "id": "Lectio" + }, + { + "body": "*Ps 118:23, 86*\nPrinces met and talked against me, and the wicked persecuted me wrongfully.\n*Ps 6:5*\n℣. Help me, O Lord ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 23:34-39*\nAt that time, Jesus said to the Scribes and Phari", + "id": "Evangelium" + }, + { + "body": "*Acts 6:5; 7:59*\nThe Apostles chose Stephen to be a levite, a man full of faith and of the Holy Spirit: whom the Jews st", + "id": "Offertorium" + }, + { + "body": "Receive our offerings, O Lord, in memory of Your saints, that, as their passion has given them eternal glory, so may thi", + "id": "Secreta" + }, + { + "body": "*For Octave of the Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotte", + "id": "Commemoratio Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Acts 7:56, 59-60*\nI see the heavens opened, and Jesus standing on the right hand of the power of God: Lord Jesus receiv", + "id": "Communio" + }, + { + "body": "May the sacrament we have received aid us, O Lord; and by the intercession of blessed Stephen, Your Martyr, may it susta", + "id": "Postcommunio" + }, + { + "body": "*For Octave of the Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is t", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-27": [ + { + "body": "*Ecclus 15:5*\nIn the midst of the assembly the Lord opened his mouth; and filled him with the spirit of wisdom and under", + "id": "Introitus" + }, + { + "body": "O Lord, graciously shed light upon Your Church, so that, enlightened by the teachings of blessed John, Your Apostle and ", + "id": "Oratio" + }, + { + "body": "*For Octave of the Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotte", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 15:1-6*\nHe who fears God will do good; he who is practiced in the Law wil", + "id": "Lectio" + }, + { + "body": "*John 21:23, 19*\nThis saying therefore went abroad among the brethren, that that disciple was not to die. But Jesus had ", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to John\n*John 21:19-24*\nAt that time, Jesus said to Peter, Follow Me. Turnin", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow.", + "id": "Offertorium" + }, + { + "body": "Accept, O Lord, the gifts we bring You on the feast of him upon whose patronage we trust for our salvation.\nThrough our ", + "id": "Secreta" + }, + { + "body": "*For Octave of the Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotte", + "id": "Commemoratio Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*John 21:23*\nA saying went abroad among the brethren, that that disciple was not to die. But Jesus had not said, He is n", + "id": "Communio" + }, + { + "body": "Refreshed with heavenly food and drink, we humbly beseech You our God, that we may be protected by the prayers of him in", + "id": "Postcommunio" + }, + { + "body": "*For Octave of the Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is t", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-28": [ + { + "body": "*Wis 18:14-15*\nWhen a profound stillness compassed everything and the night in its swift course was half spent, Your all", + "id": "Introitus" + }, + { + "body": "O Almighty and eternal God, direct our actions in conformity with Your will, that in the name of Your beloved Son we may", + "id": "Oratio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotten So", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 4:1-7*\nBrethren: As long as the heir is a child, he", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:33-40*\nAt that time, Joseph and Mary, the mother of Jesus we", + "id": "Evangelium" + }, + { + "body": "*Ps 92:1-2*\nGod has made the world firm, not to be moved. Your throne, O God, stands firm from of old; from everlasting ", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", + "id": "Secreta" + }, + { + "body": "*For Octave of Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotten So", + "id": "Commemoratio Secreta" + }, + { + "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 2:20*\nTake the Child and His mother, and go into the land of Israel, for those who sought the Child’s life are dea", + "id": "Communio" + }, + { + "body": "By the working of this sacrament, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is the a", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-29": [ + { + "body": "*Wis 18:14-15*\nWhen a profound stillness compassed everything and the night in its swift course was half spent, Your all", + "id": "Introitus" + }, + { + "body": "O Almighty and eternal God, direct our actions in conformity with Your will, that in the name of Your beloved Son we may", + "id": "Oratio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotten So", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 4:1-7*\nBrethren: As long as the heir is a child, he", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:33-40*\nAt that time, Joseph and Mary, the mother of Jesus we", + "id": "Evangelium" + }, + { + "body": "*Ps 92:1-2*\nGod has made the world firm, not to be moved. Your throne, O God, stands firm from of old; from everlasting ", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", + "id": "Secreta" + }, + { + "body": "*For Octave of Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotten So", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 2:20*\nTake the Child and His mother, and go into the land of Israel, for those who sought the Child’s life are dea", + "id": "Communio" + }, + { + "body": "By the working of this sacrament, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is the a", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-30": [ + { + "body": "*Wis 18:14-15*\nWhen a profound stillness compassed everything and the night in its swift course was half spent, Your all", + "id": "Introitus" + }, + { + "body": "O Almighty and eternal God, direct our actions in conformity with Your will, that in the name of Your beloved Son we may", + "id": "Oratio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotten So", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 4:1-7*\nBrethren: As long as the heir is a child, he", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:33-40*\nAt that time, Joseph and Mary, the mother of Jesus we", + "id": "Evangelium" + }, + { + "body": "*Ps 92:1-2*\nGod has made the world firm, not to be moved. Your throne, O God, stands firm from of old; from everlasting ", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", + "id": "Secreta" + }, + { + "body": "*For Octave of Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotten So", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 2:20*\nTake the Child and His mother, and go into the land of Israel, for those who sought the Child’s life are dea", + "id": "Communio" + }, + { + "body": "By the working of this sacrament, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is the a", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-31": [ + { + "body": "*Wis 18:14-15*\nWhen a profound stillness compassed everything and the night in its swift course was half spent, Your all", + "id": "Introitus" + }, + { + "body": "O Almighty and eternal God, direct our actions in conformity with Your will, that in the name of Your beloved Son we may", + "id": "Oratio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotten So", + "id": "Commemoratio Oratio" + }, + { + "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 4:1-7*\nBrethren: As long as the heir is a child, he", + "id": "Lectio" + }, + { + "body": "*Ps 44:3, 2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows wi", + "id": "Graduale" + }, + { + "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:33-40*\nAt that time, Joseph and Mary, the mother of Jesus we", + "id": "Evangelium" + }, + { + "body": "*Ps 92:1-2*\nGod has made the world firm, not to be moved. Your throne, O God, stands firm from of old; from everlasting ", + "id": "Offertorium" + }, + { + "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", + "id": "Secreta" + }, + { + "body": "*For Octave of Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotten So", + "id": "Commemoratio Secreta" + }, + { + "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", + "id": "Prefatio" + }, + { + "body": "*Matt 2:20*\nTake the Child and His mother, and go into the land of Israel, for those who sought the Child’s life are dea", + "id": "Communio" + }, + { + "body": "By the working of this sacrament, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", + "id": "Postcommunio" + }, + { + "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is the a", + "id": "Commemoratio Postcommunio" + } + ] +} \ No newline at end of file diff --git a/tests/fixtures/propers_en_2020.json b/tests/fixtures/propers_en_2020.json deleted file mode 100644 index 721537b6..00000000 --- a/tests/fixtures/propers_en_2020.json +++ /dev/null @@ -1,17258 +0,0 @@ -{ - "2020-01-01": [ - { - "body": "*Isa 9:6*\nA Child is born to us, a Son is given to us; upon His shoulder dominion rests; and His name shall be called th", - "id": "Introitus" - }, - { - "body": "O God, You Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the rewards of eternal salvation, g", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", - "id": "Lectio" - }, - { - "body": "*Ps 97: 3, 4, 2*\nAll the ends of the earth have seen the salvation by our God. Sing joyfully to God, all you lands.\n℣. T", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12, 15*\nYours are the heavens, and Yours is the earth; the world and its fullness You have founded. Justice and j", - "id": "Offertorium" - }, - { - "body": "Accept, we beseech You, O Lord, our offerings and prayers; cleanse us by this heavenly rite, and in Your mercy, hear us.", - "id": "Secreta" - }, - { - "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nAll the ends of the earth have seen the salvation by our God.", - "id": "Communio" - }, - { - "body": "May this Communion, O Lord, cleanse us from guilt and, by the intercession of the Blessed Virgin Mary, Mother of God, im", - "id": "Postcommunio" - } - ], - "2020-01-02": [ - { - "body": "*Isa 9:6*\nA Child is born to us, a Son is given to us; upon His shoulder dominion rests; and His name shall be called th", - "id": "Introitus" - }, - { - "body": "O God, You Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the rewards of eternal salvation, g", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", - "id": "Lectio" - }, - { - "body": "*Ps 97: 3, 4, 2*\nAll the ends of the earth have seen the salvation by our God. Sing joyfully to God, all you lands.\n℣. T", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12, 15*\nYours are the heavens, and Yours is the earth; the world and its fullness You have founded. Justice and j", - "id": "Offertorium" - }, - { - "body": "Accept, we beseech You, O Lord, our offerings and prayers; cleanse us by this heavenly rite, and in Your mercy, hear us.", - "id": "Secreta" - }, - { - "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nAll the ends of the earth have seen the salvation by our God.", - "id": "Communio" - }, - { - "body": "May this Communion, O Lord, cleanse us from guilt and, by the intercession of the Blessed Virgin Mary, Mother of God, im", - "id": "Postcommunio" - } - ], - "2020-01-03": [ - { - "body": "*Isa 9:6*\nA Child is born to us, a Son is given to us; upon His shoulder dominion rests; and His name shall be called th", - "id": "Introitus" - }, - { - "body": "O God, You Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the rewards of eternal salvation, g", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", - "id": "Lectio" - }, - { - "body": "*Ps 97: 3, 4, 2*\nAll the ends of the earth have seen the salvation by our God. Sing joyfully to God, all you lands.\n℣. T", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12, 15*\nYours are the heavens, and Yours is the earth; the world and its fullness You have founded. Justice and j", - "id": "Offertorium" - }, - { - "body": "Accept, we beseech You, O Lord, our offerings and prayers; cleanse us by this heavenly rite, and in Your mercy, hear us.", - "id": "Secreta" - }, - { - "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nAll the ends of the earth have seen the salvation by our God.", - "id": "Communio" - }, - { - "body": "May this Communion, O Lord, cleanse us from guilt and, by the intercession of the Blessed Virgin Mary, Mother of God, im", - "id": "Postcommunio" - } - ], - "2020-01-04": [ - { - "body": "*Ps 44:13 44:15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to t", - "id": "Introitus" - }, - { - "body": "O God, Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the reward of eternal salvation, grant,", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St Paul the Apostle to Titus\n*Titus 3:4-7*\nBeloved: When the goodness and kindness of God our ", - "id": "Lectio" - }, - { - "body": "*Ps 44:3, 2*\nFairer in beauty are you than the sons of men; grace is poured out upon your lips.\n℣. My heart overflows wi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:15-20*\nAt that time, the shepherds were saying to one anothe", - "id": "Evangelium" - }, - { - "body": "You are happy, O holy Virgin Mary, and most worthy of all high praise; for out of you has risen the sun of justice, Chri", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "May this Communion, O Lord, cleanse us from sin and, through the intercession of the Blessed Virgin Mary, Mother of God,", - "id": "Postcommunio" - } - ], - "2020-01-05": [ - { - "body": "*Phil 2:10-11*\nAt the Name of Jesus every knee should bend of those in heaven, on earth, and under the earth, and every ", - "id": "Introitus" - }, - { - "body": "O God, You Who appointed Your only-begotten Son to be the Saviour of the human race, and commanded that He be called Jes", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 4:8-12*\nIn those days, Peter, filled with the Holy Spirit, said, Rulers of the pe", - "id": "Lectio" - }, - { - "body": "*Ps 105:47*\nSave us, O Lord, our God, and gather us from among the nations, that we may give thanks to Your holy Name an", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:21*\nAt that time, when eight days were fulfilled for the cir", - "id": "Evangelium" - }, - { - "body": "*Ps 85:12, 5*\nI will give thanks to You, O Lord my God, with all my heart, and I will glorify Your Name forever. For You", - "id": "Offertorium" - }, - { - "body": "May Your blessing, O most merciful God, which makes all creation flourish, sanctify this our sacrifice, which we offer Y", - "id": "Secreta" - }, - { - "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 85:9-10*\nAll the nations You have made shall come and worship You, O Lord, and glorify Your Name. For You are great,", - "id": "Communio" - }, - { - "body": "Almighty, eternal God, You Who have created and redeemed us, graciously look upon our needs, and deign to receive with k", - "id": "Postcommunio" - } - ], - "2020-01-06": [ - { - "body": "*Mal 3:1; 1 Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", - "id": "Introitus" - }, - { - "body": "O God, You Who by the guidance of a star this day revealed Your only-begotten Son to the Gentiles; mercifully grant that", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", - "id": "Lectio" - }, - { - "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:1-12*\nWhen Jesus was born in Bethlehem of Judea, in the d", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", - "id": "Offertorium" - }, - { - "body": "O Lord, look favorably upon the gifts of Your Church, which are no longer gifts of gold, frankincense and myrrh, but, as", - "id": "Secreta" - }, - { - "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that, by the understanding of our minds made pure, we may grasp what we celebrate b", - "id": "Postcommunio" - } - ], - "2020-01-07": [ - { - "body": "*Mal 3:1; 1 Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", - "id": "Introitus" - }, - { - "body": "O God, You Who by the guidance of a star this day revealed Your only-begotten Son to the Gentiles; mercifully grant that", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", - "id": "Lectio" - }, - { - "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:1-12*\nWhen Jesus was born in Bethlehem of Judea, in the d", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", - "id": "Offertorium" - }, - { - "body": "O Lord, look favorably upon the gifts of Your Church, which are no longer gifts of gold, frankincense and myrrh, but, as", - "id": "Secreta" - }, - { - "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that, by the understanding of our minds made pure, we may grasp what we celebrate b", - "id": "Postcommunio" - } - ], - "2020-01-08": [ - { - "body": "*Mal 3:1; 1 Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", - "id": "Introitus" - }, - { - "body": "O God, You Who by the guidance of a star this day revealed Your only-begotten Son to the Gentiles; mercifully grant that", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", - "id": "Lectio" - }, - { - "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:1-12*\nWhen Jesus was born in Bethlehem of Judea, in the d", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", - "id": "Offertorium" - }, - { - "body": "O Lord, look favorably upon the gifts of Your Church, which are no longer gifts of gold, frankincense and myrrh, but, as", - "id": "Secreta" - }, - { - "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that, by the understanding of our minds made pure, we may grasp what we celebrate b", - "id": "Postcommunio" - } - ], - "2020-01-09": [ - { - "body": "*Mal 3:1; 1 Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", - "id": "Introitus" - }, - { - "body": "O God, You Who by the guidance of a star this day revealed Your only-begotten Son to the Gentiles; mercifully grant that", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", - "id": "Lectio" - }, - { - "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:1-12*\nWhen Jesus was born in Bethlehem of Judea, in the d", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", - "id": "Offertorium" - }, - { - "body": "O Lord, look favorably upon the gifts of Your Church, which are no longer gifts of gold, frankincense and myrrh, but, as", - "id": "Secreta" - }, - { - "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that, by the understanding of our minds made pure, we may grasp what we celebrate b", - "id": "Postcommunio" - } - ], - "2020-01-10": [ - { - "body": "*Mal 3:1; 1 Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", - "id": "Introitus" - }, - { - "body": "O God, You Who by the guidance of a star this day revealed Your only-begotten Son to the Gentiles; mercifully grant that", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", - "id": "Lectio" - }, - { - "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:1-12*\nWhen Jesus was born in Bethlehem of Judea, in the d", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", - "id": "Offertorium" - }, - { - "body": "O Lord, look favorably upon the gifts of Your Church, which are no longer gifts of gold, frankincense and myrrh, but, as", - "id": "Secreta" - }, - { - "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that, by the understanding of our minds made pure, we may grasp what we celebrate b", - "id": "Postcommunio" - } - ], - "2020-01-11": [ - { - "body": "*Ps 44:13 44:15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to t", - "id": "Introitus" - }, - { - "body": "O God, Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the reward of eternal salvation, grant,", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St Paul the Apostle to Titus\n*Titus 3:4-7*\nBeloved: When the goodness and kindness of God our ", - "id": "Lectio" - }, - { - "body": "*Ps 44:3, 2*\nFairer in beauty are you than the sons of men; grace is poured out upon your lips.\n℣. My heart overflows wi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:15-20*\nAt that time, the shepherds were saying to one anothe", - "id": "Evangelium" - }, - { - "body": "You are happy, O holy Virgin Mary, and most worthy of all high praise; for out of you has risen the sun of justice, Chri", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "May this Communion, O Lord, cleanse us from sin and, through the intercession of the Blessed Virgin Mary, Mother of God,", - "id": "Postcommunio" - } - ], - "2020-01-12": [ - { - "body": "*Prov 23:24-25*\nThe father of the Just will exult with glee; let Your father and mother have joy; let her who bore You e", - "id": "Introitus" - }, - { - "body": "O Lord Jesus Christ, You Who while subject to Mary and Joseph, hallowed family life with virtues beyond description, gra", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 3:12-17*\nBrethren: Put on, as God’s chosen ones, h", - "id": "Lectio" - }, - { - "body": "*Ps 26:4*\nOne thing I ask of the Lord; this I seek: to dwell in the house of the Lord all the days of my life.\n*Ps 83:5*", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to St. Luke\n*Luke 2:42-52*\nWhen Jesus was twelve years old, they went up to Je", - "id": "Evangelium" - }, - { - "body": "*Luke 2:22*\nThe parents of Jesus took Him up to Jerusalem, to present Him to the Lord.", - "id": "Offertorium" - }, - { - "body": "In appeasement, O Lord, we offer You this sacrifice, humbly praying that through the intercession of the Virgin Mother o", - "id": "Secreta" - }, - { - "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", - "id": "Prefatio" - }, - { - "body": "*Luke 2:51*\nJesus went down with them, and came to Nazareth and was subject to them.", - "id": "Communio" - }, - { - "body": "Grant, Lord Jesus, that those whom You refresh with the heavenly sacrament may ever imitate the example of Your Holy Fam", - "id": "Postcommunio" - } - ], - "2020-01-13": [ - { - "body": "*Mal 3:1:1; Par. 29:12*\nBehold, the Lord and Ruler is come; and the kingdom is in His hand, and power, and dominion.\n*Ps", - "id": "Introitus" - }, - { - "body": "O God, Whose only-begotten Son appeared in the substance of our flesh, grant, we pray You, that we who acknowledge His o", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 60:1-6*\nRise up in splendor, O Jerusalem! Your light has come, the glory of the Lord", - "id": "Lectio" - }, - { - "body": "*Isa 60:6, 1*\nAll they from Saba shall come, bringing gold and frankincense, and proclaiming the praises of the Lord.\n℣.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:29-34*\nAt that time, John saw Jesus coming to him, and he sa", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nThe kings of Tharsis and the Isles shall offer gifts; the kings of Arabia and Saba shall bring tribute. Al", - "id": "Offertorium" - }, - { - "body": "We bring You offerings, O Lord, for the epiphany of Your Son, Who has been born, humbly beseeching You that, as He is th", - "id": "Secreta" - }, - { - "body": "*Epiphany*\nIt is truly meet and just, right and availing unto salvation, that we should in all times and in all places g", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nWe have seen His star in the East and have come with gifts to worship the Lord.", - "id": "Communio" - }, - { - "body": "We pray You, O Lord, to go before us at all times and in all places with Your heavenly light, that we may discern with c", - "id": "Postcommunio" - } - ], - "2020-01-14": [ - { - "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", - "id": "Introitus" - }, - { - "body": "O God, Who gave to Your people blessed Hilary, as a minister of salvation, grant, we beseech You, that we who cherished ", - "id": "Oratio" - }, - { - "body": "*Commemoration of St. Felix, Priest and Martyr*\nGrant, we beseech You, almighty God, that the example of Your saints may", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom and his tongue shall speak judgment.\n℣. The law of his God is ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "May the pious prayer of holy N. thy Bishop and illustrious Doctor be not wanting to us, O Lord, but make our offerings a", - "id": "Secreta" - }, - { - "body": "*Commemoration of St. Felix, Priest and Martyr*\nGraciously accept, O Lord, the sacrifices we offer You in honor of Your ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "*Pro Doctore Pontifice.*\nMay blessed N. thy Bishop and illustrious Doctor intercede for us, O Lord, that this thy sacrif", - "id": "Postcommunio" - }, - { - "body": "*Commemoration of St. Felix, Priest and Martyr*\nRefreshed by the sacrament of salvation, we beseech You, O Lord, that we", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-15": [ - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", - "id": "Introitus" - }, - { - "body": "O God, Who each year give us the joyful feast of blessed Paul, Your Confessor, mercifully grant that we may imitate the ", - "id": "Oratio" - }, - { - "body": "*For St. Maur, Abbot*\nMay the blessed Abbot Maur plead for us, O Lord, so that through his intercession we may obtain wh", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:7-12*\nBrethren: The things that were gain to m", - "id": "Lectio" - }, - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:25-30*\nAt that time, Jesus spoke and said, I praise You,", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", - "id": "Offertorium" - }, - { - "body": "O Lord, in memory of Your saints, we offer You sacrifices of praise, trusting them to deliver us from both present and f", - "id": "Secreta" - }, - { - "body": "*For St. Maur, Abbot*\nO Lord, we beseech You, may the offerings placed upon Your holy altar be beneficial for our salvat", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 63:11*\nThe just man is glad in the Lord and takes refuge in Him; all the upright of heart shall be praised.", - "id": "Communio" - }, - { - "body": "Filled with heavenly food and drink, we humbly pray You, our God, that we may be helped by the prayers of him in whose m", - "id": "Postcommunio" - }, - { - "body": "*For St. Maur, Abbot*\nO Lord, may the reception of Your holy sacrament, and the pleas of blessed Maurus, the Abbot, prot", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-16": [ - { - "body": "*John 21:15-17*\nIf you love Me, Simon Peter, feed My lambs, feed My sheep.\n*Ps 29:2*\nI will extol You, O Lord, for You d", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we may be helped by the merits of blessed Marce", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:1-4, 10-11.*\nBeloved: I exhort the presbyters among you ", - "id": "Lectio" - }, - { - "body": "*Ps 106:32, 31*\nLet them extol him in the assembly of the people and praise him in the council of the elders.\n℣. Let the", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus, having come into the distric", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nSee, I place My words in your mouth! I set you over nations and over kingdoms, to root up and to tear down,", - "id": "Offertorium" - }, - { - "body": "Having offered You our gifts, we beseech You, O Lord, mercifully to enlighten Your Church, so that Your flock may everyw", - "id": "Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build my Church.", - "id": "Communio" - }, - { - "body": "Since Your Church has been nourished by sacred food, govern her in Your clemency, we beseech You, O Lord, so that under ", - "id": "Postcommunio" - } - ], - "2020-01-17": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "May the intercession of the Blessed Abbot Anthony, commend us, we beseech You, O Lord, so that what we do not deserve by", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3-4*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his hea", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, may the holy Abbot Anthony, prevail by his prayers, so that the offerings placed upon Your sacre", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will set", - "id": "Communio" - }, - { - "body": "May the pleading of the blessed Abbot Anthony for us, together with the partaking of Your sacrament, protect us, O Lord,", - "id": "Postcommunio" - } - ], - "2020-01-18": [ - { - "body": "*Ps 44:13 44:15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to t", - "id": "Introitus" - }, - { - "body": "O God, Who by the fruitful virginity of blessed Mary, have bestowed upon mankind the reward of eternal salvation, grant,", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Prisca*\nGrant, we beseech You, O almighty God, that we who celebrate the anniversary of the death of ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St Paul the Apostle to Titus\n*Titus 3:4-7*\nBeloved: When the goodness and kindness of God our ", - "id": "Lectio" - }, - { - "body": "*Ps 44:3, 2*\nFairer in beauty are you than the sons of men; grace is poured out upon your lips.\n℣. My heart overflows wi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:15-20*\nAt that time, the shepherds were saying to one anothe", - "id": "Evangelium" - }, - { - "body": "You are happy, O holy Virgin Mary, and most worthy of all high praise; for out of you has risen the sun of justice, Chri", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Prisca*\nWe beseech You, O Lord, that this sacrificial gift which we offer in commemorating the death ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "May this Communion, O Lord, cleanse us from sin and, through the intercession of the Blessed Virgin Mary, Mother of God,", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Prisca*\nFilled with the sacrament of salvation, we beseech You, O Lord, to help us by the prayers of ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-19": [ - { - "body": "*Ps 65:4*\nLet all on earth worship You, O God, and sing praise to You, sing praise to Your name, Most High.\n*Ps 65:1-2*\n", - "id": "Introitus" - }, - { - "body": "Almighty, everlasting God, You Who govern both the heavens and the earth, graciously hear the humble prayers of Your peo", - "id": "Oratio" - }, - { - "body": "Lesson from the Epistle of St. Paul to the Romans\n*Rom 12:6-16*\nBrethren: We have gifts differing according to the grace", - "id": "Lectio" - }, - { - "body": "*Ps 106:20-21*\nThe Lord sent forth His word to heal them and to snatch them from destruction.\n℣. Let them give thanks to", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 2:1-11*\nAt that time, a marriage took place at Cana of Galilee, ", - "id": "Evangelium" - }, - { - "body": "*Ps 65:1-2, 16*\nShout joyfully to God, all you on earth, sing praise to the glory of His name. Hear now, all you who fea", - "id": "Offertorium" - }, - { - "body": "Hallow our offerings, O Lord, and cleanse us from the stains of our sins.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*John 2:7-11*\nThe Lord said, Fill the jars with water and take to the chief steward. When the chief steward had tasted t", - "id": "Communio" - }, - { - "body": "O Lord, we beseech You that the effects of Your power may ever increase within us; and, strengthened by the divine sacra", - "id": "Postcommunio" - } - ], - "2020-01-20": [ - { - "body": "*Ps 78:11; 78:12; 78:10*\nLet the prisoners’ sighing come before You, O Lord; repay our neighbors sevenfold into their bo", - "id": "Introitus" - }, - { - "body": "Be mindful of our weakness, almighty God, and since the burden of our sins weighs heavily upon us, may the glorious inte", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 11:33-39*\nBrethren: The Saints by faith conquered kin", - "id": "Lectio" - }, - { - "body": "*Ex 15:11*\nGod is glorious in His Saints, wonderful in majesty, a worker of wonders.\n*Ex 15:6*\n℣. Your right hand, O Lor", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 6:17-23*\nAt that time, Jesus coming down from the mountain, to", - "id": "Evangelium" - }, - { - "body": "*Ps 31:11*\nBe glad in the Lord, and rejoice, you just; exult, all you upright of heart.", - "id": "Offertorium" - }, - { - "body": "Graciously accept, O Lord, the sacrifices dedicated to You in honor of Your blessed Martyrs Fabian and Sebastian, and gr", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 6:18-19*\nA multitude of sick, and those who were troubled with unclean spirits, came to Him; for power went forth ", - "id": "Communio" - }, - { - "body": "Refreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enjoy the benefits of the rite we", - "id": "Postcommunio" - } - ], - "2020-01-21": [ - { - "body": "*Ps 118:95-96*\nSinners wait to destroy me, but I pay heed to Your decrees, O Lord. I see that all fulfillment has its li", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, You Who choose the weak things of the world to confound the strong, mercifully grant that we who ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 51:1-8, 12*\nI will give You thanks, O Lord, O King; I will praise You, O ", - "id": "Lectio" - }, - { - "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever.\n*Ps 44:5*\n℣. In the cause of truth and m", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nAt that time, Jesus spoke this parable to His disc", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15-16*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and jo", - "id": "Offertorium" - }, - { - "body": "Graciously accept, O Lord, the sacrificial gifts we offer You and by the intercession of blessed Agnes, Your Virgin and ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4, 6*\nThe five wise virgins took oil in their vessels with the lamps; and at midnight a cry arose, Behold the b", - "id": "Communio" - }, - { - "body": "Filled with heavenly food and drink, we humbly pray You, our God, that we may be helped by the prayers of her in whose m", - "id": "Postcommunio" - } - ], - "2020-01-22": [ - { - "body": "*Ps 78:11; 78:12; 78:10*\nLet the prisoners’ sighing come before You, O Lord; repay our neighbors sevenfold into their bo", - "id": "Introitus" - }, - { - "body": "Give heed to our humble prayers, O Lord, that we who know we are guilty of our own sin, may be saved by the intercession", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis 3:1-8*\nThe souls of the just are in the hands of God, and no torment of death shall ", - "id": "Lectio" - }, - { - "body": "*Exo 15:11*\nGod is glorious in His Saints, wonderful in majesty, a worker of wonders.\n*Exo 15:6*\n℣. Your right hand, O L", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:9-19*\nAt that time, Jesus said to His disciples, When you h", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nGod is wonderful in His Saints; the God of Israel is He Who gives power and strength to His people. Blessed b", - "id": "Offertorium" - }, - { - "body": "We offer You, O Lord, the gifts of our service; may they be pleasing to You for the honor of Your just ones and, through", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Wis 3:4-6*\nFor if before men they be punished, God tried them; as gold in the furnace, He proved them, and as sacrifici", - "id": "Communio" - }, - { - "body": "We beseech You, almighty God, that we who have eaten heavenly food may through it be protected from all harm by the inte", - "id": "Postcommunio" - } - ], - "2020-01-23": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, You Who chose blessed Raymond to be a renowned minister of the sacrament of Penance, and miraculously brought him", - "id": "Oratio" - }, - { - "body": "*For St. Emerentiana, Virgin and Martyr*\nMay blessed Emerentiana, Virgin and Martyr, who was ever pleasing to You by the", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*For St. Emerentiana, Virgin and Martyr*\nMay blessed Emerentiana, Virgin and Martyr, who was ever pleasing to You by the", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - }, - { - "body": "*For St. Emerentiana, Virgin and Martyr*\nMay the sacrament we have received, aid us, O Lord, and by the intercession of ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-24": [ - { - "body": "*Ecclus 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignit", - "id": "Introitus" - }, - { - "body": "Be mindful of our weakness, almighty God, and because the burden of our sins weighs heavily upon us, may the glorious in", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to Timothy\n*1 Tim. 6:11-16*\nBeloved: Pursue justice, godliness, fai", - "id": "Lectio" - }, - { - "body": "*Ps 88:21-23*\nI have found David, My servant, with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Luke\n*Luke 14:26-33.*\nAt that time, Jesus said to the crowds, If anyone com", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "O Lord, graciously accept, through the merits of Your blessed Martyr and Bishop N., the sacrificial gifts dedicated to Y", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 88:36-38.*\nOnce, by My holiness, have I sworn; his posterity shall continue forever; and his throne shall be like th", - "id": "Communio" - }, - { - "body": "Refreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enjoy the benefits of the rite we", - "id": "Postcommunio" - } - ], - "2020-01-25": [ - { - "body": "*2 Tim. 1:12*\nI know Whom I have believed, and I am certain that He is able to guard the trust committed to me, against ", - "id": "Introitus" - }, - { - "body": "O God, Who taught the whole world by the preaching of Your blessed Apostle Paul, grant, we beseech You, that we who toda", - "id": "Oratio" - }, - { - "body": "*For St. Peter*\nO God, Who, when giving blessed Peter, Your Apostle, the keys of the heavenly kingdom, bestowed on him t", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 9:1-22*\nIn those days, Saul, still breathing threats of slaughter against the dis", - "id": "Lectio" - }, - { - "body": "*Gal 2:8-9*\nHe Who worked in Peter for the apostleship, worked also in me among the Gentiles: and they recognized the gr", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29*\nAt that time, Peter said to Jesus, Behold we have", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", - "id": "Offertorium" - }, - { - "body": "O Lord, make holy the offerings of Your people, through the prayer of Paul, Your Apostle, that those things which You ha", - "id": "Secreta" - }, - { - "body": "*For St. Peter*\nWe beseech You, Lord, may the prayer of the blessed Apostle Peter recommend the petitions and offerings ", - "id": "Commemoratio Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28-29*\nAmen I say to you, that you who have left all things, and followed Me, shall receive a hundredfold, and ", - "id": "Communio" - }, - { - "body": "Made holy by the sacrament of salvation, we beseech You, O Lord, that the prayers of him under whose patronal care You h", - "id": "Postcommunio" - }, - { - "body": "*For St. Peter*\nO Lord, may the gift we offer bring us joy, that as we praise Your wondrous work in Your Apostle Peter, ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-26": [ - { - "body": "*Ps 96:7-8*\nAdore God, all you His angels: Sion hears and is glad, and the cities of Juda rejoice.\n*Ps 96:1*\nThe Lord is", - "id": "Introitus" - }, - { - "body": "Almighty and everlasting God, look with favor upon our weakness, and stretch forth the right hand of Your majesty to hel", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 12:16-21*\nBrethren: Be not wise in your own conceits. ", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 8:1-13*\nAt that time, when Jesus had come down from the mount", - "id": "Evangelium" - }, - { - "body": "*Ps 117:16-17*\nThe right hand of the Lord has struck with power: the right hand of the Lord has exalted me; I shall not ", - "id": "Offertorium" - }, - { - "body": "May this offering, O Lord, we beseech You, wipe away our transgressions, and make holy the minds and bodies of Your serv", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Luke 4:22*\nAll marvelled at the words that came from the mouth of God.", - "id": "Communio" - }, - { - "body": "O Lord, as You grant us to use this great sacrament, deign, we beseech You, to make us truly worthy of its fruits.\nThrou", - "id": "Postcommunio" - } - ], - "2020-01-27": [ - { - "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", - "id": "Introitus" - }, - { - "body": "May heavenly grace, we beseech You, O Lord, prosper Your Church, which You mercifully enlightened by the blessed virtues", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", - "id": "Lectio" - }, - { - "body": "*Ecclus 44:16*\nBehold a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not found the like to him", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: \"You are", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree; like a cedar of Libanus shall he grow.", - "id": "Offertorium" - }, - { - "body": "May the loving prayer of blessed John Chrysostom, Your Bishop and Doctor, fail us never, O Lord; may it commend our offe", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "So that your sacrificial rites may grant us salvation, we pray you, O Lord, that blessed John Chrysostom, Your Bishop an", - "id": "Postcommunio" - } - ], - "2020-01-28": [ - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", - "id": "Introitus" - }, - { - "body": "O God, You Who, as an example of Your love, divinely taught St. Peter to enrich Your Church with new offspring, a family", - "id": "Oratio" - }, - { - "body": "*For St. Agnes Virgin and Martyr*\nO God, You Who gladden us each year by the feast of blessed Agnes, Your Virgin and Mar", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a sp", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*For St. Agnes Virgin and Martyr*\nMay a bountiful blessing, O Lord, descend upon these offerings and, through Your mercy", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - }, - { - "body": "*For St. Agnes Virgin and Martyr*\nO Lord, in celebrating this yearly feast, we have partaken of the sacrament. Grant, we", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-29": [ - { - "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", - "id": "Introitus" - }, - { - "body": "O God, Who for the salvation of souls willed that blessed Francis, Your Confessor and Bishop, should become all things t", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom and his tongue shall speak judgment.\n℣. The law of his God is ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "May the pious prayer of holy N. thy Bishop and illustrious Doctor be not wanting to us, O Lord, but make our offerings a", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "*Pro Doctore Pontifice.*\nMay blessed N. thy Bishop and illustrious Doctor intercede for us, O Lord, that this thy sacrif", - "id": "Postcommunio" - } - ], - "2020-01-30": [ - { - "body": "*Ps 118:46-47.*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, wh", - "id": "Introitus" - }, - { - "body": "O God, Who among the other miracles of Your power have bestowed the victory of martyrdom even upon the weaker sex, graci", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 51:1-8; 5:12*\nI will give You thanks, O Lord, O King; I will praise You, O G", - "id": "Lectio" - }, - { - "body": "*Ps 44:8*\nYou love justice and hate wickedness.\n℣. Therefore God, your God, has anointed you with the oil of gladness. A", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13.*\nAt that time Jesus spoke this parable to His disc", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15-16.*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and j", - "id": "Offertorium" - }, - { - "body": "Accept, O Lord, the gifts we bring on the festival of blessed N., Your Virgin and Martyr, through whose patronage we hop", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:78, 80*\nLet the proud be put to shame for oppressing me unjustly; I will meditate on Your precepts, on Your stat", - "id": "Communio" - }, - { - "body": "May the sacrament we have received, aid us, O Lord, and by the intercession of blessed N., Your Virgin and Martyr, may i", - "id": "Postcommunio" - } - ], - "2020-01-31": [ - { - "body": "*3 Kings 4:29*\nGod gave him wisdom and understanding exceeding much, and largeness of heart as the sand that is on the s", - "id": "Introitus" - }, - { - "body": "O God, Who in Your Confessor, blessed John, raised up a father and teacher of youth, and willed that through him, with t", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-9*\nBrethren: Rejoice in the Lord always; aga", - "id": "Lectio" - }, - { - "body": "*Ps 36:3-5*\nTrust in the Lord and do good, that you may dwell in the land and be fed with its riches.\n℣. Take delight in", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-5*\nAt that time, the disciples came to Jesus, saying, ", - "id": "Evangelium" - }, - { - "body": "*Ps 33:12*\nCome, children, hear me; I will teach you the fear of the Lord.", - "id": "Offertorium" - }, - { - "body": "Accept, O Lord, this pure offering of the saving Host, and grant, that loving You in all and above all, we may be found ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Rom 4:18*\nHoping against hope he believed, so that he became father of many nations, according to what was said to him.", - "id": "Communio" - }, - { - "body": "Nourished with the mystery of Your Body and Blood, grant, we beseech You, O Lord, through the intercession of Saint John", - "id": "Postcommunio" - } - ], - "2020-02-01": [ - { - "body": "*Gal 6:14*\nGod forbid that I should glory, save in the cross of our Lord Jesus Christ: by whom the world is crucified to", - "id": "Introitus" - }, - { - "body": "Be mindful of our weakness, O almighty God, and since the burden of our deeds is grievous to us, grant that the glorious", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:35-39*\nBrethren, who shall separate us from the love", - "id": "Lectio" - }, - { - "body": "*Ecclus 44:16*\nBehold a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not any found the like to", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 12:24-26*\nAt that time, Jesus said to His Disciples, \"Amen, am", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nThou hast crowned Him with glory and honor: and hast set Him over the works of Thy hands, O Lord.", - "id": "Offertorium" - }, - { - "body": "Graciously accept, O Lord, the offerings dedicated unto Thee, through the merits of blessed Ignatius Thy martyr and bish", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "I am the wheat of Christ; may I be ground by the teeth of beasts, that I may be found pure bread.", - "id": "Communio" - }, - { - "body": "Refreshed by participation in Thy holy gift, we beseech Thee, O Lord our God, that through the intercession of blessed I", - "id": "Postcommunio" - } - ], - "2020-02-02": [ - { - "body": "*If the blessing of candles and the procession cannot take place in the solemn form, because of the absence of sacred mi", - "id": "De Benedictione Candelarum" - }, - { - "body": "*Next the senior cleric goes to the altar and the celebrant, without genuflecting, receives a candle from him. Then the ", - "id": "De Distributione Candelarum" - }, - { - "body": "*First, the celebrant places incense in the thurible, then the deacon turns to the people and says:*\n℣. Let us go forth ", - "id": "De Processione" - }, - { - "body": "*Ps 47:10-11*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to the", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, we humbly beseech Your majesty that, as Your only-begotten Son was this day presented in the temp", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Malachias\n*Mal 3:1-4*\nThus says the Lord God: Lo, I am sending My messenger to prepare the way b", - "id": "Lectio" - }, - { - "body": "*Ps 47:10-11, 9.*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Luke\n*Luke 2:22-32*\nAt that time, when the days of Mary's purification were", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", - "id": "Offertorium" - }, - { - "body": "O Lord, heed our prayer, and give us the help of Your loving kindness so that the gifts we offer before the eyes of Your", - "id": "Secreta" - }, - { - "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 2:26*\nIt was revealed to Simeon by the Holy Spirit that he should not see death before he had seen the Christ of t", - "id": "Communio" - }, - { - "body": "We beseech You, O Lord our God, that the sacrament You have given as the bulwark of our atonement may be made a saving r", - "id": "Postcommunio" - } - ], - "2020-02-03": [ - { - "body": "*Ps 96:7-8*\nAdore God, all you His angels: Sion hears and is glad, and the cities of Juda rejoice.\n*Ps 96:1*\nThe Lord is", - "id": "Introitus" - }, - { - "body": "O God, You Who know that our human frailty cannot stand fast against the great dangers that beset us, grant us health of", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Blaise*\nO God, Who gladden us with the yearly festival of blessed Blaise, Your Martyr and Bishop, mer", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:8-10*\nBrethren: Owe no man anything except to love ", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 8:23-27*\nAt that time, Jesus got into a boat, and His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 117:16-17*\nThe right hand of the Lord has struck with power: the right hand of the Lord has exalted me; I shall not ", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, almighty God, that the offering of this sacrifice may always cleanse and strengthen the weakness ", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Blaise*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of blessed Blai", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 4:22*\nAll marvelled at the words that came from the mouth of God.", - "id": "Communio" - }, - { - "body": "May Your gifts, O God, free us from the attraction of earthly pleasures and give us new strength through Your heavenly n", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Blaise*\nMay this Communion, O Lord, cleanse us of sin, and through the intercession of blessed Blaise", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-04": [ - { - "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", - "id": "Introitus" - }, - { - "body": "O God, Who establish ever new examples of virtue in Your Church, grant that Your people may follow the footsteps of bles", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", - "id": "Lectio" - }, - { - "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Offertorium" - }, - { - "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", - "id": "Postcommunio" - } - ], - "2020-02-05": [ - { - "body": "Let us all rejoice in the Lord, celebrating the feast in honor of blessed Agatha, Virgin and Martyr, for whose passion t", - "id": "Introitus" - }, - { - "body": "O God, Who among other wonders of Your power have given the victory of martyrdom even to the gentler sex, graciously gra", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 1:26-31*\nBrethren: Consider your own cal", - "id": "Lectio" - }, - { - "body": "*Ps 45:6, 5*\nGod will help her with His countenance. God is in her midst; she shall not be disturbed.\n℣. There is a stre", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:3-12*\nAt that time, there came to Jesus some Pharisees, ", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15*\nBehind her the virgins of her train are brought to the King. They are borne in to You.", - "id": "Offertorium" - }, - { - "body": "Accept, O Lord, the gifts we bring on the feast of blessed Agatha, Your Virgin and Martyr, under whose patronage we hope", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "I invoke Him, the living God, Who deigned to cure me of every wound, and to restore my breast to my body.", - "id": "Communio" - }, - { - "body": "May the sacrament we have received help us, O Lord, and by the intercession of blessed Agatha, Your Virgin and Martyr, m", - "id": "Postcommunio" - } - ], - "2020-02-06": [ - { - "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", - "id": "Introitus" - }, - { - "body": "O God, Who adorned blessed Titus, Your Confessor and Bishop, with the virtues of an apostle, grant, through his merits a", - "id": "Oratio" - }, - { - "body": "*For St. Dorothy, Virgin and Martyr*\nMay blessed Dorothy, Virgin and Martyr, who was ever pleasing to You by the merit o", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, a", - "id": "Lectio" - }, - { - "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Offertorium" - }, - { - "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", - "id": "Secreta" - }, - { - "body": "*For St. Dorothy*\nGraciously accept the sacrificial gifts offered You, O Lord, through the merits of blessed Dorothy, Yo", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", - "id": "Postcommunio" - }, - { - "body": "*For St. Dorothy*\nWe who have been refreshed by the richness of Your divine sacrament beseech You, O Lord our God, that ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-07": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "May the intercession of the Blessed Abbot Romuald, commend us, we beseech You, O Lord, so that what we do not deserve by", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, may the holy Abbot N., prevail by his prayers, so that the offerings placed upon Your sacred alt", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "May the pleading of the blessed Abbot N. for us, together with the partaking of Your sacrament, protect us, O Lord, so t", - "id": "Postcommunio" - } - ], - "2020-02-08": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, Who graciously and by divine means founded through blessed John, the Order of the Most Holy Trinity to ransom cap", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - } - ], - "2020-02-09": [ - { - "body": "*Ps 17:5-7*\nThe terrors of death surged round me, the cords of the nether world enmeshed me. In my distress I called upo", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we who are justly punished for our sins may be ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 9:24-27; 10:1-5*\nBrethren: Do you not kn", - "id": "Lectio" - }, - { - "body": "*Ps 9:10-11; 9:19-20*\nA helper in due time in tribulation. Let them trust in thee who know thy name: for thou hast not f", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:1-16*\nAt that time, Jesus spoke to His disciples this pa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:2*\nIt is good to give thanks to the Lord, and to sing praise to Your name, Most High.", - "id": "Offertorium" - }, - { - "body": "Since You have accepted our gifts and our prayers, we beseech You, O Lord, to cleanse us by this heavenly sacrament and ", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 30:17-18*\nLet Your face shine upon Your servant; save me in Your kindness. O Lord, let me not be put to shame, for I", - "id": "Communio" - }, - { - "body": "May Your faithful people, O God, be strengthened by Your gifts; that by receiving them, they may still desire them, and ", - "id": "Postcommunio" - } - ], - "2020-02-10": [ - { - "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", - "id": "Introitus" - }, - { - "body": "O God, Who, to show us the way of innocence, caused the soul of Your Virgin, blessed Scholastica, to fly up to heaven in", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign. Because of truth and meekness and", - "id": "Tractus" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", - "id": "Offertorium" - }, - { - "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", - "id": "Communio" - }, - { - "body": "You have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the intercession of her who", - "id": "Postcommunio" - } - ], - "2020-02-11": [ - { - "body": "*Apoc 21:2*\nI saw the holy city, New Jerusalem, coming down out of heaven from God, made ready as a bride adorned for he", - "id": "Introitus" - }, - { - "body": "O God, who by the Immaculate Conception of the Virgin prepared a worthy dwelling for Your Son, we humbly beseech You tha", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Revelation\n*Apoc 11:19; 12:1, 10*\nThe temple of God in heaven was opened, and there was seen the", - "id": "Lectio" - }, - { - "body": "*Cant 2:12, 10, 14*\nThe flowers appear in our land, the time of pruning has come, the voice of the turtle is heard in ou", - "id": "Tractus" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-31.*\nAt that time, the angel Gabriel was sent from God to", - "id": "Evangelium" - }, - { - "body": "*Luke 1:28*\nHail, full of grace, the Lord is with you. Blessed are you among women.", - "id": "Offertorium" - }, - { - "body": "May the sacrifice of praise, which we offer You, O Lord, by the merits of the glorious and Immaculate Virgin be as a swe", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "*Ps 64:10*\nYou have visited the land and watered it; greatly have you enriched it.", - "id": "Communio" - }, - { - "body": "May the right hand of Your Immaculate Mother support us, O Lord, whom You have filled with heavenly food, that by her he", - "id": "Postcommunio" - } - ], - "2020-02-12": [ - { - "body": "*Wis 10:20-21*\nThe just sang, O Lord, Your holy name and praised in unison your conquering hand - because wisdom opened ", - "id": "Introitus" - }, - { - "body": "O Lord Jesus Christ, Who, to keep alive the memory of Your most holy Mother’s sorrows, through the seven holy fathers en", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 44:1-15*\nLet us now praise men of renown, our ancestors, each in his own ", - "id": "Lectio" - }, - { - "body": "*Isa 65:23*\nMy elect shall not toil in vain, nor beget children for sudden destruction; for a race blessed by the Lord a", - "id": "Tractus" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29*\nAt that time, Peter said to Jesus, Behold, we hav", - "id": "Evangelium" - }, - { - "body": "*Isa 56:7*\nI will bring them to My holy mountain, and make them joyful in My house of prayer; their holocausts and sacri", - "id": "Offertorium" - }, - { - "body": "Accept, we beseech You, O Lord, the sacrificial gifts we offer, so that by the intercession of Your saints we may serve ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*John 15:16*\nI have chosen you from the world that you should go and bear fruit, and that your fruit should remain.", - "id": "Communio" - }, - { - "body": "Strengthened by the heavenly sacrament, we beseech You, O Lord, that, following the example of those whose feast we are ", - "id": "Postcommunio" - } - ], - "2020-02-13": [ - { - "body": "*Ps 17:5-7*\nThe terrors of death surged round me, the cords of the nether world enmeshed me. In my distress I called upo", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we who are justly punished for our sins may be ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 9:24-27; 10:1-5*\nBrethren: Do you not kn", - "id": "Lectio" - }, - { - "body": "*Ps 9:10-11; 9:19-20*\nA helper in due time in tribulation. Let them trust in thee who know thy name: for thou hast not f", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:1-16*\nAt that time, Jesus spoke to His disciples this pa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:2*\nIt is good to give thanks to the Lord, and to sing praise to Your name, Most High.", - "id": "Offertorium" - }, - { - "body": "Since You have accepted our gifts and our prayers, we beseech You, O Lord, to cleanse us by this heavenly sacrament and ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 30:17-18*\nLet Your face shine upon Your servant; save me in Your kindness. O Lord, let me not be put to shame, for I", - "id": "Communio" - }, - { - "body": "May Your faithful people, O God, be strengthened by Your gifts; that by receiving them, they may still desire them, and ", - "id": "Postcommunio" - } - ], - "2020-02-14": [ - { - "body": "*Ps 17:5-7*\nThe terrors of death surged round me, the cords of the nether world enmeshed me. In my distress I called upo", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, graciously hear the prayers of Your people, that we who are justly punished for our sins may be ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Valentine*\nGrant, we beseech You, almighty God, that we who celebrate the anniversary of the death of", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 9:24-27; 10:1-5*\nBrethren: Do you not kn", - "id": "Lectio" - }, - { - "body": "*Ps 9:10-11; 9:19-20*\nA helper in due time in tribulation. Let them trust in thee who know thy name: for thou hast not f", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:1-16*\nAt that time, Jesus spoke to His disciples this pa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:2*\nIt is good to give thanks to the Lord, and to sing praise to Your name, Most High.", - "id": "Offertorium" - }, - { - "body": "Since You have accepted our gifts and our prayers, we beseech You, O Lord, to cleanse us by this heavenly sacrament and ", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Valentine*\nGraciously accept, O Lord, we beseech You, the gifts we reverently offer, and through the ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 30:17-18*\nLet Your face shine upon Your servant; save me in Your kindness. O Lord, let me not be put to shame, for I", - "id": "Communio" - }, - { - "body": "May Your faithful people, O God, be strengthened by Your gifts; that by receiving them, they may still desire them, and ", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Valentine*\nMay the heavenly sacrament, O Lord, renew our souls and minds, so that by the intercession", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-15": [ - { - "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", - "id": "Introitus" - }, - { - "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", - "id": "Oratio" - }, - { - "body": "*Commemoration Sts. Faustinus & Jovita*\nO God, Who gladden us each year by the feast of Your holy Martyrs, Faustinus and", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nBefore all ages, in the beginning, He created me, and through all ", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", - "id": "Tractus" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "You are happy, O holy Virgin Mary, and most worthy of all praise; since out of you has risen the sun of justice, Christ ", - "id": "Offertorium" - }, - { - "body": "\nThrough Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son,", - "id": "Secreta" - }, - { - "body": "*Commemoration Sts. Faustinus & Jovita*\nO Lord, heed our prayers which we pour forth on the feast of Your saints; so tha", - "id": "Commemoratio Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Sts. Faustinus & Jovita*\nFilled by these saving sacramental rites, we beseech You, O Lord, that the inter", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-16": [ - { - "body": "*Ps 43:23-26*\nAwake! Why are You asleep, O Lord? Arise! Cast us not off forever! Why do You hide Your face, forgetting o", - "id": "Introitus" - }, - { - "body": "O God, You Who see that we put no trust in anything we do, mercifully grant that by the protection of the Doctor of the ", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 11:19-33; 12:1-9*\nBrethren: You gladly ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nLet the nations know that God is Your name; You alone are the Most High over all the earth.\n℣. O my Go", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 8:4-15*\nAt that time, when a very great crowd was gathering to", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. Sh", - "id": "Offertorium" - }, - { - "body": "May this sacrifice which we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nI will go in to the altar of God, the God of my gladness and joy.", - "id": "Communio" - }, - { - "body": "O almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", - "id": "Postcommunio" - } - ], - "2020-02-17": [ - { - "body": "*Ps 43:23-26*\nAwake! Why are You asleep, O Lord? Arise! Cast us not off forever! Why do You hide Your face, forgetting o", - "id": "Introitus" - }, - { - "body": "O God, You Who see that we put no trust in anything we do, mercifully grant that by the protection of the Doctor of the ", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 11:19-33; 12:1-9*\nBrethren: You gladly ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nLet the nations know that God is Your name; You alone are the Most High over all the earth.\n℣. O my Go", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 8:4-15*\nAt that time, when a very great crowd was gathering to", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. Sh", - "id": "Offertorium" - }, - { - "body": "May this sacrifice which we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nI will go in to the altar of God, the God of my gladness and joy.", - "id": "Communio" - }, - { - "body": "O almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", - "id": "Postcommunio" - } - ], - "2020-02-18": [ - { - "body": "*Ps 43:23-26*\nAwake! Why are You asleep, O Lord? Arise! Cast us not off forever! Why do You hide Your face, forgetting o", - "id": "Introitus" - }, - { - "body": "O God, You Who see that we put no trust in anything we do, mercifully grant that by the protection of the Doctor of the ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Simeon*\nLook mercifully, almighty God, upon our weakness, and since the burden of our sins weighs hea", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 11:19-33; 12:1-9*\nBrethren: You gladly ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nLet the nations know that God is Your name; You alone are the Most High over all the earth.\n℣. O my Go", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 8:4-15*\nAt that time, when a very great crowd was gathering to", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. Sh", - "id": "Offertorium" - }, - { - "body": "May this sacrifice which we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Simeon*\nGraciously receive, O Lord, the sacrifices offered to You, by the merits of Blessed Simeon, Y", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nI will go in to the altar of God, the God of my gladness and joy.", - "id": "Communio" - }, - { - "body": "O almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Simeon*\nRefreshed by partaking of Your sacred gift, we beseech You, O Lord our God, that by the inter", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-19": [ - { - "body": "*Ps 43:23-26*\nAwake! Why are You asleep, O Lord? Arise! Cast us not off forever! Why do You hide Your face, forgetting o", - "id": "Introitus" - }, - { - "body": "O God, You Who see that we put no trust in anything we do, mercifully grant that by the protection of the Doctor of the ", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 11:19-33; 12:1-9*\nBrethren: You gladly ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nLet the nations know that God is Your name; You alone are the Most High over all the earth.\n℣. O my Go", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 8:4-15*\nAt that time, when a very great crowd was gathering to", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. Sh", - "id": "Offertorium" - }, - { - "body": "May this sacrifice which we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nI will go in to the altar of God, the God of my gladness and joy.", - "id": "Communio" - }, - { - "body": "O almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", - "id": "Postcommunio" - } - ], - "2020-02-20": [ - { - "body": "*Ps 43:23-26*\nAwake! Why are You asleep, O Lord? Arise! Cast us not off forever! Why do You hide Your face, forgetting o", - "id": "Introitus" - }, - { - "body": "O God, You Who see that we put no trust in anything we do, mercifully grant that by the protection of the Doctor of the ", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 11:19-33; 12:1-9*\nBrethren: You gladly ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nLet the nations know that God is Your name; You alone are the Most High over all the earth.\n℣. O my Go", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 8:4-15*\nAt that time, when a very great crowd was gathering to", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. Sh", - "id": "Offertorium" - }, - { - "body": "May this sacrifice which we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nI will go in to the altar of God, the God of my gladness and joy.", - "id": "Communio" - }, - { - "body": "O almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", - "id": "Postcommunio" - } - ], - "2020-02-21": [ - { - "body": "*Ps 43:23-26*\nAwake! Why are You asleep, O Lord? Arise! Cast us not off forever! Why do You hide Your face, forgetting o", - "id": "Introitus" - }, - { - "body": "O God, You Who see that we put no trust in anything we do, mercifully grant that by the protection of the Doctor of the ", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 11:19-33; 12:1-9*\nBrethren: You gladly ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nLet the nations know that God is Your name; You alone are the Most High over all the earth.\n℣. O my Go", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 8:4-15*\nAt that time, when a very great crowd was gathering to", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. Sh", - "id": "Offertorium" - }, - { - "body": "May this sacrifice which we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nI will go in to the altar of God, the God of my gladness and joy.", - "id": "Communio" - }, - { - "body": "O almighty God, grant, we humbly beseech You, that those whom You refresh with Your sacrament may also worthily serve Yo", - "id": "Postcommunio" - } - ], - "2020-02-22": [ - { - "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", - "id": "Introitus" - }, - { - "body": "O God, Who when giving blessed Peter, Your Apostle, the keys of the heavenly kingdom, bestowed on him the power of bindi", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 1:1-7*\nPeter, an apostle of Jesus Christ, to the sojourner", - "id": "Lectio" - }, - { - "body": "*Ps 106:32, 31*\nLet them extol him in the assembly of the people and praise him in the council of the elders.\n℣. Let the", - "id": "Tractus" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus having come into the district", - "id": "Evangelium" - }, - { - "body": "*Matt 16:18-19*\nYou are Peter, and upon this rock I will build My Church, and the gates of hell shall not prevail agains", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, may the prayer of the blessed Apostle, Peter, recommend the petitions and offerings of Your Chur", - "id": "Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build My Church.", - "id": "Communio" - }, - { - "body": "O Lord, may the gift we offer bring us joy, that as we praise Your wondrous work in Your Apostle Peter, so through him m", - "id": "Postcommunio" - } - ], - "2020-02-23": [ - { - "body": "*Ps 30:3-4*\nBe my rock of refuge, O God, a stronghold to give me safety. You are my rock and my fortress; for Your name’", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, mercifully hear our prayers; loose us from the chains of our sins and keep us from all adversity", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 13:1-13*\nBrethren: If I should speak wit", - "id": "Lectio" - }, - { - "body": "*Ps 76:15-16*\nYou are the God Who alone works wonders; among the peoples You have made known Your power.\n℣. With Your st", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:31-43*\nAt that time, Jesus taking to Himself the Twelve sai", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12-13*\nBlessed are You, O Lord; teach me Your statutes. With my lips I declare all the ordinances of Your mouth.", - "id": "Offertorium" - }, - { - "body": "May these offerings, O Lord, we beseech You, wash away our sins; may it sanctify the bodies and souls of Your servants f", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 77:29-30*\nThey ate and were wholly surfeited; the Lord had brought them what they craved: they were not defrauded of", - "id": "Communio" - }, - { - "body": "We beseech You, almighty God, that we who have received the Bread of heaven, may by it be protected from all adversity.\n", - "id": "Postcommunio" - } - ], - "2020-02-24": [ - { - "body": "*Ps 30:3-4*\nBe my rock of refuge, O God, a stronghold to give me safety. You are my rock and my fortress; for Your name’", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, mercifully hear our prayers; loose us from the chains of our sins and keep us from all adversity", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 13:1-13*\nBrethren: If I should speak wit", - "id": "Lectio" - }, - { - "body": "*Ps 76:15-16*\nYou are the God Who alone works wonders; among the peoples You have made known Your power.\n℣. With Your st", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:31-43*\nAt that time, Jesus taking to Himself the Twelve sai", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12-13*\nBlessed are You, O Lord; teach me Your statutes. With my lips I declare all the ordinances of Your mouth.", - "id": "Offertorium" - }, - { - "body": "May these offerings, O Lord, we beseech You, wash away our sins; may it sanctify the bodies and souls of Your servants f", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 77:29-30*\nThey ate and were wholly surfeited; the Lord had brought them what they craved: they were not defrauded of", - "id": "Communio" - }, - { - "body": "We beseech You, almighty God, that we who have received the Bread of heaven, may by it be protected from all adversity.\n", - "id": "Postcommunio" - } - ], - "2020-02-25": [ - { - "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", - "id": "Introitus" - }, - { - "body": "God, Who added blessed Matthias to the company of Your Apostles, grant, we beseech You, that by his intercession we may ", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 1:15-26*\nIn those days, Peter stood up in the midst of the brethren - now the num", - "id": "Lectio" - }, - { - "body": "*Ps 138:17-18*\nYour friends, O God, are exceedingly honorable; their principality is exceedingly strengthened.\n℣. Were I", - "id": "Tractus" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:25-30*\nAt that time, Jesus spoke and said, I praise You,", - "id": "Evangelium" - }, - { - "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord, through all gener", - "id": "Offertorium" - }, - { - "body": "May the prayer of Your holy Apostle Matthias, O Lord, accompany the sacrificial gifts which we offer to be hallowed in Y", - "id": "Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28*\nYou who have followed Me shall sit on thrones judging the twelve tribes of Israel.", - "id": "Communio" - }, - { - "body": "Grant, almighty God, we pray You, that through the intercession of blessed Matthias, Your Apostle, we may obtain pardon ", - "id": "Postcommunio" - } - ], - "2020-02-26": [ - { - "body": "*Antiphona.*\n*Ps 68:17*\nHear me, O Lord, for thy mercy is kind; look upon me according to the multitude of thy tender me", - "id": "Benedictio cinerum" - }, - { - "body": "*Wis 11:24-25, 27.*\nYou have mercy on all, O Lord, and hate none of the things which You have made, overlooking the sins", - "id": "Introitus" - }, - { - "body": "Grant, O Lord, that Your faithful people may, with true piety, undertake the time-honored custom of fasting and may carr", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Joel\n*Joel 2:12-19*\nThus says the Lord: Return to Me with your whole heart, with fasting, and we", - "id": "Lectio" - }, - { - "body": "*Ps 56:2, 4.*\nHave pity on me, O God; have pity on me, for in You I take refuge.\n℣. He has sent from heaven and saved me", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt. 6:16-21*\nAt that time, Jesus said to His disciples, When y", - "id": "Evangelium" - }, - { - "body": "*Ps 29:2-3*\nI will extol you, O Lord, for You drew me clear and did not let my enemies rejoice over me. O Lord, I cried ", - "id": "Offertorium" - }, - { - "body": "O Lord, we beseech You, make us truly fit to offer these gifts by which we celebrate the beginning of this venerable obs", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 1:2-3*\nHe who shall meditate day and night on the law of the Lord shall yield his fruit in due season.", - "id": "Communio" - }, - { - "body": "May the sacrament that we have received, O Lord, give us help, that our fast may be pleasing to You and may profit us as", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLook graciously O Lord, upon those who bow down before Your", - "id": "Super populum" - } - ], - "2020-02-27": [ - { - "body": "*Ps 54:17-23*\nWhen I called upon the Lord, He heard my voice from those who war against me; and He humbled them, Who is ", - "id": "Introitus" - }, - { - "body": "O God, offended by sin, and appeased by penitence, graciously hear the prayers of Your people as they entreat You to tur", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 38:1-6*\nIn those days, when Ezechia was mortally ill, the prophet Isaiah, son of Amo", - "id": "Lectio" - }, - { - "body": "*Ps 54:23, 17-19.*\nCast your care upon the Lord, and He will support you.\n℣. When I called upon the Lord, He heard my vo", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 8:5-13*\nAt that time, when Jesus had entered Capharnaum, th", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nTo You, O Lord, I lift up my soul: in You, O my God, I trust; let me not be put to shame, let not my enemies", - "id": "Offertorium" - }, - { - "body": "O Lord, we beseech You to look with favor upon these offerings before You, and may they be profitable to our devotion as", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nYou shall be pleased with due sacrifices, burnt offerings and holocausts on Your altar, O Lord.", - "id": "Communio" - }, - { - "body": "We humbly beseech You, almighty God, that, having received the blessing of Your heavenly gift, it may be for us the sour", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nSpare, O Lord, spare Your people, that, being chastened wit", - "id": "Super populum" - } - ], - "2020-02-28": [ - { - "body": "*Ps 29:11*\nThe Lord has heard, and has had pity on me; the Lord became my helper.\n*Ps 29:2*\nI will extol You, O Lord, fo", - "id": "Introitus" - }, - { - "body": "May Your kindly favor, we beseech You, O Lord, accompany the fast we have begun, that we may be able to practice with a ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Gabriel of Our Lady of Sorrows*\nO God, Who taught blessed Gabriel to meditate continually on the sorr", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 58:1-9*\nThus says the Lord God: Cry out full-throated and unsparingly, lift up your ", - "id": "Lectio" - }, - { - "body": "*Ps 26:4*\nOne thing I ask the Lord; this I seek: to dwell in the house of the Lord.\n℣. That I may gaze on the loveliness", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:43-48; 6:1-4*\nAt that time, Jesus said to His disciples, ", - "id": "Evangelium" - }, - { - "body": "*Ps 118:154, 125*\nO Lord, for the sake of Your promise give me life, that I may know Your decrees.", - "id": "Offertorium" - }, - { - "body": "Grant, O Lord, we beseech You, that as we offer the sacrifice of Lent, our hearts may be made acceptable to You; and the", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Gabriel of Our Lady of Sorrows*\nO Lord, make us who offer You the saving sacrificial gifts in memory ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 2:11-12*\nServe the Lord with fear, and rejoice before Him with trembling; embrace discipline, lest you perish from t", - "id": "Communio" - }, - { - "body": "Fill us, O Lord, with the spirit of Your love, to unite in charity those whom You have filled with one and the same heav", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Gabriel of Our Lady of Sorrows*\nO Lord, graciously accept the thanks we offer You for the gifts we ha", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nWatch over Your people, O Lord, and mercifully cleanse them", - "id": "Super populum" - } - ], - "2020-02-29": [ - { - "body": "*Ps 29:11*\nThe Lord has heard, and has had pity on me; the Lord became my helper.\n*Ps 29:2*\nI will extol You, O Lord, fo", - "id": "Introitus" - }, - { - "body": "Hear, O Lord, our humble prayers, and grant that we may devoutly keep this fast that has been established to cure our so", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 58:9-14*\nThus says the Lord God: If you remove from your midst oppression, false acc", - "id": "Lectio" - }, - { - "body": "*Ps 26:4*\nOne thing I ask the Lord; this I seek: to dwell in the house of the Lord.\n℣. That I may gaze on the loveliness", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 6:47-56*\nAt that time, when it was late, the ship was in the m", - "id": "Evangelium" - }, - { - "body": "*Ps 118:154, 125*\nO Lord, for the sake of Your promise give me life, that I may know Your decrees.", - "id": "Offertorium" - }, - { - "body": "Receive, O Lord, this sacrifice by which You have graciously willed to be appeased: grant, we beseech You, that, cleanse", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 2:11-12*\nServe the Lord with fear, and rejoice before Him with trembling; embrace discipline, lest you perish from t", - "id": "Communio" - }, - { - "body": "Fortified by the Bread of Life, we beseech You, O Lord, that what is a sacrament in this life may become a help to life ", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay Your faithful people, O God, be strengthened by Your gi", - "id": "Super populum" - } - ], - "2020-03-01": [ - { - "body": "*Ps 90:15-16*\nHe shall call upon Me, and I will answer him; I will deliver him and glorify him; with length of days I wi", - "id": "Introitus" - }, - { - "body": "O God, You Who purify Your Church by the yearly Lenten observance, grant to Your household that what they strive to obta", - "id": "Oratio" - }, - { - "body": "A reading from the Second Letter of St. Paul to the Corinthians\n*2 Cor. 6:1-10*\nBrethren: We entreat you not to receive ", - "id": "Lectio" - }, - { - "body": "*Ps 90:11-12*\nTo His angels God has given command about you, that they guard you in all your ways.\n℣. Upon their hands t", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 4:1-11*\nAt that time, Jesus was led into the desert by the Sp", - "id": "Evangelium" - }, - { - "body": "*Ps 90:4-5*\nWith His pinions the Lord will cover you, and under His wings you shall take refuge; His faithfulness is a b", - "id": "Offertorium" - }, - { - "body": "We offer these sacrificial gifts at the beginning of Lent, praying You, O Lord, that while we practice restraint in the ", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 90:4-5*\nWith His pinions the Lord will cover you, and under His wings you shall take refuge; His faithfulness is a b", - "id": "Communio" - }, - { - "body": "May the holy offering of Your sacrament renew us, O Lord, and cause us to be purified from our old ways and come to the ", - "id": "Postcommunio" - } - ], - "2020-03-02": [ - { - "body": "*Ps 122:2*\nAs the eyes of servants are on the hands of their masters, so are our eyes on the Lord, our God, till He have", - "id": "Introitus" - }, - { - "body": "O God, our Saviour, direct our minds by Your heavenly teaching, so that the Lenten fast may profit us.\nThrough our Lord…", - "id": "Oratio" - }, - { - "body": "Lesson from the Prophecy of Ezechiel\n*Ezech 34:11-16*\nThus says the Lord God: I Myself will look after and tend My sheep", - "id": "Lectio" - }, - { - "body": "*Ps 83:10, 9*\nBehold, O God, our Protector, and look upon Your servants.\n℣. O Lord God of Hosts, hear the prayers of You", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 25:31-46*\nAt that time, Jesus said to His disciples: When the", - "id": "Evangelium" - }, - { - "body": "*Ps 118:18, 26, 73*\nI will lift up my eyes, that I may consider Your wonders, O Lord; teach me Your statutes; give me di", - "id": "Offertorium" - }, - { - "body": "Sanctify the gifts offered unto You, O Lord, and cleanse us from the stains of our sins.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Matt 25:40, 34*\nAmen I say to you: What you did for one of these, the least of My brethren, you did for Me: come, bless", - "id": "Communio" - }, - { - "body": "Refreshed by the sacramental gift of Your salvation, we humbly beseech You, O Lord, that, enjoying its savor, we may be ", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLoose the bonds of our sins, we beseech You, O Lord, and me", - "id": "Super populum" - } - ], - "2020-03-03": [ - { - "body": "*Ps 89:1-2*\nLord, You have been our refuge through all generations; from everlasting to everlasting You are.\n*Ps 89:2*\nB", - "id": "Introitus" - }, - { - "body": "Look upon Your household, O Lord, and grant that our minds, chastened by mortification of the flesh, may, because of the", - "id": "Oratio" - }, - { - "body": "Lesson from the Prophecy of Isaias\n*Isa 55:6-11*\nIn those days, the prophet Isaiah spoke, saying: Seek the Lord while He", - "id": "Lectio" - }, - { - "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 21:10-17*\nAt that time, when Jesus entered Jerusalem, all the", - "id": "Evangelium" - }, - { - "body": "*Ps 30:15-16*\nMy trust is in You, O Lord; I say, \"You are my God.\" In Your hands is my destiny.", - "id": "Offertorium" - }, - { - "body": "Be appeased, we beseech You, O Lord, by the gifts we offer, and safeguard us from all dangers.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 4:2*\nWhen I call, answer me, O my just God, You Who relieve me when I am in distress; have pity on me, O Lord, and h", - "id": "Communio" - }, - { - "body": "We beseech You, almighty God, that we may obtain that salvation whose pledge we have received in this divine sacrament.\n", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay our prayers ascend unto You, O Lord, and banish all wic", - "id": "Super populum" - } - ], - "2020-03-04": [ - { - "body": "*Ps 24:6, 3, 22*\nRemember that Your compassion, O Lord, and Your kindness are from of old; let not our enemies exult ove", - "id": "Introitus" - }, - { - "body": "Mercifully hear our prayers, we beseech You, O Lord; and stretch forth the right hand of Your Majesty against all things", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Exodus\n*Ex. 24:12-18*\nIn those days, the Lord said to Moses, Come up to Me on the mountain and, ", - "id": "LectioL1" - }, - { - "body": "*Ps 24:17-18*\nRelieve the troubles of my heart, and bring me out of distress, O Lord.\n℣. Put an end to my affliction and", - "id": "GradualeL1" - }, - { - "body": "We beseech You, O Lord, look graciously upon the fervor of Your people, who mortify themselves in the flesh through abst", - "id": "OratioL1" - }, - { - "body": "*Commemoration St. Casimir*\nO God, Who strengthened St. Casimir with the virtue of steadfastness amid the luxuries of a ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Kings\n*3 Kgs. 19:3-8*\nIn those days, Elias came to Bersabee of Juda, and left his servant there,", - "id": "Lectio" - }, - { - "body": "*Ps 24:17-18, 1-4.*\nBring me out of distress, O Lord; put an end to my affliction and my suffering, and take away all my", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 12:38-50*\nAt that time, certain of the Scribes and Pharisees ", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly. And I will life up my hands to Your commands w", - "id": "Offertorium" - }, - { - "body": "We offer You, O Lord, this sacrifice of atonement, that You would mercifully absolve our sins and direct our faltering h", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Casimir*\nWe offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them w", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 5:2-4*\nAttend to my sighing, heed my call for help, my King and my God! To You, I pray, O Lord.", - "id": "Communio" - }, - { - "body": "By receiving Your sacrament, O Lord, may we be cleansed of our secret sins and delivered from the snares of our enemies.", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Casimir*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be hel", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO Lord, we beseech You, shed light upon our minds by the br", - "id": "Super populum" - } - ], - "2020-03-05": [ - { - "body": "*Ps 95.6.*\nSplendor and majesty go before Him; praise and grandeur are in His sanctuary.\n*Ps 95:1*\nSing to the Lord a ne", - "id": "Introitus" - }, - { - "body": "We beseech You, O Lord, look graciously upon the fervor of Your people, who mortify themselves in the flesh through abst", - "id": "Oratio" - }, - { - "body": "Lesson from the Prophecy of Ezechiel\n*Ezech 18:1-9*\nIn those days, the word of the Lord came to me: Son of man, what is ", - "id": "Lectio" - }, - { - "body": "*Ps 16:8, 2*\nKeep me, O Lord, as the apple of Your eye; hide me in the shadow of Your wings.\n℣. From You let my judgment", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 15:21-28*\nAt that time, leaving there, Jesus retired to the d", - "id": "Evangelium" - }, - { - "body": "*Ps 33: 8-9*\nThe angel of the Lord encamps around those who fear Him, and delivers them. Taste and see how good the Lord", - "id": "Offertorium" - }, - { - "body": "May these sacrificial gifts, we beseech You, O Lord, be the more effective unto our salvation since they have been aided", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*John 6:52*\nThe bread that I will give is My Flesh for the life of the world.", - "id": "Communio" - }, - { - "body": "May Your generous grace sustain and help us, O Lord, in this world and make us new for the world to come.\nThrough our Lo", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant we beseech You, O Lord, that Your faithful people may", - "id": "Super populum" - } - ], - "2020-03-06": [ - { - "body": "*Ps 24:17-18*\nBring me out of distress, O Lord; put an end to my affliction and my suffering, and take away all my sins.", - "id": "Introitus" - }, - { - "body": "Be merciful to Your people, O Lord, and as You give them the grace to serve You, make them new by Your loving help.\nThro", - "id": "Oratio" - }, - { - "body": "*Commemoration Sts. Felicitas & Perpetua*\nGrant, we beseech You, O Lord our God, that we may venerate with unceasing dev", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the Prophecy of Ezechiel\n*Ezech 18:20-28*\nThus says the Lord God: Only the one who sins shall die. The son s", - "id": "Lectio" - }, - { - "body": "*Ps 85:2, 6*\nSave Your servant, O my God, who trusts in You.\n℣. Hearken, O Lord, to my prayer.\n\n*Tractus*\n*Ps 102:10*\nO ", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 5:1-15*\nAt that time, there was a feast of the Jews, and Jesus w", - "id": "Evangelium" - }, - { - "body": "*Ps 102:2, 5*\nBless the Lord, O my soul, and forget not all His benefits; and your youth shall be renewed like the eagle", - "id": "Offertorium" - }, - { - "body": "Accept, we beseech You, O Lord, the offerings which we, Your servants, bring You, and graciously hallow the gifts which ", - "id": "Secreta" - }, - { - "body": "*Commemoration Sts. Felicitas & Perpetua*\nLook with favor, we beseech You, O Lord, upon the gifts placed on Your altar f", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 6:11*\nAll my enemies shall be put to shame in utter terror; they shall fall back in sudden shame.", - "id": "Communio" - }, - { - "body": "By the working of this sacrament, O Lord, may our sins be erased, and our just desires fulfilled.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Sts. Felicitas & Perpetua*\nYou have filled us with spiritual joy and delight; grant, we beseech You, O Lo", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGraciously hear us, merciful God, and reveal to our minds t", - "id": "Super populum" - } - ], - "2020-03-07": [ - { - "body": "*Ps 87:3*\nLet my prayer come before You; incline Your ear to my call for help, O Lord.\n*Ps 87:2*\nO Lord, the God of my s", - "id": "Introitus" - }, - { - "body": "Look graciously upon Your people, we beseech You, O Lord, and in Your mercy turn away from them the scourges of Your wra", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Deuteronomy\n*Deut. 26:12-19*\nIn those days, Moses spoke to the people, saying, When you have fin", - "id": "LectioL1" - }, - { - "body": "*Ps 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God, our Saviour; be", - "id": "GradualeL1" - }, - { - "body": "Look upon us, O God our protector, so that we who are heavy laden with the burden of our sins, having received Your merc", - "id": "OratioL1" - }, - { - "body": "Lesson from the book of Deuteronomy\n*Deut. 11:22-25*\nIn those days, Moses said to the children of Israel, If you are car", - "id": "LectioL2" - }, - { - "body": "*Ps 83:10, 9*\nBehold, O God, our Protector, and look upon Your servants.\n℣. O Lord of Hosts, hear the prayer of Your ser", - "id": "GradualeL2" - }, - { - "body": "Heed our humble prayers, we beseech You, O Lord, that by Your bounty we may have grace to be humble in prosperity and un", - "id": "OratioL2" - }, - { - "body": "Lesson from the book of Machabees\n*2 Mach. 1:23-27*\nIn those days, all the priests made prayer, while the sacrifice was ", - "id": "LectioL3" - }, - { - "body": "*Ps 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants!\n℣. O Lord, You have been our refuge through all gene", - "id": "GradualeL3" - }, - { - "body": "Have mercy upon us, O God of the universe, and behold us, and show us the light of Your mercies; and put all the nations", - "id": "OratioL3" - }, - { - "body": "Lesson from the book of Ecclesiastes\n*Ecclus. 36:1-10*\nRaise Your hand against the heathen, that they may realize Your p", - "id": "LectioL4" - }, - { - "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", - "id": "GradualeL4" - }, - { - "body": "O Lord, we beseech You, precede our actions with Your favor and accompany them by Your help, so that each prayer and wor", - "id": "OratioL4" - }, - { - "body": "Lesson from the Prophecy of Daniel\n*Dan. 3:47-51*\nIn those days, the Angel of the Lord went down into the furnace with A", - "id": "LectioL5" - }, - { - "body": "O God, Who tempered the flames of fire for the three young men, mercifully grant that the flames of sin may not burn us,", - "id": "OratioL5" - }, - { - "body": "*Commemoration St. Thomas Aquinas*\nO God, Who enlightened Your Church with the wondrous learning of blessed Thomas, Your", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first Letter of St. Paul to the Thessalonians\n*1 Thess. 5:14-23*\nBrethren: We exhort you, reprove the ir", - "id": "Lectio" - }, - { - "body": "*Ps 116:1-2*\nPraise the Lord, all you nations, glorify Him, all you peoples!\n℣. For steadfast is His kindness toward us,", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew.\n*Matt 17:1-9*\nAt that time, Jesus took Peter, James and his brothe", - "id": "Evangelium" - }, - { - "body": "*Ps 87:2-3*\nO Lord, the God of my salvation, by day I cry out, at night I clamor in Your presence. Let my prayer come be", - "id": "Offertorium" - }, - { - "body": "Sanctify our fasts by the sacrificial gifts here present, we beseech You, O Lord, that what our observance outwardly pro", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Thomas Aquinas*\nMay the pious prayer of holy N. thy Confessor and illustrious Doctor be not wanting t", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 7:2*\nO Lord my God, in You I take refuge; save me from all my pursuers and rescue me.", - "id": "Communio" - }, - { - "body": "By the workings of Your sanctifying power, almighty God, may our vices be cured and eternal remedies provided for us.\nTh", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Thomas Aquinas*\n*Pro Doctore non Pontifice.*\nMay blessed N. thy Confessor and illustrious Doctor inte", - "id": "Commemoratio Postcommunio" - }, - { - "body": "Let us pray.\nBow your heads to God.\nMay the blessing desired by Your faithful give them strength, O God; may it keep the", - "id": "Super populum" - } - ], - "2020-03-08": [ - { - "body": "*Ps 24:6, 3, 22*\nRemember that Your compassion, O Lord, and Your kindness are from of old; let not our enemies exult ove", - "id": "Introitus" - }, - { - "body": "O God, You Who see how we are deprived of all strength, guard us inwardly and outwardly, that in body we may be protecte", - "id": "Oratio" - }, - { - "body": "Lesson from the first Letter of St. Paul to the Thessalonians\n*1 Thess. 4:1-7*\nBrethren: Even as you have learned from u", - "id": "Lectio" - }, - { - "body": "*Ps 24:17-18*\nRelieve the troubles of my heart and bring me out of my distress, O Lord.\n℣. Put an end to my affliction a", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 17:1-9*\nAt that time, Jesus took Peter, James and his brother", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly; and I will lift up my hands to Your commands, ", - "id": "Offertorium" - }, - { - "body": "Look with favor, we beseech You, O Lord, upon the offerings here before You, that they may be beneficial for our devotio", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 5:2-4*\nAttend to my sighing; heed my call for help, my King and my God! To You I pray, O Lord.", - "id": "Communio" - }, - { - "body": "O almighty God, we humbly beseech You that those whom You refresh with Your sacrament may also worthily serve You in a w", - "id": "Postcommunio" - } - ], - "2020-03-09": [ - { - "body": "*Ps 25:11-12*\nRedeem me, O Lord, and have pity on me; my foot stands on level ground; in the assemblies I will bless the", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that Your servants who discipline the body by fasting from food, may strive after r", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Frances Rome*\nO God, Who along with other gifts of Your grace honored blessed Frances, Your handmaid,", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the Prophecy of Daniel\n*Dan 9:15-19*\nIn those days, Daniel prayed to the Lord, saying, O Lord our God, Who b", - "id": "Lectio" - }, - { - "body": "*Ps 69:6, 3*\nYou are my help and my deliverer; O Lord, hold not back!\n℣. Let my enemies be put to shame and confounded, ", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 8:21-29*\nAt that time, Jesus said to the multitudes of the Jews:", - "id": "Evangelium" - }, - { - "body": "*Ps 15:7-8*\nI bless the Lord, Who counsels me; I set the Lord ever before me; with Him at my right hand, I shall not be ", - "id": "Offertorium" - }, - { - "body": "May this sacrificial gift offered in appeasement and praise, O Lord, make us worthy of Your protection.\nThrough our Lord", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Frances Rome*\nO Lord, may the offerings of Your devoted people be pleasing to You in honor of Your sa", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 8:2*\nO Lord, our Lord, how glorious is Your Name over all the earth!", - "id": "Communio" - }, - { - "body": "May this Communion, O Lord, cleanse us of sin, and make us partakers of heavenly healing.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Frances Rome*\nYou have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGive heed to our humble prayers, almighty God, and kindly g", - "id": "Super populum" - } - ], - "2020-03-10": [ - { - "body": "*Ps 26:8-9*\nTo You my heart speaks; You my glance seeks; Your presence, O Lord, I seek. Hide not Your face from me.\n*Ps ", - "id": "Introitus" - }, - { - "body": "Mercifully help us, O Lord, to fulfill this holy observance, that by Your grace we may carry out those things which we h", - "id": "Oratio" - }, - { - "body": "*Commemoration Forty Holy Martyrs of Sebaste*\nGrant, we beseech You, almighty God, that we who know how courageously You", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the Book of Kings\n*3 Kings 17:8-16*\nIn those days, the word of the Lord came to Elias the Thesbite, saying, ", - "id": "Lectio" - }, - { - "body": "*Ps 54:23, 17-19.*\nCast your care upon the Lord, and He will support you.\n℣. When I called upon the Lord, He heard my vo", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 23:1-12*\nAt that time, Jesus spoke to the crowds and to His d", - "id": "Evangelium" - }, - { - "body": "*Ps 50:3*\nHave mercy on me, O Lord, in the greatness of Your compassion; O Lord, wipe out my offense.", - "id": "Offertorium" - }, - { - "body": "Through this sacrament, O Lord, graciously perform Your holy work, that it may cleanse us of earthly vices and bring us ", - "id": "Secreta" - }, - { - "body": "*Commemoration Forty Holy Martyrs of Sebaste*\nLook with favor, O Lord, upon the prayers and offerings of Your faithful, ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 9:2-3*\nI will declare all Your wondrous deeds; I will be glad and exult in You; I will sing praise to Your name, Mos", - "id": "Communio" - }, - { - "body": "Grant us, O Lord, ever to obey Your commandments, that we may be worthy of Your sacred gifts.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Forty Holy Martyrs of Sebaste*\nBe appeased by the prayers of Your Saints, O Lord, and grant, we beseech Y", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMercifully heed our humble prayers, O Lord, and heal the we", - "id": "Super populum" - } - ], - "2020-03-11": [ - { - "body": "*Ps 37:22-23*\nForsake me not, O Lord; my God, be not far from me! Hasten to help me, O Lord, my salvation!\n*Ps 37:2*\nO L", - "id": "Introitus" - }, - { - "body": "Look mercifully upon Your people, we beseech You, O Lord, and grant that they whom You command to abstain from food, may", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Esther\n*Esther 13:8-11; 15-17.*\nIn those days, Mardochai prayed to the Lord, saying, O Lord, Lor", - "id": "Lectio" - }, - { - "body": "*Ps 27:9, 1*\nSave Your people, O Lord, and bless Your inheritance.\n℣. To You, O Lord, I call; O my God, be not deaf to m", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 20:17-28*\nAt that time, as Jesus was going up to Jerusalem, H", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nTo You I lift up my soul, O Lord. In You, O my God, I trust; let me not be put to shame, let not my enemies ", - "id": "Offertorium" - }, - { - "body": "Look with favor upon the sacrificial gifts we offer You, O Lord, and through this holy exchange loosen the bonds of our ", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 10:8*\nThe Lord is just, He loves just deeds; the upright shall see His face.", - "id": "Communio" - }, - { - "body": "Having received Your sacrament, O Lord, may we make progress, we beseech You, toward our everlasting salvation.\nThrough ", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO God, restorer and lover of innocence, direct the hearts o", - "id": "Super populum" - } - ], - "2020-03-12": [ - { - "body": "*Ps 69:2-3*\nDeign, O God, to rescue me; O Lord, make haste to help me; let my enemies be put to shame and confounded who", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, O Lord, the help of Your grace, that, being intent, as we ought, upon fasting and prayer, we may ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Gregory the Great*\nO God, Who granted the rewards of everlasting happiness to the soul of Your servan", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the Prophecy of Jeremias\n*Jer 17:5-10*\nThus says the Lord God: Cursed is the man who trusts in man, who seek", - "id": "Lectio" - }, - { - "body": "*Ps 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God, our Saviour; be", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Luke\n*Luke 16:19-31*\nAt that time, Jesus said to the Pharisees, There was a", - "id": "Evangelium" - }, - { - "body": "*Ex 32:11, 13-14.*\nMoses prayed in the sight of the Lord his God, and said, Why, O Lord, are You angry with Your people?", - "id": "Offertorium" - }, - { - "body": "May the fasting dedicated to Your Name, O Lord, make us holy for the present sacrifice, that what our Lenten observance ", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Gregory the Great*\nGrant, we beseech You, O Lord, that through the intercession of blessed Gregory, t", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*John 6:57*\nHe who eats My Flesh, and drinks My Blood, abides in Me, and I in him, says the Lord.", - "id": "Communio" - }, - { - "body": "May Your grace, we beseech You, O Lord, never forsake us, but make us devoted to Your holy service and ever obtain for u", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Gregory the Great*\nO God, Who made Your Bishop, blessed Gregory, an equal to the saints in merit, gra", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nHelp Your servants, O Lord, and grant them the lasting kind", - "id": "Super populum" - } - ], - "2020-03-13": [ - { - "body": "*Ps 16:15*\nBut I in justice shall behold Your face; I shall be content when Your glory shall appear.\n*Ps 16:1*\nHear, O L", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that with the sacred fast to purify us, we may with sincere hearts reach the coming", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Genesis\n*Gen 37:6-22*\nIn those days, Joseph said to his brothers, Listen to this dream which I h", - "id": "Lectio" - }, - { - "body": "*Ps 119:1-2*\nIn my distress I called to the Lord, and He answered me.\n℣. O Lord, deliver me from lying lip, from treache", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 21:33-46*\nAt that time, Jesus spoke this parable to the multi", - "id": "Evangelium" - }, - { - "body": "*Ps 39:14-15*\nDeign, O Lord, to rescue me; let all be put to shame and confusion who seek to snatch away my life. Deign,", - "id": "Offertorium" - }, - { - "body": "O God, may this sacrifice which is offered, stay in us and accomplish lasting effects.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 11:8*\nYou, O Lord, will keep us and preserve us always from this generation.", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, O Lord, that we who have received the pledge of everlasting salvation, may properly direct our co", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant unto Your people, we beseech You, O Lord, health of m", - "id": "Super populum" - } - ], - "2020-03-14": [ - { - "body": "*Ps 18:8*\nThe law of the Lord is perfect, refreshing the soul; the decree of the Lord is trustworthy, giving wisdom to t", - "id": "Introitus" - }, - { - "body": "Grant that our fasting may be beneficial to us, we beseech You, O Lord, so that by chastising our flesh we may obtain st", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Genesis\n*Gen 27:6-40*\nIn those days, Rebecca said to her son Jacob, I heard your father tell you", - "id": "Lectio" - }, - { - "body": "*Ps 91:2-3*\nIt is good to give thanks to the Lord, to sing praise to Your name, Most High.\n℣. To proclaim Your kindness ", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Luke\n*Luke 15:11-32*\nAt that time, Jesus spoke to the Pharisees and Scribes", - "id": "Evangelium" - }, - { - "body": "*Ps 12:4-5*\nGive light to my eyes that I may not sleep in death lest my enemy say, I have overcome him.", - "id": "Offertorium" - }, - { - "body": "Appeased by these sacrificial gifts, O Lord, grant that we who pray for absolution from our own sins may not be burdened", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Luke 15:32*\nYou ought to rejoice, my son, for your brother was dead, and has come to life; he was lost, and is found.", - "id": "Communio" - }, - { - "body": "May the sacrament of which we have partaken, O Lord, penetrate the depths of our hearts and make us share in its strengt", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGuard Your household, we beseech You, O Lord, with lasting ", - "id": "Super populum" - } - ], - "2020-03-15": [ - { - "body": "*Ps 24:15-16*\nMy eyes are ever toward the Lord, for He will free my feet from the snare. Look toward me, and have pity o", - "id": "Introitus" - }, - { - "body": "We beseech You, almighty God, hear the prayers of the humble and stretch forth the right hand of Your majesty to protect", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul to the Ephesians\n*Eph 5:1-9*\nBrethren: Be imitators of God, as very dear children and", - "id": "Lectio" - }, - { - "body": "*Ps 9:20, 4*\nRise, O Lord, let not man prevail; let the nations be judged in Your presence.\n℣. Because my enemies are tu", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Luke\n*Luke 11:14-28*\nAt that time, Jesus was casting out a devil, and the s", - "id": "Evangelium" - }, - { - "body": "*Ps 18:9-12*\nThe precepts of the Lord are right, rejoicing the heart, and His ordinances are sweeter than syrup or honey", - "id": "Offertorium" - }, - { - "body": "May this offering, we beseech You, O Lord, cleanse us of our sins, and make holy the bodies and minds of Your servants f", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 83:4-5*\nThe sparrow finds a home, and the swallow a nest in which she puts her young - Your altars, O Lord of Hosts,", - "id": "Communio" - }, - { - "body": "Be merciful, O Lord, we beseech You, and free from guilt and danger those whom You grant to share in this great sacramen", - "id": "Postcommunio" - } - ], - "2020-03-16": [ - { - "body": "*Ps 55:5*\nIn God, in Whose promise I glory, in the Lord Whose word I praise, in God I trust without fear; what can flesh", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, in Your mercy, pour forth Your grace into our hearts, that, as we abstain from material food, so", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Kings\n*4 Kings, 5:1-15*\nIn those days, Naaman, general of the army of the king of Syria, was a g", - "id": "Lectio" - }, - { - "body": "*Ps 55:9, 2*\nO God, my wanderings You have counted; my tears are recorded in Your sight.\n℣. Have pity on me, O Lord, for", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Luke\n*Luke 4:23-30*\nAt that time, Jesus said to the Pharisees: You will sur", - "id": "Evangelium" - }, - { - "body": "*Ps 54:2-3*\nHearken, O God, to my prayer; turn not away from my pleading; give heed to me, and answer me.", - "id": "Offertorium" - }, - { - "body": "O Lord, make for us a sacrament of salvation the gift of homage which we offer to You.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 13:7*\nOh, that out of Sion would come the salvation of Israel! When the Lord restores the well being of His people, ", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty and merciful God, that what we take into our mouth, we may eat with a pure heart.\nThroug", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLet Your mercy come to our help, O Lord, that under Your pr", - "id": "Super populum" - } - ], - "2020-03-17": [ - { - "body": "*Ps 16:6-8*\nI call upon You, for You will answer me, O God; incline Your ear to me; hear my word. Keep me, O Lord, as th", - "id": "Introitus" - }, - { - "body": "Hear us, almighty and merciful God, and in Your kindness grant us the graces of self-denial that lead to salvation.\nThro", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Patrick*\nO, God, Who graciously sent blessed Patrick, Your Confessor and Bishop, to preach Your glory", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Kings\n*4 Kings 4:1-7*\nIn those days, a certain woman cried to the Prophet Eliseus, saying, Your ", - "id": "Lectio" - }, - { - "body": "*Ps 18:13-14*\nCleanse me from my unknown faults, O Lord! From wanton sin especially, restrain Your servant.\n℣. Let it no", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 18:15-22*\nAt that time, Jesus said to His disciples: If your ", - "id": "Evangelium" - }, - { - "body": "*Ps 117:16-17*\nThe right hand of the Lord has struck with power: the right hand of the Lord has exalted me; I shall not ", - "id": "Offertorium" - }, - { - "body": "O Lord, may this sacrament result in our redemption; keep us always from the sins of our human nature, and bring us the ", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Patrick*\nMay Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflec", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 14:1-2*\nLord, who shall sojourn in Your tent? Who shall dwell on Your holy mountain? He who walks blamelessly and do", - "id": "Communio" - }, - { - "body": "We beseech You, O Lord, that, purified by this holy sacrament, we may obtain both forgiveness and grace.\nThrough our Lor", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Patrick*\nGrant, we beseech You, almighty God, that as we thank You for the favors we have received, w", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nDefend us, O Lord, with Your protection, and forever safegu", - "id": "Super populum" - } - ], - "2020-03-18": [ - { - "body": "*Ps 30:7-8*\nMy trust is in the Lord. I will rejoice and be glad of your kindness, when You have seen my affliction.\n*Ps ", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, O Lord, that, improved by wholesome fasting, and thus abstaining from harmful sin, we may the mor", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Cyril of Jerusalem*\nGrant us, we beseech You, almighty God, through the intercession of the blessed B", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Exodus\n*Ex 20:12-24*\nThus says the Lord God: Honor your father and your mother, that you may hav", - "id": "Lectio" - }, - { - "body": "*Ps 6:3- 4*\nHave pity on me, O Lord, for I am languishing; heal me, O Lord.\n℣. For my body is in terror; my soul, too, i", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Matthew\n*Matt 15:1-20*\nAt that time, the Scribes and Pharisees from Jerusal", - "id": "Evangelium" - }, - { - "body": "*Ps 108:21*\nO Lord, deal kindly with me for Your Name’s sake; because your kindness is generous.", - "id": "Offertorium" - }, - { - "body": "O Lord, receive, we beseech You, the prayers of Your people with offerings of sacrifices, and defend us, who celebrate Y", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Cyril of Jerusalem*\nO Lord, look favorably upon the unblemished offering we present to You and grant ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 15:11*\nYou will show me the path to life, You will fill me with fullness of joys in Your presence, O Lord.", - "id": "Communio" - }, - { - "body": "May the heavenly banquet with which we have been nourished, make us holy, O Lord; may it be an atonement for all our sin", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Cyril of Jerusalem*\nO Lord, Jesus Christ, may the sacrament of Your Body and Blood which we have rece", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant, almighty God, we beseech You, that we who seek the g", - "id": "Super populum" - } - ], - "2020-03-19": [ - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", - "id": "Introitus" - }, - { - "body": "May the merits of Your most holy Mother’s spouse help us, we beseech You, O Lord, that through his intercession we may r", - "id": "Oratio" - }, - { - "body": "*Commemoration Feria V after the III Sunday of Lent*\nMay the blessed feast of Your saints, Cosmas and Damian, glorify Yo", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 1:18-21*\nWhen Mary the Mother of Jesus had been betrothed t", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (P.T. Allel", - "id": "Offertorium" - }, - { - "body": "O Lord, we dutifully worship You, humbly entreating You by the prayers of blessed Joseph, Spouse of the Mother of Jesus ", - "id": "Secreta" - }, - { - "body": "*Commemoration Feria V after the III Sunday of Lent*\nWe offer You, O Lord, in honor of the meritorious death of Your jus", - "id": "Commemoratio Secreta" - }, - { - "body": "*St. Joseph*\nIt is truly meet and just, right and for our salvation, that we should at all times and in all places, give", - "id": "Prefatio" - }, - { - "body": "*Matt 1:20*\nDo not be afraid, Joseph, son of David, to take to you Mary your wife, for that which is begotten in her is ", - "id": "Communio" - }, - { - "body": "Be with us, we beseech You, O merciful God, and by the intercession of blessed Joseph, Your Confessor, graciously keep s", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Feria V after the III Sunday of Lent*\nO Lord, we ask You through the merits of Your blessed martyrs, Cosm", - "id": "Commemoratio Postcommunio" - } - ], - "2020-03-20": [ - { - "body": "*Ps 85:17*\nGrant me, O Lord, a proof of Your favor, that my enemies may see, to their confusion, that You, O Lord, have ", - "id": "Introitus" - }, - { - "body": "O Lord, graciously be with us during this fast, and, we beseech You, help our spirit to abstain from sin as our body fas", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Numbers\n*Num 20:1, 3; 6-13.*\nIn those days, the Israelites held a council against Moses and Aaro", - "id": "Lectio" - }, - { - "body": "*Ps 27:7, 1*\nIn God my heart trusts, and I find help; then my heart exults, and with my song I give Him thanks.\n℣. To Yo", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 4:5-42*\nAt that time, Jesus came, accordingly, to a town of Sama", - "id": "Evangelium" - }, - { - "body": "*Ps 5:3-4*\nHeed my call for help, my King, and my God! To You I pray, O Lord.", - "id": "Offertorium" - }, - { - "body": "Look with favor, we beseech You, O Lord, upon the gifts we offer You, that they may be pleasing to you and ever helpful ", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Jn 4:13-14*\nHe who drinks of the water that I will give him, says the Lord, it shall become in him a fountain of water,", - "id": "Communio" - }, - { - "body": "May the reception of this sacrament, O Lord, cleanse us from sin and bring us into the heavenly kingdom.\nThrough our Lor", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant, we beseech You, almighty God, that we who trust in Y", - "id": "Super populum" - } - ], - "2020-03-21": [ - { - "body": "*Ps 5:2-3*\nHearken to my words, O Lord, attend to my sighing. Heed my call for help, my King and my God!\n*Ps 5:4 To*\nTo ", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that we who chastise our flesh by abstaining from food, may fast from sin by strivi", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Benedict*\nMay the intercession of the blessed Abbot Benedict, commend us to You, O Lord, so that thro", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the Prophecy of Daniel\n*Dan 13:1-9, 15-17, 19-30, 33-62.*\nIn those days, in Babylon there lived a man named ", - "id": "Lectio" - }, - { - "body": "*Ps 22:4*\nEven though I walk in the dark valley, I fear no evil; for You are at my side, O Lord.\n℣. With Your rod and Yo", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 8:1-11*\nAt that time, Jesus went to the Mount of Olives. And at ", - "id": "Evangelium" - }, - { - "body": "*Ps 118:133*\nSteady my footsteps according to Your promise, and let no iniquity rule over me, O Lord.", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, almighty God, that the offering of this sacrifice may always cleanse and strengthen the weakness ", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Benedict*\nWe beseech You, O Lord, may the holy Abbot N., prevail by his prayers, so that the offering", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Jn 8:10-11*\nHas no one condemned you, woman? No one, Lord. Neither will I condemn you; now sin no more.", - "id": "Communio" - }, - { - "body": "We beseech You, almighty God, that we may be numbered among the members of Him, Whose Body and Blood we receive in commu", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Benedict*\nMay the pleading of the blessed Abbot N. for us, together with the partaking of Your sacram", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nStretch forth to Your faithful people, O Lord, the hand of ", - "id": "Super populum" - } - ], - "2020-03-22": [ - { - "body": "*Isa 66:10-11*\nRejoice, O Jerusalem, and come together, all you who love her: rejoice with joy, you who have been in sor", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that we who justly suffer for our sins may find relief in the help of Your grace.\nT", - "id": "Oratio" - }, - { - "body": "Lesson from the Epistle of St. Paul to the Galatians\n*Gal 4:22-31*\nBrethren: It is written that Abraham had two sons, th", - "id": "Lectio" - }, - { - "body": "*Ps 121: 1, 7*\nI rejoiced because they said to me, We will go up to the house of the Lord.\n℣. May peace be within your w", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 6:1-15*\nAt that time, Jesus went away to the other side of the s", - "id": "Evangelium" - }, - { - "body": "*Ps 134:3, 6*\nPraise the Lord, for He is good; sing praise to His Name, for He is sweet; all that He wills He does in he", - "id": "Offertorium" - }, - { - "body": "Look with favor, we beseech You, O Lord, upon the offerings here before You, that they may be beneficial for our devotio", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 121:3-4*\nJerusalem, built as a city, with compact unity: to it the tribes go up, the tribes of the Lord, to give tha", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, merciful God, that we may treat with sincere reverence, and consume with heartfelt faith Your sac", - "id": "Postcommunio" - } - ], - "2020-03-23": [ - { - "body": "*Ps 53:3-4*\nO God, by your Name save me, and by your might deliver me, O God, hear my prayer; hearken to the words of my", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that we who devoutly keep the sacred observances year by year, may be pleasing to Y", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Kings\n*3 Kings 3:16-28*\nIn those days, there came two women who were harlots, to king Solomon, a", - "id": "Lectio" - }, - { - "body": "*Ps 30:3*\nBe my rock of refuge, O God, a stronghold to give me safety.\n*Ps 70:1*\n℣. In You, O God, I take refuge; O Lord", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 2:13-25*\nAt that time, the Passover of the Jews was at hand, and", - "id": "Evangelium" - }, - { - "body": "*Ps 99:1-2*\nSing joyfully to God, all you lands; serve the Lord with gladness; come before Him with joyful song: for the", - "id": "Offertorium" - }, - { - "body": "May this sacrifice that we offer You, O Lord, ever give us new life and protection.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 18:13-14*\nCleanse me from my unknown faults, O Lord! From wanton sin especially, restrain Your servant.", - "id": "Communio" - }, - { - "body": "O Lord, we beseech You, that as we have partaken of Your saving sacraments, we may make progress toward our everlasting ", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGenerously heed our entreaty, O Lord, we beseech You, and g", - "id": "Super populum" - } - ], - "2020-03-24": [ - { - "body": "*Ps 54:2-3*\nHearken, O God, to my prayer; turn not away from my pleading; give heed to me, and answer me.\n*Ps 54:3-4*\nI ", - "id": "Introitus" - }, - { - "body": "May the sacred practice of fasting, we beseech You, O Lord, win for us increased holiness of life and the continuing hel", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Gabriel the Archangel*\nO God, Who, out of all the angels, chose the Archangel Gabriel to announce the", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Exodus\n*Ex 32:7-14*\nIn those days, the Lord said to Moses, Go down from the mountain to your peo", - "id": "Lectio" - }, - { - "body": "*Ps 43:26, 2*\nArise, O Lord, help us! Redeem us for Your Name’s sake.\n℣. O God, our ears have heard, our fathers have de", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 7:14-31*\nAt that time, when the feast was already half over, Jes", - "id": "Evangelium" - }, - { - "body": "*Ps 39:2-4*\nI have waited, waited for the Lord, and He stooped toward me and heard my cry. And He put a new song into my", - "id": "Offertorium" - }, - { - "body": "May this offering, O Lord, we beseech You, wipe away our sins, and make holy the minds and bodies of Your servants for c", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Gabriel the Archangel*\nMay this gift from us, Your servants, and the prayer of the blessed Archangel ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 19:6*\nMay we shout for joy at Your victory and raise the standards in the Name of the Lord our God.", - "id": "Communio" - }, - { - "body": "May the reception of this sacrament, O Lord, cleanse us from guilt and bring us to the kingdom of heaven.\nThrough our Lo", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Gabriel the Archangel*\nO God, our Lord, having received the sacrament of Your Body and Blood, we ask ", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nHave mercy on Your people, O Lord, and graciously grant the", - "id": "Super populum" - } - ], - "2020-03-25": [ - { - "body": "*Ps 44:13, 15-16.*\nAll the rich among the people seek Your face. Behind her the virgins of her train are brought to the ", - "id": "Introitus" - }, - { - "body": "O God, Who, by the message of an angel, willed Your Word to take flesh in the womb of the Blessed Virgin Mary, grant tha", - "id": "Oratio" - }, - { - "body": "*Commemoration Feria IV after the IV Sunday of Lent*\nO God, Who graciously grant to the righteous the rewards of their m", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 7:10-15*\nIn those days, the Lord spoke to Achaz: Ask for a sign from the Lord, your ", - "id": "Lectio" - }, - { - "body": "*Ps 44:3, 5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy an", - "id": "Tractus" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", - "id": "Evangelium" - }, - { - "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with thee. Blessed art thou among women and blessed is the fruit ", - "id": "Offertorium" - }, - { - "body": "Fix firmly in our minds, O Lord, we beseech You, the mysteries of the true faith; that we who believe Him, conceived of ", - "id": "Secreta" - }, - { - "body": "*Commemoration Feria IV after the IV Sunday of Lent*\nWe humbly entreat You, almighty God, that these sacrificial gifts m", - "id": "Commemoratio Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "*Isa 7:14*\nBehold a virgin shall be with child, and bear a Son, and shall name Him Emmanuel. (P.T. Alleluia.)", - "id": "Communio" - }, - { - "body": "Pour forth, we beseech You, O Lord, Your grace into our hearts, that we, to whom the incarnation of Christ, Your Son, wa", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Feria IV after the IV Sunday of Lent*\nMay the sacrament we have received, O Lord, both fill us with spiri", - "id": "Commemoratio Postcommunio" - } - ], - "2020-03-26": [ - { - "body": "*Ps 104:3-4*\nRejoice, O hearts that seek the Lord! Look to the Lord, and be strengthened; seek His face evermore.\n*Ps 10", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that we who are chastising the flesh by fasting, may rejoice in this holy practice ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Kings\n*4 Kings 4:25-38*\nIn those days, a Sunamite woman came to Eliseus to Mount Carmel: and whe", - "id": "Lectio" - }, - { - "body": "*Ps 73:20, 19, 22*\nLook, O Lord, to Your covenant; be not forever unmindful of the lives of Your afflicted ones.\n℣. Aris", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Luke\n*Luke 7:11-16*\nAt that time, Jesus went into a city called Naim; and H", - "id": "Evangelium" - }, - { - "body": "*Ps 69:2-4*\nO Lord, make haste to help me. Let all those be put to shame who desire the ruin of Your servants.", - "id": "Offertorium" - }, - { - "body": "Cleanse us, O merciful God, so that the prayers of Your Church, which we bring You as a pleasing gift, may be even more ", - "id": "Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 70:16-18*\nO Lord, I will tell of Your singular justice. O God, You have taught me from my youth; and now that I am o", - "id": "Communio" - }, - { - "body": "O Lord, we beseech you, do not allow the heavenly gifts, which You have given for healing Your faithful people, to becom", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO God, teacher and ruler of Your people, drive out the sins", - "id": "Super populum" - } - ], - "2020-03-27": [ - { - "body": "*Ps 18:15*\nLet the thought of my heart find favor before You, O Lord, my Rock and my Redeemer.\n*Ps 18:2*\nThe heavens dec", - "id": "Introitus" - }, - { - "body": "O God, Who by your wondrous sacraments renew the world, grant that Your church may benefit from Your eternal decrees and", - "id": "Oratio" - }, - { - "body": "*Commemoration St. John Damascene*\nAlmighty, eternal God, Who to defend the honor paid to sacred images, filled blessed ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Kings\n*3 Kings 17:17-24*\nIn those days, the son of the woman, the mistress of the house, fell si", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nIt is better to take refuge in the Lord rather than to trust in man.\n℣. It is better to take refuge in the ", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 11:1-45*\nAt that time, a certain man was sick, Lazarus of Bethan", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28, 32*\nLowly people You save, O Lord, but haughty eyes You bring low; for who is God except You, O Lord?", - "id": "Offertorium" - }, - { - "body": "May the gifts we offer, O Lord, cleanse us, we beseech You, that You may be always merciful to us.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Commemoration St. John Damascene*\nO Lord, may the holy intercession of blessed John be united with that of Your Saints ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Jn 11:33, 35, 43-44, 39*\nThe Lord, seeing the sisters of Lazarus weeping at the tomb, wept before the Jews, and cried o", - "id": "Communio" - }, - { - "body": "May the reception of this sacrament, we beseech You, O Lord, always free us from sin and protect us from all that works ", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. John Damascene*\nWe beseech You, O Lord, that the gifts we have eaten may be as heavenly weapons to gu", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant us, we beseech You, almighty God, that, conscious of ", - "id": "Super populum" - } - ], - "2020-03-28": [ - { - "body": "*Isa 55:1*\nAll you who thirst, come to the waters, says the Lord: and you who have no money, come and drink with joy.\n*P", - "id": "Introitus" - }, - { - "body": "Make fruitful, we beseech You, O Lord, the zeal of our fervent devotion; for only if it pleases You shall the fasting we", - "id": "Oratio" - }, - { - "body": "*Commemoration St. John of Capistrano*\nO God, Who, through blessed John, made Your faithful people conquer the enemies o", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the Prophecy of Isaias\n*Isa 49:8-15*\nThus says the Lord: In a time of favor I answer you, on the day of salv", - "id": "Lectio" - }, - { - "body": "*Ps 9:14, 1-2.*\nOn You, O Lord, the unfortunate man depends; of the fatherless You are the helper.\n℣. Why, O Lord, do Yo", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 8:12-20*\nAt that time, Jesus spoke to the multitudes of the Jews", - "id": "Evangelium" - }, - { - "body": "*Ps 17:3*\nThe Lord is become my rock, my fortress, my deliverer; and in Him will I put my trust.", - "id": "Offertorium" - }, - { - "body": "Graciously accept our offerings, O Lord, we beseech You, and mercifully direct our still rebellious wills to You.\nThroug", - "id": "Secreta" - }, - { - "body": "*Commemoration St. John of Capistrano*\nLook with favor, O Lord, upon the sacrifice we offer; that by the intercession of", - "id": "Commemoratio Secreta" - }, - { - "body": "*Lent*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*Ps 22:1-2*\nThe Lord is my Shepherd; I shall not want. In verdant pastures He gives me repose; beside restful waters He ", - "id": "Communio" - }, - { - "body": "May Your holy sacrament cleanse us, we beseech You, O Lord, and may its power make us pleasing to You.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. John of Capistrano*\nFilled with heavenly food and invigorated by the spiritual chalice, we beseech Yo", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO God, Who would rather show mercy than anger toward those ", - "id": "Super populum" - } - ], - "2020-03-29": [ - { - "body": "*Ps 42:1-2*\nDo me justice, O God, and fight my fight against a faithless people; from the deceitful and impious man resc", - "id": "Introitus" - }, - { - "body": "Look graciously upon Your household, almighty God, we beseech You, that by Your grace we may be governed in body, and by", - "id": "Oratio" - }, - { - "body": "Reading from the letter of St. Paul to the Hebrews\n*Heb 9:11-15.*\nBrethren: When Christ appeared as high priest of the g", - "id": "Lectio" - }, - { - "body": "*Ps 142:9-10.*\nRescue me from my enemies, O Lord; teach me to do Your will.\n*Ps 17:48-49*\nO Lord, my deliverer from the ", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 8:46-59.*\nAt that time, Jesus said to the crowds of the Jews: Wh", - "id": "Evangelium" - }, - { - "body": "*Ps 118:17, 107*\nI praise You, O Lord, with all my heart; be good to Your servant, that I may live and keep Your words. ", - "id": "Offertorium" - }, - { - "body": "May these offerings, we beseech You, O Lord, loose the bonds of our wickedness, and obtain for us the gifts of Your merc", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*1 Cor. 11:24-25*\nThis is My Body, which shall be given up for you: this is the cup of the new covenant in My Blood, say", - "id": "Communio" - }, - { - "body": "Stand by us, O Lord our God, and protect by Your everlasting help those to whom You have given new strength through Your", - "id": "Postcommunio" - } - ], - "2020-03-30": [ - { - "body": "*Ps 55:2*\nHave pity on me, O Lord, for men trample upon me; all the day they press their attack against me.\n*Ps 55:3*\nMy", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, make holy our fasting, and graciously lavish upon us forgiveness for all our sins.\nThrough our L", - "id": "Oratio" - }, - { - "body": "Lesson from the Prophecy of Jonas\n*Jonas 3:1-10*\nIn those days, the word of the Lord came to Jona a second time: Set out", - "id": "Lectio" - }, - { - "body": "*Ps 53:4, 3*\nO God, hear my prayer; hearken to the words of my mouth.\n℣. O God, by Your Name save me, and by your might ", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 7:32-39*\nAt that time, the rulers and Pharisees sent attendants ", - "id": "Evangelium" - }, - { - "body": "*Ps 6:5*\nReturn, O Lord, save my life; rescue me because of Your kindness.", - "id": "Offertorium" - }, - { - "body": "Grant us, O Lord our God, that this saving sacrifice may cleanse us of our sins and gain us the favor of Your majesty.\nT", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*Ps 23:10*\nThe Lord of Hosts, He is the King of Glory.", - "id": "Communio" - }, - { - "body": "May the sacrament of salvation which we have received, we beseech You, O Lord, cleanse and restore us.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO Lord, we beseech You, grant unto Your people health of so", - "id": "Super populum" - } - ], - "2020-03-31": [ - { - "body": "*Ps 26:14*\nWait for the Lord with courage; be stouthearted, and wait for the Lord.\n*Ps 26:1*\nThe Lord is my light and my", - "id": "Introitus" - }, - { - "body": "May our fasting be acceptable to You, we beseech You, O Lord; may it be atonement for our sins, make us worthy of Your g", - "id": "Oratio" - }, - { - "body": "Lesson from the Prophecy of Daniel\n*Dan 14:27-42*\nIn those days, the Babylonians went to the king and demanded: Hand ove", - "id": "Lectio" - }, - { - "body": "*Ps 42:1, 3*\nFight my fight, O Lord; from the deceitful and impious man rescue me.\n℣. Send forth Your light and Your fid", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 7:1-13*\nAt that time, Jesus went about in Galilee, for He did no", - "id": "Evangelium" - }, - { - "body": "*Ps 9:11-13*\nThey trust in You who cherish your Name, O Lord, for You forsake not those who seek You. Sing praise to the", - "id": "Offertorium" - }, - { - "body": "O Lord, we bring You the gifts for sacrifice, as tokens of consolation in this life, so that we may not despair of Your ", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*Ps 24:22*\nRedeem me, O God of Israel, from all my distress.", - "id": "Communio" - }, - { - "body": "Grant us, we beseech You, almighty God that by constantly performing these holy acts, we may be worthy to come closer to", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nO Lord, we beseech You, make us always obedient servants of", - "id": "Super populum" - } - ], - "2020-04-01": [ - { - "body": "*Ps 17:48-49*\nMy deliverer from the angry nations; truly above my adversaries You exalt me and from the violent man You ", - "id": "Introitus" - }, - { - "body": "In Your mercy, O Lord, may this hallowing fast enlighten the hearts of Your faithful people, and since You have given th", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Leviticus\n*Lev 19:1-2, 11-19, 25*\nIn those days, the Lord said to Moses, Speak to the whole Isra", - "id": "Lectio" - }, - { - "body": "*Ps 29:2-4*\nI will extol You, O Lord, for You drew me clear and did not let my enemies rejoice over me.\n℣. O Lord, my Go", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 10:22-38*\nAt that time, there took place at Jerusalem the feast ", - "id": "Evangelium" - }, - { - "body": "*Ps 58:2*\nRescue me from my enemies, O my God; from my adversaries defend me, O Lord.", - "id": "Offertorium" - }, - { - "body": "O merciful God, permit us to offer in sincere submission the gift of satisfaction and praise.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*Ps 25:6-7*\nI wash my hands in innocence, and I go around Your altar, O Lord, giving voice to my thanks, and recounting ", - "id": "Communio" - }, - { - "body": "We who have shared in the blessing of the heavenly gift humbly pray You, almighty God, that it may be for us the source ", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nComply with our humble prayers, almighty God, and graciousl", - "id": "Super populum" - } - ], - "2020-04-02": [ - { - "body": "*Dan 3:31*\nAll that You have done to us, O Lord, You have done in true judgment: because we have sinned against You, and", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that the dignity of human nature, weakened by excessive self-indulgence, may be res", - "id": "Oratio" - }, - { - "body": "Lesson from the Prophecy of Daniel\n*Dan 3:25, 34-45.*\nIn those days, Azaria prayed to the Lord, saying: O Lord, our God,", - "id": "Lectio" - }, - { - "body": "*Ps 95:8-9*\nBring gifts and enter His courts; worship the Lord in His holy court.\n*Ps 28:9*\nThe Lord strips the forests,", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Luke\n*Luke 7:36-50*\nAt that time, one of the Pharisees asked Jesus to dine ", - "id": "Evangelium" - }, - { - "body": "*Ps 136:1*\nBy the streams of Babylon we sat and wept when we remembered Sion.", - "id": "Offertorium" - }, - { - "body": "O Lord, our God, Who have especially commanded that these created things, which You have fashioned for the support of ou", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*Ps 118:49-50*\nRemember Your word to Your servant, O Lord, since You have given me hope. This is my comfort in my afflic", - "id": "Communio" - }, - { - "body": "May we receive with pure mind, O Lord, what we have taken by mouth, and as a gift in time, may it become for us a remedy", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nBe merciful to Your people, we beseech You, O Lord, that as", - "id": "Super populum" - } - ], - "2020-04-03": [ - { - "body": "*Ps 30:10, 16, 18*\nHave pity on me, O Lord, for I am in distress; rescue me from the clutches of my enemies and my perse", - "id": "Introitus" - }, - { - "body": "Graciously pour forth Your grace into our hearts, we beseech You, O Lord, that, keeping our sinful inclinations under co", - "id": "Oratio" - }, - { - "body": "*For Our Lady of the Seven Sorrows*\nO God, in Whose Passion the sword, according to the prophecy of blessed Simeon, pier", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from Jeremiah the Prophet\n*Jer 17:13-18*\nIn those days, Jeremia said: O Lord, all who forsake You shall be in dis", - "id": "Lectio" - }, - { - "body": "*Ps 34:20, 22*\nMy enemies spoke peaceably to me: and in anger they afflicted me.\n℣. You, O Lord, have seen; be not silen", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to\n*John 11:47-54*\nAt that time, the chief priests and Pharisees gathered toge", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12, 121, 42*\nBlessed are You, O Lord; teach me Your statutes. Let not the proud oppress me; so shall I have an a", - "id": "Offertorium" - }, - { - "body": "Grant us, O merciful God, that we may ever have the grace to serve Your altars worthily, and may we be saved by constant", - "id": "Secreta" - }, - { - "body": "*For the Seven Sorrows*\nO Lord Jesus Christ, we offer You prayers and sacrificial gifts, humbly beseeching You that, as ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*Ps 26:12*\nGive me not up, O Lord, to the wishes of my foes; for false witnesses have risen up against me, and such as b", - "id": "Communio" - }, - { - "body": "May the abiding protection of the sacrament we have received, O Lord, never forsake us, and always keep us from all thin", - "id": "Postcommunio" - }, - { - "body": "*For the Seven Sorrows*\nO Lord Jesus Christ, may the sacrifices of which we have partaken, while devoutly celebrating th", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nGrant, we beseech You, almighty God, that we who seek the g", - "id": "Super populum" - } - ], - "2020-04-04": [ - { - "body": "*Ps 30:10, 16, 18*\nHave pity on me, O Lord, for I am in distress; rescue me from the clutches of my enemies and my perse", - "id": "Introitus" - }, - { - "body": "O Lord, may the people dedicated to You desire to serve You more and more, that, taught by these sacred rites, they may ", - "id": "Oratio" - }, - { - "body": "Lesson from the Prophecy of Jeremias\n*Jer 18:18-23*\nIn those days, the wicked Jews said to one another, Come, let us con", - "id": "Lectio" - }, - { - "body": "*Ps 34:20, 22*\nMy enemies spoke peaceably to me: and in anger they afflicted me.\n℣. You, O Lord, have seen; be not silen", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 12:10-36*\nAt that time, the chief priests planned to put Lazarus", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12, 121, 42*\nBlessed are You, O Lord; teach me Your statutes. Let not the proud oppress me; so shall I have an a", - "id": "Offertorium" - }, - { - "body": "Be propitiated, we beg You, O Lord, and pardon all our offenses, whom You grant to be sharers in so great a mystery.\nThr", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*Ps 26:12*\nGive me not up, O Lord, to the wishes of my foes; for false witnesses have risen up against me, and such as b", - "id": "Communio" - }, - { - "body": "O Lord, our God, we beseech You, that we who have been filled with the riches of Your divine gift may always find life w", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLet Your right hand, we beseech You, O Lord, guard Your peo", - "id": "Super populum" - } - ], - "2020-04-05": [ - { - "body": "*The Celebrant in red cope, with his ministers also vested in red, the red of royaltriumph, proceeds to the Blessing", - "id": "Benedictio Palmorum" - }, - { - "body": "*The celebrant distributes the palms, first to the clergy, then to the faithful. Meanwhile the choir sings*\n", - "id": "De distributione ramorum" - }, - { - "body": "*When the palms have been distributed the deacon puts the gospel book on the altar and the priest puts incense into the ", - "id": "De lectione Evangelica" - }, - { - "body": "*The procession now takes place. When the priest places incense in the thurible, the deacon, turning toward the people,", - "id": "De processione cum ramis benedictis" - }, - { - "body": "\n*Choir:*\nGlory, praise and honor to Thee, O King Christ, the Redeemer: to whom children poured their glad and sweet hos", - "id": "Hymnus ad Christum Regem" - }, - { - "body": "*Ps 21:20, 22*\nO Lord, be not far from me; O my help, hasten to aid me. Save me from the lion's mouth; form the horns of", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, Who, to provide mankind an example of humility for it to imitate, willed that the Saviour should ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul to the Philippians\n*Phil 2:5-11*\nBrethren: Have this in mind in you which was also in", - "id": "Lectio" - }, - { - "body": "*Ps 72:24, 1-3*\nYou have hold of my right hand; with Your counsel You guide me; and in the end You will receive me in gl", - "id": "Graduale" - }, - { - "body": "The Passion of Our Lord Jesus Christ according to Matthew.\n*Matt. 26:36-75; 27:1-60.*\nThen Jesus came with them into a c", - "id": "Evangelium" - }, - { - "body": "*Ps 68:21-22*\nInsult has broken my heart, and I am weak; I looked for sympathy, but there was none; for comforters, and ", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*Matt 26:42*\nFather, if this cup cannot pass away, unless I drink it, Your will be done.", - "id": "Communio" - }, - { - "body": "By the working of this sacred rite, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", - "id": "Postcommunio" - } - ], - "2020-04-06": [ - { - "body": "*Ps 34:1-2*\nJudge thou, O Lord, them that wrong me : overthrow them that fight against me. Take hold of arms and shield ", - "id": "Introitus" - }, - { - "body": "Grant, we beseech thee, almighty God, that we who fail through our weakness in so many difficulties, may be relieved thr", - "id": "Oratio" - }, - { - "body": "Lesson from the Book of Isaias, the Prophet\n*Isa 50:5-10*\nThe Lord God hath opened my ear, and I do not resist: I have n", - "id": "Lectio" - }, - { - "body": "*Ps 34:23; 34:3*\nArise, and be attentive to my judgment : to my cause, my God, and my Lord.\n℣. Bring out the sword, and ", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to John\n*John 12:1-9*\nJesus therefore, six days before the pasch, came to Beth", - "id": "Evangelium" - }, - { - "body": "*Ps 142:9-10*\nDeliver me from my enemies, O Lord, to thee have I fled: teach me to do thy will, for thou art my God.", - "id": "Offertorium" - }, - { - "body": "May these sacrifices, almighty God, make us, whom thou cleansest by thy mighty power, to approach their source with grea", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*Ps 34:26*\nLet them blush : and be ashamed together, who rejoice at my evils. Let them be clothed with confusion and sha", - "id": "Communio" - }, - { - "body": "Let thy holy mysteries, O Lord, inspire us with divine fervor, that we may delight both in their celebration and in thei", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nHelp us, O God, our Saviour, and grant that we may draw nig", - "id": "Super populum" - } - ], - "2020-04-07": [ - { - "body": "*Gal 6:14.*\nBut God forbid that I should glory, save in the cross of our Lord Jesus Christ; by whom the world is crucifi", - "id": "Introitus" - }, - { - "body": "Almighty and eternal God, grant us so to celebrate the mysteries of our Lord's Passion, that we may deserve to obtain fo", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Jeremias the Prophet.\n*Jer 11:18-20*\nBut thou, O Lord, hast shewn me, and I have known: then tho", - "id": "Lectio" - }, - { - "body": "*Ps 34:13; 34:1-2*\nBut as for me, when they were troublesome to me, I was clothed with haircloth. I humbled my soul with", - "id": "Graduale" - }, - { - "body": "\n\n \nPassion of our Lord Jesus Christ, according to Mark\n\n*Mark 14:32-72; 15, 1-46*\n\nAnd they came to a farm called Geths", - "id": "Evangelium" - }, - { - "body": "*Ps 139:5*\nKeep me, O Lord, from the hand of the wicked: and from unjust men deliver me.", - "id": "Offertorium" - }, - { - "body": "May these sacrifices, we beseech thee, O Lord, which are observed along with health-giving fasts, speedily restore us.\nT", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*Ps 68:13-14*\nThey that sat in the gate spoke against me: and they that drank wine made me their song. But as for me, my", - "id": "Communio" - }, - { - "body": "By thy holy mysteries, almighty God, may our vices be cured, and everlasting healing be granted to us.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nMay thy mercy, O God, cleanse us from all traces of our old", - "id": "Super populum" - } - ], - "2020-04-08": [ - { - "body": "*Phil 2:10; 2:8; 2:11*\nThat in the name of Jesus every knee should bow, of those that are in heaven, on earth, and under", - "id": "Introitus" - }, - { - "body": "Grant we beseech thee Almighty God, that we who are continually afflicted by reason of our waywardness, may be delivered", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias the Prophet\n*Isa 63:1-7*\nThus sayeth the Lord God: telleth the daughter of Sion: Behold t", - "id": "LectioL1" - }, - { - "body": "*Ps 68:18; 68:2-3*\nAnd turn not away thy face from thy servant: for I am in trouble, hear me speedily.\n℣. Save me, O God", - "id": "GradualeL1" - }, - { - "body": "O God, who to drive far from us the power of the enemy, didst will that thy Son should suffer for us on the gibbet of th", - "id": "OratioL1" - }, - { - "body": "Lesson from the book of Isaias the Prophet\n*Isa 53:1-12*\nWho hath believed our report? and to whom is the arm of the Lor", - "id": "Lectio" - }, - { - "body": "*Ps. 101:2-5,14*\nHear, O Lord, my prayer: and let my cry come to thee.\n℣. Turn not away thy face from me: in the day whe", - "id": "Graduale" - }, - { - "body": "\n\n \nThe Passion of Our Lord Jesus Christ according to Luke.\n\n*Luc 22:39-71; 23:1-53*\n\n\nAt that time, going out, Jesus we", - "id": "Evangelium" - }, - { - "body": "*Ps 101:2-3*\nHear, O Lord, my prayer: and let my cry come to thee. Turn not away thy face from me.", - "id": "Offertorium" - }, - { - "body": "Accept, we beseech thee, O Lord, the gift we offer; and graciously effect, that what we celebrate in mystery of the Pass", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*Ps 101:13; 101:14*\nI mingled my drink with weeping: for having lifted me up, tho hast thrown me down, and I am withered", - "id": "Communio" - }, - { - "body": "Grant to us, almighty God, to feel that through the temporal death of thy Son which these venerable mysteries testify, w", - "id": "Postcommunio" - }, - { - "body": "*Prayer over the people*\nLet us pray.\nBow your heads to God.\nLook down we beseech thee, O Lord, on this thy family on wh", - "id": "Super populum" - } - ], - "2020-04-09": [ - { - "body": "*Gal 6:14.*\nBut it behooves us to glory in the cross of Our Lord Jesus Christ: in Whom is our salvation, life, and resur", - "id": "Introitus" - }, - { - "body": "O God, from whom Judas received the punishment of his guilt, and the thief the reward of his confession: grant unto us t", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of blessed Paul the Apostle to the Corinthians\n*1 Cor 11:20-32.*\nBrethren, When you come th", - "id": "Lectio" - }, - { - "body": "*Phil 2:8-9*\nChrist became obedient for us unto death, even to the death of the cross.\n℣. For which cause God also exalt", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the holy Gospel according to John\n*Joann 13:1-15*\nBefore the festival-day of the Pasch, Jesus knowing ", - "id": "Evangelium" - }, - { - "body": "*The washing of the feet takes place after the homily, though it may be done at some other time to-day. The celebrant gi", - "id": "Maundi" - }, - { - "body": "*Ps 117:16 et 17.*\nThe right hand of the Lord hath wrought strength: the right hand of the Lord hath exalted me. I shall", - "id": "Offertorium" - }, - { - "body": "We beseech Thee, O holy Lord, Father almighty, everlasting God, that He Himself may render our Sacrifice acceptable to T", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "Communicating and celebrating the most sacred day in which our Lord Jesus Christ was betrayed for us: and also honoring ", - "id": "Communicantes" - }, - { - "body": "*Joann 13:12, 13 et*\nThe Lord Jesus, after He had supped with His disciples, washed their feet, and said to them: Know y", - "id": "Communio" - }, - { - "body": "Strengthened with life-giving Food, we beseech Thee, O Lord, our God, that what we do in our mortal life may bring us to", - "id": "Postcommunio" - }, - { - "body": "*Po skończeniu Mszy św. kapłan zmienia ornat na kapę i okadziwszy Najświętszy Sakrament przenosi Go w uroczystej procesj", - "id": "Post Missam" - }, - { - "body": "\n*On the returning from the Altar of Repose the Celebrant and his assistants go to the Sacristy where white vestmen", - "id": "Denudatione altaris" - } - ], - "2020-04-10": [ - { - "body": "\n*The sacred ministers, wearing black stoles, come to the altar, lie prostrate before it, and pray silently for a few mo", - "id": "Lectiones" - }, - { - "body": "*The Deacons of the Passion then kneel and bow low before the celebrant, who pronounces in a clear voice:*\n\nP. May the L", - "id": "Passio" - }, - { - "body": "*While the Sacred Ministers put on black vestments, two acolytes spread a cloth on the altar and place the Missal in the", - "id": "Oratio Fidelium" - }, - { - "body": "\n*After these Collects, the Ministers lay aside their cope and chasubles and stand at the sedilia. The Deacon goes with", - "id": "Crucis Adoratione" - }, - { - "body": "*At the High Altar the Deacon places the Ciborium on a corporal, and the Celebrant and Subdeacon with double genuflectio", - "id": "CommunioQ" - } - ], - "2020-04-11": [ - { - "body": "*At the appointed hour, the altar is prepared, but candles are not lit until the beginning of Mass. Meanwhile, fire is s", - "id": "Benedictio ignis" - }, - { - "body": "*One of the ministers carries the paschal candle and stands in front of the celebrant, who inscribes a cross between the", - "id": "De benedictione cerei Paschalis" - }, - { - "body": "*Celebrant puts incense in the thurible. The Deacon takes off*\n*violet vestments and he puts white stole and the dalmati", - "id": "De solemni processione" - }, - { - "body": "*The deacon receives the book and asks for the blessing*\n\nSir, give me Thy blessing.\n\n*Celebrant responses*\n\nC. May the ", - "id": "De praeconio paschali" - }, - { - "body": "*The deacon, at the sedilia or some other appropriate place, lays aside his white vestments and again vests in violet. T", - "id": "De lectionibus" - }, - { - "body": "*After the prayer concluding the fourth reading, all kneel, and the Litany of the Saints is sung, up to the invocation '", - "id": "De prima parte Litaniarum" - }, - { - "body": "℣. The Lord be with you.\n℟. And with thy spirit.\nLet us pray\nAlmighty and everlasting God, be present at these Mysteries", - "id": "De benedictione aquae baptismalis" - }, - { - "body": "\n*The celebrant Then he stands in front of the candle, facing the people, or from the ambo or pulpit, proceeds with the ", - "id": "De renovatione promissionum baptismatis" - }, - { - "body": "*After the renewal of baptismal promises, if there are cantors or clerics present to sing the litany, the celebrant and ", - "id": "De altera parte Litaniarum" - }, - { - "body": "*At the end of the litany, the cantors solemnly intone the 'Kyrie, eleison' as the celebrant and the sacred ministers or", - "id": "De Missa solemni Vigiliae paschalis" - }, - { - "body": "℣. The Lord be with you.\n℟. And with thy spirit.\nLet us pray\nO God, who dost illuminate this most holy night by the glor", - "id": "Oratio" - }, - { - "body": "Lesson from the Epistle of Blessed Paul the Apostle to the Colossians.\n*Col 3:1-4*\nBrethren, if you be risen with Christ", - "id": "Lectio" - }, - { - "body": "*Ps 116*\n℣. O praise the Lord, all ye nations, and praise Him all ye people.\n℣. For His mercy is confirmed upon us: and ", - "id": "Tractus" - }, - { - "body": "*While singing the Gospel candles are not being hold.*\n\nContinuation of the holy Gospel according to St. Matthew.\n*Matt ", - "id": "Evangelium" - }, - { - "body": "Accept, we beseech Thee, O Lord, the prayers of Thy people together with the sacrifice they offer: that what has begun b", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*The choir begins singing the office of Lauds upon completion of the ablutions.*\n\n\nAnt. Alleluia, alleluia, alleluia.\n\n*", - "id": "Pro Laudibus" - }, - { - "body": "℣. The Lord be with you.\n℟. And with thy spirit.\nLet us pray\nPour forth upon us, O Lord, the spirit of Thy love: that th", - "id": "Postcommunio" - }, - { - "body": "℣. Go, the Mass is offered, alleluia, alleluia.\n℟. Thanks be to God, alleluia, alleluia.", - "id": "Conclusio" - } - ], - "2020-04-12": [ - { - "body": "*Ps. 1:38; 1:18; 1:5-6*\nI arose, and am still with Thee, alleluia; Thou hast laid Thy hand upon me, alleluia; Thy knowle", - "id": "Introitus" - }, - { - "body": "O God, who, on this day, through Thine only-begotten Son, hast conquered death, and thrown open to us the gate of everla", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor 5:7-8*\nBrethren, purge out the old leaven", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia\n*Ps. 117:24; 117:1*\nThis is the day which the Lord hath made: let us rejoice and be glad in it.\n℣. Gi", - "id": "Graduale" - }, - { - "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:1-7*\nAt that time, Mary Magdalen, and Mary the mother of Ja", - "id": "Evangelium" - }, - { - "body": "*Ps. 75:9-10.*\nThe earth trembled and was still when God arose in judgment, alleluia.", - "id": "Offertorium" - }, - { - "body": "We beseech Thee, O Lord, accept the prayers of Thy people together with the Sacrifice they offer, that what has been beg", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*1 Cor 5:7-8*\nChrist our Pasch is immolated, alleluia: therefore let us feast with the unleavened bread of sincerity and", - "id": "Communio" - }, - { - "body": "Pour forth upon us, O Lord, the spirit of Thy love, that, by Thy loving kindness, Thou mayest make to be of one mind tho", - "id": "Postcommunio" - } - ], - "2020-04-13": [ - { - "body": "*Exod 13:5; 13:9*\nAnd when the Lord shall have brought thee a land that floweth with milk and honey, alleluia; and that ", - "id": "Introitus" - }, - { - "body": "O God, Who dost heal the sick world by the solemn gladness of the Passover, continue, we beseech thee, to pour forth thi", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 10:37-43.*\nIn those days Peter standing among the people, said: You know the word", - "id": "Lectio" - }, - { - "body": "*Ps 117:24; 117:2.*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n℣. Let Israel now say,", - "id": "Graduale" - }, - { - "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 24:13-35*\nIn that time two of them went, the same day, to a to", - "id": "Evangelium" - }, - { - "body": "*Matt 28:2; 28:5-6*\nAn angel of the Lord descended from heaven, and said to the women: Jesus, whom you seek He is not he", - "id": "Offertorium" - }, - { - "body": "Adept, O Lord we beseech thee, the prayers with the sacrifices of the people, and grant that what we have begun at these", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Luke 24:34*\nThe Lord is risen indeed, and hath appeared to Simon.", - "id": "Communio" - }, - { - "body": "Pour forth upon us, O Lord, the spirit of Thy love, that, by Thy loving kindness, Thou mayest make to be of one mind tho", - "id": "Postcommunio" - } - ], - "2020-04-14": [ - { - "body": "*Sir 15:3-4*\nShe give them the water of wholesome wisdom to drink, alleluia; and she shall be made strong in him, and he", - "id": "Introitus" - }, - { - "body": "O God, Who art ever multiplying the Children of thy Church, grant unto the same thy servants that they may lead the rest", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 13:16; 13:26-33*\nIn that time Paul rising up, and with his hand bespeaking silenc", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia\n*Ps 117:24;*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n*Ps 106:2*", - "id": "Graduale" - }, - { - "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 24:36-47*\nIn that time Jesus stood in the midst of them, and s", - "id": "Evangelium" - }, - { - "body": "*Ps 17:14; 17:16*\nAnd the Lord thundered from heaven, and the highest gave his voice: Then the fountains of waters appe", - "id": "Offertorium" - }, - { - "body": "Accept, O Lord, the prayers and the sacrifice of thy faithful; that by these services of pious devotion, we may come to ", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Col 3:1-2*\nIf you be risen with Christ, seek the things that are above; where Christ is sitting at the right hand of Go", - "id": "Communio" - }, - { - "body": "Grant, we beseech thee, Almighty God, that the grace of paschal sacrament which we have received may ever abide in our s", - "id": "Postcommunio" - } - ], - "2020-04-15": [ - { - "body": "*Matt 25:34*\nCome, ye blessed of my Father, possess you the kingdom alleluia, prepared for you from the foundation of th", - "id": "Introitus" - }, - { - "body": "O God, Who dost every year fill us with holy gladness for the Again rising of the Lord, mercifully grant that these Feas", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 3:13-15; 3:17-19*\nIn that time, Peter opened his mouth and said: Men of Israel, a", - "id": "Lectio" - }, - { - "body": "*Ps 117:24; 117:16*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n℣. The right hand of t", - "id": "Graduale" - }, - { - "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 21:1-14*\nIn that time, Jesus shewed himself again to the disci", - "id": "Evangelium" - }, - { - "body": "*Ps 77:23-25*\nAnd he had opened the doors of heaven, and had given them the bread of heaven. Man ate the bread of angel", - "id": "Offertorium" - }, - { - "body": "Amidst the joys of Easter, we offer unto thee, O Lord, the sacrifice wherewith thy Church is wonderfully fed and nourish", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Rom 6:9*\nChrist rising again from the dead, dieth now no more, death shall no more have dominion over him, allelúja, al", - "id": "Communio" - }, - { - "body": "O Lord, we beseech Thee, that we, reverently receiving thy Sacrament, may be cleansed from all our former defilement, an", - "id": "Postcommunio" - } - ], - "2020-04-16": [ - { - "body": "*Wis 10:20-21*\nThey sung to thy holy name, O Lord, and they praised with one accord thy victorious hand, alleluia. For w", - "id": "Introitus" - }, - { - "body": "O God, Who dost make all nations, how diverse soever they be, to become one family in giving of praise to thy Name, gran", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 8:26-40*\nIn that time, an angel of the Lord spoke to Philip, saying: Arise, go to", - "id": "Lectio" - }, - { - "body": "*Ps 117:24; 117:22-23.*\nThis is the day which the Lord hath made: let us be glad and rejoice therein.\n℣. The stone which", - "id": "Graduale" - }, - { - "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20:11-18*\nIn that time: Mary stood at the sepulchre without, w", - "id": "Evangelium" - }, - { - "body": "*Exod 13:5*\nIn the day of your solemnity, said the Lord, I will bring you into a land that floweth with milk and honey, ", - "id": "Offertorium" - }, - { - "body": "Graciously receive, we beseech thee, O Lord, the offering of thy people, and grant that they who are renewed by baptism ", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*1 Pet 2:9*\nBut you are a chosen generation, a kingly priesthood, a holy nation, a purchased people: that you may declar", - "id": "Communio" - }, - { - "body": "O Lord, hear our prayers; that the holy channels of our redemption may obtain us help in this our present life, and secu", - "id": "Postcommunio" - } - ], - "2020-04-17": [ - { - "body": "*Ps 77:53*\nAnd he brought them out in hope, and they feared not: and the sea overwhelmed their enemies, allelúja, allelú", - "id": "Introitus" - }, - { - "body": "Almighty and eternal God, in the Easter sacrament thou instituted the covenant, whereby thou forgavest mankind; grant to", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 3:18-22*\nBeloved: Christ also died once for our sins, the j", - "id": "Lectio" - }, - { - "body": "*Ps 117:24; 117:26-27*\nThis is the day which the Lord hath made: let us be glad and rejoice therein. Blessed be he that ", - "id": "Graduale" - }, - { - "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 28:16-20*\nIn that time: the eleven disciples went into Gal", - "id": "Evangelium" - }, - { - "body": "*Exod 12:14*\nAnd this day shall be for a memorial to you: and you shall keep it a feast to the Lord in your generations ", - "id": "Offertorium" - }, - { - "body": "In thy forgiving mercy, O Lord we pray, accept the sacrifice which we offer, to atone for the sins of those who are born", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 28:18-19*\nAll power is given to me in heaven and in earth. Going therefore, teach ye all nations; baptizing them i", - "id": "Communio" - }, - { - "body": "O Lord, we beseech thee, behold thy people, and as thou hast decided to quicken them with the mysteries of eternity, mer", - "id": "Postcommunio" - } - ], - "2020-04-18": [ - { - "body": "*Ps 104:43*\nHe brought forth his people with joy, and his chosen with gladness, allelúja, allelúja.\n*Ps 4:1*\nGive glory ", - "id": "Introitus" - }, - { - "body": "Grant, we beseech thee, O Almighty God, that we who have kept worshipfully the Easter solemnities, may at last worthily ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:1-10*\nBeloved: Wherefore laying away all malice, and all ", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia\n*Ps 117:24*\nThis is the day the Lord has made; let us be glad and rejoice in it. Allelúja,\n*Ps 112:1*", - "id": "Graduale" - }, - { - "body": "Christians! to the Paschal Victim offer your thankful praises.\nThe Lamb the sheep redeemeth: Christ, who only is sinless", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20:1-9*\nIn that time, on the first day of the week, Mary Magda", - "id": "Evangelium" - }, - { - "body": "*Ps 117:26-27*\nBlessed be he that cometh in the name of the Lord. We have blessed you out of the house of the Lord. The ", - "id": "Offertorium" - }, - { - "body": "Grant us O Lord, we beseech thee, ever to rejoyce in these Paschal mysteries, that, by the continual application of our ", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Gal 3:27*\nFor as many of you as have been baptized in Christ, have put on Christ, allelúja.", - "id": "Communio" - }, - { - "body": "Invigorated by the gift of redemption, we beseech thee, O Lord, that by this means of eternal salvation, the true faith ", - "id": "Postcommunio" - } - ], - "2020-04-19": [ - { - "body": "*1 Pet 2:2*\nAs newborn babes, alleluia, desire the rational milk without guile, alleluia, alleluia, alleluia.\n*Ps. 80. 2", - "id": "Introitus" - }, - { - "body": "Grant, we beseech Thee, almighty God, that we who have celebrated the Paschal Feast, may, by Thy bounty, retain its frui", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St John the Apostle\n*1 John 5:4-10*\nDearly beloved, Whatsoever is born of God overcometh", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Matt 28:7*\n℣. On the day of My Resurrection, saith the Lord, I will go before you into Galilee. All", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20. 19-31*\nAt that time, when it was late that same day, the f", - "id": "Evangelium" - }, - { - "body": "*Matt 28:2; 28:5-6*\nAn Angel of the Lord descended from heaven, and said to the women; He whom you seek is risen, as He ", - "id": "Offertorium" - }, - { - "body": "Receive, we beseech Thee, O Lord, the gifts of Thine exultant Church: and to her whom Thou hast given cause for so great", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*John 20:27*\nPut in thy hand, and know the place of the nails, alleluia; and be not faithless, but believing, alleluia, ", - "id": "Communio" - }, - { - "body": "We beseech Thee, O Lord, our God, to make the most holy Mysteries which Thou hast given us as a defense of our renewal, ", - "id": "Postcommunio" - } - ], - "2020-04-20": [ - { - "body": "*1 Pet 2:2*\nAs newborn babes, alleluia, desire the rational milk without guile, alleluia, alleluia, alleluia.\n*Ps. 80. 2", - "id": "Introitus" - }, - { - "body": "Grant, we beseech Thee, almighty God, that we who have celebrated the Paschal Feast, may, by Thy bounty, retain its frui", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St John the Apostle\n*1 John 5:4-10*\nDearly beloved, Whatsoever is born of God overcometh", - "id": "Lectio" - }, - { - "body": "\n*Matt 28:7*\n℣. On the day of My Resurrection, saith the Lord, I will go before you into Galilee. \n*John 20:26*\nAfter ei", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20. 19-31*\nAt that time, when it was late that same day, the f", - "id": "Evangelium" - }, - { - "body": "*Matt 28:2; 28:5-6*\nAn Angel of the Lord descended from heaven, and said to the women; He whom you seek is risen, as He ", - "id": "Offertorium" - }, - { - "body": "Receive, we beseech Thee, O Lord, the gifts of Thine exultant Church: and to her whom Thou hast given cause for so great", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*John 20:27*\nPut in thy hand, and know the place of the nails, alleluia; and be not faithless, but believing, alleluia, ", - "id": "Communio" - }, - { - "body": "We beseech Thee, O Lord, our God, to make the most holy Mysteries which Thou hast given us as a defense of our renewal, ", - "id": "Postcommunio" - } - ], - "2020-04-21": [ - { - "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", - "id": "Introitus" - }, - { - "body": "O God, who didst give blessed Anselm to be thy people minister in eternal salvation grant we pray, that that we who have", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Eccli 45:9*\nThe Lord loved him and decorated him: He hath clothed him in a stole of glory.\n*Osee 14", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "*Pro Doctore pontifice*\nMay the pious prayer of holy Anselm thy Bishop and illustrious Doctor be not wanting to us, O Lo", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "*Pro Doctore Pontifice.*\nMay blessed Anselm thy Bishop and illustrious Doctor intercede for us, O Lord, that this thy sa", - "id": "Postcommunio" - } - ], - "2020-04-22": [ - { - "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", - "id": "Introitus" - }, - { - "body": "Look forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, by the intercession of blessed ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja\n*Matt 16:18*\nAnd I say to thee: That thou art Peter; and upon this rock I will build My Church.\n*Ps 4", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", - "id": "Offertorium" - }, - { - "body": "By the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that thy flock may everywhere pr", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", - "id": "Communio" - }, - { - "body": "Being appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that under thy direction and pow", - "id": "Postcommunio" - } - ], - "2020-04-23": [ - { - "body": "*1 Pet 2:2*\nAs newborn babes, alleluia, desire the rational milk without guile, alleluia, alleluia, alleluia.\n*Ps. 80. 2", - "id": "Introitus" - }, - { - "body": "Grant, we beseech Thee, almighty God, that we who have celebrated the Paschal Feast, may, by Thy bounty, retain its frui", - "id": "Oratio" - }, - { - "body": "*Commemoration St. George*\nO God, Who dost gladden us through the worthy deeds and prayers of thy blessed martyr George,", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St John the Apostle\n*1 John 5:4-10*\nDearly beloved, Whatsoever is born of God overcometh", - "id": "Lectio" - }, - { - "body": "\n*Matt 28:7*\n℣. On the day of My Resurrection, saith the Lord, I will go before you into Galilee. \n*John 20:26*\nAfter ei", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20. 19-31*\nAt that time, when it was late that same day, the f", - "id": "Evangelium" - }, - { - "body": "*Matt 28:2; 28:5-6*\nAn Angel of the Lord descended from heaven, and said to the women; He whom you seek is risen, as He ", - "id": "Offertorium" - }, - { - "body": "Receive, we beseech Thee, O Lord, the gifts of Thine exultant Church: and to her whom Thou hast given cause for so great", - "id": "Secreta" - }, - { - "body": "*Commemoration St. George*\nHallow, O Lord, the gifts we offer, and through the intercession of blessed George, thy Marty", - "id": "Commemoratio Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*John 20:27*\nPut in thy hand, and know the place of the nails, alleluia; and be not faithless, but believing, alleluia, ", - "id": "Communio" - }, - { - "body": "We beseech Thee, O Lord, our God, to make the most holy Mysteries which Thou hast given us as a defense of our renewal, ", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. George*\nWe humbly beseech thee, almighty God, wouchsafe to grant that we, whom thou hast refreshed by", - "id": "Commemoratio Postcommunio" - } - ], - "2020-04-24": [ - { - "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", - "id": "Introitus" - }, - { - "body": "Grant, we beseech thee, almighty God, that we who celebrate the martyrdom of blessed N., through his intercession be str", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nShe conducted the just, when he fled from his brother's wrath, through the", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6.*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints.", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:34-42*\nIn that time: Jesus said to his disciples: Do not", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", - "id": "Offertorium" - }, - { - "body": "As thou hast received our gifts and prayers, O Lord, cleanse us, we ask by thy heavenly mysteries, and graciously hear u", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", - "id": "Communio" - }, - { - "body": "Grant, we beseech thee, O our God, that we who in time render joyful service in memory of thy saints, may be gladdened b", - "id": "Postcommunio" - } - ], - "2020-04-25": [ - { - "body": "*Ps 63:3*\nThou hast protected me from the assembly of the malignant; from the multitude of the workers of iniquity. alle", - "id": "Introitus" - }, - { - "body": "O God, Who didst exalt thy blessed Evangelist Mark, by giving him grace to preach thine Evangel, grant unto us, we besee", - "id": "Oratio" - }, - { - "body": "*Pro rogationibus*\nGrant, we beseech thee, O Almighty God, that we who in our tribulation are yet of good cheer because ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ezekiel\n*Ezek 1:10-14*\nAnd as for the likeness of their faces: there was the face of a man, and ", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints. ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nIn that time: the Lord appointed also other seventy-tw", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints, allelúja. allelúja.", - "id": "Offertorium" - }, - { - "body": "We offer thee our gifts, O Lord, on the Festival of blessed Mark, thy Evangelist, and we pray, that we may ever profit b", - "id": "Secreta" - }, - { - "body": "*Pro rogationibus*\nWe beseech thee, O Lord that these offerings may both loosen the bonds of our wickedness, and obtain ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Ps 63:11*\nThe just shall rejoice in the Lord, and shall hope in him: and all the upright in heart shall be praised, all", - "id": "Communio" - }, - { - "body": "May thy holy mysteries, we ask, O Lord, be to us a continual safeguard, and through the prayers of blessed Mark, thy Eva", - "id": "Postcommunio" - }, - { - "body": "*Pro rogationibus*\nMercifully grant our prayers, we beseech thee, O Lord, that while we receive thy gifts in tribulation", - "id": "Commemoratio Postcommunio" - } - ], - "2020-04-26": [ - { - "body": "*Ps 32:5-6*\nThe earth is full of the goodness of the Lord, alleluia: by the word of the Lord were the heavens made, alle", - "id": "Introitus" - }, - { - "body": "O God, who, by the humility of Thy Son, didst lift up a fallen world, grant unending happiness to Thy faithful: that tho", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:21-25*\nDearly beloved, Christ suffered for us, leaving yo", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Luke 24:35*\nThe disciples knew the Lord Jesus in the breaking of bread. Allelúja.\n*John 10:14*\nI am", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time Jesus said to the Pharisees: I am the g", - "id": "Evangelium" - }, - { - "body": "*Ps 62:2; 62:5*\nO God, my God, to Thee do I watch at break of day: and in Thy Name I will lift up my hands, allelúja.", - "id": "Offertorium" - }, - { - "body": "May this holy offering, O Lord, always bring to us Thy healing blessing: that what it represents in a Mystery, it may ac", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*John 10:14*\nI am the good Shepherd, alleluia: and I know My sheep, and Mine know Me, allelúja, allelúja.", - "id": "Communio" - }, - { - "body": "Grant unto us, we beseech Thee, almighty God, that having received the grace of a new life, we may ever glory in Thy gif", - "id": "Postcommunio" - } - ], - "2020-04-27": [ - { - "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", - "id": "Introitus" - }, - { - "body": "O God, who didst give strength and learning to blessed Peter thy Confessor for the defense of the Catholic faith, mercif", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Eccli 45:9*\nThe Lord loved him and decorated him: He hath clothed him in a stole of glory.\n*Osee 14", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "May the pious prayer of holy Peter thy Confessor and illustrious Doctor be not wanting to us, O Lord, but make our offer", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "May blessed Peter thy Confessor and illustrious Doctor intercede for us, O Lord, that this thy sacrifice may obtain for ", - "id": "Postcommunio" - } - ], - "2020-04-28": [ - { - "body": "*Gal 2:19-20*\nWith Christ I am nailed to the cross. And I live, now not I; but Christ liveth in me. And that I live now ", - "id": "Introitus" - }, - { - "body": "Lord Jesus Christ, Who didst gift thine holy servant Paul with great love that he might preach the mystery of thy cross,", - "id": "Oratio" - }, - { - "body": "*For St. Vitalis, Martyr*\nGrant we beseech the almighty God, that we who celebrate the martyrdom of blessed Vitalis, thr", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor 1:17-25.*\nBrothers: Christ sent me not to", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*2 Cor 5:15*\nAnd Christ died for all; that they also who live, may not now live to themselves, but un", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nIn that time: the Lord appointed also other seventy-tw", - "id": "Evangelium" - }, - { - "body": "*Eph 5:2*\nAnd walk in love, as Christ also hath loved us, and hath delivered himself for us, an oblation and a sacrifice", - "id": "Offertorium" - }, - { - "body": "May these mysteries of thy passion and death, O Lord, fill us with that heavenly fervor, with which St. Paul, when he of", - "id": "Secreta" - }, - { - "body": "*For St. Vitalis, Martyr*\nAs thou hast received our gifts and prayers, O Lord, cleanse us, we ask by thy heavenly myster", - "id": "Commemoratio Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*1 Pet 4:13*\nBut if you partake of the sufferings of Christ, rejoice that when his glory shall be revealed, you may also", - "id": "Communio" - }, - { - "body": "We have received, O Lord, the divine sacrament, which is a perpetual memorial, of thy boundless love; grant we pray, tha", - "id": "Postcommunio" - }, - { - "body": "*For St. Vitalis, Martyr*\nGrant, we pray, O Lord our God, that we who in time render joyful service in memory of thy sai", - "id": "Commemoratio Postcommunio" - } - ], - "2020-04-29": [ - { - "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", - "id": "Introitus" - }, - { - "body": "Grant us grace, we beseech thee, O Almighty God, to follow with zeal conformable thereto after the pattern of that great", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim 2:8-10; 3:10-12*\nBe mindful that the Lord Jesus ", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6.*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints.", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:34-42*\nIn that time: Jesus said to his disciples: Do not", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", - "id": "Offertorium" - }, - { - "body": "Graciously regard, O Lord, the prayers we offer thee, through the intercession of blessed Peter, thy Martyr; and keep ev", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", - "id": "Communio" - }, - { - "body": "May the Sacrament, O Lord, which we, the faithful people have received, hold us in safe keeping, and through the interce", - "id": "Postcommunio" - } - ], - "2020-04-30": [ - { - "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", - "id": "Introitus" - }, - { - "body": "Hear us, O God, our Saviour, that as we are gladdened by the festival of blessed N. thy virgin, so we may learn from it ", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", - "id": "Lectio" - }, - { - "body": "Allelúia, allelúja\n*Ps 44:15-16*\nAfter her shall virgins be brought to the king: They shall be brought with gladness and", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", - "id": "Offertorium" - }, - { - "body": "May the service of thy holy people be acceptable to Thee, O Lord, and honorable to thy saints, through whose merits we k", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", - "id": "Communio" - }, - { - "body": "Thou hast fed thy servants, O Lord, with the holy gifts; comfort us ever we pray, by her intercession whose festival we ", - "id": "Postcommunio" - } - ], - "2020-05-01": [ - { - "body": "*Sap. 10:17*\nWisdom rendered to the just the wages of their labors, and conducted them in a wonderful way: and she was t", - "id": "Introitus" - }, - { - "body": "O God, Creator of all things, Who dost impose on man the law of work; grant in Thy goodness that, by the example and pat", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul to the Colossians\n*Col. 3:14-15, 17, 23-24*\nBrethren: Have charity, which is the bond", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\nIn whatever tribulation they shall cry to me, I will hear them and be their protector always. Allelú", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:54-58*\nAt that time: Jesus coming into His country, He t", - "id": "Evangelium" - }, - { - "body": "*Ps 89:17*\nLet the brightness of the Lord our God be upon us: and direct Thou the works of our hands over us; yea, the w", - "id": "Offertorium" - }, - { - "body": "May these gifts, the work of our hands, that we offer Thee in sacrifice, O Lord, become for us, by the intercession of b", - "id": "Secreta" - }, - { - "body": "*St. Joseph*\nIt is truly meet and just, right and for our salvation, that we should at all times and in all places, give", - "id": "Prefatio" - }, - { - "body": "*Matt 13:54-55*\nHow came this Man by this wisdom and miracles? Is not this the carpenter's Son? Is not His mother called", - "id": "Communio" - }, - { - "body": "May these holy mysteries which we have received, O Lord, by the intercession of blessed Joseph, supply what is wanting i", - "id": "Postcommunio" - } - ], - "2020-05-02": [ - { - "body": "*Ecclus 15:5.*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and u", - "id": "Introitus" - }, - { - "body": "Hear, we beseech You, O Lord, our prayers which we offer You on the feast of blessed Athanasius, Your Bishop and Confess", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 4:5-14*\nBrethren: We preach not ourselv", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Ps. 109:4.*\n℣. You are a priest forever, according to the order of Melchisedec. Alleluia.\n*Jas 1:12", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:23-28*\nAt that time, Jesus said to His disciples, When t", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, that the yearly feast of Saint Athanasius, Your Confessor, make us pleasing to You; that the rit", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 10:27*\nWhat I tell you in darkness, speak it in the light, says the Lord; and what you hear whispered, preach it o", - "id": "Communio" - }, - { - "body": "O God, the rewarder of faithful souls, grant that we may obtain pardon through the prayers of blessed Athanasius, Your C", - "id": "Postcommunio" - } - ], - "2020-05-03": [ - { - "body": "*Ps 65:1-2*\nShout with joy to God, all the earth, allelúja, sing ye a psalm to his name, allelúja; give glory to his pra", - "id": "Introitus" - }, - { - "body": "Almighty God, Who showest to them that be in error the light of thy truth, to the intent that they may return into the w", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:11-19*\nDearly beloved, I beseech you as strangers and pil", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 110:9*\nHe hath sent redemption to his people:\n*Luke 24:46*\nThus it behoved Christ to suffer, and", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:16-22*\nIn that time: Jesus said to his disciples: A little ", - "id": "Evangelium" - }, - { - "body": "*Ps 145:2*\nPraise the Lord, O my soul, in my life I will praise the Lord: as long as I shall be. Allelúja.", - "id": "Offertorium" - }, - { - "body": "Confer on us, O Lord, by these mysteries the moderation of our earthly desires: and teach us to love the things of heave", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*John 16:16*\nA little while, and now you shall not see me; and again a little while, and you shall see me: because I go ", - "id": "Communio" - }, - { - "body": "May the Sacraments which we have received, O Lord, we ask, refresh us with spiritual nourishment, and preserve us with b", - "id": "Postcommunio" - } - ], - "2020-05-04": [ - { - "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", - "id": "Introitus" - }, - { - "body": "O God, the consoler of those Who mourn and the safety of those who put their trust in You; Who mercifully accepted the h", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to Timothy\n*1 Tim. 5:3-10.*\nBeloved: Honor widows who are truly wid", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Ps 44:5*\nIn your splendor and your beauty ride on triumphant, and reign. Alleluia.\n℣. In the cause ", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:11-16.*\nAt that time, Jesus went to a town called Naim; and ", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", - "id": "Offertorium" - }, - { - "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", - "id": "Communio" - }, - { - "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", - "id": "Postcommunio" - } - ], - "2020-05-05": [ - { - "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", - "id": "Introitus" - }, - { - "body": "O, God, Who graciously chose blessed Pius as Supreme Pontiff, to crush the enemies of Your Church and to restore divine ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja\n*Matt 16:18*\nAnd I say to thee: That thou art Peter; and upon this rock I will build My Church.\n*Ps 4", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", - "id": "Offertorium" - }, - { - "body": "Having offered You our gifts, we beseech You, O Lord, mercifully to enlighten Your Church, so that Your flock may everyw", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", - "id": "Communio" - }, - { - "body": "Since Your Church has been nourished by sacred food, govern her in Your clemency, we beseech You, O Lord, so that under ", - "id": "Postcommunio" - } - ], - "2020-05-06": [ - { - "body": "*Ps 65:1-2*\nShout with joy to God, all the earth, allelúja, sing ye a psalm to his name, allelúja; give glory to his pra", - "id": "Introitus" - }, - { - "body": "Almighty God, Who showest to them that be in error the light of thy truth, to the intent that they may return into the w", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:11-19*\nDearly beloved, I beseech you as strangers and pil", - "id": "Lectio" - }, - { - "body": "\n*Ps 110:9*\nHe hath sent redemption to his people:\n*Luke 24:46*\nThus it behoved Christ to suffer, and to rise again from", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:16-22*\nIn that time: Jesus said to his disciples: A little ", - "id": "Evangelium" - }, - { - "body": "*Ps 145:2*\nPraise the Lord, O my soul, in my life I will praise the Lord: as long as I shall be. Allelúja.", - "id": "Offertorium" - }, - { - "body": "Confer on us, O Lord, by these mysteries the moderation of our earthly desires: and teach us to love the things of heave", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*John 16:16*\nA little while, and now you shall not see me; and again a little while, and you shall see me: because I go ", - "id": "Communio" - }, - { - "body": "May the Sacraments which we have received, O Lord, we ask, refresh us with spiritual nourishment, and preserve us with b", - "id": "Postcommunio" - } - ], - "2020-05-07": [ - { - "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", - "id": "Introitus" - }, - { - "body": "O God, in defense of Whose honor Stanislaus, the glorious Bishop, died by the swords of wicked men, grant, we beseech Yo", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nShe conducted the just, when he fled from his brother's wrath, through the", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6.*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints.", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:34-42*\nIn that time: Jesus said to his disciples: Do not", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", - "id": "Offertorium" - }, - { - "body": "Sanctify, O Lord, the gifts dedicated to You, and by the intercession of Blessed Stanislaus, Your Martyr and Bishop, let", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", - "id": "Communio" - }, - { - "body": "May this Communion, O Lord, cleanse us from guilt, and, through the intercession of Blessed Stanislaus, Your Martyr and ", - "id": "Postcommunio" - } - ], - "2020-05-08": [ - { - "body": "*Ps 65:1-2*\nShout with joy to God, all the earth, allelúja, sing ye a psalm to his name, allelúja; give glory to his pra", - "id": "Introitus" - }, - { - "body": "Almighty God, Who showest to them that be in error the light of thy truth, to the intent that they may return into the w", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 2:11-19*\nDearly beloved, I beseech you as strangers and pil", - "id": "Lectio" - }, - { - "body": "\n*Ps 110:9*\nHe hath sent redemption to his people:\n*Luke 24:46*\nThus it behoved Christ to suffer, and to rise again from", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:16-22*\nIn that time: Jesus said to his disciples: A little ", - "id": "Evangelium" - }, - { - "body": "*Ps 145:2*\nPraise the Lord, O my soul, in my life I will praise the Lord: as long as I shall be. Allelúja.", - "id": "Offertorium" - }, - { - "body": "Confer on us, O Lord, by these mysteries the moderation of our earthly desires: and teach us to love the things of heave", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*John 16:16*\nA little while, and now you shall not see me; and again a little while, and you shall see me: because I go ", - "id": "Communio" - }, - { - "body": "May the Sacraments which we have received, O Lord, we ask, refresh us with spiritual nourishment, and preserve us with b", - "id": "Postcommunio" - } - ], - "2020-05-09": [ - { - "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", - "id": "Introitus" - }, - { - "body": "O God, Who gave to Your people, blessed Gregory, as a minister of salvation, grant, we beseech You, that we who cherishe", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 39:6-14*\nHe will give his heart to resort early to the Lord that made him, a", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Eccli 45:9*\nThe Lord loved him and decorated him: He hath clothed him in a stole of glory.\n*Osee 14", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "May the pious prayer of holy N. thy Bishop and illustrious Doctor be not wanting to us, O Lord, but make our offerings a", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "*Pro Doctore Pontifice.*\nMay blessed N. thy Bishop and illustrious Doctor intercede for us, O Lord, that this thy sacrif", - "id": "Postcommunio" - } - ], - "2020-05-10": [ - { - "body": "*Ps 97:1; 97:2*\nSing ye to the Lord a new canticle, alleluia: because the Lord hath done wonderful things, alleluia. He ", - "id": "Introitus" - }, - { - "body": "O God, of Whom it cometh that the minds of thy faithful people be all of one will, grant unto the same thy people that t", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. James the Apostle\n*Jas 1:17-21*\nDearly beloved: Every best gift, and every perfect gift, i", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Ps 117:16*\nThe right hand of the Lord hath wrought strength: the right hand of the Lord hath exalte", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:5-14*\nAt that time: Jesus said to His disciples: I go to hi", - "id": "Evangelium" - }, - { - "body": "*Ps 65:1-2; 85:16*\nShout with joy to God, all the earth, sing ye a psalm to His Name: come and hear, and I will tell you", - "id": "Offertorium" - }, - { - "body": "O God, who by the august communion of this sacrifice hast make us partakers of one Sovereign Godhead, grant we beseech t", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*John 16:8*\nAnd when he is come, he will convince the world of sin, and of justice, and of judgment, alleluia, alleluia.", - "id": "Communio" - }, - { - "body": "Stand by us, O Lord, our God, that by what we have faithfully received we may be cleansed from our vices and rescued fro", - "id": "Postcommunio" - } - ], - "2020-05-11": [ - { - "body": "*2 Esd. 9:27*\nIn the time of their tribulation they cried to You, O Lord, and You heard them from heaven, alleluia, alle", - "id": "Introitus" - }, - { - "body": "O God, Who gladden us each year by the feast of Your holy Apostles Philip and James, graciously grant that, as we rejoic", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis. 5:1-5*\nThe just shall stand with great assurance before their oppressors who set at", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Ps 88:6*\n℣. The heavens proclaim Your wonders, O Lord, and Your faithfulness, in the assembly of th", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 14:1-13*\nAt that time, Jesus said to His disciples, Let not yo", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6*\nThe heavens proclaim Your wonders, O Lord; and Your faithfulness, in the assembly of the holy ones, alleluia, ", - "id": "Offertorium" - }, - { - "body": "Graciously accept, O Lord, the offerings we bring for the feast of Your Apostles Philip and James, and ward off all the ", - "id": "Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*John 14:9-10.*\nHave I been so long a time with you, and you have not known Me? Philip, he who sees Me sees also My Fath", - "id": "Communio" - }, - { - "body": "Filled with the sacrament of salvation, we beseech You, O Lord, to help us by the prayers of those whose feast we are ce", - "id": "Postcommunio" - } - ], - "2020-05-12": [ - { - "body": "*Ps. 32:18-20.*\nBut see, the eyes of the Lord are upon those who fear Him, upon those who hope in His kindness, alleluia", - "id": "Introitus" - }, - { - "body": "May the holy feast of Your Martyrs, Nereus, Achilleus, Domitilla and Pancras, ever comfort us, we beseech You, O Lord, a", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis 5:1-5.*\nThe just shall stand with great assurance before their oppressors who set at", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n℣. This is the true brotherhood, which overcame the wickedness of the world; it followed Christ, att", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 4:46-53.*\nAt that time, there was a certain royal official who", - "id": "Evangelium" - }, - { - "body": "*Ps. 88:6*\nThe heavens proclaim Your wonders, O Lord, and Your faithfulness, in the assembly of the holy ones, alleluia,", - "id": "Offertorium" - }, - { - "body": "May the witnessing to the faith made by Your holy Martyrs, Nereus, Achilleus, Domitilla and Pancras, be pleasing to You,", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Ps. 32:1*\nExult, you just, in the Lord, alleluia: praise from the upright is fitting, alleluia.", - "id": "Communio" - }, - { - "body": "O Lord, we beseech You, that the holy sacrament we have received may, by the pleadings of Your blessed Martyrs, Nereus, ", - "id": "Postcommunio" - } - ], - "2020-05-13": [ - { - "body": "*Sir 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and under", - "id": "Introitus" - }, - { - "body": "O God, Who endowed blessed Robert, Your Bishop and Doctor, with wondrous learning and virtue to repel the deceits of err", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis. 7:7-14*\nI prayed, and prudence was given me; I pleaded, and the spirit of Wisdom ca", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Dan. 12:3*\n℣. The wise shall shine brightly like the splendor of the firmament. Alleluia.\n℣. Those ", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time Jesus said to His disciples: You are ", - "id": "Evangelium" - }, - { - "body": "*Ps. 72:28*\nBut for me, to be near God is my good; to make the Lord God my refuge. I shall declare all Your works in the", - "id": "Offertorium" - }, - { - "body": "O God, we offer these sacrificial gifts to You as a sweet fragrance; grant that, taught by the counsels and example of b", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 5:14; 5:16*\nYou are the light of the world. Even so, let your light shine before men, in order that they may see y", - "id": "Communio" - }, - { - "body": "May the sacrament we have received, O Lord, our God, enkindle in us the fire of love which flamed so ardently in blessed", - "id": "Postcommunio" - } - ], - "2020-05-14": [ - { - "body": "*Ps 97:1; 97:2*\nSing ye to the Lord a new canticle, alleluia: because the Lord hath done wonderful things, alleluia. He ", - "id": "Introitus" - }, - { - "body": "O God, of Whom it cometh that the minds of thy faithful people be all of one will, grant unto the same thy people that t", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Boniface*\nGrant, almighty God, we beseech You, that we who keep the feast of Your blessed Martyr Boni", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. James the Apostle\n*Jas 1:17-21*\nDearly beloved: Every best gift, and every perfect gift, i", - "id": "Lectio" - }, - { - "body": "\n*Ps 117:16*\nThe right hand of the Lord hath wrought strength: the right hand of the Lord hath exalted me: \n*Rom 6:9*\nKn", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:5-14*\nAt that time: Jesus said to His disciples: I go to hi", - "id": "Evangelium" - }, - { - "body": "*Ps 65:1-2; 85:16*\nShout with joy to God, all the earth, sing ye a psalm to His Name: come and hear, and I will tell you", - "id": "Offertorium" - }, - { - "body": "O God, who by the august communion of this sacrifice hast make us partakers of one Sovereign Godhead, grant we beseech t", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Boniface*\nAccept our offerings and prayers, we beseech You, O Lord; cleanse us by this heavenly rite,", - "id": "Commemoratio Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*John 16:8*\nAnd when he is come, he will convince the world of sin, and of justice, and of judgment, alleluia, alleluia.", - "id": "Communio" - }, - { - "body": "Stand by us, O Lord, our God, that by what we have faithfully received we may be cleansed from our vices and rescued fro", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Boniface*\nWe who have been refreshed by partaking of the sacred gift, beseech You, O Lord, our God, t", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-15": [ - { - "body": "*Ps. 36:30-31.*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in", - "id": "Introitus" - }, - { - "body": "O God, Who raised up the holy Confessor John Baptist for the Christian education of the poor and to strengthen youth in ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Eccli 31:8-11*\nHappy the man found without fault, who turns not aside after gain", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Jas 1:12*\nBlessed is the man who endures temptation; for when he has been tried, he shall receive t", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-5*\nAt that time the disciples came to Jesus, saying, W", - "id": "Evangelium" - }, - { - "body": "*Ps. 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (Alleluia.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - } - ], - "2020-05-16": [ - { - "body": "*Sedelius*\nHail Holy Parent, who didst bring forth the King, who rules heaven and earth forever, allelúja, allelúja.\n*Ps", - "id": "Introitus" - }, - { - "body": "Grant, we beseech thee, O Lord God, unto all thy servants, that they may remain continually in the enjoyment of soundnes", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nFrom the beginning, and before the world, was I created, and unto ", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Num 17:8*\nThe rod of Jesse had blossomed, virgin hath brought forth God and man: God hath restored ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:25-27*\nNow there stood by the cross of Jesus, his mother, a", - "id": "Evangelium" - }, - { - "body": "Blessed art thou, O Virgin Mary, who didst bear the Creator of all things, thou didst bring forth who made thee, and rem", - "id": "Offertorium" - }, - { - "body": "Through thy mercy, O Lord, at the intercession of blessed Mary, ever Virgin, let this offering obtain for us welfare and", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of Eternal Father, alleluia.", - "id": "Communio" - }, - { - "body": "Grant, O Lord, that we who have partaken of aids of salvation, may be everywhere defended by the intercession of Blessed", - "id": "Postcommunio" - } - ], - "2020-05-17": [ - { - "body": "*Isa 48:20*\nDeclare it with the voice of joy: make this to be heard, allelúja: and speak it out even to the ends of the ", - "id": "Introitus" - }, - { - "body": "O God, from Whom all good things do come, grant to us thy humble servants that by thy holy inspiration we may think thos", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St James the Apostle\n*Jas 1:22-27*\nDearly beloved: But be ye doers of the word, and not hearer", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n℣. Christ is risen and hath shone upon us whom he redeemed with his blood. Alleluia.\n*John 16:28*\nI ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 16:23-30*\nIn that time, Jesus said to His disciples: Amen, ame", - "id": "Evangelium" - }, - { - "body": "*Ps 65:8-9; 65:20*\nO bless our God, ye Gentiles: and make the voice of his praise to be heard. Who hath set my soul to l", - "id": "Offertorium" - }, - { - "body": "Receive, O Lord, the prayers of thy faithful with offerings of victims, that by these services of pious devotion we may ", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Ps 95:2*\nSing ye to the Lord and bless his name: shew forth his salvation from day to day, allelúja, allelúja.", - "id": "Communio" - }, - { - "body": "Grant us, O Lord, fed with the virtue of a heavenly table, to desire what is right, and to gain what we desire.\nThrough ", - "id": "Postcommunio" - } - ], - "2020-05-18": [ - { - "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", - "id": "Introitus" - }, - { - "body": "O God, Who made this day holy by the triumph of blessed Venantius, Your Martyr, listen to the prayers of Your people, an", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nShe conducted the just, when he fled from his brother's wrath, through the", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6.*\nThe heavens shall confess thy wonders, O Lord: and thy truth in the church of the saints.", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:34-42*\nIn that time: Jesus said to his disciples: Do not", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", - "id": "Offertorium" - }, - { - "body": "May the merits of blessed Venantius make these sacrificial gifts acceptable to You, almighty God, that, with his help, w", - "id": "Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", - "id": "Communio" - }, - { - "body": "We have partaken of the sacrament of eternal life, humbly entreating You, O Lord, that, through the prayer of blessed Ve", - "id": "Postcommunio" - } - ], - "2020-05-19": [ - { - "body": "*John 21:15-17*\nIf you love Me, Simon Peter, feed My lambs, feed My sheep. Alleluia, alleluia.\n*Ps 29:2*\nI will extol Yo", - "id": "Introitus" - }, - { - "body": "O God, Who raised blessed Peter Celestine to the lofty dignity of Supreme Pontiff and taught him to prefer self-abasemen", - "id": "Oratio" - }, - { - "body": "*For S. Pudentiana*\nGraciously hear us, O God our Saviour, that as we rejoice in the festival of blessed Pudentiana, You", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:1-4; 5:10-11.*\nBeloved: I exhort the presbyters among yo", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Matt 16:18*\n℣. You are Peter and upon this rock I will build My Church. Alleluia.\n*Ps 44:17-18*\nYou", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus, having come into the distric", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nSee, I place My words in your mouth! I set you over nations and over kingdoms, to root up and to tear down,", - "id": "Offertorium" - }, - { - "body": "By the offered gifts we beg You, O Lord: enlighten kindly Your Church: so that Your flock everywhere may be increasing, ", - "id": "Secreta" - }, - { - "body": "*For S. Pudentiana*\nMay the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, th", - "id": "Commemoratio Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build My Church. Alleluia.", - "id": "Communio" - }, - { - "body": "O Lord, we beseech You, graciously govern Your Church, which You have fed with a holy meal; so that, directed by a might", - "id": "Postcommunio" - }, - { - "body": "*For S. Pudentiana*\nYou have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the int", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-20": [ - { - "body": "*Isa. 48:20.*\nDeclare the word of joy, and let it be heard, alleluia: declare it even to the ends of the earth; the Lord", - "id": "Introitus" - }, - { - "body": "O God, from Whom all good things come, grant, we beseech You, that by Your inspiration, we may think what is right and u", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Bernardine of Siena*\nO Lord Jesus, Who bestowed on blessed Bernardine, Your Confessor, an unusual lov", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph. 4:7-13.*\nBrethren: To each one of us grace was giv", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n℣. Christ is risen, and has shone upon us, whom He redeemed with His Blood. Alleluia.\n*John 16:28*\n℣", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 17:1-11.*\nAt that time, raising His eyes to heaven, Jesus said", - "id": "Evangelium" - }, - { - "body": "*Ps 65:8-9, 20*\nBless the Lord our God, you peoples, loudly sound His praise; He has given life to my soul, and has not ", - "id": "Offertorium" - }, - { - "body": "Accept, O Lord, the prayers and gifts of Your faithful people, that, through these rites of love and devotion we may pas", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Bernardine of Siena*\nWe offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting th", - "id": "Commemoratio Secreta" - }, - { - "body": "*Easter*\nIt is truly meet and just, right and for our salvation, at all times to praise Thee, O Lord, but more gloriousl", - "id": "Prefatio" - }, - { - "body": "*Ps. 95:2.*\nSing to the Lord, alleluia; sing to the Lord; bless His name; announce His salvation day after day, alleluia", - "id": "Communio" - }, - { - "body": "Grant, O Lord, that we who have been fed with the strengthening food of Your heavenly table, may desire what is right an", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Bernardine of Siena*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we als", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-21": [ - { - "body": "*Acts 1:11*\nYe men of Galilee, why stand you looking up to heaven? alleluia: This Jesus who is taken up from you into he", - "id": "Introitus" - }, - { - "body": "Grant, we beseech thee, Almighty God, that like as we do believe thine Only-Begotten Son our Saviour to have this day as", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 1:1-11*\nThe former treatise I made, O Theophilus, of all things which Jesus began", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet. Allelúja.\n*Ps 67:18-", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:14-20*\nAt length he appeared to the eleven as they were at ", - "id": "Evangelium" - }, - { - "body": "*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet, allelúja.", - "id": "Offertorium" - }, - { - "body": "Receive, O Lord, the gifts which we offer for the glorious Ascension of thy Son, and mercifully grant that we may be del", - "id": "Secreta" - }, - { - "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", - "id": "Prefatio" - }, - { - "body": "*Ps 67:33-34*\nSing ye to the Lord, who mounteth above the heaven of heavens to the East, alleluia.", - "id": "Communio" - }, - { - "body": "Grant us, we beseech thee, almighty and merciful God, that what we have taken and received in visible mysteries, may pro", - "id": "Postcommunio" - } - ], - "2020-05-22": [ - { - "body": "*Acts 1:11*\nYe men of Galilee, why stand you looking up to heaven? alleluia: This Jesus who is taken up from you into he", - "id": "Introitus" - }, - { - "body": "Grant, we beseech thee, Almighty God, that like as we do believe thine Only-Begotten Son our Saviour to have this day as", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 1:1-11*\nThe former treatise I made, O Theophilus, of all things which Jesus began", - "id": "Lectio" - }, - { - "body": "\n*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet. \n*Ps 67:18-19*\nThe Lord is in Sinai, in", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:14-20*\nAt length he appeared to the eleven as they were at ", - "id": "Evangelium" - }, - { - "body": "*Ps 46:6*\nGod is ascended with jubilee, and the Lord with the sound of trumpet, allelúja.", - "id": "Offertorium" - }, - { - "body": "Receive, O Lord, the gifts which we offer for the glorious Ascension of thy Son, and mercifully grant that we may be del", - "id": "Secreta" - }, - { - "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", - "id": "Prefatio" - }, - { - "body": "*Ps 67:33-34*\nSing ye to the Lord, who mounteth above the heaven of heavens to the East, alleluia.", - "id": "Communio" - }, - { - "body": "Grant us, we beseech thee, almighty and merciful God, that what we have taken and received in visible mysteries, may pro", - "id": "Postcommunio" - } - ], - "2020-05-23": [ - { - "body": "*Sedelius*\nHail Holy Parent, who didst bring forth the King, who rules heaven and earth forever, allelúja, allelúja.\n*Ps", - "id": "Introitus" - }, - { - "body": "Grant, we beseech thee, O Lord God, unto all thy servants, that they may remain continually in the enjoyment of soundnes", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nFrom the beginning, and before the world, was I created, and unto ", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Num 17:8*\nThe rod of Jesse had blossomed, virgin hath brought forth God and man: God hath restored ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:25-27*\nNow there stood by the cross of Jesus, his mother, a", - "id": "Evangelium" - }, - { - "body": "Blessed art thou, O Virgin Mary, who didst bear the Creator of all things, thou didst bring forth who made thee, and rem", - "id": "Offertorium" - }, - { - "body": "Through thy mercy, O Lord, at the intercession of blessed Mary, ever Virgin, let this offering obtain for us welfare and", - "id": "Secreta" - }, - { - "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of Eternal Father, alleluia.", - "id": "Communio" - }, - { - "body": "Grant, O Lord, that we who have partaken of aids of salvation, may be everywhere defended by the intercession of Blessed", - "id": "Postcommunio" - } - ], - "2020-05-24": [ - { - "body": "*Ps. 26:7-9.*\nHear, O Lord, the sound of my call, alleluia; to You my heart speaks; Your glance I seek; Your presence, O", - "id": "Introitus" - }, - { - "body": "Almighty and eternal God, give us a will ever dedicated to You, and a true heart to serve Your majesty.\nThrough our Lord", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 4:7-11.*\nBeloved: Be prudent and watchful in prayers. But a", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Ps. 46:9.*\n℣. The Lord reigns over all the nations, God sits upon His holy throne. Alleluia.\n*John ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:26-27; 16:1-4.*\nAt that time, Jesus said to His disciples: ", - "id": "Evangelium" - }, - { - "body": "*Ps 46:6.*\nGod mounts His throne amid shouts of joy; the Lord, amid trumpet blasts. Alleluia.", - "id": "Offertorium" - }, - { - "body": "May this pure sacrifice cleanse us, O Lord, and impart to our minds the strength of heavenly grace.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", - "id": "Prefatio" - }, - { - "body": "*John 17:12-13; 17:15*\nFather, while I was with them, I kept them whom You have given Me, alleluia; but now I am coming ", - "id": "Communio" - }, - { - "body": "We who have been filled with heavenly gifts beseech You, O Lord, grant us to continue giving thanks to You.\nThrough our ", - "id": "Postcommunio" - } - ], - "2020-05-25": [ - { - "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", - "id": "Introitus" - }, - { - "body": "O God, the strength of those who trust in You, Who fortified blessed Gregory, Your Confessor and Pontiff, with the virtu", - "id": "Oratio" - }, - { - "body": "*For St. Urban*\nO God, Who firmly established Your Church upon the rock of the apostle and delivered her from the dreadf", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja\n*Matt 16:18*\nAnd I say to thee: That thou art Peter; and upon this rock I will build My Church.\n*Ps 4", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", - "id": "Offertorium" - }, - { - "body": "Having offered You our gifts, we beseech You, O Lord, mercifully to enlighten Your Church, so that Your flock may everyw", - "id": "Secreta" - }, - { - "body": "*For St. Urban*\nIn Your loving kindness, O Lord, accept the gifts we joyously offer, and through the intercession of ble", - "id": "Commemoratio Secreta" - }, - { - "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", - "id": "Communio" - }, - { - "body": "Since Your Church has been nourished by sacred food, govern her in Your clemency, we beseech You, O Lord, so that, under", - "id": "Postcommunio" - }, - { - "body": "*For St. Urban*\nIncrease within Your Church, we beseech You, O Lord, the gift of grace You have given her, and through t", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-26": [ - { - "body": "*Rom 5:5*\nThe charity of God is poured forth in our hearts, by His Spirit dwelling within us. (Alleluia, alleluia.)\n*Ps ", - "id": "Introitus" - }, - { - "body": "O God, Who raised blessed Philip, Your Confessor, to the glory of Your Saints, graciously grant that we who rejoice in h", - "id": "Oratio" - }, - { - "body": "*Pro S. Eleutherio*\nBe mindful of our weakness, almighty God, and because the burden of our sins weighs heavily upon us,", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis 7:7-14*\nI prayed, and prudence was given me; I pleaded, and the spirit of Wisdom cam", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Lam 1:13*\n℣. From above He has sent a fire into my bones, and has instructed me. Alleluia.\n*Ps 38:4", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 118:32*\nI will run the way of Your commands when You enlarge my heart. (Alleluia.)", - "id": "Offertorium" - }, - { - "body": "Look favorably, we beseech You, O Lord, upon the sacrificial gifts here before You; and grant that the Holy Spirit may e", - "id": "Secreta" - }, - { - "body": "*Pro S. Eleutherio*\nO Lord, graciously accept, through the merits of Your blessed Martyr and Bishop N., the sacrificial ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", - "id": "Prefatio" - }, - { - "body": "*Ps 83:3*\nMy heart and my flesh cry out for the living God. (Alleluia.)", - "id": "Communio" - }, - { - "body": "Nourished by Your heavenly food, O Lord, we beseech You that, through the merits and example of blessed Philip, Your Con", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Eleutherio*\nRefreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enjoy the ben", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-27": [ - { - "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", - "id": "Introitus" - }, - { - "body": "O God, Who enlightened Your Church with the learning of blessed Bede, Your Confessor and Doctor, graciously grant that Y", - "id": "Oratio" - }, - { - "body": "*For St. John I.*\nO God, Who gladden us with the yearly festival of blessed N., Your Martyr and Bishop, mercifully grant", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Eccli 45:9*\nThe Lord loved him and decorated him: He hath clothed him in a stole of glory.\n*Osee 14", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "May the loving prayer of blessed Bede, Your Bishop and Doctor, fail us never, O Lord; may it commend our offerings and e", - "id": "Secreta" - }, - { - "body": "*For St. John I.*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of blessed N., Your Mart", - "id": "Commemoratio Secreta" - }, - { - "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "So that your sacrificial rites may grant us salvation, we pray you, O Lord, that blessed Bede, Your Bishop and illustrio", - "id": "Postcommunio" - }, - { - "body": "*For St. John I.*\nMay this Communion, O Lord, cleanse us of sin, and through the intercession of blessed N., Your Martyr", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-28": [ - { - "body": "*Ps 131:9-10*\nMay Your priests, O Lord, be clothed with justice; let Your faithful ones shout merrily for joy. For the s", - "id": "Introitus" - }, - { - "body": "O God, Who graciously enlightened the English peoples with the light of the true faith by the preaching and miracles of ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Thessalonians\n*1 Thess 2:2-9*\nBrethren: We had confidence in", - "id": "Lectio" - }, - { - "body": "*Ps 109:4*\nAlleluia, alleluia.\n℣. You are a priest forever, according to the order of Melchisedec. Alleluia.\n*Eccli 45:9", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9.*\nAt that time, the Lord appointed seventy-two others, ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exulted.", - "id": "Offertorium" - }, - { - "body": "We offer sacrifice unto You, O Lord, on the feast of blessed Augustine, Your Bishop and Confessor, humbly beseeching You", - "id": "Secreta" - }, - { - "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Strengthened by the sacrifice of salvation, we humbly pray You, O Lord, that through the prayerful intercession of bless", - "id": "Postcommunio" - } - ], - "2020-05-29": [ - { - "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", - "id": "Introitus" - }, - { - "body": "O God, lover of chastity, Who endowed with heavenly gifts blessed Mary Magdalen, a virgin on fire with love for You, gra", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", - "id": "Lectio" - }, - { - "body": "Allelúia, allelúja\n*Ps 44:15-16*\nAfter her shall virgins be brought to the king: They shall be brought with gladness and", - "id": "GradualeP" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", - "id": "Offertorium" - }, - { - "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", - "id": "Secreta" - }, - { - "body": "*Ascension*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", - "id": "Communio" - }, - { - "body": "You have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the intercession of her who", - "id": "Postcommunio" - } - ], - "2020-05-30": [ - { - "body": "*Ez. 36:23-26.*\nWhen I prove My holiness through you, I will gather you from all the foreign lands; and I will sprinkle ", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that the brightness of Your glory may shine upon us, and that the light of Your lig", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 19:1-8.*\nIn those days, it was while Apollos was in Corinth that Paul, after pass", - "id": "Lectio" - }, - { - "body": "Alleluia.\n*Ps 106:1*\nGive thanks to the Lord, for He is good, for His kindness endures forever!\n*Ps. 116:1-2.*\nPraise th", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 14:15-21.*\nAt that time, Jesus said to His disciples, If you l", - "id": "Evangelium" - }, - { - "body": "*Ps. 103:30-31.*\nSend forth Your Spirit, and they shall be created, and You shall renew the face of the earth. May the g", - "id": "Offertorium" - }, - { - "body": "Hallow, we beseech You, O Lord, the gifts we offer, and cleanse our minds through the enlightenment of the Holy Spirit.\n", - "id": "Secreta" - }, - { - "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", - "id": "Prefatio" - }, - { - "body": "*John 7:37-39.*\nOn the last day of the feast, Jesus said, He who believes in Me, from within him there shall flow rivers", - "id": "Communio" - }, - { - "body": "May the inpouring of the Holy Spirit cleanse our hearts, O Lord, and make them fertile through the dew He sprinkles upon", - "id": "Postcommunio" - } - ], - "2020-05-31": [ - { - "body": "*Wis 1:7.*\nThe Spirit of the Lord fills the world, alleluia, is all-embracing, and knows man’s utterance, alleluia, alle", - "id": "Introitus" - }, - { - "body": "O God, You Who on this day have taught the hearts of the faithful by the light of the Holy Spirit, grant us by that Holy", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 2:1-11.*\nWhen the days of Pentecost were drawing to a close, they were all togeth", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Ps. 103:30*\n℣. Send forth Your Spirit, and they shall be created: and You shall renew the face of t", - "id": "Graduale" - }, - { - "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 14:23-31.*\nAt that time, Jesus said to His disciples: If anyon", - "id": "Evangelium" - }, - { - "body": "*Ps 67:29-30*\nConfirm, O God, what You have wrought in us; from Your temple, which is in Jerusalem, kings shall offer gi", - "id": "Offertorium" - }, - { - "body": "Sanctify these offerings, we beseech You, O Lord, and cleanse our hearts by the light of the Holy Spirit.\nThrough our Lo", - "id": "Secreta" - }, - { - "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", - "id": "Prefatio" - }, - { - "body": "*Acts 2:2; 2:4*\nSuddenly there came a sound from heaven, as of a violent wind blowing, where they were sitting, alleluia", - "id": "Communio" - }, - { - "body": "May the inpouring of the Holy Spirit cleanse our hearts, O Lord, and make them fertile through the dew He sprinkles upon", - "id": "Postcommunio" - } - ], - "2020-06-01": [ - { - "body": "*Ps. 80:17*\nHe fed them with the best of wheat, alleluia: and filled them with honey from the rock, alleluia, alleluia.\n", - "id": "Introitus" - }, - { - "body": "O God, You Who gave the Holy Spirit to Your apostles, grant that the devout prayers of Your people may be effective and,", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of the Apostles\n*Acts 10:34, 42-48*\nIn those days, Peter opening his mouth, said, Men, brethren, th", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Acts 2:4*\n℣. The Apostles spoke in foreign tongues the wonderful works of God. Alleluia. (Kneel.)\n", - "id": "Graduale" - }, - { - "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 3:16-21*\nAt that time, Jesus said to Nicodemus: God so loved t", - "id": "Evangelium" - }, - { - "body": "*Ps. 17:14, 16*\nThe Lord thundered from heaven, the Most High gave forth His voice; and the fountains of waters appeared", - "id": "Offertorium" - }, - { - "body": "Graciously hallow these gifts, we beseech You, O Lord, and accepting the offering of the spiritual sacrifice, make us al", - "id": "Secreta" - }, - { - "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", - "id": "Prefatio" - }, - { - "body": "*John 14:26*\nThe Holy Spirit will teach you, alleluia: whatever I have said to you, alleluia, alleluia.", - "id": "Communio" - }, - { - "body": "Be near to Your people, we beseech You, O Lord, and defend against the fury of the enemy those whom You have penetrated ", - "id": "Postcommunio" - } - ], - "2020-06-02": [ - { - "body": "*Esdr 2:36-37*\nReceive the joy of your glory, alleluia: giving thanks to God, alleluia, who has called you to the heaven", - "id": "Introitus" - }, - { - "body": "Let the power of the Holy Spirit be present within us, O Lord, graciously to cleanse our hearts as well as to guard us f", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 8:14-17.*\nIn those days, when the Apostles in Jerusalem heard that Samaria had re", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*John 14:26*\n℣. The Holy Spirit will teach you whatever I have said to you. Alleluia. (Kneel.)\n℣. Co", - "id": "Graduale" - }, - { - "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:1-10.*\nAt that time, Jesus said to the Pharisees, Amen, ame", - "id": "Evangelium" - }, - { - "body": "*Ps 77:23-25*\nThe Lord opened the doors of heaven; He rained manna upon them for food and gave them heavenly bread. The ", - "id": "Offertorium" - }, - { - "body": "May the offering of this gift here before You, O Lord, make us pure and worthy to take part in this sacred rite.\nThrough", - "id": "Secreta" - }, - { - "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", - "id": "Prefatio" - }, - { - "body": "*John 15:26; 16:14*\nThe Spirit Who proceeds from the Father, alleluia: He will glorify Me, alleluia, alleluia.", - "id": "Communio" - }, - { - "body": "May the Holy Spirit, we beseech You, O Lord, renew our minds through the heavenly sacrament, for He Himself is the forgi", - "id": "Postcommunio" - } - ], - "2020-06-03": [ - { - "body": "*Ps 67:8-9*\nO God, when You went forth at the head of Your people, making a passage for them, dwelling in their midst, a", - "id": "Introitus" - }, - { - "body": "May the Paraclete Who proceeds from You, enlighten our minds, we beseech You, O Lord, and guide us to all truth, as Your", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 2:14-21.*\nIn those days, Peter, standing up with the Eleven, lifted up his voice ", - "id": "LectioL1" - }, - { - "body": "Alleluia.\n*Ps 32:6*\n℣. By the word of the Lord the heavens were made; by the breath of His mouth all their host.\n\n##Glor", - "id": "GradualeL1" - }, - { - "body": "Grant, we beseech You, almighty and most merciful God, that the Holy Spirit may come to dwell in us, graciously making u", - "id": "OratioL1" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 5:12-16*\nIn those days, by the hands of the Apostles many signs and wonders were ", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n℣. (Kneel.) Come, O Holy Spirit, fill the hearts of Your faithful; and kindle in them the fire of Yo", - "id": "Graduale" - }, - { - "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 6:44-52.*\nAt that time, Jesus said to the Jews: No one can com", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly. And I will lift up my hands to Your commands, ", - "id": "Offertorium" - }, - { - "body": "Accept, we beseech You, O Lord, the gifts we offer, and graciously bring it about that we may practice by a holy life wh", - "id": "Secreta" - }, - { - "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", - "id": "Prefatio" - }, - { - "body": "*John 14:27.*\nPeace I leave with you, alleluia; My peace I give to you, alleluia, alleluia.", - "id": "Communio" - }, - { - "body": "As we receive Your heavenly sacrament we beseech You, merciful Lord, may we reap in the joys of eternity the fruits of w", - "id": "Postcommunio" - } - ], - "2020-06-04": [ - { - "body": "*Wis 1:7*\nThe Spirit of the Lord fills the world, alleluia, is all-embracing, and knows man’s utterance, alleluia, allel", - "id": "Introitus" - }, - { - "body": "O God, You Who on this day have taught the hearts of the faithful by the light of the Holy Spirit, grant us by that Holy", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 8:5-8*\nIn those days, Philip went down to the city of Samaria and preached the Ch", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Ps 103:30*\n℣. Send forth Your Spirit, and they shall be created: and You shall renew the face of th", - "id": "Graduale" - }, - { - "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 9:1-6*\nAt that time, having summoned the twelve apostles, Jesu", - "id": "Evangelium" - }, - { - "body": "*Ps 67:29-30*\nConfirm, O God, what You have wrought in us; from Your temple, which is in Jerusalem, kings shall offer gi", - "id": "Offertorium" - }, - { - "body": "Sanctify these offerings, we beseech You, O Lord, and cleanse our hearts by the light of the Holy Spirit.\nThrough our Lo", - "id": "Secreta" - }, - { - "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", - "id": "Prefatio" - }, - { - "body": "*Acts 2:2; 2:4*\nSuddenly there came a sound from heaven, as of a violent wind blowing, where they were sitting, alleluia", - "id": "Communio" - }, - { - "body": "May the inpouring of the Holy Spirit cleanse our hearts, O Lord, and make them fertile through the dew He sprinkles upon", - "id": "Postcommunio" - } - ], - "2020-06-05": [ - { - "body": "*Ps 70:8; 70:23*\nLet my mouth be filled with Your praise, alleluia: that I may sing, alleluia. My lips shall shout for j", - "id": "Introitus" - }, - { - "body": "Grant to Your Church, we beseech You, almighty God, that, united by the Holy Spirit, she may in no way be harmed by any ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Joel\n*Joel 2:23-24; 26-27*\nThus says the Lord God: O children of Sion, exult and rejoice in the ", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia.\n*Wis 12:1*\n℣. O how good and sweet is Your Spirit, O Lord, within us! Alleluia. (Kneel.)\n℣. Come, O ", - "id": "Graduale" - }, - { - "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 5:17-26*\nAt that time, it came to pass on one of the days, tha", - "id": "Evangelium" - }, - { - "body": "*Wis 145:1-2*\nPraise the Lord, O my soul; I will praise the Lord all my life; I will sing praise to my God while I live,", - "id": "Offertorium" - }, - { - "body": "May the sacrificial gifts offered in Your sight, O Lord, be consumed by that divine fire which the Holy Spirit enkindled", - "id": "Secreta" - }, - { - "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", - "id": "Prefatio" - }, - { - "body": "*John 14:18*\nI will not leave you orphans; I will come to you again, alleluia: and your heart shall rejoice, alleluia.", - "id": "Communio" - }, - { - "body": "We who have received the gift of Your Blessed Sacrament, O Lord, humbly pray that what You have taught us to do in comme", - "id": "Postcommunio" - } - ], - "2020-06-06": [ - { - "body": "*Rom 5:5.*\nThe charity of God is poured forth in our hearts, alleluia: by His Spirit dwelling in us, alleluia, alleluia.", - "id": "Introitus" - }, - { - "body": "Graciously pour into our minds, we beseech You, O Lord, the Holy Spirit, Whose wisdom created us and Whose providence go", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Joel\n*Joel 2:28-32.*\nThus says the Lord God: I will pour out My Spirit upon all mankind. Your so", - "id": "LectioL1" - }, - { - "body": "Alleluia.\n*John 6:64*\nIt is the Spirit that gives life; but the flesh profits nothing.", - "id": "GradualeL1" - }, - { - "body": "May the Holy Spirit, we beseech You, O Lord, inflame us with that fire which our Lord Jesus Christ cast upon the earth a", - "id": "OratioL1" - }, - { - "body": "Lesson from the book of Leviticus\n*Lev. 23:9-11; 15-17, 21.*\nIn those days, the Lord spoke to Moses, saying: Speak to th", - "id": "LectioL2" - }, - { - "body": "Alleluia.\n*Job 26:13*\n℣. His Spirit has adorned the heavens.", - "id": "GradualeL2" - }, - { - "body": "O God, Who for the healing of our souls has commanded that our bodies should be disciplined by devout fasting, mercifull", - "id": "OratioL2" - }, - { - "body": "Lesson from the book of Deuteronomy\n*Deut. 26:1-3; 7-11*\nIn those days, Moses said to the Israelites: Hear, O Israel, th", - "id": "LectioL3" - }, - { - "body": "Alleluia.\n*Acts 2:1*\n℣. When the days of Pentecost were accomplished, they were all sitting together.", - "id": "GradualeL3" - }, - { - "body": "Grant, we beseech You, almighty God, that we, disciplined by wholesome fasting and refraining from all wrong-doing, may ", - "id": "OratioL3" - }, - { - "body": "Lesson from the book of Leviticus\n*Lev. 26:3-12.*\nIn those days, the Lord said to Moses. Speak to the Israelites, and te", - "id": "LectioL4" - }, - { - "body": "Alleluia.\n℣. (Kneel.) Come, O Holy Spirit, fill the hearts of Your faithful; and kindle in them the fire of Your love.", - "id": "GradualeL4" - }, - { - "body": "Grant, we beseech You, almighty God, that we may so fast from bodily food as to abstain also from the sins that beset us", - "id": "OratioL4" - }, - { - "body": "Lesson from the book of Daniel\n*Dan. 3:47-51.*\nIn those days, the Angel of the Lord went down into the furnace with Azar", - "id": "LectioL5" - }, - { - "body": "Alleluia.\n*Dan 3:52*\nBlessed are You, O Lord, the God of our fathers, and worthy to be praised forever.", - "id": "GradualeL5" - }, - { - "body": "O God, You Who tempered the flames of fire for the three young men, mercifully grant that the flames of sin may not burn", - "id": "OratioL5" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 5:1-5.*\nBrethren: Having been justified by faith, let ", - "id": "Lectio" - }, - { - "body": "*Ps 116:1-2*\nPraise the Lord, all you nations; glorify Him, all you peoples! For steadfast is His kindness toward us, an", - "id": "Graduale" - }, - { - "body": "Holy Spirit! Lord of light!\nFrom Thy clear celestial height,\nThy pure, beaming radiance give:\n\nCome, Thou, Father of the", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 4:38-44.*\nAt that time, Jesus rose from the synagogue and ente", - "id": "Evangelium" - }, - { - "body": "*Ps 87:2-3*\nO Lord, the God of my salvation, by day I cry out, at night I clamor in Your presence. Let my prayer come be", - "id": "Offertorium" - }, - { - "body": "Grant us, we beseech You, O Lord, that we may offer You a heart cleansed by this sacred rite so that our fast may be acc", - "id": "Secreta" - }, - { - "body": "*Holy Spirit*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, gi", - "id": "Prefatio" - }, - { - "body": "*John 3:8.*\nThe Spirit breaths where He will, and you hear His voice, alleluia, alleluia; but do not know whence He come", - "id": "Communio" - }, - { - "body": "May Your holy things, O Lord, fill us with divine eagerness to enjoy their celebration together with their effects.\nThro", - "id": "Postcommunio" - } - ], - "2020-06-07": [ - { - "body": "*Tob 12:6*\nBlessed be the Holy Trinity and undivided Unity: we will give glory to Him, because He has shown His mercy to", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, You Who have given Your servants, in the confession of the true faith, to acknowledge the glory o", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 11:33-36.*\nOh, the depth of the riches of the wisdom a", - "id": "Lectio" - }, - { - "body": "*Dan 3:55-56*\nBlessed are You, O Lord, Who look into the depths from Your throne upon the Cherubim.\n℣. Blessed are You, ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 28:18-20*\nAt that time, Jesus said to His disciples: All po", - "id": "Evangelium" - }, - { - "body": "*Tob. 12:6.*\nBlessed be God the Father, and the only-begotten Son of God, and also the Holy Spirit: because He has shown", - "id": "Offertorium" - }, - { - "body": "We call upon Your Name, O Lord, and beseech You to hallow this sacrificial offering and through it to make us an eternal", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Tob 12:6*\nWe bless the God of heaven, and before all living we will praise Him; because He has shown His mercy to us.", - "id": "Communio" - }, - { - "body": "May the reception of this sacrament, O Lord our God, and the profession of our faith in the eternal holy Trinity and und", - "id": "Postcommunio" - } - ], - "2020-06-08": [ - { - "body": "*Ps 12:6*\nO Lord, I have trusted in thy mercy. My heart shall rejoice in thy salvation: I will sing to the Lord, who giv", - "id": "Introitus" - }, - { - "body": "O God, the Strength of all them that put their trust in thee, mercifully accept our prayers, and because through the wea", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St John the Apostle\n*1 John 4:8-21*\nDearly beloved: He that loveth not, knoweth not God:", - "id": "Lectio" - }, - { - "body": "*Ps 40:5; 40:2*\nI said: O Lord, be thou merciful to me : heal my soul, for I have sinned against thee. Blessed is he tha", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 6:36-42*\nIn that time Jesus said to his disciples: Be ye there", - "id": "Evangelium" - }, - { - "body": "*Ps 5:3-4*\nHearken to the voice of my prayer, O my King and my God. For to thee will I pray: O Lord.", - "id": "Offertorium" - }, - { - "body": "Be appeased O Lord, we beseech thee, and accept the victims we dedicate to thee, and grant that they may avail us for pe", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 9:2-3*\nI will relate all thy wonders. I will be glad and rejoice in thee: I will sing to thy name, O thou most high.", - "id": "Communio" - }, - { - "body": "Filled O Lord, as we are with so great bounties, we beseech thee that we may receive the gifts of salvation and never ce", - "id": "Postcommunio" - } - ], - "2020-06-09": [ - { - "body": "*Ps 12:6*\nO Lord, I have trusted in thy mercy. My heart shall rejoice in thy salvation: I will sing to the Lord, who giv", - "id": "Introitus" - }, - { - "body": "O God, the Strength of all them that put their trust in thee, mercifully accept our prayers, and because through the wea", - "id": "Oratio" - }, - { - "body": "*Commemoration Sts. Primus & Felicianus*\nGrant O Lord, we pray, that we may ever honor the festival of thy holy martyrs,", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St John the Apostle\n*1 John 4:8-21*\nDearly beloved: He that loveth not, knoweth not God:", - "id": "Lectio" - }, - { - "body": "*Ps 40:5; 40:2*\nI said: O Lord, be thou merciful to me : heal my soul, for I have sinned against thee. Blessed is he tha", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 6:36-42*\nIn that time Jesus said to his disciples: Be ye there", - "id": "Evangelium" - }, - { - "body": "*Ps 5:3-4*\nHearken to the voice of my prayer, O my King and my God. For to thee will I pray: O Lord.", - "id": "Offertorium" - }, - { - "body": "Be appeased O Lord, we beseech thee, and accept the victims we dedicate to thee, and grant that they may avail us for pe", - "id": "Secreta" - }, - { - "body": "*Commemoration Sts. Primus & Felicianus*\nWe ask, O Lord, that the sacrifice to be offered may appease thee of this feast", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 9:2-3*\nI will relate all thy wonders. I will be glad and rejoice in thee: I will sing to thy name, O thou most high.", - "id": "Communio" - }, - { - "body": "Filled O Lord, as we are with so great bounties, we beseech thee that we may receive the gifts of salvation and never ce", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Sts. Primus & Felicianus*\nWe pray, almighty God, that the feast day of thy holy martyrs, Primus and Felic", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-10": [ - { - "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", - "id": "Introitus" - }, - { - "body": "O God, Who made blessed Queen Margaret glorious by her remarkable charity toward the poor; grant, by her intercession an", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", - "id": "Offertorium" - }, - { - "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", - "id": "Communio" - }, - { - "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", - "id": "Postcommunio" - } - ], - "2020-06-11": [ - { - "body": "*Ps. 80:17.*\nHe fed them with the best of wheat, alleluia; and filled them with honey from the rock, alleluia, alleluia,", - "id": "Introitus" - }, - { - "body": "O God, You Who in this wondrous sacrament have left us a memorial of Your passion, grant us, we beseech You, so to vener", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 23-29.*\nBrethren: I myself have received", - "id": "Lectio" - }, - { - "body": "*Ps. 144:15-16.*\nThe eyes of all look hopefully to You, O Lord; and You give them their food in due season.\n℣. You open ", - "id": "Graduale" - }, - { - "body": "O Sion, thy Redeemer praising,\nSongs of joy to Him upraising,\nLaud thy Pastor and thy Guide:\n\nSwell thy notes most high ", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 6:56-59.*\nAt that time, Jesus said to the crowds of the Jews: ", - "id": "Evangelium" - }, - { - "body": "*Lev 21:6*\nThe priests of the Lord offer incense and loaves to God, and therefore they shall be sacred to their God and ", - "id": "Offertorium" - }, - { - "body": "Graciously give Your Church, we beseech You, O Lord, the gifts of unity and peace which are betokened by the gifts we of", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*1 Cor. 11:26-27.*\nAs often as you shall eat this Bread and drink the cup, you proclaim the death of the Lord, until He ", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, O Lord, that we may be filled with that everlasting enjoyment of Your Godhead, as foreshadowed he", - "id": "Postcommunio" - } - ], - "2020-06-12": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, author of peace and lover of charity, Who endowed blessed John, Your Confessor, with a wondrous grace for reconci", - "id": "Oratio" - }, - { - "body": "*For St. Basilides and Companions*\nO Lord, we beseech You, may the anniversary of the death of Your Martyrs, Basilides, ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Eccli 31:8-11*\nHappy the man found without fault, who turns not aside after gain", - "id": "Lectio" - }, - { - "body": "*Ps 91:12: 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*For St. Basilides and Companions*\nO Lord, in honor of the blood shed by Your Saints, Basilides, Cyrinus, Nabor and Naza", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - }, - { - "body": "*For St. Basilides and Companions*\nGrant, we beseech You, O Lord, that we who keep each year the feast of Your holy Mart", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-13": [ - { - "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", - "id": "Introitus" - }, - { - "body": "May the solemn feast of blessed Anthony, Your Confessor and Doctor, make Your Church rejoice, O God, so that, ever susta", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "May the offering here before You, O Lord, bring safety to Your people, for whom You mercifully offered Yourself a living", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "Refreshed by divine gifts, we beseech You, O Lord, that through the merits and intercession of blessed Anthony, Your Con", - "id": "Postcommunio" - } - ], - "2020-06-14": [ - { - "body": "*Ps. 17:19-20.*\nThe Lord came to my support. He set me free in the open, and rescued me, because He loves me.\n*Ps 17:2-3", - "id": "Introitus" - }, - { - "body": "Grant, O Lord, that we may always fear and love Your holy Name, for You never fail to guide those whom You firmly establ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St John the Apostle\n*1 John 3:13-18.*\nBeloved: Do not be surprised if the world hates yo", - "id": "Lectio" - }, - { - "body": "*Ps. 119:1-2.*\nIn my distress I called to the Lord, and He answered me.\n℣. O Lord, deliver me from lying lip, from treac", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:16-24.*\nAt that time, Jesus spoke to the Pharisees this par", - "id": "Evangelium" - }, - { - "body": "*Ps. 6:5.*\nReturn, O Lord, save my life; rescue me because of Your kindness.", - "id": "Offertorium" - }, - { - "body": "May the sacrifice we are about to offer unto Your holy Name, O Lord, make us pure, and day by day help us to live a more", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps. 12:6.*\nI will sing of the Lord, He has been good to me; and I will sing to the Name of the Lord the Most High.", - "id": "Communio" - }, - { - "body": "We beseech You, O Lord, that having received Your gifts, each partaking of this sacrament may increase within us its sav", - "id": "Postcommunio" - } - ], - "2020-06-15": [ - { - "body": "*Ps. 17:19-20.*\nThe Lord came to my support. He set me free in the open, and rescued me, because He loves me.\n*Ps 17:2-3", - "id": "Introitus" - }, - { - "body": "Grant, O Lord, that we may always fear and love Your holy Name, for You never fail to guide those whom You firmly establ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Vitus*\nGrant O Lord, we pray, that through the intercession of thy Holy Martyrs Vitus, Modestus and C", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St John the Apostle\n*1 John 3:13-18.*\nBeloved: Do not be surprised if the world hates yo", - "id": "Lectio" - }, - { - "body": "*Ps. 119:1-2.*\nIn my distress I called to the Lord, and He answered me.\n℣. O Lord, deliver me from lying lip, from treac", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:16-24.*\nAt that time, Jesus spoke to the Pharisees this par", - "id": "Evangelium" - }, - { - "body": "*Ps. 6:5.*\nReturn, O Lord, save my life; rescue me because of Your kindness.", - "id": "Offertorium" - }, - { - "body": "May the sacrifice we are about to offer unto Your holy Name, O Lord, make us pure, and day by day help us to live a more", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Vitus*\nAs the gifts, we offer in honor of thy Saints, O Lord, bear witness to the glory of thy divine", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps. 12:6.*\nI will sing of the Lord, He has been good to me; and I will sing to the Name of the Lord the Most High.", - "id": "Communio" - }, - { - "body": "We beseech You, O Lord, that having received Your gifts, each partaking of this sacrament may increase within us its sav", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Vitus*\nWe, who have been filled with thy solemn blessing, ask, O Lord, that, through the intercession", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-16": [ - { - "body": "*Ps. 17:19-20.*\nThe Lord came to my support. He set me free in the open, and rescued me, because He loves me.\n*Ps 17:2-3", - "id": "Introitus" - }, - { - "body": "Grant, O Lord, that we may always fear and love Your holy Name, for You never fail to guide those whom You firmly establ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St John the Apostle\n*1 John 3:13-18.*\nBeloved: Do not be surprised if the world hates yo", - "id": "Lectio" - }, - { - "body": "*Ps. 119:1-2.*\nIn my distress I called to the Lord, and He answered me.\n℣. O Lord, deliver me from lying lip, from treac", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:16-24.*\nAt that time, Jesus spoke to the Pharisees this par", - "id": "Evangelium" - }, - { - "body": "*Ps. 6:5.*\nReturn, O Lord, save my life; rescue me because of Your kindness.", - "id": "Offertorium" - }, - { - "body": "May the sacrifice we are about to offer unto Your holy Name, O Lord, make us pure, and day by day help us to live a more", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps. 12:6.*\nI will sing of the Lord, He has been good to me; and I will sing to the Name of the Lord the Most High.", - "id": "Communio" - }, - { - "body": "We beseech You, O Lord, that having received Your gifts, each partaking of this sacrament may increase within us its sav", - "id": "Postcommunio" - } - ], - "2020-06-17": [ - { - "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", - "id": "Introitus" - }, - { - "body": "O God, Who have willed that Blessed Gregory, Your Confessor and Bishop, be renowned for the care of his flock and compas", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", - "id": "Lectio" - }, - { - "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Offertorium" - }, - { - "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", - "id": "Postcommunio" - } - ], - "2020-06-18": [ - { - "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", - "id": "Introitus" - }, - { - "body": "O God, Who willed to enlighten Your Church by the wondrous learning and glorious merits of the life of blessed Ephrem, Y", - "id": "Oratio" - }, - { - "body": "*For SS. Mark and Marcellianus*\nGrant, we beseech You, almighty God, that we who celebrate the anniversary of the death ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "O Lord, may the loving prayer of blessed Ephrem, Your Confessor and Doctor, fail us not, both to make our gifts acceptab", - "id": "Secreta" - }, - { - "body": "*For SS. Mark and Marcellianus*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of blessed", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "May blessed Ephrem, Your Confessor, and renowned Doctor, plead for us, so that the sacrifice we offer You may bring us s", - "id": "Postcommunio" - }, - { - "body": "*For SS. Mark and Marcellianus*\nRefreshed by the sacramental gift of Your salvation, we humbly beseech You, O Lord, thro", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-19": [ - { - "body": "*Ps. 32:11, 19*\nThe thoughts of His Heart are to all generations: to deliver them from death and preserve them in spite ", - "id": "Introitus" - }, - { - "body": "O God, Who in the Heart of Your Son, wounded by our sins, mercifully lavish upon us the infinite riches of love, grant, ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph. 3:8-12, 14-19.*\nBrethren: To me, the very least of", - "id": "Lectio" - }, - { - "body": "*Ps. 24:8-9*\nGood and upright is the Lord; thus He shows sinners the way.\n℣. He guides the humble to justice; He teaches", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:31-37.*\nAt that time, the Jews, since it was the Preparatio", - "id": "Evangelium" - }, - { - "body": "*Ps. 68:21.*\nMy heart expected reproach and misery; I looked for sympathy, but there was none; and for comforters, and I", - "id": "Offertorium" - }, - { - "body": "Look, we beseech You, O Lord, upon the Heart of Your beloved Son, with its boundless love, so that what we offer, may be", - "id": "Secreta" - }, - { - "body": "*Sacred Heart*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*John 19:34.*\nOne of the soldiers opened His side with a lance, and immediately there came out blood and water.", - "id": "Communio" - }, - { - "body": "May Your sacrament, O Lord Jesus, give us holy zeal, so that, seeing the sweetness of Your most loving Heart, we may lea", - "id": "Postcommunio" - } - ], - "2020-06-20": [ - { - "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", - "id": "Introitus" - }, - { - "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Silverius*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, b", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Silverius*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so th", - "id": "Commemoratio Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Silverius*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, th", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-21": [ - { - "body": "*Ps. 24:16, 18*\nLook toward me, and have pity on me, O Lord, for I am alone and afflicted. Put an end to my affliction a", - "id": "Introitus" - }, - { - "body": "O God, protector of all who hope in You, without Whom nothing is strong, nothing is holy, increase Your mercy toward us,", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:6-11*\nBeloved: Humble yourselves under the mighty hand o", - "id": "Lectio" - }, - { - "body": "*Ps. 54:23, 17, 19*\nCast your care upon the Lord, and He will support you.\n℣. When I called upon the Lord, He heard my v", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 15:1-10*\nAt that time, the publicans and sinners were drawing ", - "id": "Evangelium" - }, - { - "body": "*Ps. 9:11-13*\nThey trust in You who cherish Your name, O Lord, for You forsake not those who seek You. Sing praise to th", - "id": "Offertorium" - }, - { - "body": "Look favorably, O Lord, upon the offerings of Your prayerful Church and grant that those who believe may, in continual h", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Luke 15:10*\nI say to you: there is joy among the angels of God over one sinner who repents.", - "id": "Communio" - }, - { - "body": "May the holy things of which we have partaken bring us to life and prepare for Your everlasting mercy those whom You hav", - "id": "Postcommunio" - } - ], - "2020-06-22": [ - { - "body": "*Ps 131:9-10*\nMay Your priests, O Lord, be clothed with justice; let Your faithful ones shout merrily for joy. For the s", - "id": "Introitus" - }, - { - "body": "O God, Who promised to those who forsake all things in this world for You a hundred-fold reward in the world to come and", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 8:9-15*\nBrethren: You know the gracious", - "id": "Lectio" - }, - { - "body": "*Eccl 44:16*\nBehold a great priest, who in his days pleased God.\n*Eccl 44:20*\n℣. There was not found the like to him, wh", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Offertorium" - }, - { - "body": "Grant us, O Lord, by the example of the blessed Bishop Paulinus, to join the sacrifice of perfect charity with the offer", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "Bestow upon us, O Lord, through the Blessed Sacrament, that inspiration of holiness and humility which Your saintly Bish", - "id": "Postcommunio" - } - ], - "2020-06-23": [ - { - "body": "*Luke 1:13; 1:15; 1:14*\nDo not be afraid, Zachary, your prayer has been heard, and your wife Elizabeth shall bear you a ", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that Your household may walk in the way of salvation and, by following the counsels", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Jeremias\n*Jer 1:4-10*\nIn those days, the word of the Lord came to me thus: Before I formed you i", - "id": "Lectio" - }, - { - "body": "*John 1:6-7*\nThere was a man, one sent from God, whose name was John.\n℣. This man came to bear witness concerning the li", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:5-17*\nIn the days of Herod, king of Judea, there was a certa", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nYou crowned him with glory and honor. You have given him rule over the works of Your hands, O Lord.", - "id": "Offertorium" - }, - { - "body": "Sanctify, O Lord, the gifts offered to You, and, by the intercession of Blessed John the Baptist, purify us by them from", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 20:6*\nGreat is his glory in Your victory; majesty and splendor You conferred upon him, O Lord.", - "id": "Communio" - }, - { - "body": "May the powerful prayer of blessed John the Baptist go with us, O Lord, and may he plead with our Lord Jesus Christ, You", - "id": "Postcommunio" - } - ], - "2020-06-24": [ - { - "body": "*Isa 49:1-2*\nFrom my mother’s womb the Lord called me by my name, and made of me a sharp-edged sword; He concealed me in", - "id": "Introitus" - }, - { - "body": "O God, Who made this a day most worthy of our celebration because of blessed John; grant Your people the grace of spirit", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 49:1-3, 5-7.*\nHear me, O coastlands, listen, O distant peoples. The Lord called me f", - "id": "Lectio" - }, - { - "body": "*Jer 1:5, 9*\nBefore I formed you in the womb, I knew you; and before you were born, I dedicated you.\n℣. The Lord put for", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:57-68*\nElizabeth’s time was fulfilled that she should be del", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just man shall flourish like the palm tree; like a cedar of Lebanon shall he grow.", - "id": "Offertorium" - }, - { - "body": "We heap Your altar with gifts, O Lord, celebrating the birth of him who announced the coming of the Saviour of the world", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 1:76*\nYou, child, shall be called the prophet of the Most High; for you shall go before the face of the Lord to pr", - "id": "Communio" - }, - { - "body": "May Your Church, O God, rejoice at the birth of blessed John the Baptist, through whom she knew the author of her own re", - "id": "Postcommunio" - } - ], - "2020-06-25": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, Who made Your Saints an example and a help for our weakness; grant us, as we walk the path of salvation, so to ve", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, may the holy Abbot William, prevail by his prayers, so that the offerings placed upon Your sacre", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "May the pleading of the blessed Abbot William for us, together with the partaking of Your sacrament, protect us, O Lord,", - "id": "Postcommunio" - } - ], - "2020-06-26": [ - { - "body": "*Ps 33:20-21*\nMany are the troubles of the just, but out of them all the Lord delivers them; the Lord watches over all t", - "id": "Introitus" - }, - { - "body": "We beseech You, almighty God, that on this feast-day we may have the double joy of celebrating blessed John and Paul, tr", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Eccli 44:10-15*\nThese were godly men whose virtues have not been forgotten; thei", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\nBehold, how good it is, and how pleasant, where brethren dwell as one! It is as when the precious ointment ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:1-8*\nAt that time, Jesus said to His disciples, Beware of t", - "id": "Evangelium" - }, - { - "body": "*Ps 5:12-13*\nAll who love Your name shall glory in You, for You, O Lord, bless the just man; O Lord, You surround us wit", - "id": "Offertorium" - }, - { - "body": "O Lord, graciously accept, through the merits of Your holy Martyrs John and Paul, the sacrificial gifts dedicated to You", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Wis 3:4-6*\nFor if before men they were punished, God tried them; as gold in the furnace He proved them, and as sacrific", - "id": "Communio" - }, - { - "body": "We have partaken of the heavenly sacrament, O Lord, as we celebrate the feast of Your holy Martyrs John and Paul; grant,", - "id": "Postcommunio" - } - ], - "2020-06-27": [ - { - "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", - "id": "Introitus" - }, - { - "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", - "id": "Postcommunio" - } - ], - "2020-06-28": [ - { - "body": "*Ps. 26:1-2*\nThe Lord is my light and my salvation; whom should I fear? The Lord is my life’s refuge; of whom should I b", - "id": "Introitus" - }, - { - "body": "Grant us, we beseech You, O Lord, that the course of the world may be directed according to Your rule in peace and that ", - "id": "Oratio" - }, - { - "body": "*Commemoration Vigil of Sts. Peter & Paul*\nGrant, we beseech You, almighty God, that we, whom you solidly established up", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:18-23*\nBrethren: I reckon that the sufferings of the", - "id": "Lectio" - }, - { - "body": "*Ps. 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God our Saviour; be", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 5:1-11*\nAt that time, while the crowds were pressing upon Jesu", - "id": "Evangelium" - }, - { - "body": "*Ps. 12:4-5*\nGive light to my eyes that I may never sleep in death, lest my enemy say, I have overcome him.", - "id": "Offertorium" - }, - { - "body": "Be appeased, we beseech You, O Lord, by accepting our offerings, and in Your kindness make even our rebellious wills tur", - "id": "Secreta" - }, - { - "body": "*Commemoration Vigil of Sts. Peter & Paul*\nSanctify the gift of Your people, we beseech You, O Lord, by the intercession", - "id": "Commemoratio Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps. 17:3*\nO Lord, my rock, my fortress, my deliverer: my God, my rock of refuge!", - "id": "Communio" - }, - { - "body": "May the sacrament we have received cleanse us, we beseech You, O Lord, and by its grace protect us.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Vigil of Sts. Peter & Paul*\nO Lord, by the intercession of Your Apostles, defend from all harm those whom", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-29": [ - { - "body": "*Acts 12:11*\nNow I know for certain that the Lord has sent His angel, and rescued me from the power of Herod, and from a", - "id": "Introitus" - }, - { - "body": "O God, Who made this day holy by the martyrdom of Your Apostles Peter and Paul, grant Your Church to follow in all thing", - "id": "Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 12:1-11*\nIn those days, Herod the king set hands on certain members of the Church", - "id": "Lectio" - }, - { - "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus having come into the district", - "id": "Evangelium" - }, - { - "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord, through all gener", - "id": "Offertorium" - }, - { - "body": "May the prayers of Your holy Apostles, O Lord, accompany the sacrificial gifts which we offer to be hallowed in Your nam", - "id": "Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build My Church.", - "id": "Communio" - }, - { - "body": "O Lord, by the prayer of Your Apostles, protect from all harm those whom You have fed with heavenly food.\nThrough our Lo", - "id": "Postcommunio" - } - ], - "2020-06-30": [ - { - "body": "*2 Tim. 1:12*\nI know Whom I have believed, and I am certain that He is able to guard the trust committed to Him, against", - "id": "Introitus" - }, - { - "body": "O God, Who taught vast numbers of the Gentiles by the preaching of the blessed Apostle Paul, grant we beseech You that, ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 1:11-20*\nBrethren: I give you to understand, that t", - "id": "Lectio" - }, - { - "body": "*Gal 2:8-9*\nHe Who worked in Peter for the apostleship, worked also in me among the Gentiles; and they recognized the gr", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:16-22*\nAt that time, Jesus said to His disciples, Behold", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", - "id": "Offertorium" - }, - { - "body": "O Lord, make holy the offerings of Your people, through the prayer of Paul, Your Apostle, that those things which You ha", - "id": "Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28-29*\nAmen I say to you that you who have left all things and followed Me, shall receive a hundredfold, and sh", - "id": "Communio" - }, - { - "body": "Having received Your sacrament, O Lord, we implore You, that what we have celebrated in honor of St. Paul, Your Apostle,", - "id": "Postcommunio" - } - ], - "2020-07-01": [ - { - "body": "*Apoc 5:9-10*\nYou have redeemed us, O Lord, with Your Blood, out of every tribe and tongue and people and nation, and ha", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, Who made Your only-begotten Son the Redeemer of the world, and willed to be reconciled by His Blo", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 9:11-15*\nBrethren: When Christ appeared as High Pries", - "id": "Lectio" - }, - { - "body": "*1 John 5:6-8*\nThis is He Who came in water and in blood, Jesus Christ; not in the water only, but in the water and in t", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:30-35*\nAt that time, when Jesus had taken the wine, He said", - "id": "Evangelium" - }, - { - "body": "*1 Cor. 10:16*\nThe Cup of blessing that we bless, is it not the sharing of the Blood of Christ? And the Bread that we br", - "id": "Offertorium" - }, - { - "body": "Through this divine rite, we beseech You, may we draw near to Jesus, the mediator of the new covenant, and renew upon Yo", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "*Heb 9:28*\nChrist was offered once to take away the sins of many; the second time with no part in sin He will appear unt", - "id": "Communio" - }, - { - "body": "Admitted to the sacred banquet, O Lord, we have drawn water in joy from the Saviour’s fountain; may His Blood, we beseec", - "id": "Postcommunio" - } - ], - "2020-07-02": [ - { - "body": "*Sedulius*\nHail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth forever and ever.\n*Ps ", - "id": "Introitus" - }, - { - "body": "Bestow upon Your servants, we beseech You, O Lord, the gift of heavenly grace, that as the child-bearing of the Blessed ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Canticles\n*Song 2:8-14*\nHark! here He comes springing across the mountains, leaping across the h", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, without spot were found the Mother of the Saviour.\n℣. O Virgin, Mothe", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:39-47*\nAt that time, Mary arose and went with haste into the", - "id": "Evangelium" - }, - { - "body": "Blessed are you, O Virgin Mary, you who bore the Creator of all things; you brought forth Him Who made you, and remain a", - "id": "Offertorium" - }, - { - "body": "May the humanity of Your only-begotten Son keep us, O Lord, for He, Who was born of a virgin did not lessen but consecra", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "O Lord, in celebration of this yearly feast, we have partaken of the sacrament: grant, we beseech You, that it may give ", - "id": "Postcommunio" - } - ], - "2020-07-03": [ - { - "body": "*Mal 2:6*\nThe law of truth was in his mouth, and iniquity was not found in his lips: he walked with Me in peace, and in ", - "id": "Introitus" - }, - { - "body": "O God, Who enabled blessed Irenaeus, Your Martyr and Bishop, to overcome heresy with true doctrine and to establish peac", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 3:14-17; 4:1-5*\nBeloved: Continue in the things", - "id": "Lectio" - }, - { - "body": "*Ps 121:8*\nBecause of my relatives and friends I will say, Peace be within you!\n*Ps 36:37*\n℣. Keep innocence, and behold", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:28-33*\nAt that time, Jesus said to His disciples, Do not", - "id": "Evangelium" - }, - { - "body": "*Eccli 24:44*\nI send my teachings forth to all shining like the dawn, and I will make them known afar off.", - "id": "Offertorium" - }, - { - "body": "O God, Who do not allow the nations that believe in You to be troubled by any distress, graciously accept the prayers an", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ecclus 24:47*\nSee that I have not labored for myself only, but for all who seek out the truth.", - "id": "Communio" - }, - { - "body": "O God, author and lover of peace, to know You is to live, and to serve You is to rule; protect from all assaults those w", - "id": "Postcommunio" - } - ], - "2020-07-04": [ - { - "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", - "id": "Introitus" - }, - { - "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", - "id": "Postcommunio" - } - ], - "2020-07-05": [ - { - "body": "*Ps. 26:7, 9*\nHear, O Lord, the sound of my call; be my helper: forsake me not: despise me not, O God my Saviour.\n*Ps 26", - "id": "Introitus" - }, - { - "body": "O God, You Who have prepared good things as yet unseen for those who love You, pour a burning love into our hearts, so t", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 3:8-15.*\nBeloved: Be all like-minded in prayer, compassiona", - "id": "Lectio" - }, - { - "body": "*Ps. 83:10, 9*\nBehold, O God, our protector, and look on Your servants.\n℣. O Lord God of Hosts, hear the prayers of Your", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:20-24.*\nAt that time, Jesus said to His disciples: Unless", - "id": "Evangelium" - }, - { - "body": "*Ps. 15:7-8.*\nI bless the Lord Who counsels me; I set God ever before me; with Him at my right hand I shall not be distu", - "id": "Offertorium" - }, - { - "body": "Be propitious to our supplications, O Lord, and graciously receive these oblations of Your servants and handmaids, that ", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps. 26:4.*\nOne thing I ask of the Lord; this I seek: to dwell in the house of the Lord all the days of my life.", - "id": "Communio" - }, - { - "body": "Grant us, we beseech You, O Lord, that we whom You have filled with the heavenly gift may be cleansed of our hidden sins", - "id": "Postcommunio" - } - ], - "2020-07-06": [ - { - "body": "*Ps. 26:7, 9*\nHear, O Lord, the sound of my call; be my helper: forsake me not: despise me not, O God my Saviour.\n*Ps 26", - "id": "Introitus" - }, - { - "body": "O God, You Who have prepared good things as yet unseen for those who love You, pour a burning love into our hearts, so t", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 3:8-15.*\nBeloved: Be all like-minded in prayer, compassiona", - "id": "Lectio" - }, - { - "body": "*Ps. 83:10, 9*\nBehold, O God, our protector, and look on Your servants.\n℣. O Lord God of Hosts, hear the prayers of Your", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:20-24.*\nAt that time, Jesus said to His disciples: Unless", - "id": "Evangelium" - }, - { - "body": "*Ps. 15:7-8.*\nI bless the Lord Who counsels me; I set God ever before me; with Him at my right hand I shall not be distu", - "id": "Offertorium" - }, - { - "body": "Be propitious to our supplications, O Lord, and graciously receive these oblations of Your servants and handmaids, that ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps. 26:4.*\nOne thing I ask of the Lord; this I seek: to dwell in the house of the Lord all the days of my life.", - "id": "Communio" - }, - { - "body": "Grant us, we beseech You, O Lord, that we whom You have filled with the heavenly gift may be cleansed of our hidden sins", - "id": "Postcommunio" - } - ], - "2020-07-07": [ - { - "body": "*Ps 131:9-10*\nMay Your priests, O Lord, be clothed with justice; let Your faithful ones shout merrily for joy. For the s", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, Who granted to the Slavonic people that they should come to the knowledge of your name through Yo", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 7:23-27*\nBrethren: The priests were numerous, because", - "id": "Lectio" - }, - { - "body": "*Ps 131:16-17*\nHer priests I will clothe with salvation, and her faithful ones shall shout merrily for joy.\n℣. In her wi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nGod is wonderful in His Saints; the God of Israel is He Who gives power and strength to His people. Blessed b", - "id": "Offertorium" - }, - { - "body": "Look with favor, O Lord, upon the prayers and offerings of Your faithful, that they may be pleasing to You for the feast", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 10:27*\nWhat I tell you in darkness, speak it in the light, says the Lord; and what you hear whispered, preach it o", - "id": "Communio" - }, - { - "body": "We beseech You, almighty God, Who mercifully dost bestow upon us these heavenly gifts, grant that we may despise all ear", - "id": "Postcommunio" - } - ], - "2020-07-08": [ - { - "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", - "id": "Introitus" - }, - { - "body": "Most merciful God, Who among other admirable gifts, endowed blessed Queen Elizabeth with the special grace of calming th", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", - "id": "Offertorium" - }, - { - "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", - "id": "Communio" - }, - { - "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", - "id": "Postcommunio" - } - ], - "2020-07-09": [ - { - "body": "*Ps. 26:7, 9*\nHear, O Lord, the sound of my call; be my helper: forsake me not: despise me not, O God my Saviour.\n*Ps 26", - "id": "Introitus" - }, - { - "body": "O God, You Who have prepared good things as yet unseen for those who love You, pour a burning love into our hearts, so t", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet 3:8-15.*\nBeloved: Be all like-minded in prayer, compassiona", - "id": "Lectio" - }, - { - "body": "*Ps. 83:10, 9*\nBehold, O God, our protector, and look on Your servants.\n℣. O Lord God of Hosts, hear the prayers of Your", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:20-24.*\nAt that time, Jesus said to His disciples: Unless", - "id": "Evangelium" - }, - { - "body": "*Ps. 15:7-8.*\nI bless the Lord Who counsels me; I set God ever before me; with Him at my right hand I shall not be distu", - "id": "Offertorium" - }, - { - "body": "Be propitious to our supplications, O Lord, and graciously receive these oblations of Your servants and handmaids, that ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps. 26:4.*\nOne thing I ask of the Lord; this I seek: to dwell in the house of the Lord all the days of my life.", - "id": "Communio" - }, - { - "body": "Grant us, we beseech You, O Lord, that we whom You have filled with the heavenly gift may be cleansed of our hidden sins", - "id": "Postcommunio" - } - ], - "2020-07-10": [ - { - "body": "*Ps 112:1, 9*\nPraise the Lord, you children, praise the name of the Lord. He establishes in her home the barren wife as ", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that we, who know how courageously Your holy Martyrs have confessed the faith, may ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", - "id": "Lectio" - }, - { - "body": "*Ps 123:7-8*\nWe were rescued like a bird from the fowlers’ snare.\n℣. Broken was the snare, and we were freed. Our help i", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 12:46-50*\nAt that time, as Jesus was still speaking to the ", - "id": "Evangelium" - }, - { - "body": "*Ps 123:7*\nWe were rescued like a bird from the fowlers’ snare; broken was the snare, and we were freed.", - "id": "Offertorium" - }, - { - "body": "Look with favor, we beseech You, O Lord, upon the offerings here before You, that, through the intercession of Your Sain", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 12:50*\nWhoever does the will of My Father in heaven, he is My brother and sister and mother, says the Lord.", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that, by the intercession of Your Saints, we may obtain the effect of that salvatio", - "id": "Postcommunio" - } - ], - "2020-07-11": [ - { - "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", - "id": "Introitus" - }, - { - "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Pius I*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, by t", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Pius I*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Pius I*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-12": [ - { - "body": "*Ps. 27:8-9.*\nThe Lord is the strength of His people, the saving refuge of His anointed. Save Your people, O Lord, and b", - "id": "Introitus" - }, - { - "body": "O God of the heavenly powers, creator of all good things, implant in our hearts the love of Your Name, and bestow upon u", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:3-11.*\nBrethren: All we who have been baptized into ", - "id": "Lectio" - }, - { - "body": "*Ps. 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants!\n℣. O Lord, You have been our refuge through all gen", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 8:1-9*\nAt that time, when there was a great crowd with Jesus, ", - "id": "Evangelium" - }, - { - "body": "*Ps. 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. S", - "id": "Offertorium" - }, - { - "body": "Mercifully hear our humble prayers, O Lord, and graciously accept these offerings of Your people, and grant that no pray", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps. 26:6*\nI will go round, and offer in His tent, sacrifices with shouts of gladness; I will sing and chant praise to t", - "id": "Communio" - }, - { - "body": "We have been filled with Your gifts, O Lord; grant, we beseech You, that we may be cleansed and strengthened by their ef", - "id": "Postcommunio" - } - ], - "2020-07-13": [ - { - "body": "*Ps. 27:8-9.*\nThe Lord is the strength of His people, the saving refuge of His anointed. Save Your people, O Lord, and b", - "id": "Introitus" - }, - { - "body": "O God of the heavenly powers, creator of all good things, implant in our hearts the love of Your Name, and bestow upon u", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:3-11.*\nBrethren: All we who have been baptized into ", - "id": "Lectio" - }, - { - "body": "*Ps. 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants!\n℣. O Lord, You have been our refuge through all gen", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 8:1-9*\nAt that time, when there was a great crowd with Jesus, ", - "id": "Evangelium" - }, - { - "body": "*Ps. 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. S", - "id": "Offertorium" - }, - { - "body": "Mercifully hear our humble prayers, O Lord, and graciously accept these offerings of Your people, and grant that no pray", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps. 26:6*\nI will go round, and offer in His tent, sacrifices with shouts of gladness; I will sing and chant praise to t", - "id": "Communio" - }, - { - "body": "We have been filled with Your gifts, O Lord; grant, we beseech You, that we may be cleansed and strengthened by their ef", - "id": "Postcommunio" - } - ], - "2020-07-14": [ - { - "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", - "id": "Introitus" - }, - { - "body": "O God, Who gave to Your people, blessed Bonaventure, as a minister of salvation, grant, we beseech You, that we who cher", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom and his tongue utters what is right.\n℣. The law of his God is in his", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: You are ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "May the loving prayer of blessed Bonaventure, Your Confessor and Doctor, fail us never, O Lord; may it commend our offer", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their rations of ", - "id": "Communio" - }, - { - "body": "So that your sacrificial rites may grant us salvation, we pray you, O Lord, that blessed Bonaventure, Your Bishop and il", - "id": "Postcommunio" - } - ], - "2020-07-15": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, Who on this day took St. Henry, Your Confessor, to the everlasting kingdom from the throne of an earthly empire; ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", - "id": "Lectio" - }, - { - "body": "*Ps 91:12, 14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples: Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - } - ], - "2020-07-16": [ - { - "body": "*Ps. 27:8-9.*\nThe Lord is the strength of His people, the saving refuge of His anointed. Save Your people, O Lord, and b", - "id": "Introitus" - }, - { - "body": "O God of the heavenly powers, creator of all good things, implant in our hearts the love of Your Name, and bestow upon u", - "id": "Oratio" - }, - { - "body": "*Commemoration Our Lady of Mt. Carmel*\nO God, Who honored the Order of Carmel with the special title of the most blessed", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:3-11.*\nBrethren: All we who have been baptized into ", - "id": "Lectio" - }, - { - "body": "*Ps. 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants!\n℣. O Lord, You have been our refuge through all gen", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 8:1-9*\nAt that time, when there was a great crowd with Jesus, ", - "id": "Evangelium" - }, - { - "body": "*Ps. 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. S", - "id": "Offertorium" - }, - { - "body": "Mercifully hear our humble prayers, O Lord, and graciously accept these offerings of Your people, and grant that no pray", - "id": "Secreta" - }, - { - "body": "*Commemoration Our Lady of Mt. Carmel*\nO Lord, we beseech You, make holy the sacrificial gifts we offer, and by the most", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps. 26:6*\nI will go round, and offer in His tent, sacrifices with shouts of gladness; I will sing and chant praise to t", - "id": "Communio" - }, - { - "body": "We have been filled with Your gifts, O Lord; grant, we beseech You, that we may be cleansed and strengthened by their ef", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Our Lady of Mt. Carmel*\nMay the venerable intercession of Your glorious Mother Mary, ever Virgin, help us", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-17": [ - { - "body": "*Ps. 27:8-9.*\nThe Lord is the strength of His people, the saving refuge of His anointed. Save Your people, O Lord, and b", - "id": "Introitus" - }, - { - "body": "O God of the heavenly powers, creator of all good things, implant in our hearts the love of Your Name, and bestow upon u", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Alexis*\nO God, Who gladden us with the annual feast of blessed N. , Your Confessor, mercifully grant ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:3-11.*\nBrethren: All we who have been baptized into ", - "id": "Lectio" - }, - { - "body": "*Ps. 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants!\n℣. O Lord, You have been our refuge through all gen", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 8:1-9*\nAt that time, when there was a great crowd with Jesus, ", - "id": "Evangelium" - }, - { - "body": "*Ps. 16:5-7*\nMake my steps steadfast in Your paths, that my feet may not falter. Incline Your ear to me; hear my word. S", - "id": "Offertorium" - }, - { - "body": "Mercifully hear our humble prayers, O Lord, and graciously accept these offerings of Your people, and grant that no pray", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Alexis*\nWe offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps. 26:6*\nI will go round, and offer in His tent, sacrifices with shouts of gladness; I will sing and chant praise to t", - "id": "Communio" - }, - { - "body": "We have been filled with Your gifts, O Lord; grant, we beseech You, that we may be cleansed and strengthened by their ef", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Alexis*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be help", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-18": [ - { - "body": "*John 15:13*\nGreater love than this no one has, that one lay down his life for his friends.\n*Ps 40:2*\nHappy is he who ha", - "id": "Introitus" - }, - { - "body": "O God, Who endowed St. Camillus with a special gift of charity for the help of souls struggling in their final agony, po", - "id": "Oratio" - }, - { - "body": "*Ss Symphorosæ et septem Filiorum ejus Mm*\nO God, Who permits us to celebrate the anniversary of the death of Your holy ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St John the Apostle\n*1 John 3:13-18*\nBeloved: Do not be surprised if the world hates you", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:12-16*\nAt that time, Jesus said to His disciples, This is M", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", - "id": "Offertorium" - }, - { - "body": "Through the prayers of St. Camillus may this spotless sacrificial offering, by which we renew the work of our Lord Jesus", - "id": "Secreta" - }, - { - "body": "*Ss Symphorosæ et septem Filiorum ejus Mm*\nWe offer You, O Lord, the gifts of our homage; may they be pleasing to You in", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 25:36, 40*\nI was sick and you visited Me: Amen, amen, I say to you, as long as you did it for one of these the lea", - "id": "Communio" - }, - { - "body": "Through this heavenly food which we have received with holy devotion as we celebrate the feast of St. Camillus, Your Con", - "id": "Postcommunio" - }, - { - "body": "*Ss Symphorosæ et septem Filiorum ejus Mm*\nGrant, we beseech You, O Lord, by the intercession of Your holy Martyrs, Symp", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-19": [ - { - "body": "*Ps 46:2*\nAll you peoples clap your hands, shout to God with cries of gladness.\n*Ps 46:3*\nFor the Lord, the Most High, t", - "id": "Introitus" - }, - { - "body": "O God, Whose providence never fails to set things in order, we humbly beseech You to remove from us whatever is harmful ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:19-23*\nBrethren: I speak in a human way because of t", - "id": "Lectio" - }, - { - "body": "*Ps 33:12, 6*\nCome, children, hear me; I will teach you the fear of the Lord.\n℣. Look to Him that you may be radiant wit", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 7:15-21*\nAt that time, Jesus said to His disciples: Beware ", - "id": "Evangelium" - }, - { - "body": "*Dan 3:40*\nAs though it were holocausts of rams and bullocks, or thousands of fat lambs, so let our sacrifice be in Your", - "id": "Offertorium" - }, - { - "body": "O God, You Who have given us in one perfect sacrifice the fulfillment of the various sacrifices made under the Old Law, ", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 30:3*\nIncline Your ear to me, make haste to deliver me.", - "id": "Communio" - }, - { - "body": "May Your healing action, O Lord, mercifully rid us of our evil inclinations and lead us to do good.\nThrough our Lord…", - "id": "Postcommunio" - } - ], - "2020-07-20": [ - { - "body": "*Lam 2:11*\nMy gall is poured out on the ground because of the downfall of the daughter of my people, as child and infant", - "id": "Introitus" - }, - { - "body": "O God, the Father of mercies, by the merits and intercession of St. Jerome, whom You willed to be the helper and father ", - "id": "Oratio" - }, - { - "body": "*St. Margaret, Virg. and Mart.*\nMay blessed Margaret, Virgin and Martyr, who was ever pleasing to You by the merit of he", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 58:7-11*\nThus says the Lord: Share your bread with the hungry, shelter the oppressed", - "id": "Lectio" - }, - { - "body": "*Prov 5:16*\nLet your water sources be dispersed abroad, and in the streets divide your waters.\n*Ps 111:5-6*\n℣. Well for ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:13-21*\nAt that time, little children were brought to Jes", - "id": "Evangelium" - }, - { - "body": "*Tob 12:12*\nWhen you prayed with tears, and buried the dead, and left your dinner, and hid the dead by day in your house", - "id": "Offertorium" - }, - { - "body": "O most merciful God, Who in blessed Jerome graciously destroyed the old to create in him a new man in Your likeness, gra", - "id": "Secreta" - }, - { - "body": "*St. Margaret, Virg. and Mart.*\nGraciously accept the sacrificial gifts offered You, O Lord, through the merits of bless", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*James 1:27*\nReligion pure and undefiled before God the Father, is this: to give aid to orphans and widows in their trib", - "id": "Communio" - }, - { - "body": "Refreshed with the bread of angels, we humbly pray You, O Lord, that we who joyfully celebrate the yearly feast of bless", - "id": "Postcommunio" - }, - { - "body": "*St. Margaret, Virg. and Mart.*\nWe who have been refreshed by the richness of Your divine sacrament, beseech You, O Lord", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-21": [ - { - "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", - "id": "Introitus" - }, - { - "body": "O God, Who, to enable him to accomplish tasks, no matter how difficult, for the glory of Your name and the salvation of ", - "id": "Oratio" - }, - { - "body": "*St. Praxedes, Virgin*\nGraciously hear us, O God our Saviour, that, as we rejoice in the festival of blessed Praxedes, Y", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "May the pious prayer of holy N. thy Bishop and illustrious Doctor be not wanting to us, O Lord, but make our offerings a", - "id": "Secreta" - }, - { - "body": "*S Praxedes, Virgin*\nMay the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, t", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "*Pro Doctore Pontifice.*\nMay blessed N. thy Bishop and illustrious Doctor intercede for us, O Lord, that this thy sacrif", - "id": "Postcommunio" - }, - { - "body": "*S Praxedes, Virgin*\nYou have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the int", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-22": [ - { - "body": "*Ps 118:95-96*\nSinners wait to destroy me, but I pay heed to Your decrees, O Lord. I see that all fulfillment has its li", - "id": "Introitus" - }, - { - "body": "May the prayers of blessed Mary Magdalen help us, O Lord, Who were moved by her prayers and brought back alive from the ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Canticles\n*Song 3:2-5; 8:6-7*\nI will rise and go about the city; in the streets and crossings I ", - "id": "Lectio" - }, - { - "body": "*Ps 44:8*\nYou love justice and hate iniquity.\n℣. Therefore God, your God, has anointed you with the oil of gladness. All", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:36-50*\nAt that time, one of the Pharisees asked Jesus to din", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nThe daughters of kings come to meet You; the queen takes her place at Your right hand in gilded clothing, sur", - "id": "Offertorium" - }, - { - "body": "O Lord, may our gifts be acceptable to You through the glorious merits of blessed Mary Magdalen, whose offering of homag", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:121-122; 118:128.*\nI have fulfilled just ordinances, O Lord; let not the proud oppress me. For in all Your prece", - "id": "Communio" - }, - { - "body": "After receiving Your Body and precious Blood, the one and only saving remedy, we beseech You, O Lord, that, under the pr", - "id": "Postcommunio" - } - ], - "2020-07-23": [ - { - "body": "*Dan 3:84, 87*\nPriests of the Lord, bless the Lord; holy men of humble heart, praise God.\n*Dan. 3:57*\nBless the Lord, al", - "id": "Introitus" - }, - { - "body": "O God, the rewarder of faithful souls, grant that we may obtain pardon through the prayers of blessed Apollinaris, Your ", - "id": "Oratio" - }, - { - "body": "*St. Liborius Bishop and Confessor*\nGrant, we beseech You, almighty God, that the venerable feast of blessed Liborius, Y", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:1-11*\nBeloved: I exhort the presbyters among you - I, yo", - "id": "Lectio" - }, - { - "body": "*Ps 88:21-23*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 22:24-30*\nAt that time, there arose a dispute among the discip", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "O Lord, graciously look down upon these gifts which we bring in commemoration of Your blessed Priest and Martyr Apollina", - "id": "Secreta" - }, - { - "body": "*St. Liborius Bishop and Confessor*\nMay Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while w", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 25:20-21*\nMaster, you handed over to me five talents; behold, I have gained five others in addition. Well done, go", - "id": "Communio" - }, - { - "body": "Receiving Your holy sacrament, we beseech You, O Lord, that the lasting protection of St. Apollinaris may support us; fo", - "id": "Postcommunio" - }, - { - "body": "*St. Liborius Bishop and Confessor*\nGrant, we beseech You, almighty God, that as we thank You for the favors we have rec", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-24": [ - { - "body": "*Ps 46:2*\nAll you peoples clap your hands, shout to God with cries of gladness.\n*Ps 46:3*\nFor the Lord, the Most High, t", - "id": "Introitus" - }, - { - "body": "O God, Whose providence never fails to set things in order, we humbly beseech You to remove from us whatever is harmful ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Christina*\nMay Blessed Christina, Your Virgin and Martyr, we beseech You, O Lord, implore pardon for ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 6:19-23*\nBrethren: I speak in a human way because of t", - "id": "Lectio" - }, - { - "body": "*Ps 33:12, 6*\nCome, children, hear me; I will teach you the fear of the Lord.\n℣. Look to Him that you may be radiant wit", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 7:15-21*\nAt that time, Jesus said to His disciples: Beware ", - "id": "Evangelium" - }, - { - "body": "*Dan 3:40*\nAs though it were holocausts of rams and bullocks, or thousands of fat lambs, so let our sacrifice be in Your", - "id": "Offertorium" - }, - { - "body": "O God, You Who have given us in one perfect sacrifice the fulfillment of the various sacrifices made under the Old Law, ", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Christina*\nGraciously receive, O Lord, the sacrifices offered to You, by the merits of Blessed Christ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 30:3*\nIncline Your ear to me, make haste to deliver me.", - "id": "Communio" - }, - { - "body": "May Your healing action, O Lord, mercifully rid us of our evil inclinations and lead us to do good.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Christina*\nFilled with the abundance of Your divine gift, we beseech You, O Lord our God, that, by th", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-25": [ - { - "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", - "id": "Introitus" - }, - { - "body": "Protect Your people and make them holy, O Lord, so that, guarded by the help of Your Apostle James, they may please You ", - "id": "Oratio" - }, - { - "body": "*Of St. Christopher*\nGrant, we beseech You, almighty God, that we, who honor the anniversary of the death of blessed Chr", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:9-15*\nBrethren: I think God has set fo", - "id": "Lectio" - }, - { - "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 20:20-23*\nAt that time, the mother of the sons of Zebedee c", - "id": "Evangelium" - }, - { - "body": "*Ps 18:5*\nThrough all the earth their voice resounds, and to the ends of the world, their message.", - "id": "Offertorium" - }, - { - "body": "May the holy martyrdom of blessed James, the Apostle, make acceptable the offerings of Your people; and because our own ", - "id": "Secreta" - }, - { - "body": "*Of St. Christopher*\nGrant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration o", - "id": "Commemoratio Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28*\nYou who have followed Me shall sit on thrones, judging the twelve tribes of Israel.", - "id": "Communio" - }, - { - "body": "Help us, O Lord, we beseech You, by the intercession of blessed James, Your Apostle, for whose festival we have joyfully", - "id": "Postcommunio" - }, - { - "body": "*Of St. Christopher*\nGrant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration o", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-26": [ - { - "body": "*Ps 47:10-11*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to the", - "id": "Introitus" - }, - { - "body": "Ever graciously bestow upon us, we beseech You, O Lord, the spirit of thinking and doing what is right, so that we, who ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Anne, Mother of the Blessed Virgin*\nO God, Who in Your kindness gave blessed Anne the grace to be the", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:12-17*\nBrethren: We are debtors, not to the flesh, t", - "id": "Lectio" - }, - { - "body": "*Ps 30:3*\nBe my rock of refuge, O God, a stronghold to give me safety.\n*Ps 70:1*\n℣. In You, O God, I take refuge; O Lord", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 16:1-9*\nAt that time, Jesus spoke to His disciples this parabl", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28, 32*\nLowly people You save, O Lord, but haughty eyes You bring low; for who is God except You, O Lord?", - "id": "Offertorium" - }, - { - "body": "Accept, we beseech You, O Lord, the gifts which we bring to You out of Your own bounty, so that these most holy sacramen", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Anne, Mother of the Blessed Virgin*\nLook with favor, O Lord, upon the offerings here before You, that", - "id": "Commemoratio Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 33:9*\nTaste and see how good the Lord is; happy the man who takes refuge in Him.", - "id": "Communio" - }, - { - "body": "May the heavenly sacrament, O Lord, renew our minds and bodies, so that we may feel the benefit of the worship we perfor", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Anne, Mother of the Blessed Virgin*\nStrengthened by the heavenly sacrament, we beseech You, O Lord ou", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-27": [ - { - "body": "*Ps 47:10-11*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to the", - "id": "Introitus" - }, - { - "body": "Ever graciously bestow upon us, we beseech You, O Lord, the spirit of thinking and doing what is right, so that we, who ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Pantaleon*\nGraciously hear us, we beseech thee, O Almighty God, and, at the petition of thy blessed M", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:12-17*\nBrethren: We are debtors, not to the flesh, t", - "id": "Lectio" - }, - { - "body": "*Ps 30:3*\nBe my rock of refuge, O God, a stronghold to give me safety.\n*Ps 70:1*\n℣. In You, O God, I take refuge; O Lord", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 16:1-9*\nAt that time, Jesus spoke to His disciples this parabl", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28, 32*\nLowly people You save, O Lord, but haughty eyes You bring low; for who is God except You, O Lord?", - "id": "Offertorium" - }, - { - "body": "Accept, we beseech You, O Lord, the gifts which we bring to You out of Your own bounty, so that these most holy sacramen", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Pantaleon*\nMay our service be acceptable in Your sight, O Lord, and may it bring us salvation through", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 33:9*\nTaste and see how good the Lord is; happy the man who takes refuge in Him.", - "id": "Communio" - }, - { - "body": "May the heavenly sacrament, O Lord, renew our minds and bodies, so that we may feel the benefit of the worship we perfor", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Pantaleon*\nWith our strength renewed from having shared in Your sacred gift, we beseech You, O Lord o", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-28": [ - { - "body": "*Ps 78:11; 78:12; 78:10*\nLet the prisoners’ sighing come before You, O Lord; repay our neighbors sevenfold into their bo", - "id": "Introitus" - }, - { - "body": "May the martyrdom of Your Saints Nazarius, Celsus, Victor and Innocent, give us courage, O Lord, and may it give us a he", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis 10:17-20*\nGod gave the holy ones the recompense of their labors, conducted them by a", - "id": "Lectio" - }, - { - "body": "*Ex 15:11*\nGod is glorious in His Saints, wonderful in majesty, a worker of wonders.\n*Ex 15:6*\n℣. Your right hand, O Lor", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:9-19*\nAt that time, Jesus said to His disciples, When you h", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nGod is wonderful in His Saints; the God of Israel is He Who gives power and strength to His people. Blessed b", - "id": "Offertorium" - }, - { - "body": "Grant, almighty God, that we may please You by these gifts which we bring in honor of Your Saints Nazarius, Celsus, Vict", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Wis 3:4-6*\nFor if before men they be punished, God tried them; as gold in the furnace, He proved them, and as sacrifici", - "id": "Communio" - }, - { - "body": "Be appeased by the prayers of Your Saints Nazarius, Celsus, Victor and Innocent, O Lord, and grant, we beseech You, that", - "id": "Postcommunio" - } - ], - "2020-07-29": [ - { - "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", - "id": "Introitus" - }, - { - "body": "Graciously hear us, God our Saviour, that as we rejoice in the festival of blessed Martha, Your Virgin, so may we be nou", - "id": "Oratio" - }, - { - "body": "*Ss Felicis, Simplicii, Faustini et Beatricis.*\nGrant, we beseech You, O Lord, that as Christian people on earth rejoice", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 10:17-18; 11:1-2*\nBrethren: He who boas", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nIn your splendor and your beauty ride on triumphant, and reign.\n℣. In the cause of truth and mercy and for the", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:38-42*\nAt that time, Jesus entered a certain village; and a", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nThe daughters of kings come to meet You; the queen takes her place at Your right hand in gilded clothing, sur", - "id": "Offertorium" - }, - { - "body": "May the offerings of Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits they ", - "id": "Secreta" - }, - { - "body": "*Ss Felicis, Simplicii, Faustini et Beatricis.*\nIn memory of Your holy Martyrs, Felix, Simplicius, Faustinus and Beatric", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4, 6*\nThe five wise virgins took oil in their vessels with the lamps: and at midnight a cry arose, Behold, the ", - "id": "Communio" - }, - { - "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us by the intercession of her whose festival we are", - "id": "Postcommunio" - }, - { - "body": "*Ss Felicis, Simplicii, Faustini et Beatricis.*\nWe beseech You, almighty God, that the feast of Your holy Martyrs, Felix", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-30": [ - { - "body": "*Ps 47:10-11*\nO God, we ponder Your kindness within Your temple. As Your name, O God, so also Your praise reaches to the", - "id": "Introitus" - }, - { - "body": "Ever graciously bestow upon us, we beseech You, O Lord, the spirit of thinking and doing what is right, so that we, who ", - "id": "Oratio" - }, - { - "body": "*Commemoration Sts. Abdon & Sennen*\nO God, Who bestowed upon Your Saints, Abdon and Sennen, an abundance of grace to bri", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 8:12-17*\nBrethren: We are debtors, not to the flesh, t", - "id": "Lectio" - }, - { - "body": "*Ps 30:3*\nBe my rock of refuge, O God, a stronghold to give me safety.\n*Ps 70:1*\n℣. In You, O God, I take refuge; O Lord", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 16:1-9*\nAt that time, Jesus spoke to His disciples this parabl", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28, 32*\nLowly people You save, O Lord, but haughty eyes You bring low; for who is God except You, O Lord?", - "id": "Offertorium" - }, - { - "body": "Accept, we beseech You, O Lord, the gifts which we bring to You out of Your own bounty, so that these most holy sacramen", - "id": "Secreta" - }, - { - "body": "*Commemoration Sts. Abdon & Sennen*\nMay this sacrificial gift, we beseech You, O Lord, which we offer in commemorating t", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 33:9*\nTaste and see how good the Lord is; happy the man who takes refuge in Him.", - "id": "Communio" - }, - { - "body": "May the heavenly sacrament, O Lord, renew our minds and bodies, so that we may feel the benefit of the worship we perfor", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Sts. Abdon & Sennen*\nBy the working of this sacred rite O Lord, may our sins be erased, and through the i", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-31": [ - { - "body": "*Phil. 2:10-11*\nAt the name of Jesus every knee should bend of those in heaven, on earth and under the earth, and every ", - "id": "Introitus" - }, - { - "body": "O God, Who, to spread abroad the greater glory of Your name through St. Ignatius, strengthened the Church militant with ", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 2:8-10; 3:10-12*\nBeloved: Remember that Jesus C", - "id": "Lectio" - }, - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "May the prayers of St. Ignatius be present with our offerings, O Lord God, that the most holy sacrament in which you pla", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:49*\nI have come to cast fire upon the earth, and what will I but that it be kindled?", - "id": "Communio" - }, - { - "body": "May the sacrifice of praise, O Lord, offered in thanksgiving in honor of St. Ignatius bring us, by his intercession, to ", - "id": "Postcommunio" - } - ], - "2020-08-01": [ - { - "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", - "id": "Introitus" - }, - { - "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", - "id": "Oratio" - }, - { - "body": "*Commemoration Holy Machabees *\nMay the brotherly crown of Your Martyrs, O Lord, give us joy and may it afford to our fa", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Commemoration Holy Machabees *\nMay we perform with pious mind the sacramental rite, O Lord, in honor of Your holy Marty", - "id": "Commemoratio Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Holy Machabees *\nGrant, we beseech You, almighty God, that we may follow more and more the faith of those", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-02": [ - { - "body": "*Ps 53:6-7*\nBehold, God is my helper, the Lord sustains my life. Turn back the evil upon my foes; in Your faithfulness d", - "id": "Introitus" - }, - { - "body": "May Your merciful ears be open, O Lord, to the prayers of those who humbly entreat You; grant that they may ask for what", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 10:6-13*\nBrethren: We should not lust af", - "id": "Lectio" - }, - { - "body": "*Ps 8:2*\nO Lord, our Lord, how glorious is Your name over all the earth!\n℣. You have elevated Your Majesty above the hea", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:41-47*\nAt that time, when Jesus drew near to Jerusalem and ", - "id": "Evangelium" - }, - { - "body": "*Ps 18:9-12*\nThe precepts of the Lord are right, rejoicing the heart, and His ordinances sweeter than syrup or honey fro", - "id": "Offertorium" - }, - { - "body": "Grant us, we beseech You, O Lord, to take part worthily and frequently in this sacramental action: for as often as this ", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*John 6:57*\nHe who eats My Flesh, and drinks My Blood, abides in Me, and I in him, says the Lord.", - "id": "Communio" - }, - { - "body": "May the partaking of Your sacrament, we beseech You, O Lord, cleanse us and unite us.\nThrough our Lord…", - "id": "Postcommunio" - } - ], - "2020-08-03": [ - { - "body": "*Ps 53:6-7*\nBehold, God is my helper, the Lord sustains my life. Turn back the evil upon my foes; in Your faithfulness d", - "id": "Introitus" - }, - { - "body": "May Your merciful ears be open, O Lord, to the prayers of those who humbly entreat You; grant that they may ask for what", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 10:6-13*\nBrethren: We should not lust af", - "id": "Lectio" - }, - { - "body": "*Ps 8:2*\nO Lord, our Lord, how glorious is Your name over all the earth!\n℣. You have elevated Your Majesty above the hea", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:41-47*\nAt that time, when Jesus drew near to Jerusalem and ", - "id": "Evangelium" - }, - { - "body": "*Ps 18:9-12*\nThe precepts of the Lord are right, rejoicing the heart, and His ordinances sweeter than syrup or honey fro", - "id": "Offertorium" - }, - { - "body": "Grant us, we beseech You, O Lord, to take part worthily and frequently in this sacramental action: for as often as this ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*John 6:57*\nHe who eats My Flesh, and drinks My Blood, abides in Me, and I in him, says the Lord.", - "id": "Communio" - }, - { - "body": "May the partaking of Your sacrament, we beseech You, O Lord, cleanse us and unite us.\nThrough our Lord…", - "id": "Postcommunio" - } - ], - "2020-08-04": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, Who graciously enlightened Your Church by the good works and teaching of St. Dominic, Your Confessor, grant by hi", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", - "id": "Lectio" - }, - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "Sanctify, O Lord, the gifts dedicated to You, that by the merits of St. Dominic, Your Confessor, they may obtain a heali", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that we who are heavy laden by the weight of our sins may be sustained by the spiri", - "id": "Postcommunio" - } - ], - "2020-08-05": [ - { - "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", - "id": "Introitus" - }, - { - "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nBefore all ages, in the beginning, He created me, and through all ", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, without spot to your maidenhood, were made the Mother of the Saviour.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with you; blessed are you among women and blessed is the fruit of", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "We have received help for our salvation, O Lord; grant, we beseech You, that we may everywhere be protected by the patro", - "id": "Postcommunio" - } - ], - "2020-08-06": [ - { - "body": "*Ps 76:19*\nYour lightening illumined the world; the earth quivered and quaked.\n*Ps 83:2-3*\nHow lovely is Your dwelling p", - "id": "Introitus" - }, - { - "body": "O God, Who in the glorious Transfiguration of Your only-begotten Son strengthened the mysteries of faith by the testimon", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Peter the Apostle\n*2 Pet. 1:16-19*\nBeloved: We were not following fictitious tales ", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 17:1-9*\nAt that time, Jesus took Peter, James and his broth", - "id": "Evangelium" - }, - { - "body": "*Ps 111:3*\nWealth and riches shall be in His house; His generosity shall endure forever. Alleluia.", - "id": "Offertorium" - }, - { - "body": "Hallow our offerings, we beseech You, O Lord, through the glorious Transfiguration of Your only-begotten Son, and cleans", - "id": "Secreta" - }, - { - "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 17:9*\nTell the vision you have seen to no one, till the Son of Man has risen from the dead.", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that by the understanding of our minds made pure, we may grasp the mystery of the T", - "id": "Postcommunio" - } - ], - "2020-08-07": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, Who bestowed upon St. Cajetan, Your Confessor, the grace to follow the apostolic way of life; grant us by his int", - "id": "Oratio" - }, - { - "body": "*For St. Donatus*\nO God, the glory of Your priests, grant, we beseech You, that we may enjoy the help of Your holy Marty", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 31:8-11*\nHappy the man found without fault, who turns not aside after gai", - "id": "Lectio" - }, - { - "body": "*Ps 91:12, 14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 6:24-33*\nAt that time, Jesus said to His disciples: No man ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, almighty God, that our humble offerings may be pleasing to You as an honor paid to Your saints, a", - "id": "Secreta" - }, - { - "body": "*For St. Donatus*\nGrant, we beseech You, O Lord, through the intercession of Your holy Martyr and Bishop, Donatus, whom ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "We beseech You, almighty God, that we who have partaken of heavenly nourishment, may, by the intercession of St. Cajetan", - "id": "Postcommunio" - }, - { - "body": "*For St. Donatus*\nAlmighty and merciful God, Who make us both the partakers and the ministers of Your sacraments, grant,", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-08": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "Almighty and merciful God, Who made St. John Mary glorious by priestly zeal and untiring fervor in prayer and penance, g", - "id": "Oratio" - }, - { - "body": "*Commemoration of Ss. Cyriacus, Largus and Smaragdus, Martyrs*\nO God, Who gladden us with the annual festival of Your ho", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*Commemoration of Ss. Cyriacus, Largus and Smaragdus, Martyrs*\nMay our service be acceptable in Your sight, O Lord, and ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - }, - { - "body": "*Commemoration of Ss. Cyriacus, Largus and Smaragdus, Martyrs*\nWith our strength renewed from having shared in Your sacr", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-09": [ - { - "body": "*Ps 54:17-20; 54:23*\nWhen I call upon the Lord, He heard my voice, from those who war against me; and He humbled them, W", - "id": "Introitus" - }, - { - "body": "O God, You manifest Your power, particularly in forbearance and pity, show us Your mercy again and again, so that hasten", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 12:2-11*\nBrethren: You know that when yo", - "id": "Lectio" - }, - { - "body": "*Ps 16:8, 2*\nKeep me, O Lord, as the apple of Your eye; hide me in the shadow of Your wings.\n℣. From You let judgment co", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:9-14*\nAt that time, Jesus spoke this parable to some who tr", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nTo You I lift up my soul, O Lord. In You, O my God, I trust; let me not be put to shame, let not my enemies ", - "id": "Offertorium" - }, - { - "body": "Let the sacred gifts be offered to You, O Lord, Who have given them to be presented for the honor of Your name, for in t", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nYou shall be pleased with due sacrifices, burnt offerings and holocausts on Your altar, O Lord.", - "id": "Communio" - }, - { - "body": "We beseech You, O Lord our God, that in Your mercy You will not withhold Your help from those whom You constantly restor", - "id": "Postcommunio" - } - ], - "2020-08-10": [ - { - "body": "*Ps 95:6*\nSplendor and majesty go before Him; praise and grandeur are in His sanctuary.\n*Ps 95:1*\nSing to the Lord a new", - "id": "Introitus" - }, - { - "body": "Grant us, we beseech You, almighty God, to extinguish the flames of our sins, as You granted St. Lawrence to overcome th", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 9:6-10*\n\nBrethren: He who sows sparingl", - "id": "Lectio" - }, - { - "body": "*Ps 16:3*\nThough You test my heart, O Lord, searching it in the night.\n℣. Though You try me with fire, You shall find no", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 12:24-26*\nAt that time, Jesus said to His disciples, Amen, ame", - "id": "Evangelium" - }, - { - "body": "*Ps 95:6*\nSplendor and majesty go before Him; praise and grandeur are in His sanctuary.", - "id": "Offertorium" - }, - { - "body": "Receive, we beseech You, O Lord, the gifts fully offered to You, and, by the interceding merits of blessed Lawrence, You", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*John 12:26*\nIf anyone serves Me, let him follow Me; and where I am there also shall My servant be.", - "id": "Communio" - }, - { - "body": "Filled with Your sacred gifts, we humbly pray You, O Lord, that as we perform this sacred act in duty bound, we may, thr", - "id": "Postcommunio" - } - ], - "2020-08-11": [ - { - "body": "*Ps 54:17-20; 54:23*\nWhen I call upon the Lord, He heard my voice, from those who war against me; and He humbled them, W", - "id": "Introitus" - }, - { - "body": "O God, You manifest Your power, particularly in forbearance and pity, show us Your mercy again and again, so that hasten", - "id": "Oratio" - }, - { - "body": "*Commemoration Sts. Tiburtius & Susanna*\nMay the constant protection of Your holy Martyrs, Tiburtius and Susanna, suppor", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 12:2-11*\nBrethren: You know that when yo", - "id": "Lectio" - }, - { - "body": "*Ps 16:8, 2*\nKeep me, O Lord, as the apple of Your eye; hide me in the shadow of Your wings.\n℣. From You let judgment co", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:9-14*\nAt that time, Jesus spoke this parable to some who tr", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nTo You I lift up my soul, O Lord. In You, O my God, I trust; let me not be put to shame, let not my enemies ", - "id": "Offertorium" - }, - { - "body": "Let the sacred gifts be offered to You, O Lord, Who have given them to be presented for the honor of Your name, for in t", - "id": "Secreta" - }, - { - "body": "*Commemoration Sts. Tiburtius & Susanna*\nHeed the prayers of Your people, O Lord; look with favor on their offerings, so", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nYou shall be pleased with due sacrifices, burnt offerings and holocausts on Your altar, O Lord.", - "id": "Communio" - }, - { - "body": "We beseech You, O Lord our God, that in Your mercy You will not withhold Your help from those whom You constantly restor", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Sts. Tiburtius & Susanna*\nWe have received, O Lord, the pledge of everlasting redemption; may it, by the ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-12": [ - { - "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", - "id": "Introitus" - }, - { - "body": "Hear us, O God, our Saviour, that as we are gladdened by the festival of blessed N. thy virgin, so we may learn from it ", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", - "id": "Offertorium" - }, - { - "body": "May the service of thy holy people be acceptable to Thee, O Lord, and honorable to thy saints, through whose merits we k", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", - "id": "Communio" - }, - { - "body": "Thou hast fed thy servants, O Lord, with the holy gifts; comfort us ever we pray, by her intercession whose festival we ", - "id": "Postcommunio" - } - ], - "2020-08-13": [ - { - "body": "*Ps 54:17-20; 54:23*\nWhen I call upon the Lord, He heard my voice, from those who war against me; and He humbled them, W", - "id": "Introitus" - }, - { - "body": "O God, You manifest Your power, particularly in forbearance and pity, show us Your mercy again and again, so that hasten", - "id": "Oratio" - }, - { - "body": "*Commemoration Sts. Hippolytus & Cassian*\nGrant, we beseech You, almighty God, that the great festival of Your blessed M", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 12:2-11*\nBrethren: You know that when yo", - "id": "Lectio" - }, - { - "body": "*Ps 16:8, 2*\nKeep me, O Lord, as the apple of Your eye; hide me in the shadow of Your wings.\n℣. From You let judgment co", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 18:9-14*\nAt that time, Jesus spoke this parable to some who tr", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nTo You I lift up my soul, O Lord. In You, O my God, I trust; let me not be put to shame, let not my enemies ", - "id": "Offertorium" - }, - { - "body": "Let the sacred gifts be offered to You, O Lord, Who have given them to be presented for the honor of Your name, for in t", - "id": "Secreta" - }, - { - "body": "*Commemoration Sts. Hippolytus & Cassian*\nLook with favor, O Lord, upon the offerings of Your people on the devout festi", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nYou shall be pleased with due sacrifices, burnt offerings and holocausts on Your altar, O Lord.", - "id": "Communio" - }, - { - "body": "We beseech You, O Lord our God, that in Your mercy You will not withhold Your help from those whom You constantly restor", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Sts. Hippolytus & Cassian*\nMay the eating of Your sacrament save us, O Lord, and make us stand firm in th", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-14": [ - { - "body": "*Ps 44:13; 44:15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to ", - "id": "Introitus" - }, - { - "body": "O God, Who chose for Your dwelling the virginal womb of the blessed Mary, grant, we beseech You, that, with the help of ", - "id": "Oratio" - }, - { - "body": "*For St. Eusebius*\nO God, Who gladden us with the annual feast of blessed Eusebius, Your Confessor, mercifully grant tha", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:23-31*\nI bud forth delights like the vine, my blossoms become fruit fa", - "id": "Lectio" - }, - { - "body": "℣. Blessed and venerable are you, O Virgin Mary, who, without spot were made the Mother of the Saviour.\n℣. O Virgin, Mot", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "Blessed are you, O Virgin Mary, you who bore the Creator of all things; you brought forth Him Who made you, and you rema", - "id": "Offertorium" - }, - { - "body": "O Lord, may the prayer of the Mother of God, recommend our offerings to Your mercy, that she, whom You transported from ", - "id": "Secreta" - }, - { - "body": "*For St. Eusebius*\nWe offer these sacrifices of praise, O Lord, in memory of Your Saints, trusting that by them we may b", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the Eternal Father.", - "id": "Communio" - }, - { - "body": "Grant Your protection for our weakness, O merciful God, that we who look forward to the feast of God’s holy Mother, may,", - "id": "Postcommunio" - }, - { - "body": "*For St. Eusebius*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by hi", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-15": [ - { - "body": "*Apoc 12:1*\nA great sign appeared in heaven: a woman clothed with the sun, and the moon was under her feet, and upon her", - "id": "Introitus" - }, - { - "body": "Almighty, everlasting God, Who took up, body and soul, the Immaculate Virgin Mary, Mother of Your Son, into heavenly glo", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Judith\n*Judith 13:22-25; 15:10*\nThe Lord has blessed you by His power, because by you He has bro", - "id": "Lectio" - }, - { - "body": "*Ps 44:11-12, 14*\nHear, O daughter, and see; turn your ear; for the King shall desire your beauty.\n℣. All glorious is th", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:41-50*\nAt that time, Elizabeth was filled with the Holy Spir", - "id": "Evangelium" - }, - { - "body": "*Gen 3:15*\nI will put enmity between you and the Woman, between your seed and her seed.", - "id": "Offertorium" - }, - { - "body": "May the offering of our devotion rise unto You, O Lord, and by the intercession of the most Blessed Virgin Mary, who was", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "*Luke 1:48-49*\nAll generations shall call me blessed; because He Who is mighty has done great things for me.", - "id": "Communio" - }, - { - "body": "Having partaken, O Lord, of the sacrament of salvation, grant, we beseech You, that through the merits and intercession ", - "id": "Postcommunio" - } - ], - "2020-08-16": [ - { - "body": "*Ps 67:6 67:7 67:36*\nGod is in His holy dwelling, God Who makes men of one mind to dwell in a house; He shall give power", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, You Who in the abundance of Your love always grant more than Your humble petitioners deserve, and", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Joachim, Father of the Blessed Virgin*\nO God, Who, in preference to Your other Saints, willed St. Joa", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 15:1-10*\nBrethren: I recall to your mind", - "id": "Lectio" - }, - { - "body": "*Ps 27:7*\nIn God my heart trusts, and I find help; then my heart exults, and with my song I give Him thanks.\n℣. To You, ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 7:31-37*\nAt that time, Jesus departing from the district of Ty", - "id": "Evangelium" - }, - { - "body": "*Ps 29:2-3*\nI will extol You, O Lord, for You drew me near and did not let my enemies rejoice over me; O Lord, I cried o", - "id": "Offertorium" - }, - { - "body": "Look with mercy, we beseech You, O Lord, upon our act of worship that the gift we offer may be acceptable to You and may", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Joachim, Father of the Blessed Virgin*\nGraciously accept, most merciful God, the sacrifice offered to", - "id": "Commemoratio Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Prov 3:9-10*\nHonor the Lord with your wealth, with first fruits of all your produce. Then will your barns be filled wit", - "id": "Communio" - }, - { - "body": "By receiving Your sacrament, O Lord, may we experience Your help in mind and body, that being cured in both, we may glor", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Joachim, Father of the Blessed Virgin*\nWe beseech You, almighty God, that by this sacrament which we ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-17": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, Who gladden us with the annual feast of blessed Hyacinth, Your Confessor, mercifully grant that, while honoring t", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - } - ], - "2020-08-18": [ - { - "body": "*Ps 67:6 67:7 67:36*\nGod is in His holy dwelling, God Who makes men of one mind to dwell in a house; He shall give power", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, You Who in the abundance of Your love always grant more than Your humble petitioners deserve, and", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Agapitus*\nMay Your Church rejoice, O God, trusting in the support of St. Agapitus, Your Martyr, and, ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 15:1-10*\nBrethren: I recall to your mind", - "id": "Lectio" - }, - { - "body": "*Ps 27:7*\nIn God my heart trusts, and I find help; then my heart exults, and with my song I give Him thanks.\n℣. To You, ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 7:31-37*\nAt that time, Jesus departing from the district of Ty", - "id": "Evangelium" - }, - { - "body": "*Ps 29:2-3*\nI will extol You, O Lord, for You drew me near and did not let my enemies rejoice over me; O Lord, I cried o", - "id": "Offertorium" - }, - { - "body": "Look with mercy, we beseech You, O Lord, upon our act of worship that the gift we offer may be acceptable to You and may", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Agapitus*\nAccept, O Lord, the gifts we bring on his festival by whose spiritual protection we hope to", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Prov 3:9-10*\nHonor the Lord with your wealth, with first fruits of all your produce. Then will your barns be filled wit", - "id": "Communio" - }, - { - "body": "By receiving Your sacrament, O Lord, may we experience Your help in mind and body, that being cured in both, we may glor", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Agapitus*\nYou have fed Your household, O Lord, with the holy sacrament; ever comfort us, we beseech Y", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-19": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, Who wondrously enkindled St. John, Your Confessor, to promote the religious veneration of the Sacred Hearts of Je", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - } - ], - "2020-08-20": [ - { - "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", - "id": "Introitus" - }, - { - "body": "O God, Who gave to Your people, blessed Bernard, as a minister of salvation, grant, we beseech You, that we who cherishe", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 39:6-14*\nThe just man will give his heart to resort early to the Lord his", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: \"You are", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree; like a cedar of Libanus shall he grow.", - "id": "Offertorium" - }, - { - "body": "May the loving prayer of blessed Bernard, Your Confessor and Doctor, fail us never, O Lord; may it commend our offerings", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "So that Your sacrificial rites may grant us salvation, we pray You, O Lord, that blessed Bernard, Your Confessor and ill", - "id": "Postcommunio" - } - ], - "2020-08-21": [ - { - "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", - "id": "Introitus" - }, - { - "body": "Almighty and merciful God, Who endowed St. Jane Frances, burning with love of You, with a wondrous strength of spirit th", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", - "id": "Offertorium" - }, - { - "body": "O Lord, may this sacrificial gift enkindle in us that fire of love which burned so warmly in the heart of St. Jane Franc", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", - "id": "Communio" - }, - { - "body": "Pour upon us, O Lord, the spirit of Your love, that You Who have filled us with the strength of heavenly bread, may thro", - "id": "Postcommunio" - } - ], - "2020-08-22": [ - { - "body": "*Heb 4:16*\nLet us draw near with confidence to the throne of grace, that we may obtain mercy and find grace to help in t", - "id": "Introitus" - }, - { - "body": "Almighty, everlasting God, Who in the Heart of the Blessed Virgin Mary prepared a dwelling place worthy of the Holy Spir", - "id": "Oratio" - }, - { - "body": "*Commemoration of Sts. Timothy, Hippolytus and Symphorianus, Martyrs*\nMercifully give us Your help, we beseech You, O Lo", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:23-31*\nI bud forth delights like the vine, my blossoms become fruit fa", - "id": "Lectio" - }, - { - "body": "*Ps 12:6*\nLet my Heart rejoice in Your salvation; let me sing of the Lord, He has been good to me. Yes, I will sing to t", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:25-27*\nAt that time, there were standing by the Cross of Je", - "id": "Evangelium" - }, - { - "body": "*Luke 1:47, 49*\nMy spirit rejoices in God my Saviour; because He Who is mighty has done great things for me, and holy is", - "id": "Offertorium" - }, - { - "body": "Offering the spotless Lamb to Your Majesty, O Lord, we pray that our hearts may be set aflame by the fire that burned so", - "id": "Secreta" - }, - { - "body": "*Commemoration of Sts. Timothy, Hippolytus and Symphorianus, Martyrs*\nAccept, O Lord, the offering which Your consecrate", - "id": "Commemoratio Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "*John 19:27*\nJesus said to His Mother, Woman, behold your son. Then He said to the disciple, Behold your mother. And fro", - "id": "Communio" - }, - { - "body": "Refreshed by divine gifts, we humbly beseech You, O Lord, that by the intercession of the Blessed Virgin Mary, the solem", - "id": "Postcommunio" - }, - { - "body": "*Commemoration of Sts. Timothy, Hippolytus and Symphorianus, Martyrs*\nFilled with the abundance of the divine sacrament,", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-23": [ - { - "body": "*Ps 69:2-3*\nDeign, O God, to rescue me; O Lord, make haste to help me. Let them be put to shame and confounded who seek ", - "id": "Introitus" - }, - { - "body": "Almighty and merciful God, by Whose grace Your faithful people serve You worthily and righteously, grant, we beseech You", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 3:4-9*\nBrethren: Such is the assurance ", - "id": "Lectio" - }, - { - "body": "*Ps 33:2-3*\nI will bless the Lord at all times; His praise shall be ever in my mouth.\n℣. Let my soul glory in the Lord; ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:23-37*\nAt that time, Jesus said to His disciples: Blessed a", - "id": "Evangelium" - }, - { - "body": "*Ex 32:11, 13-14.*\nMoses prayed in the sight of the Lord his God and said, Why, O Lord, is Your indignation enkindled ag", - "id": "Offertorium" - }, - { - "body": "O Lord, we beseech You, graciously look upon the offerings which we lay upon Your sacred altar; so that they may bring u", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 103:13-15*\nThe earth is replete with the fruit of Your works, O Lord; You produce bread from the earth, and wine to ", - "id": "Communio" - }, - { - "body": "May the holy reception of this sacrament, we beseech You, O Lord, restore us to life, and bestow upon us forgiveness and", - "id": "Postcommunio" - } - ], - "2020-08-24": [ - { - "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, Who bestowed on us the devout and holy joy of this day to celebrate the feast of Your blessed Apo", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 12:27-31*\nBrethren: You are the body of ", - "id": "Lectio" - }, - { - "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 6:12-19*\nAt that time, Jesus went out to the mountain to pray,", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, that we who keep the feast of Your blessed Apostle Bartholomew, may, by his help, obtain Your bl", - "id": "Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28*\nYou who have followed Me shall sit on thrones judging the twelve tribes of Israel, says the Lord.", - "id": "Communio" - }, - { - "body": "We have received, O Lord, the pledge of everlasting redemption; may it, by the intercession of blessed Bartholomew, Your", - "id": "Postcommunio" - } - ], - "2020-08-25": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, Who transported Your blessed Confessor Louis from an earthly throne to the glory of the heavenly kingdom, by his ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nThe Lord guided the just in direct ways, showed him the kingdom of God, an", - "id": "Lectio" - }, - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:12-26*\nAt that time, Jesus spoke this parable to His discip", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (Alleluia.)", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, almighty God, that as blessed Louis, Your Confessor, spurning the delights of the world, labored ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "O God, Who made Your blessed Confessor, Louis, wonderful on earth and glorious in heaven, make him, we beseech You, the ", - "id": "Postcommunio" - } - ], - "2020-08-26": [ - { - "body": "*Ps 69:2-3*\nDeign, O God, to rescue me; O Lord, make haste to help me. Let them be put to shame and confounded who seek ", - "id": "Introitus" - }, - { - "body": "Almighty and merciful God, by Whose grace Your faithful people serve You worthily and righteously, grant, we beseech You", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Zephyrinus*\nLook forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor. 3:4-9*\nBrethren: Such is the assurance ", - "id": "Lectio" - }, - { - "body": "*Ps 33:2-3*\nI will bless the Lord at all times; His praise shall be ever in my mouth.\n℣. Let my soul glory in the Lord; ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:23-37*\nAt that time, Jesus said to His disciples: Blessed a", - "id": "Evangelium" - }, - { - "body": "*Ex 32:11, 13-14.*\nMoses prayed in the sight of the Lord his God and said, Why, O Lord, is Your indignation enkindled ag", - "id": "Offertorium" - }, - { - "body": "O Lord, we beseech You, graciously look upon the offerings which we lay upon Your sacred altar; so that they may bring u", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Zephyrinus*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so t", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 103:13-15*\nThe earth is replete with the fruit of Your works, O Lord; You produce bread from the earth, and wine to ", - "id": "Communio" - }, - { - "body": "May the holy reception of this sacrament, we beseech You, O Lord, restore us to life, and bestow upon us forgiveness and", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Zephyrinus*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, t", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-27": [ - { - "body": "*Ps 33:12*\nCome, children, hear me; I will teach you the fear of the Lord.\n*Ps 33:2*\nI will bless the Lord at all times;", - "id": "Introitus" - }, - { - "body": "O God, Who through St. Joseph, Your Confessor, did graciously will to provide Your Church with a new help for the traini", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nThe Lord guided the just in direct ways, showed him the kingdom of God, an", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-5*\nAt that time, the disciples came to Jesus, saying, ", - "id": "Evangelium" - }, - { - "body": "*Ps 9:17*\nThe desire of the afflicted the Lord hears; You pay heed to the strengthening of their hearts.", - "id": "Offertorium" - }, - { - "body": "Upon Your altar we heap our offerings, O Lord, that they may win mercy for us through the prayer of him whom You have gi", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Mark 10:14*\nLet the little children come to Me, and do not hinder them, for of such is the kingdom of God.", - "id": "Communio" - }, - { - "body": "Made holy by the sacrament of salvation, O Lord, we pray that, by the intercession of St. Joseph, Your Confessor, we may", - "id": "Postcommunio" - } - ], - "2020-08-28": [ - { - "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", - "id": "Introitus" - }, - { - "body": "Give heed to our humble prayers, almighty God, and through the intercession of blessed Augustine, Your Confessor and Bis", - "id": "Oratio" - }, - { - "body": "*For St. Hermes*\nO God, Who strengthened blessed Hermes, Your Martyr, with the virtue of steadfastness in his suffering,", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time, Jesus said to His disciples: \"You ar", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree; like a cedar of Libanus shall he grow.", - "id": "Offertorium" - }, - { - "body": "May the loving prayer of blessed Augustine, Your Bishop and Doctor, fail us never, O Lord; may it commend our offerings ", - "id": "Secreta" - }, - { - "body": "*For St. Hermes*\nWe offer You, O Lord, the sacrifice of praise in memory of Your Saints; grant, we beseech You, that wha", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "So that Your sacrificial rites may grant us salvation; we pray You, O Lord, that blessed Augustine, Your Bishop and illu", - "id": "Postcommunio" - }, - { - "body": "*For St. Hermes*\nFilled with heavenly blessings, O Lord, we beseech Your mercy that, by the intercession of blessed Herm", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-29": [ - { - "body": "*Ps 118:46-47*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, whi", - "id": "Introitus" - }, - { - "body": "May the great festival of St. John the Baptist, Your Precursor and Martyr, we beseech You, O Lord, assure for us the res", - "id": "Oratio" - }, - { - "body": "*For St. Sabina*\nO God, Who among the other miracles of Your power bestowed the victory of martyrdom even upon the weake", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Jeremias\n*Jer 1:17-19*\nIn those days, the word of the Lord came to me, saying: Gird your loins; ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 6:17-29*\nAt that time, Herod had sent and taken John, and boun", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", - "id": "Offertorium" - }, - { - "body": "We pray, O Lord, that the offerings we bring You in memory of the agonizing death of Your holy Martyr, John the Baptist,", - "id": "Secreta" - }, - { - "body": "*For St. Sabina*\nGraciously accept the sacrificial gifts offered You, O Lord, through the merits of blessed Sabina, Your", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 20:4*\nYou placed on his head, O Lord, a crown of pure gold.", - "id": "Communio" - }, - { - "body": "May the solemn festival of St. John the Baptist bring us the grace, O Lord, both to venerate the foreshadowing of the wo", - "id": "Postcommunio" - }, - { - "body": "*For St. Sabina*\nWe who have been refreshed by the richness of Your divine sacrament, beseech You, O Lord our God, that ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-30": [ - { - "body": "*Ps 73:20; 73:19; 73:23*\nLook to Your covenant, O Lord, forsake not forever the lives of Your afflicted ones. Arise, O L", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, grant us an increase of faith, hope and charity; and make us love what You command so that we may", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 3:16-22*\nBrethren: The promises were made to Abraha", - "id": "Lectio" - }, - { - "body": "*Ps 73:20, 19, 22*\nLook to Your covenant, O Lord, be not unmindful of the lives of Your afflicted ones.\n℣. Arise, O Lord", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 17:11-19*\nAt that time, Jesus was going to Jerusalem, He was p", - "id": "Evangelium" - }, - { - "body": "*Ps 30:15-16*\nMy trust is in You, O Lord; I say, You are my God. In Your hands is my destiny.", - "id": "Offertorium" - }, - { - "body": "Look with favor upon Your people, O Lord, look with favor upon their gifts; so that, appeased by this offering, You will", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Wis 16:20*\nYou have given us, O Lord, bread from heaven, endowed with all delights and the sweetness of every taste.", - "id": "Communio" - }, - { - "body": "Having received Your heavenly sacrament, O Lord, may we make progress, we beseech You, toward our everlasting salvation.", - "id": "Postcommunio" - } - ], - "2020-08-31": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, Who made blessed Raymund, Your Confessor, famous for delivering Your faithful from the captivity of the infidels,", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - } - ], - "2020-09-01": [ - { - "body": "*Ps 73:20; 73:19; 73:23*\nLook to Your covenant, O Lord, forsake not forever the lives of Your afflicted ones. Arise, O L", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, grant us an increase of faith, hope and charity; and make us love what You command so that we may", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Giles*\nMay the pleading of blessed Aegidius Abbot make us acceptable unto thee O Lord, we pray; that ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 3:16-22*\nBrethren: The promises were made to Abraha", - "id": "Lectio" - }, - { - "body": "*Ps 73:20, 19, 22*\nLook to Your covenant, O Lord, be not unmindful of the lives of Your afflicted ones.\n℣. Arise, O Lord", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 17:11-19*\nAt that time, Jesus was going to Jerusalem, He was p", - "id": "Evangelium" - }, - { - "body": "*Ps 30:15-16*\nMy trust is in You, O Lord; I say, You are my God. In Your hands is my destiny.", - "id": "Offertorium" - }, - { - "body": "Look with favor upon Your people, O Lord, look with favor upon their gifts; so that, appeased by this offering, You will", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Giles*\nWe offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Wis 16:20*\nYou have given us, O Lord, bread from heaven, endowed with all delights and the sweetness of every taste.", - "id": "Communio" - }, - { - "body": "Having received Your heavenly sacrament, O Lord, may we make progress, we beseech You, toward our everlasting salvation.", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Giles*\nRefreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helpe", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-02": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "We beseech You, almighty God, that Your Church be worthy to have as her glorious defender in heaven blessed Stephen, You", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 31:8-11*\nHappy the man found without fault, who turns not aside after gai", - "id": "Lectio" - }, - { - "body": "*Ps 91:12, 14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:12-26*\nAt that time, Jesus spoke this parable to His discip", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted. (Alleluia.)", - "id": "Offertorium" - }, - { - "body": "Look with favor, almighty God, upon the offerings we bring to you, and grant that we, who celebrate the mysteries of our", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that we may follow in proper reverence the faith of blessed Stephen, Your Confessor", - "id": "Postcommunio" - } - ], - "2020-09-03": [ - { - "body": "*Ps 88:20-22*\nI have raised up the chosen one from the people; with My holy oil I have anointed him, that My hand may be", - "id": "Introitus" - }, - { - "body": "O God Who, for the defense of the Catholic faith and the restoration of all things in Christ, filled St. Pius, the Supre", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Thessalonians\n*1 Thess. 2:2-8*\nBrethren: We had confidence i", - "id": "Lectio" - }, - { - "body": "*Ps 39:10-11*\nI announced Your justice in the vast assembly; I did not restrain my lips as You, O Lord, know.\n℣. Your ju", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 21:15-17*\nAt that time, Jesus said to Simon Peter, Simon, son ", - "id": "Evangelium" - }, - { - "body": "*Ps 33:12*\nCome, children, hear me; I will teach you the fear of the Lord.", - "id": "Offertorium" - }, - { - "body": "Having graciously accepted our offerings, we beseech You, O Lord, that we may ever treat this divine sacrament with sinc", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*John 6:56-57*\nMy Flesh is food indeed, and My Blood is drink indeed. He who eats My Flesh and drinks My Blood, abides i", - "id": "Communio" - }, - { - "body": "We, who have been filled with strength at the heavenly table, beseech You, O Lord, our God, that by the intercession of ", - "id": "Postcommunio" - } - ], - "2020-09-04": [ - { - "body": "*Ps 73:20; 73:19; 73:23*\nLook to Your covenant, O Lord, forsake not forever the lives of Your afflicted ones. Arise, O L", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, grant us an increase of faith, hope and charity; and make us love what You command so that we may", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 3:16-22*\nBrethren: The promises were made to Abraha", - "id": "Lectio" - }, - { - "body": "*Ps 73:20, 19, 22*\nLook to Your covenant, O Lord, be not unmindful of the lives of Your afflicted ones.\n℣. Arise, O Lord", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 17:11-19*\nAt that time, Jesus was going to Jerusalem, He was p", - "id": "Evangelium" - }, - { - "body": "*Ps 30:15-16*\nMy trust is in You, O Lord; I say, You are my God. In Your hands is my destiny.", - "id": "Offertorium" - }, - { - "body": "Look with favor upon Your people, O Lord, look with favor upon their gifts; so that, appeased by this offering, You will", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Wis 16:20*\nYou have given us, O Lord, bread from heaven, endowed with all delights and the sweetness of every taste.", - "id": "Communio" - }, - { - "body": "Having received Your heavenly sacrament, O Lord, may we make progress, we beseech You, toward our everlasting salvation.", - "id": "Postcommunio" - } - ], - "2020-09-05": [ - { - "body": "*Ecclus. 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the digni", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that the venerable feast of Your blessed Confessor and Bishop Laurence may increase", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, a", - "id": "Lectio" - }, - { - "body": "*Ecclus 44:16*\nBehold, a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not found the like to hi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Offertorium" - }, - { - "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", - "id": "Postcommunio" - } - ], - "2020-09-06": [ - { - "body": "*Ps 83:10-11*\nBehold, O God, our Protector, and look upon the face of Your Anointed. Better is one day in Your courts th", - "id": "Introitus" - }, - { - "body": "Protect Your Church by Your abiding mercy, we beseech You, O Lord, and since all mortals fall without You, may Your help", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:16-24*\nBrethren: Walk in the Spirit, and you will", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nIt is better to take refuge in the Lord than to trust in man.\n℣. It is better to take refuge in the Lord th", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 6:24-33*\nAt that time, Jesus said to His disciples: No man ", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nThe Angel of the Lord encamps around those who fear Him, and delivers them. Taste and see how good the Lord ", - "id": "Offertorium" - }, - { - "body": "Grant us, Lord, we beseech You, that this salutary sacrifice may be not only a cleansing from our sins but also a propit", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Matt 6:33*\nSeek first the Kingdom of God; and all things shall be given you besides, says the Lord.", - "id": "Communio" - }, - { - "body": "May Your sacrament, O God, ever cleanse and strengthen us, and bring us to everlasting salvation.\nThrough our Lord…", - "id": "Postcommunio" - } - ], - "2020-09-07": [ - { - "body": "*Ps 83:10-11*\nBehold, O God, our Protector, and look upon the face of Your Anointed. Better is one day in Your courts th", - "id": "Introitus" - }, - { - "body": "Protect Your Church by Your abiding mercy, we beseech You, O Lord, and since all mortals fall without You, may Your help", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:16-24*\nBrethren: Walk in the Spirit, and you will", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nIt is better to take refuge in the Lord than to trust in man.\n℣. It is better to take refuge in the Lord th", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 6:24-33*\nAt that time, Jesus said to His disciples: No man ", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nThe Angel of the Lord encamps around those who fear Him, and delivers them. Taste and see how good the Lord ", - "id": "Offertorium" - }, - { - "body": "Grant us, Lord, we beseech You, that this salutary sacrifice may be not only a cleansing from our sins but also a propit", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 6:33*\nSeek first the Kingdom of God; and all things shall be given you besides, says the Lord.", - "id": "Communio" - }, - { - "body": "May Your sacrament, O God, ever cleanse and strengthen us, and bring us to everlasting salvation.\nThrough our Lord…", - "id": "Postcommunio" - } - ], - "2020-09-08": [ - { - "body": "Hail, holy Mother, who brought forth the King Who rules heaven and earth forever and ever.\n*Ps 44:2*\nMy heart overflows ", - "id": "Introitus" - }, - { - "body": "Bestow upon Your servants, we beseech You, O Lord, the gift of heavenly grace, that, as the child-bearing of the Blessed", - "id": "Oratio" - }, - { - "body": "*For St. Adrian*\nGrant, we beseech You, almighty God, that we, who venerate the anniversary of the death of blessed Adri", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Proverbs\n*Prov 8:22-35*\nThe Lord begot me, the firstborn of His ways, the forerunner of His prod", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, without spot to your maidenhood, were made the Mother of the Saviour.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 1:1-16*\nThe book of the origins of Jesus Christ, the Son of", - "id": "Evangelium" - }, - { - "body": "Blessed are you, O Virgin Mary, you who bore the Creator of all things; you brought forth Him Who made you, and you rema", - "id": "Offertorium" - }, - { - "body": "May the humanity of Your only-begotten Son help us, O Lord, as He, Who, born of a virgin did not lessen but consecrated ", - "id": "Secreta" - }, - { - "body": "*For St. Adrian*\nNow that You have received our gifts and prayers, we beseech You, O Lord, cleanse us by Your heavenly m", - "id": "Commemoratio Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "We have partaken of the solemn sacrament on this annual feast: grant we beseech You, that it may bring us assistance bot", - "id": "Postcommunio" - }, - { - "body": "*For St. Adrian*\nGrant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration of Yo", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-09": [ - { - "body": "*Ps 83:10-11*\nBehold, O God, our Protector, and look upon the face of Your Anointed. Better is one day in Your courts th", - "id": "Introitus" - }, - { - "body": "Protect Your Church by Your abiding mercy, we beseech You, O Lord, and since all mortals fall without You, may Your help", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Gorgonius*\nMay Gorgonius, Your Saint, O Lord, gladden us by his intercession, and cause us to rejoice", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:16-24*\nBrethren: Walk in the Spirit, and you will", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nIt is better to take refuge in the Lord than to trust in man.\n℣. It is better to take refuge in the Lord th", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 6:24-33*\nAt that time, Jesus said to His disciples: No man ", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nThe Angel of the Lord encamps around those who fear Him, and delivers them. Taste and see how good the Lord ", - "id": "Offertorium" - }, - { - "body": "Grant us, Lord, we beseech You, that this salutary sacrifice may be not only a cleansing from our sins but also a propit", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Gorgonius*\nO Lord, may the offering which we, Your servants, present be pleasing to You because St. G", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 6:33*\nSeek first the Kingdom of God; and all things shall be given you besides, says the Lord.", - "id": "Communio" - }, - { - "body": "May Your sacrament, O God, ever cleanse and strengthen us, and bring us to everlasting salvation.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Gorgonius*\nMay Your everlasting kindness fill Your faithful people with new life, and may they be eve", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-10": [ - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", - "id": "Introitus" - }, - { - "body": "Be mindful, O Lord, of our humble prayers in this commemoration of Your Saints, so that we, who have no confidence in ou", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a spe", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", - "id": "Offertorium" - }, - { - "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", - "id": "Communio" - }, - { - "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", - "id": "Postcommunio" - } - ], - "2020-09-11": [ - { - "body": "*Ps 83:10-11*\nBehold, O God, our Protector, and look upon the face of Your Anointed. Better is one day in Your courts th", - "id": "Introitus" - }, - { - "body": "Protect Your Church by Your abiding mercy, we beseech You, O Lord, and since all mortals fall without You, may Your help", - "id": "Oratio" - }, - { - "body": "*Commemoration Sts. Protus & Hyacinth*\nMay the precious witness of Your blessed Martyrs, Protus and Hyacinth, comfort us", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:16-24*\nBrethren: Walk in the Spirit, and you will", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nIt is better to take refuge in the Lord than to trust in man.\n℣. It is better to take refuge in the Lord th", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 6:24-33*\nAt that time, Jesus said to His disciples: No man ", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nThe Angel of the Lord encamps around those who fear Him, and delivers them. Taste and see how good the Lord ", - "id": "Offertorium" - }, - { - "body": "Grant us, Lord, we beseech You, that this salutary sacrifice may be not only a cleansing from our sins but also a propit", - "id": "Secreta" - }, - { - "body": "*Commemoration Sts. Protus & Hyacinth*\nO Lord, in memory of Your holy Martyrs, Protus and Hyacinth, we pay our debt to Y", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 6:33*\nSeek first the Kingdom of God; and all things shall be given you besides, says the Lord.", - "id": "Communio" - }, - { - "body": "May Your sacrament, O God, ever cleanse and strengthen us, and bring us to everlasting salvation.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Sts. Protus & Hyacinth*\nThrough the prayer of Your blessed Martyrs, Protus and Hyacinth, may the receptio", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-12": [ - { - "body": "*Ps 44:13, 15-16.*\nAll the rich among the people seek your favor. Behind her the virgins of her train are brought to the", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that through the protection of the most holy Virgin Mary, Your faithful people who ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:23-31*\nI bud forth delights like the vine, my blossoms become fruit fa", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, without spot were made the Mother of the Saviour.\n℣. O Virgin, Mother", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", - "id": "Evangelium" - }, - { - "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with you; blessed are you among women, and blessed is the fruit o", - "id": "Offertorium" - }, - { - "body": "By Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, may this offering bring us prosperity and p", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, O Lord, that having partaken of these helps for our salvation, we may be protected, wherever we a", - "id": "Postcommunio" - } - ], - "2020-09-13": [ - { - "body": "*Ps 85:1-3*\nIncline Your ear, O Lord; answer me; save Your servant, O my God, who trusts in You. Have pity on me, O Lord", - "id": "Introitus" - }, - { - "body": "May Your abiding mercy, O Lord, cleanse and strengthen Your Church, and, since without You she cannot exist in safety, l", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:25-26; 6:1-10*\nBrethren: If we live by the Spirit", - "id": "Lectio" - }, - { - "body": "*Ps 91:2-3*\nIt is good to give thanks to the Lord, to sing to Your name, Most High.\n℣. To proclaim Your kindness at dawn", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:11-16*\nAt that time, Jesus went to a town called Naim; and H", - "id": "Evangelium" - }, - { - "body": "*Ps 39:2-4*\nI have waited, waited for the Lord, and He stooped toward me, and heard my cry. And He put a new song into m", - "id": "Offertorium" - }, - { - "body": "May Your sacrament, O Lord, always keep us and guard us from the assaults of the devil.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*John 6:52*\nThe bread that I will give is My Flesh for the life of the world.", - "id": "Communio" - }, - { - "body": "May the working of the heavenly gift, O Lord, so possess us, mind and body, that the action of the sacrament, rather tha", - "id": "Postcommunio" - } - ], - "2020-09-14": [ - { - "body": "*Gal 6:14*\nBut it behooves us to glory in the Cross of our Lord Jesus Christ: in Whom is our salvation, life, and resurr", - "id": "Introitus" - }, - { - "body": "O God, Who gladden us this day by the yearly feast of the Exaltation of the Holy Cross, grant, we beseech You, that we w", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 2:5-11*\nBrethren: Have this mind in you which wa", - "id": "Lectio" - }, - { - "body": "*Phil 2:8-9*\nChrist became obedient for us to death, even to death on a cross.\n℣. Therefore God also has exalted Him, an", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 12:31-36*\nAt that time, Jesus said to the multitudes of the Je", - "id": "Evangelium" - }, - { - "body": "Through the sign of the Holy Cross protect Your people, O Lord, from the snares of all their enemies, that we may pay Yo", - "id": "Offertorium" - }, - { - "body": "We who are about to take as nourishment the Body and Blood of Jesus Christ our Lord, through Whom the Cross became a hol", - "id": "Secreta" - }, - { - "body": "*Holy Cross*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, giv", - "id": "Prefatio" - }, - { - "body": "Through the sign of the Cross, deliver us from our enemies, O our God.", - "id": "Communio" - }, - { - "body": "Stand by us, O Lord our God, and protect by Your everlasting help those to whom You have given strength through Your sac", - "id": "Postcommunio" - } - ], - "2020-09-15": [ - { - "body": "*Jn. 19:25*\nThere were standing by the Cross of Jesus His Mother, and His Mother’s sister, Mary of Cleophas, and Salome,", - "id": "Introitus" - }, - { - "body": "O God, in Whose Passion the sword, according to the prophecy of blessed Simeon, pierced through the soul of Mary, the gl", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Judith\n*Judith 13:22; 13:25*\nThe Lord has blessed you by His power, Who by you has brought our e", - "id": "Lectio" - }, - { - "body": "Sorrowful and tearful are you, O Virgin Mary, standing by the Cross of the Lord Jesus, your Son and Redeemer.\n℣. O Virgi", - "id": "Graduale" - }, - { - "body": "At the Cross her station keeping,\nStood the mournful Mother weeping,\nClose to Jesus to the last.\n\nThrough her heart, His", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 19:25-27*\nAt that time, there were standing by the Cross of Je", - "id": "Evangelium" - }, - { - "body": "*Jer 18:20*\nBe mindful, O Virgin Mother of God, when you stand in the sight of the Lord, to speak good things for us, an", - "id": "Offertorium" - }, - { - "body": "O Lord Jesus Christ, we offer You prayers and sacrificial gifts, humbly beseeching You that, as we prayerfully recall th", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Happy the Heart of the Blessed Virgin Mary, which without dying earned the palm of martyrdom beneath the Cross of our Lo", - "id": "Communio" - }, - { - "body": "O Lord Jesus Christ, may the sacrifices of which we have partaken, while devoutly celebrating the piercing of Your Virgi", - "id": "Postcommunio" - } - ], - "2020-09-16": [ - { - "body": "*Ps 78:11; 78:12; 78:10*\nLet the prisoners’ sighing come before You, O Lord; repay our neighbors sevenfold into their bo", - "id": "Introitus" - }, - { - "body": "May the feast of the blessed Martyrs and Bishops, Cornelius and Cyprian, protect us, O Lord, we beseech You, and may the", - "id": "Oratio" - }, - { - "body": "*For Sts. Euphemia, Lucy and Geminianus*\nO Lord, grant that our prayers may bear fruit in joy, that we who each year dev", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis 3:1-8*\nThe souls of the just are in the hands of God, and no torment of death shall ", - "id": "Lectio" - }, - { - "body": "*Exo 15:11*\nGod is glorious in His Saints, wonderful in majesty, a worker of wonders.\n*Exo 15:6*\n℣. Your right hand, O L", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:9-19*\nAt that time, Jesus said to His disciples, When you h", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nGod is wonderful in His Saints; the God of Israel is He Who gives power and strength to His people. Blessed b", - "id": "Offertorium" - }, - { - "body": "Be mindful, O Lord, of our humble prayers in this commemoration of Your Saints, that we who have no confidence in our ow", - "id": "Secreta" - }, - { - "body": "*For Sts. Euphemia, Lucy and Geminianus*\nGraciously look upon the prayers of Your people, O Lord, and grant that we may ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Wis 3:4-6*\nFor if before men they be punished, God tried them; as gold in the furnace, He proved them, and as sacrifici", - "id": "Communio" - }, - { - "body": "Refreshed by the sacrament of salvation, we beseech You, O Lord, that we may be aided by the prayers of those whose fest", - "id": "Postcommunio" - }, - { - "body": "*For Sts. Euphemia, Lucy and Geminianus*\nO Lord, hear our prayers and comfort us by the continual assistance of Your Mar", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-17": [ - { - "body": "*Ps 85:1-3*\nIncline Your ear, O Lord; answer me; save Your servant, O my God, who trusts in You. Have pity on me, O Lord", - "id": "Introitus" - }, - { - "body": "May Your abiding mercy, O Lord, cleanse and strengthen Your Church, and, since without You she cannot exist in safety, l", - "id": "Oratio" - }, - { - "body": "*Commemoration Stigmata of St. Francis*\nO Lord, Jesus Christ, Who, to inflame our hearts with the fire of Your love when", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 5:25-26; 6:1-10*\nBrethren: If we live by the Spirit", - "id": "Lectio" - }, - { - "body": "*Ps 91:2-3*\nIt is good to give thanks to the Lord, to sing to Your name, Most High.\n℣. To proclaim Your kindness at dawn", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 7:11-16*\nAt that time, Jesus went to a town called Naim; and H", - "id": "Evangelium" - }, - { - "body": "*Ps 39:2-4*\nI have waited, waited for the Lord, and He stooped toward me, and heard my cry. And He put a new song into m", - "id": "Offertorium" - }, - { - "body": "May Your sacrament, O Lord, always keep us and guard us from the assaults of the devil.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Commemoration Stigmata of St. Francis*\nMake holy the gifts dedicated to You, O Lord, and by the intercession of blessed", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*John 6:52*\nThe bread that I will give is My Flesh for the life of the world.", - "id": "Communio" - }, - { - "body": "May the working of the heavenly gift, O Lord, so possess us, mind and body, that the action of the sacrament, rather tha", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Stigmata of St. Francis*\nO God, Who in many ways showed in blessed Francis the wondrous mysteries of the ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-18": [ - { - "body": "*Ecclus 1:14-15*\nThe love of God is honorable wisdom; and they to whom she shall show herself, love her by the sight, an", - "id": "Introitus" - }, - { - "body": "O God, Who willed that all things be drawn unto Your Son when He was raised above the earth, mercifully grant, by the me", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor 13:1-8*\nBrethren: If I should speak with ", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:1-14*\nAt that time, Jesus spoke to the chief priests and", - "id": "Evangelium" - }, - { - "body": "*Ps 34:13*\nBut as for me, when they were troublesome to me, I was clothed with haircloth, and I humbled my soul with fas", - "id": "Offertorium" - }, - { - "body": "We offer these sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from bo", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 68:30-31*\nI am afflicted and in pain; let Your saving help, O God, protect me. I will praise the name of God in song", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - } - ], - "2020-09-19": [ - { - "body": "*Ps 36:39*\nThe salvation of the just is from the Lord; He is their refuge in time of distress.\n*Ps 36:1*\nBe not vexed ov", - "id": "Introitus" - }, - { - "body": "O God, Who gladden us by the annual festival of Your Martyrs Januarius and Companions, grant that we may be inspired by ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St Paul the Apostle to the Jews\n*Heb 10:32-38*\nBrethren: Call to mind the days gone by, in whi", - "id": "Lectio" - }, - { - "body": "*Ps 39:18-19*\nWhen the just cry out the Lord hears them, and from all their distress He rescues them.\n℣. The Lord is clo", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:3-13*\nAt that time, as Jesus was sitting on the Mount of", - "id": "Evangelium" - }, - { - "body": "*Wis 3:1-3*\nThe souls of the just are in the hand of God, and no torment shall touch them. They seemed, in the view of t", - "id": "Offertorium" - }, - { - "body": "Be appeased by the gifts we offer You, O Lord, and through the intercession of Your holy Martyrs N. and N., safeguard us", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 10:27*\nWhat I tell you in darkness, speak it in the light, says the Lord; and what you hear whispered, preach it o", - "id": "Communio" - }, - { - "body": "May this Communion, O Lord, cleanse us of sin, and, through the intercession of Your holy Martyrs N. and N., make us sha", - "id": "Postcommunio" - } - ], - "2020-09-20": [ - { - "body": "*Ps 85:3; 85:5*\nHave pity on me, O Lord, for to You I call all the day; for You, O Lord, are good and forgiving, aboundi", - "id": "Introitus" - }, - { - "body": "May Your grace, we beseech You, O Lord, ever go before us and follow us, and may it make us ever intent upon good works.", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 3:13-21*\nBrethren: I pray you not to be disheartene", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:1-11*\nAt that time, when Jesus entered the house of one of ", - "id": "Evangelium" - }, - { - "body": "*Ps 39:14-15*\nDeign, O Lord, to rescue me; let all be put to shame and confusion who seek to snatch away my life. Deign,", - "id": "Offertorium" - }, - { - "body": "Cleanse us by this sacrifice, we beseech You, O Lord, and by the workings of Your mercy, make us worthy to receive it.\nT", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 70:16-18*\nO Lord, I will tell of Your singular justice; O God, You have taught me from my youth; and now that I am o", - "id": "Communio" - }, - { - "body": "O Lord, we beseech You, graciously cleanse and renew our minds with the heavenly sacrament, so we may thereby also recei", - "id": "Postcommunio" - } - ], - "2020-09-21": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom and his tongue utters what is right. The law of his God is in hi", - "id": "Introitus" - }, - { - "body": "May we be helped, O Lord, by the prayers of the blessed Apostle and Evangelist Matthew, that what we ourselves cannot ob", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ezekiel\n*Ezek 1:10-14*\nThe faces of the living creatures were like this: each of the four had th", - "id": "Lectio" - }, - { - "body": "*Ps 111:1-2*\nHappy the man who fears the Lord, who greatly delights in His commands.\n℣. His posterity shall be mighty up", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:9-13*\nAt that time, Jesus saw a man named Matthew sitting", - "id": "Evangelium" - }, - { - "body": "*Ps 20:4-5*\nO Lord, You placed on his head a crown of pure gold; he asked life of You, and You gave it to him, alleluia.", - "id": "Offertorium" - }, - { - "body": "May the prayers of the blessed Apostle and Evangelist, Matthew, recommend to You the offering made by Your Church, which", - "id": "Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*Ps 20:6*\nGreat is his glory in Your victory; majesty and splendor You conferred upon him, O Lord.", - "id": "Communio" - }, - { - "body": "Having received Your sacrament, O Lord, we implore You, that what we have celebrated in honor of St. Matthew, Your Apost", - "id": "Postcommunio" - } - ], - "2020-09-22": [ - { - "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", - "id": "Introitus" - }, - { - "body": "O God, Who endowed blessed Bishop Thomas with the virtue of special pity for the poor, we beseech You, through his inter", - "id": "Oratio" - }, - { - "body": "*For St. Maurice and Companions, Martyrs*\nBe merciful, almighty God, we beseech You, that the solemn feast of Your marty", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", - "id": "Lectio" - }, - { - "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Offertorium" - }, - { - "body": "May the annual festival of blessed Thomas, Your Confessor and Bishop, we beseech You, O Lord, render us pleasing to Your", - "id": "Secreta" - }, - { - "body": "*For St. Maurice and Companions, Martyrs*\nLook graciously, we beseech You, O Lord, upon the offerings we bring in commem", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "O God, Who rewards faithful souls, grant that, through the prayers of blessed Thomas, Your Confessor and Bishop, whose h", - "id": "Postcommunio" - }, - { - "body": "*For St. Maurice and Companions, Martyrs*\nRefreshed and made joyful by the heavenly sacrament, we humbly beseech You, O ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-23": [ - { - "body": "*Ps 80:2-5*\nSing joyfully to God our strength; acclaim the God of Jacob. Take up a pleasant psalm with the harp; blow th", - "id": "Introitus" - }, - { - "body": "May our frailty, we beseech You, O Lord, find support in the help of Your mercy; so that what is marred by its own natur", - "id": "Oratio" - }, - { - "body": "*Amos 9:13-15*\nThus says the Lord God: Yes, days are coming, when the plowman shall overtake the reaper, and the vintage", - "id": "LectioL1" - }, - { - "body": "*Ps 112:5-7*\nWho is like the Lord, our God, Who is enthroned on high and looks upon the heavens and the earth below?\n℣. ", - "id": "GradualeL1" - }, - { - "body": "O Lord, we beseech You, grant to Your praying household that, as they fast from bodily food, they may also abstain menta", - "id": "OratioL1" - }, - { - "body": "*Commemoration St. Linus*\nEternal Shepherd, look with favor upon Your flock. Safeguard and shelter it forevermore throug", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Esdra\n*2 Esd. 8:1-10*\nIn those days, all the people were gathered together as one man, to the st", - "id": "Lectio" - }, - { - "body": "*Ps 32:12, 6*\nHappy the nation whose God is the Lord, the people the Lord has chosen for His own inheritance.\n℣. By the ", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Mark\n*Mark 9:16-28*\nAt that time, one of the crowd answering, said to Jesus", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47-48*\nI will delight in Your commands, which I love exceedingly. And I will lift up my hands to Your commands, ", - "id": "Offertorium" - }, - { - "body": "May this offering, O Lord, we beseech You, wipe away our transgressions, and make holy the minds and bodies of Your serv", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Linus*\nBy the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that t", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*2 Esd. 8:10*\nEat fat meats, and drink sweet wine, and send portions to those who have not prepared for themselves: beca", - "id": "Communio" - }, - { - "body": "In partaking of Your heavenly gifts, we humbly entreat You, O Lord, that by Your grace we may receive what, through Your", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Linus*\nBeing appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that u", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-24": [ - { - "body": "*Ps 85:3; 85:5*\nHave pity on me, O Lord, for to You I call all the day; for You, O Lord, are good and forgiving, aboundi", - "id": "Introitus" - }, - { - "body": "May Your grace, we beseech You, O Lord, ever go before us and follow us, and may it make us ever intent upon good works.", - "id": "Oratio" - }, - { - "body": "*Commemoration Our Lady of Ransom*\nO God, Who for the deliverance of Christians from the power of the pagans, graciously", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 3:13-21*\nBrethren: I pray you not to be disheartene", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nThe nations shall revere Your name, O Lord, and all the kings of the earth Your glory.\n℣. For the Lord ha", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 14:1-11*\nAt that time, when Jesus entered the house of one of ", - "id": "Evangelium" - }, - { - "body": "*Ps 39:14-15*\nDeign, O Lord, to rescue me; let all be put to shame and confusion who seek to snatch away my life. Deign,", - "id": "Offertorium" - }, - { - "body": "Cleanse us by this sacrifice, we beseech You, O Lord, and by the workings of Your mercy, make us worthy to receive it.\nT", - "id": "Secreta" - }, - { - "body": "*Commemoration Our Lady of Ransom*\nThrough Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 70:16-18*\nO Lord, I will tell of Your singular justice; O God, You have taught me from my youth; and now that I am o", - "id": "Communio" - }, - { - "body": "O Lord, we beseech You, graciously cleanse and renew our minds with the heavenly sacrament, so we may thereby also recei", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Our Lady of Ransom*\nWe have received help for our salvation, O Lord; grant, we beseech You, that we may e", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-25": [ - { - "body": "*Ps 104:3-4*\nRejoice, O hearts that seek the Lord! Look to the Lord, and be strengthened; seek His face evermore.\n*Ps 10", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that we who devoutly keep the sacred observances year by year may be pleasing unto ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Osee the Prophet\n*Osee 14:2-10*\nThus says the Lord God: Return, O Israel, to the Lord, your God;", - "id": "Lectio" - }, - { - "body": "*Ps 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants.\n℣. O Lord, You have been our refuge through all gene", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to Luke\n*Luke 7:36-50*\nAt that time, one of the Pharisees asked Jesus to dine ", - "id": "Evangelium" - }, - { - "body": "*Ps 102:2, 5*\nBless the Lord, O my soul, and forget not all His benefits; and your youth shall be renewed like the eagle", - "id": "Offertorium" - }, - { - "body": "May the gift of our fasting, we beseech You, O Lord, be acceptable to You, and by its purifying power make us worthy of ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:22, 24*\nTake away from me reproach and contempt, for I observe Your decrees, O Lord. Your decrees are my delight", - "id": "Communio" - }, - { - "body": "We beseech You, O almighty God, that, showing gratitude for the gifts we have received, we may obtain yet greater benefi", - "id": "Postcommunio" - } - ], - "2020-09-26": [ - { - "body": "*Ps 94:6-7*\nCome, let us bow down in worship to God; let us kneel before the Lord. Let us weep before Him Who made us; f", - "id": "Introitus" - }, - { - "body": "Almighty, everlasting God, You Who cure body and soul through healing self-denial, we humbly entreat Your majesty to hea", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Leviticus\n*Lev 23:26-32*\nIn those days, the Lord said to Moses, The tenth of this seventh month ", - "id": "LectioL1" - }, - { - "body": "*Ps 78:9-10*\nPardon our sins, O Lord; why should the nations say, Where is their God?\n℣. Help us, O God our Saviour; bec", - "id": "GradualeL1" - }, - { - "body": "Grant us, we beseech You, almighty God, that by fasting we may be filled with Your grace, and by abstinence we may be ma", - "id": "OratioL1" - }, - { - "body": "Lesson from the book of Leviticus\n*Lev 23:39-43*\nIn those days, the Lord said to Moses, On the fifteenth day, then, of t", - "id": "LectioL2" - }, - { - "body": "*Ps 83:10, 9*\nBehold, O God, our Protector, and look upon Your servants.\n℣. O Lord God of Hosts, hear the prayers of You", - "id": "GradualeL2" - }, - { - "body": "Protect Your people, we beseech You, O Lord, so that we may by Your gift, obtain those means of eternal salvation which ", - "id": "OratioL2" - }, - { - "body": "*Mich. 7:14, 16, 18-20.*\nO Lord, our God, shepherd Your people with Your staff, the flock of Your inheritance, that dwel", - "id": "LectioL3" - }, - { - "body": "*Ps 89:13, 1*\nReturn, O Lord! How long? Have pity on Your servants.\n℣. O Lord, You have been our refuge through all gene", - "id": "GradualeL3" - }, - { - "body": "Grant, we beseech You, almighty God, that we may so fast from bodily food as to abstain also from the sins that beset us", - "id": "OratioL3" - }, - { - "body": "*Zach. 8:14-19*\nIn those days, the word of the Lord came to me saying: Thus says the Lord of Hosts: As I determined to h", - "id": "LectioL4" - }, - { - "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", - "id": "GradualeL4" - }, - { - "body": "As You give us the grace, O Lord, to offer You our solemn fast, grant us, we beseech You, the support of Your forgivenes", - "id": "OratioL4" - }, - { - "body": "*Dan 3:49-51*\nIn those day, the Angel of the Lord went down into the furnace with Azaria and his companions, drove the f", - "id": "LectioL5" - }, - { - "body": "O God, You Who tempered the flames of fire for the three young men, mercifully grant that the flames of sin may not burn", - "id": "OratioL5" - }, - { - "body": "*Commemoration Sts. Cyprian & Justina *\nMay the continual protection of the blessed Martyrs Cyprian and Justina comfort ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson\n*Heb 9:2-12*\nBrethren: There was set up a tabernacle in the outer part of which were the lampstand and the table ", - "id": "Lectio" - }, - { - "body": "*Ps 116:1-2*\nPraise the Lord, all you nations; glorify Him, all you peoples!\n℣. For steadfast is His kindness toward us,", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to\n*Luke 13:6-17*\nAt that time, Jesus spoke to the multitudes this parable: A ", - "id": "Evangelium" - }, - { - "body": "*Ps 87:2-3*\nO Lord, the God of my salvation, by day I cry out, at night I clamor in Your presence. Let my prayer come be", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, almighty God, that the gift in the sight of Your majesty may obtain for us the grace of reverent ", - "id": "Secreta" - }, - { - "body": "*Commemoration Sts. Cyprian & Justina *\nWe offer You, O Lord, the gifts of our devotion; may they by Your mercy, be rend", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Lev 21:41, 43*\nIn the seventh month you shall keep this feast, as I made the Israelites dwell in booths, when I led the", - "id": "Communio" - }, - { - "body": "May Your sacrament, we beseech You, O Lord, produce in us what it contains, and may we share in reality what we now perf", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Sts. Cyprian & Justina *\nGrant us, we beseech You, O Lord, through the intercession of Your holy Martyrs,", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-27": [ - { - "body": "*Ps 118:137; 118:124*\nYou are just, O Lord, and Your ordinance is right. Deal with Your servant according to Your kindne", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, O Lord, that Your people may avoid the temptations of the devil, and with pure minds follow You, ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:1-6*\nBrethren: I, the prisoner in the Lord, exhor", - "id": "Lectio" - }, - { - "body": "*Ps 32:12; 32:6*\nHappy the nation whose God is the Lord, the people the Lord has chosen for His own inheritance.\n℣. By t", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:34-46*\nAt that time, the Pharisees came to Jesus and one", - "id": "Evangelium" - }, - { - "body": "*Dan 9:17-19*\nI, Daniel, prayed to my God, saying, Hear, O Lord, the prayers of Your servant; show Your face upon Your s", - "id": "Offertorium" - }, - { - "body": "O Lord, we humbly pray Your Majesty that the holy rite which we are celebrating may free us from past and future sins.\nT", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 75:12-13*\nMake vows to the Lord, your God, and fulfill them; let all round about Him bring gifts to the terrible Lor", - "id": "Communio" - }, - { - "body": "By the workings of Your sanctifying power, almighty God, may our vices be cured and eternal remedies provided for us.\nTh", - "id": "Postcommunio" - } - ], - "2020-09-28": [ - { - "body": "*Ps 20:2-3*\nIn thy strength, O Lord, the king shall joy; and in thy salvation he shall rejoice exceedingly. Thou hast gi", - "id": "Introitus" - }, - { - "body": "O God, Who through the palm of martyrdom transported blessed Wenceslaus from an earthly dominion unto heavenly glory, ke", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Wisdom\n*Wis 10:10-14*\nShe conducted the just, when he fled from his brother's wrath, through the", - "id": "Lectio" - }, - { - "body": "*Ps 111:1-2*\nBlessed is the man that feareth the Lord: he shall delight exceedingly in his commandments. His seed shall ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 10:34-42*\nIn that time: Jesus said to his disciples: Do not", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nThou hast made him a little less than the angels, thou hast crowned him with glory and honour: and hast set h", - "id": "Offertorium" - }, - { - "body": "Now that You have received our gifts and prayers, we beseech You, O Lord, cleanse us by Your heavenly mysteries and in Y", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 16:24*\nHe who wishes to come after Me, let him deny himself, and take up his cross, and follow Me.", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration of Your Saints, may re", - "id": "Postcommunio" - } - ], - "2020-09-29": [ - { - "body": "*Ps 102:20*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding, obeying His spoken word. (Al", - "id": "Introitus" - }, - { - "body": "O God, Who assign according to a wondrous order the duties of Angels and men, mercifully grant that our life on earth be", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Revelation\n*Apoc 1:1-5*\nIn those days, God signified those things which must shortly come to pas", - "id": "Lectio" - }, - { - "body": "*Ps 102:20; 102:1*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding.\n℣. Bless the Lord, O ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-10*\nAt that time, the disciples came to Jesus, saying,", - "id": "Evangelium" - }, - { - "body": "*Apoc 8:3-4*\nAn Angel stood near the altar of the temple, having a golden censer in his hand, and there was given to him", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, humbly praying You to accept them graciously and to grant that they may be he", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Dan 3:58*\nAll you Angels of the Lord, bless the Lord: sing a hymn, and exalt Him above all forever. (Alleluia.)", - "id": "Communio" - }, - { - "body": "Relying upon the intercession of blessed Michael, Your Archangel, O Lord, we humbly pray You, that what we have received", - "id": "Postcommunio" - } - ], - "2020-09-30": [ - { - "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", - "id": "Introitus" - }, - { - "body": "O God, Who graciously gave Your Church blessed Jerome, Your Confessor and peerless teacher, to explain the Holy Scriptur", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "By Your heavenly gifts, grant us, O Lord, we pray, to serve You with a free mind, so that the offerings we present, may,", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "Filled with heavenly food, we beseech You, O Lord, that by the intercession of blessed Jerome, Your Confessor, we may be", - "id": "Postcommunio" - } - ], - "2020-10-01": [ - { - "body": "*Ps 118:137; 118:124*\nYou are just, O Lord, and Your ordinance is right. Deal with Your servant according to Your kindne", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, O Lord, that Your people may avoid the temptations of the devil, and with pure minds follow You, ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Remigius*\nGrant, we beseech Thee, almighty God, that the solemn feast of blessed Remigius, Thy Confes", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:1-6*\nBrethren: I, the prisoner in the Lord, exhor", - "id": "Lectio" - }, - { - "body": "*Ps 32:12; 32:6*\nHappy the nation whose God is the Lord, the people the Lord has chosen for His own inheritance.\n℣. By t", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:34-46*\nAt that time, the Pharisees came to Jesus and one", - "id": "Evangelium" - }, - { - "body": "*Dan 9:17-19*\nI, Daniel, prayed to my God, saying, Hear, O Lord, the prayers of Your servant; show Your face upon Your s", - "id": "Offertorium" - }, - { - "body": "O Lord, we humbly pray Your Majesty that the holy rite which we are celebrating may free us from past and future sins.\nT", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Remigius*\nMay Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we refle", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 75:12-13*\nMake vows to the Lord, your God, and fulfill them; let all round about Him bring gifts to the terrible Lor", - "id": "Communio" - }, - { - "body": "By the workings of Your sanctifying power, almighty God, may our vices be cured and eternal remedies provided for us.\nTh", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Remigius*\nGrant, we beseech You, almighty God, that as we thank You for the favors we have received, ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-02": [ - { - "body": "*Ps 102:20*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding, obeying His spoken word.\n*Ps", - "id": "Introitus" - }, - { - "body": "O God, Who in Your wondrous providence graciously send Your Angels to watch over us, grant that we who pray to You may b", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Exodus\n*Exod 23:20-23*\nThus says the Lord God: See, I am sending My Angel before you, to guard y", - "id": "Lectio" - }, - { - "body": "*Ps 90:11-12*\nTo His Angels God has given command about you, that they guard you in all your ways.\n℣. Upon their hands t", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-10*\nAt that time, the disciples came to Jesus, saying,", - "id": "Evangelium" - }, - { - "body": "*Ps 102:20-21*\nBless the Lord, all you His Angels, His ministers, who do His will, obeying His spoken word.", - "id": "Offertorium" - }, - { - "body": "Accept, O Lord, the gifts which we offer in honor of Your holy Angels, and mercifully grant that we may be freed from pr", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Dan 3:58*\nAll you Angels of the Lord, bless the Lord: sing a hymn, and exalt Him above all forever.", - "id": "Communio" - }, - { - "body": "Rejoicing on the feast of Your holy Angels, O Lord, we have received the divine sacrament; we pray that we may ever be f", - "id": "Postcommunio" - } - ], - "2020-10-03": [ - { - "body": "*Song 4:8-9*\nCome from Lebanon, My bride, come from Lebanon, come! You have ravished My Heart, My sister, My bride; you ", - "id": "Introitus" - }, - { - "body": "O Lord, Who said: Unless you become as little children, you shall not enter into the Kingdom of Heaven, grant us, we bes", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 66:12-14*\nThus says the Lord: Lo, I will spread prosperity over her like a river, an", - "id": "Lectio" - }, - { - "body": "*Matt 11:25*\nI praise You, Father, Lord of heaven and earth, that You did hide these things from the wise and prudent, a", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:1-4*\nAt that time, the disciples came to Jesus, saying, ", - "id": "Evangelium" - }, - { - "body": "*Luke 1:46; 1:48-49.*\nMy soul magnifies the Lord, and my spirit rejoices in God my Saviour; because He has regarded the ", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, may the holy prayers of blessed Theresa, Your Virgin, commend our sacrifice to You, so that it m", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Deut 32:10-12*\nHe led her about and taught her, and He guarded her as the apple of His eye. As an eagle He spread His w", - "id": "Communio" - }, - { - "body": "May the heavenly sacrament, O Lord, enkindle in us that fire of love which urged blessed Theresa, Your Virgin, to offer ", - "id": "Postcommunio" - } - ], - "2020-10-04": [ - { - "body": "*Eccli 36:18*\nGive peace, O Lord, to those who have hoped in You, and let Your Prophets be proved true. Hear the prayers", - "id": "Introitus" - }, - { - "body": "May the working of Your mercy, we beseech You, O Lord, guide our hearts, for without You, we cannot please You.\nThrough ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 1:4-8*\nBrethren: I give thanks to my God", - "id": "Lectio" - }, - { - "body": "*Ps 121:1, 7*\nI rejoiced because they said to me, We will go up to the house of the Lord.\n℣. May peace be within your wa", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:1-8*\nAt that time, Jesus, getting into a boat, crossed ov", - "id": "Evangelium" - }, - { - "body": "*Ex 24:4-5*\nMoses consecrated an altar to the Lord, offering upon it holocausts, and sacrificing victims: he made an eve", - "id": "Offertorium" - }, - { - "body": "O God, Who, through the gifts we have exchanged with You in this sacrament, have made us partakers of the supreme Godhea", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 95:8-9*\nBring gifts and enter His courts; worship the Lord in His holy court.", - "id": "Communio" - }, - { - "body": "Strengthened by Your sacred gift, we thank You, O Lord, beseeching Your mercy to make us receive it worthily.\nThrough ou", - "id": "Postcommunio" - } - ], - "2020-10-05": [ - { - "body": "*Eccli 36:18*\nGive peace, O Lord, to those who have hoped in You, and let Your Prophets be proved true. Hear the prayers", - "id": "Introitus" - }, - { - "body": "May the working of Your mercy, we beseech You, O Lord, guide our hearts, for without You, we cannot please You.\nThrough ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Placid & Companions *\nO God, Who permits us to celebrate the anniversary of the death of Your holy Ma", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 1:4-8*\nBrethren: I give thanks to my God", - "id": "Lectio" - }, - { - "body": "*Ps 121:1, 7*\nI rejoiced because they said to me, We will go up to the house of the Lord.\n℣. May peace be within your wa", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:1-8*\nAt that time, Jesus, getting into a boat, crossed ov", - "id": "Evangelium" - }, - { - "body": "*Ex 24:4-5*\nMoses consecrated an altar to the Lord, offering upon it holocausts, and sacrificing victims: he made an eve", - "id": "Offertorium" - }, - { - "body": "O God, Who, through the gifts we have exchanged with You in this sacrament, have made us partakers of the supreme Godhea", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Placid & Companions *\nBe appeased by the gifts we offer You, O Lord, and through the intercession of ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 95:8-9*\nBring gifts and enter His courts; worship the Lord in His holy court.", - "id": "Communio" - }, - { - "body": "Strengthened by Your sacred gift, we thank You, O Lord, beseeching Your mercy to make us receive it worthily.\nThrough ou", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Placid & Companions *\nGrant, we beseech You, O almighty and merciful God, that through the intercessi", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-06": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "May we be aided by the intercession of St. Bruno, Your Confessor, we beseech You, O\nLord; that we, who have grievously o", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "We pray You, almighty God, that we who have received heavenly nourishment, may thereby, through the intercession of bles", - "id": "Postcommunio" - } - ], - "2020-10-07": [ - { - "body": "Let us all rejoice in the Lord, keeping a feastday in honor of the Blessed Virgin Mary, for whose celebration the angels", - "id": "Introitus" - }, - { - "body": "O God, Whose only-begotten Son, by His life, death and resurrection, has merited for us the grace of eternal salvation, ", - "id": "Oratio" - }, - { - "body": "*For St. Mark*\nGraciously hear our supplications, O Lord, and for the sake of thy Blessed Confessor and Bishop Mark, gra", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Proverbs\n*Prov 8:22-24, 32-35.*\nThe Lord begot me, the firstborn of His ways, the forerunner of ", - "id": "Lectio" - }, - { - "body": "*Ps 44:5, 11-12.*\nIn the cause of truth and mercy and for the sake of justice: may your right hand show you wondrous dee", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", - "id": "Evangelium" - }, - { - "body": "*Ecclus 24:25; 39:17*\nIn me is all grace of the way and of the truth, in me is all hope of life and of virtue. Like a ro", - "id": "Offertorium" - }, - { - "body": "Grant us, we beseech You, O Lord, to be properly prepared to offer these gifts, and, through the mysteries of the most h", - "id": "Secreta" - }, - { - "body": "*For St. Mark*\nMay the service of thy holy people be acceptable to Thee, O Lord, and honorable to thy saints, through wh", - "id": "Commemoratio Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "*Ecclus 39:19*\nBreak forth in blossoms like the lily, and yield a smell, and bring forth leaves in grace, and praise wit", - "id": "Communio" - }, - { - "body": "May the prayers of Your most holy Mother, whose Rosary we are honoring, help us, we beseech You, O Lord, that we may der", - "id": "Postcommunio" - }, - { - "body": "*For St. Mark*\nGrant, O Lord, we beseech thee, that thy faithful people may always joyfully honour thy saints, and ever ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-08": [ - { - "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", - "id": "Introitus" - }, - { - "body": "O Lord, our God, Who through your only-begotten Son revealed secrets to blessed Bridget, grant that through her kind int", - "id": "Oratio" - }, - { - "body": "*For St. Sergius and Companions*\nMay the blessed merits of Your holy Martyrs, Sergius, Bacchus, Marcellus and Apuleius, ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to Timothy\n*1 Tim. 5:3-10*\nBeloved: Honor widows who are truly wido", - "id": "Lectio" - }, - { - "body": "*Ps 44:3, 5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy an", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", - "id": "Offertorium" - }, - { - "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", - "id": "Secreta" - }, - { - "body": "*For St. Sergius and Companions*\nBy the worthy prayer of Your Saints, we beseech You, O Lord, may this victim, fitting f", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", - "id": "Communio" - }, - { - "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", - "id": "Postcommunio" - }, - { - "body": "*For St. Sergius and Companions*\nMay we be strengthened, O Lord, by the sacrament we have received, and protected throug", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-09": [ - { - "body": "*Ecclus 42:15-16*\nAt the Lord’s word were His works brought into being. As the rising sun is clear to all, so the glory ", - "id": "Introitus" - }, - { - "body": "O God, Who in a wondrous way graciously urged blessed John, Your Confessor, to propagate Your faith among the pagans, an", - "id": "Oratio" - }, - { - "body": "*For St. Dionysius and companions*\nO God, Who on this day strengthened blessed Dionysius, Your Martyr and Bishop, with t", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 4:1-6; 4:15-18*\nBrethren: Discharging th", - "id": "Lectio" - }, - { - "body": "*Ps 72:21; 68:10*\nMy heart was embittered and my soul was pierced; zeal for Your house consumed me.\n*Isa 49:2*\n℣. He mad", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 10:1-9*\nAt that time, the Lord appointed seventy-two others, a", - "id": "Evangelium" - }, - { - "body": "*Col 1:25*\nI have become a minister of Christ in virtue of the office that God has given me, for I am to preach the word", - "id": "Offertorium" - }, - { - "body": "Accept, O Lord, the pure offering of this saving sacrifice, and by the intercession of blessed John, Your Confessor, gra", - "id": "Secreta" - }, - { - "body": "*For St. Dionysius and companions*\nGraciously accept, O Lord, the gifts of Your people in honor of Your Saints, and make", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Phil 3:7*\nThe things that were gain to me, these, for the sake of Christ, I have counted loss.", - "id": "Communio" - }, - { - "body": "Refreshed by the holy sacrament of Your precious Body and Blood, we beseech You, O Lord, that, following the example of ", - "id": "Postcommunio" - }, - { - "body": "*For St. Dionysius and companions*\nWe who have received Your sacrament beseech You, Lord, that through the intercession ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-10": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O Lord Jesus Christ, model of true humility and its reward, we beseech You, that as You made blessed Francis one of Your", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, may the holy Francis, prevail by his prayers, so that the offerings placed upon Your sacred alta", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "May the pleading of the blessed Francis for us, together with the partaking of Your sacrament, protect us, O Lord, so th", - "id": "Postcommunio" - } - ], - "2020-10-11": [ - { - "body": "I am the salvation of the people, says the Lord; in whatever tribulation they shall cry to Me, I will hear them; and I w", - "id": "Introitus" - }, - { - "body": "Almighty and merciful God, graciously keep away from us all misfortune, that, unhampered in soul and body, we may perfor", - "id": "Oratio" - }, - { - "body": "*Commemoration Maternity of the Blessed Virgin Mary*\nO God, Who, by the message of an Angel, willed to take flesh in the", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:23-28*\nBrethren: Be renewed in the spirit of your", - "id": "Lectio" - }, - { - "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:1-14*\nAt that time, Jesus spoke to the chief priests and", - "id": "Evangelium" - }, - { - "body": "*Ps 137:7*\nThough I walk amid distress, You preserve me, O Lord; against the anger of my enemies You raise Your hand; Yo", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, O Lord, that these gifts which we offer in the sight of Your majesty, may be the means of our sal", - "id": "Secreta" - }, - { - "body": "*Commemoration Maternity of the Blessed Virgin Mary*\nThrough Your mercy, O Lord, and by the intercession of blessed Mary", - "id": "Commemoratio Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 118:4-5*\nYou have commanded that Your precepts be diligently kept. Oh, that I might be firm in the ways of keeping Y", - "id": "Communio" - }, - { - "body": "May Your healing power, O Lord, mercifully deliver us from our waywardness and make us ever keep Your commandments.\nThro", - "id": "Postcommunio" - }, - { - "body": "*Commemoration Maternity of the Blessed Virgin Mary*\nMay this Communion, O Lord, cleanse us of sin, and by the intercess", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-12": [ - { - "body": "I am the salvation of the people, says the Lord; in whatever tribulation they shall cry to Me, I will hear them; and I w", - "id": "Introitus" - }, - { - "body": "Almighty and merciful God, graciously keep away from us all misfortune, that, unhampered in soul and body, we may perfor", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:23-28*\nBrethren: Be renewed in the spirit of your", - "id": "Lectio" - }, - { - "body": "*Ps 140:2*\nLet my prayer come like incense before You, O Lord.\n℣. The lifting up of my hands, like the evening sacrifice", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:1-14*\nAt that time, Jesus spoke to the chief priests and", - "id": "Evangelium" - }, - { - "body": "*Ps 137:7*\nThough I walk amid distress, You preserve me, O Lord; against the anger of my enemies You raise Your hand; Yo", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, O Lord, that these gifts which we offer in the sight of Your majesty, may be the means of our sal", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:4-5*\nYou have commanded that Your precepts be diligently kept. Oh, that I might be firm in the ways of keeping Y", - "id": "Communio" - }, - { - "body": "May Your healing power, O Lord, mercifully deliver us from our waywardness and make us ever keep Your commandments.\nThro", - "id": "Postcommunio" - } - ], - "2020-10-13": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, Who crowned blessed King Edward with the glory of eternity, grant us, we beseech You, so to venerate him on earth", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - } - ], - "2020-10-14": [ - { - "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", - "id": "Introitus" - }, - { - "body": "O God, Who behold how we fail in our weakness, mercifully restore us to Your love through the examples of Your Saints.\nT", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nAnd let them exalt him in the church of the people: and praise him in the chair of the ancients.\n℣. ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", - "id": "Offertorium" - }, - { - "body": "May this sacrificial offering help to cleanse us of our sins, O Lord, and to assure us of Your everlasting salvation.\nTh", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", - "id": "Communio" - }, - { - "body": "We beseech You, almighty God, that these consecrated gifts may cleanse us of our sins and by their effect make us lead h", - "id": "Postcommunio" - } - ], - "2020-10-15": [ - { - "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", - "id": "Introitus" - }, - { - "body": "Graciously hear us, O God, our Saviour, that as we rejoice on the feast-day of blessed Teresa, Your Virgin, we may be so", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", - "id": "Offertorium" - }, - { - "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", - "id": "Communio" - }, - { - "body": "You have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the intercession of her who", - "id": "Postcommunio" - } - ], - "2020-10-16": [ - { - "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", - "id": "Introitus" - }, - { - "body": "O God, Who taught blessed Hedwig to forsake worldly vanities that she might with her whole heart humbly follow Your cros", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", - "id": "Offertorium" - }, - { - "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", - "id": "Communio" - }, - { - "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", - "id": "Postcommunio" - } - ], - "2020-10-17": [ - { - "body": "*Cant 2:3*\nI rest in His shadow Whom I desire, and His fruit is sweet to my mouth.\n*Ps 83:2-3*\nHow lovely is Your dwelli", - "id": "Introitus" - }, - { - "body": "O Lord Jesus Christ, Who wondrously revealed the unsearchable riches of Your Heart to blessed Margaret Mary, the Virgin,", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 3:8-9, 14-19*\nBrethren: To me, the very least of al", - "id": "Lectio" - }, - { - "body": "*Cant 8:7*\nDeep waters cannot quench love, nor floods sweep it away.\n*Ps 72:26*\n℣. My flesh and my heart waste away; God", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:25-30*\nAt that time, Jesus spoke and said, I praise You,", - "id": "Evangelium" - }, - { - "body": "*Zach 9:17*\nWhat wealth is His, and what beauty! grain that makes the chosen ones flourish, and new wine, the maidens.", - "id": "Offertorium" - }, - { - "body": "May the gifts of Your people be acceptable to You, O Lord, and grant that we be enkindled with that divine fire radiatin", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Cant 6:2*\nI belong to my lover and my lover to me; He browses among the lilies.", - "id": "Communio" - }, - { - "body": "Having received the sacrament of Your Body and Blood, we beseech You, O Lord Jesus, grant us by the intercession of bles", - "id": "Postcommunio" - } - ], - "2020-10-18": [ - { - "body": "*Dan 3:31; 3:29; 3:35*\nAll that You have done to us, O Lord, You have done in true judgment; because we have sinned agai", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, graciously grant Your faithful forgiveness and peace, that they may be cleansed of all sin and s", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Luke the Evangelist*\nO Lord, we beseech You, that Luke, Your holy Evangelist, who for the honor of Yo", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 5:15-21*\nBrethren: See to it that you walk with car", - "id": "Lectio" - }, - { - "body": "*Ps 144:15-16*\nThe eyes of all look hopefully to You, O Lord, and You give them their food in due season.\n℣. You open Yo", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 4:46-53*\nAt that time, there was a certain royal official whos", - "id": "Evangelium" - }, - { - "body": "*Ps 136:1*\nBy the streams of Babylon we sat and wept when we remembered you, O Sion.", - "id": "Offertorium" - }, - { - "body": "May these sacramental rites, O Lord, we beseech You, be our heavenly medicine and expel evil from our hearts.\nThrough ou", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Luke the Evangelist*\nBy Your heavenly gifts, grant us, O Lord, we pray, to serve You with a free mind", - "id": "Commemoratio Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 118:49-50*\nRemember Your word to Your servant, O Lord, since You have given me hope. This is my comfort in my afflic", - "id": "Communio" - }, - { - "body": "That we may be made worthy, O Lord, of Your sacred gifts, make us, we beseech You, ever obedient to Your commandments.\nT", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Luke the Evangelist*\nGrant, we beseech You, almighty God, that what we have received from Your holy a", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-19": [ - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", - "id": "Introitus" - }, - { - "body": "O God, Who graciously made blessed Peter, Your Confessor, glorious by the gift of remarkable penance and sublime contemp", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:7-12*\nBrethren: The things that were gain to m", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is i", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", - "id": "Offertorium" - }, - { - "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", - "id": "Communio" - }, - { - "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", - "id": "Postcommunio" - } - ], - "2020-10-20": [ - { - "body": "*Sir 18:12-13*\nMan may be merciful to his fellow man, but God’s mercy reaches all flesh. He has mercy, teaches and guide", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that by following the example of blessed John, Your Confessor, we may advance in a ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St James the Apostle\n*James 2:12-17*\nDearly beloved: So speak and so act as men about to be ju", - "id": "Lectio" - }, - { - "body": "*Ps 106:8-9*\nLet them give thanks to the Lord for His kindness and His wondrous deeds to the children of men.\n℣. Because", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Job 29:14-16*\nI wore my honesty like a garment; justice was my robe and my turban. I was eyes to the blind, and feet to", - "id": "Offertorium" - }, - { - "body": "Graciously accept these sacrificial gifts, we beseech You, O Lord, through the merits of blessed John, Your Confessor, a", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 6:38*\nGive, and it shall be given to you; good measure, pressed down, shaken together, running over, shall they po", - "id": "Communio" - }, - { - "body": "Filled with the good food of Your precious Body and Blood, we humbly implore Your clemency, O Lord, that by the merits a", - "id": "Postcommunio" - } - ], - "2020-10-21": [ - { - "body": "*Dan 3:31; 3:29; 3:35*\nAll that You have done to us, O Lord, You have done in true judgment; because we have sinned agai", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, graciously grant Your faithful forgiveness and peace, that they may be cleansed of all sin and s", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Hilarion *\nMay the intercession of the blessed Abbot N., commend us to You, O Lord, so that through h", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 5:15-21*\nBrethren: See to it that you walk with car", - "id": "Lectio" - }, - { - "body": "*Ps 144:15-16*\nThe eyes of all look hopefully to You, O Lord, and You give them their food in due season.\n℣. You open Yo", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 4:46-53*\nAt that time, there was a certain royal official whos", - "id": "Evangelium" - }, - { - "body": "*Ps 136:1*\nBy the streams of Babylon we sat and wept when we remembered you, O Sion.", - "id": "Offertorium" - }, - { - "body": "May these sacramental rites, O Lord, we beseech You, be our heavenly medicine and expel evil from our hearts.\nThrough ou", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Hilarion *\nWe beseech You, O Lord, may the holy Abbot N., prevail by his prayers, so that the offerin", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:49-50*\nRemember Your word to Your servant, O Lord, since You have given me hope. This is my comfort in my afflic", - "id": "Communio" - }, - { - "body": "That we may be made worthy, O Lord, of Your sacred gifts, make us, we beseech You, ever obedient to Your commandments.\nT", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Hilarion *\nMay the pleading of the blessed Abbot N. for us, together with the partaking of Your sacra", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-22": [ - { - "body": "*Dan 3:31; 3:29; 3:35*\nAll that You have done to us, O Lord, You have done in true judgment; because we have sinned agai", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, graciously grant Your faithful forgiveness and peace, that they may be cleansed of all sin and s", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 5:15-21*\nBrethren: See to it that you walk with car", - "id": "Lectio" - }, - { - "body": "*Ps 144:15-16*\nThe eyes of all look hopefully to You, O Lord, and You give them their food in due season.\n℣. You open Yo", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 4:46-53*\nAt that time, there was a certain royal official whos", - "id": "Evangelium" - }, - { - "body": "*Ps 136:1*\nBy the streams of Babylon we sat and wept when we remembered you, O Sion.", - "id": "Offertorium" - }, - { - "body": "May these sacramental rites, O Lord, we beseech You, be our heavenly medicine and expel evil from our hearts.\nThrough ou", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:49-50*\nRemember Your word to Your servant, O Lord, since You have given me hope. This is my comfort in my afflic", - "id": "Communio" - }, - { - "body": "That we may be made worthy, O Lord, of Your sacred gifts, make us, we beseech You, ever obedient to Your commandments.\nT", - "id": "Postcommunio" - } - ], - "2020-10-23": [ - { - "body": "*Ps 131:9-10.*\nMay Your priests, O Lord, be clothed with justice; let Your faithful ones shout merrily for joy. For the ", - "id": "Introitus" - }, - { - "body": "O God, Who glorified blessed Anthony Mary, Your Confessor and Bishop, because of his zeal for souls, and through him est", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 7:23-27*\nBrethren: The priests were numerous, because", - "id": "Lectio" - }, - { - "body": "*Ps 131:16-17*\nHer priests I will clothe with salvation, and her faithful ones shall shout merrily for joy.\n℣. In her wi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:42-47*\nAt that time, Jesus said to His disciples, \"Watch", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exulted.", - "id": "Offertorium" - }, - { - "body": "May the annual festival of blessed Anthony Mary, Your Confessor and Bishop, we beseech You, O Lord render us pleasing to", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "O God, Who rewards faithful souls, grant that, through the prayers of blessed Anthony Mary, Your Confessor and Bishop, w", - "id": "Postcommunio" - } - ], - "2020-10-24": [ - { - "body": "*Ps 102:20*\nBless the Lord, all you His Angels, you mighty in strength, who do His bidding, obeying His spoken word.\n*Ps", - "id": "Introitus" - }, - { - "body": "O God, Who gave blessed Raphael the Archangel as a traveling companion to Your servant Tobias, grant us, Your servants, ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Tobias\n*Tob 12:7-15*\nIn those days, the Angel Raphael said to Tobias: It is good to hide the sec", - "id": "Lectio" - }, - { - "body": "*Tob 8:3*\nThe Angel of the Lord, Raphael, took and bound the devil.\n*Ps 146:5*\n℣. Great is our Lord and mighty in power.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 5:1-4*\nAt that time, there was a feast of the Jews, and Jesus ", - "id": "Evangelium" - }, - { - "body": "*Apoc 8:3-4*\nAn Angel stood near the altar of the temple, having a golden censer in his hand, and there was given to him", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, humbly praying You to accept them graciously, and to grant that they may be h", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Dan 3:58*\nAll you Angels of the Lord, bless the Lord: sing a hymn, and exalt Him above all forever.", - "id": "Communio" - }, - { - "body": "O Lord, graciously send Your holy Archangel Raphael to help us, that he who we know stands ever in the presence of Your ", - "id": "Postcommunio" - } - ], - "2020-10-25": [ - { - "body": "*Apoc 5:12; 1:6*\nWorthy is the Lamb Who was slain to receive power, and divinity, and wisdom, and strength, and honor. ", - "id": "Introitus" - }, - { - "body": "Almighty and eternal God, Who willed to restore all things in Your beloved Son, the King of the Universe, graciously gra", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:12-20.*\nBrethren: We give thanks to God the Fath", - "id": "Lectio" - }, - { - "body": "*Ps 71:8, 11*\nHe shall rule from sea to sea, and from the River to the ends of the earth.\n℣. All kings shall pay Him hom", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 18:33-37*\nAt that time, Pilate said to Jesus, Are You the King", - "id": "Evangelium" - }, - { - "body": "*Ps 2:8*\nAsk of Me and I will give You the nations for an inheritance and the ends of the earth for Your possession.", - "id": "Offertorium" - }, - { - "body": "O Lord, we offer You this sacrificial Victim of mankind's reconciliation with You; grant, we beseech You, that our Lord ", - "id": "Secreta" - }, - { - "body": "*Christ the King*\nIt is meet and just, right and for our salvation, that we should at all times, and in all places, give", - "id": "Prefatio" - }, - { - "body": "*Ps 28:10-11*\nThe Lord is enthroned as King forever; may the Lord bless His people with peace!", - "id": "Communio" - }, - { - "body": "We have received the food of eternal life, and we beseech You, O Lord, that we who are proud to serve under the flag of ", - "id": "Postcommunio" - } - ], - "2020-10-26": [ - { - "body": "*Esth 13:9-11*\nIn Your will are all things, O Lord, and there is none that can resist Your will; for You have made all t", - "id": "Introitus" - }, - { - "body": "Guard Your household, we beseech You, O Lord, with unceasing care, that under Your protection it may be free from all ha", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 6:10-17*\nBrethren: Be strengthened in the Lord and ", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nO Lord, You have been our refuge through all generations.\n℣. Before the mountains were begotten and the eart", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:23-35*\nAt that time, Jesus spoke to His disciples this p", - "id": "Evangelium" - }, - { - "body": "*Job 1.1*\nThere was a man in the land of Hus, whose name was Job, simple, and upright, and fearing God, whom Satan besou", - "id": "Offertorium" - }, - { - "body": "Graciously accept these sacrificial gifts, O Lord, with which You have willed us to find favor with You, and, by Your mi", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nMy soul pines for Your salvation; I hope in Your word. When will You do judgment on my perse", - "id": "Communio" - }, - { - "body": "We who have eaten the food of eternal life beseech You, O Lord, that what we take by mouth, we may strive after with pur", - "id": "Postcommunio" - } - ], - "2020-10-27": [ - { - "body": "*Esth 13:9-11*\nIn Your will are all things, O Lord, and there is none that can resist Your will; for You have made all t", - "id": "Introitus" - }, - { - "body": "Guard Your household, we beseech You, O Lord, with unceasing care, that under Your protection it may be free from all ha", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 6:10-17*\nBrethren: Be strengthened in the Lord and ", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nO Lord, You have been our refuge through all generations.\n℣. Before the mountains were begotten and the eart", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:23-35*\nAt that time, Jesus spoke to His disciples this p", - "id": "Evangelium" - }, - { - "body": "*Job 1.1*\nThere was a man in the land of Hus, whose name was Job, simple, and upright, and fearing God, whom Satan besou", - "id": "Offertorium" - }, - { - "body": "Graciously accept these sacrificial gifts, O Lord, with which You have willed us to find favor with You, and, by Your mi", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nMy soul pines for Your salvation; I hope in Your word. When will You do judgment on my perse", - "id": "Communio" - }, - { - "body": "We who have eaten the food of eternal life beseech You, O Lord, that what we take by mouth, we may strive after with pur", - "id": "Postcommunio" - } - ], - "2020-10-28": [ - { - "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", - "id": "Introitus" - }, - { - "body": "O God, Who have given us a way of coming to know Your name through Your blessed Apostles Simon and Jude, grant us to hon", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 4:7-13*\nBrethren: To each one of us grace was given", - "id": "Lectio" - }, - { - "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 15:17-25*\nAt that time, Jesus said to His disciples, These thi", - "id": "Evangelium" - }, - { - "body": "*Ps 18:5*\nThrough all the earth their voice resounds, and to the ends of the world, their message.", - "id": "Offertorium" - }, - { - "body": "We honor, O Lord, the everlasting glory of Your holy Apostles Simon and Jude; we beseech You, that, purified by this sac", - "id": "Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28*\nYou who have followed Me shall sit on thrones, judging the twelve tribes of Israel.", - "id": "Communio" - }, - { - "body": "Having received Your sacrament, we humbly beseech You, O Lord, that, by the intercession of Your blessed Apostles Simon ", - "id": "Postcommunio" - } - ], - "2020-10-29": [ - { - "body": "*Esth 13:9-11*\nIn Your will are all things, O Lord, and there is none that can resist Your will; for You have made all t", - "id": "Introitus" - }, - { - "body": "Guard Your household, we beseech You, O Lord, with unceasing care, that under Your protection it may be free from all ha", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 6:10-17*\nBrethren: Be strengthened in the Lord and ", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nO Lord, You have been our refuge through all generations.\n℣. Before the mountains were begotten and the eart", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:23-35*\nAt that time, Jesus spoke to His disciples this p", - "id": "Evangelium" - }, - { - "body": "*Job 1.1*\nThere was a man in the land of Hus, whose name was Job, simple, and upright, and fearing God, whom Satan besou", - "id": "Offertorium" - }, - { - "body": "Graciously accept these sacrificial gifts, O Lord, with which You have willed us to find favor with You, and, by Your mi", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nMy soul pines for Your salvation; I hope in Your word. When will You do judgment on my perse", - "id": "Communio" - }, - { - "body": "We who have eaten the food of eternal life beseech You, O Lord, that what we take by mouth, we may strive after with pur", - "id": "Postcommunio" - } - ], - "2020-10-30": [ - { - "body": "*Esth 13:9-11*\nIn Your will are all things, O Lord, and there is none that can resist Your will; for You have made all t", - "id": "Introitus" - }, - { - "body": "Guard Your household, we beseech You, O Lord, with unceasing care, that under Your protection it may be free from all ha", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 6:10-17*\nBrethren: Be strengthened in the Lord and ", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nO Lord, You have been our refuge through all generations.\n℣. Before the mountains were begotten and the eart", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 18:23-35*\nAt that time, Jesus spoke to His disciples this p", - "id": "Evangelium" - }, - { - "body": "*Job 1.1*\nThere was a man in the land of Hus, whose name was Job, simple, and upright, and fearing God, whom Satan besou", - "id": "Offertorium" - }, - { - "body": "Graciously accept these sacrificial gifts, O Lord, with which You have willed us to find favor with You, and, by Your mi", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nMy soul pines for Your salvation; I hope in Your word. When will You do judgment on my perse", - "id": "Communio" - }, - { - "body": "We who have eaten the food of eternal life beseech You, O Lord, that what we take by mouth, we may strive after with pur", - "id": "Postcommunio" - } - ], - "2020-10-31": [ - { - "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", - "id": "Introitus" - }, - { - "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", - "id": "Postcommunio" - } - ], - "2020-11-01": [ - { - "body": "Let us all rejoice in the Lord, celebrating a feast day in honor of all the Saints, on whose solemnity the angels rejoic", - "id": "Introitus" - }, - { - "body": "Almighty, eternal God, Who granted us to honor the merits of all Your Saints in a single solemn festival, bestow on us, ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Revelation\n*Apoc 7:2-12*\nIn those days, behold, I John, saw another angel ascending from the ris", - "id": "Lectio" - }, - { - "body": "*Ps 33:10-11*\nFear the Lord, you His holy ones, for nought is lacking to those who fear Him.\n℣. But those who seek the L", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:1-12*\nAt that time, Jesus seeing the crowds, went up the ", - "id": "Evangelium" - }, - { - "body": "*Wis 3:1-3*\nThe souls of the just are in the hand of God, and no torment shall touch them. They seemed, in the view of t", - "id": "Offertorium" - }, - { - "body": "We offer You, O Lord, the gifts of our service; may they be pleasing to You for the honor of Your just ones and, through", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 5:8-10*\nBlessed are the clean of heart, for they shall see God. Blessed are the peacemakers, for they shall be cal", - "id": "Communio" - }, - { - "body": "Grant Your faithful people, we beseech You, O Lord, ever to rejoice in the veneration of all the Saints, and to be prote", - "id": "Postcommunio" - } - ], - "2020-11-02": [ - { - "body": "*4 Esd. 2:34-35.*\nEternal rest give to them, O Lord; and let perpetual light shine upon them.\n*Ps 64:2-3*\nTo You we owe ", - "id": "Introitus" - }, - { - "body": "O God, Creator and Redeemer of all the faithful, grant to the souls of Your servants and handmaids the remission of all ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 15:51-57*\nBrethren: Behold, I tell you a", - "id": "Lectio" - }, - { - "body": "*4 Esd. 2:34-35.*\nEternal rest give to them, O Lord; and let perpetual light shine upon them.\n*Ps 111:7*\nThe just man sh", - "id": "Graduale" - }, - { - "body": "Dreaded day, that day of ire,\nWhen the world shall melt in fire,\nTold by Sibyl and David’s lyre.\n\nFright men’s hearts sh", - "id": "Sequentia" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 5:25-29*\nAt that time, Jesus said to the multitudes of the Jew", - "id": "Evangelium" - }, - { - "body": "O Lord, Jesus Christ, King of glory, deliver the souls of all the faithful departed from the pains of hell and the deep ", - "id": "Offertorium" - }, - { - "body": "Look with mercy, we beseech You, O Lord, upon the sacrificial gifts we offer for the souls of Your servants and handmaid", - "id": "Secreta" - }, - { - "body": "*Dead*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give than", - "id": "Prefatio" - }, - { - "body": "*4 Esdr 2:35; 2:34*\nMay light eternal shine upon them, O Lord, with Your Saints forever, for You are kind.\n℣. Grant them", - "id": "Communio" - }, - { - "body": "May the prayer of Your suppliants, O Lord, benefit the souls of Your servants and handmaids, that You may deliver them f", - "id": "Postcommunio" - } - ], - "2020-11-03": [ - { - "body": "*Ps 129:3-4*\nIf You, O Lord, mark iniquities, Lord, who can stand? But with You is forgiveness, O God of Israel.\n*Ps 129", - "id": "Introitus" - }, - { - "body": "O God, our refuge and our strength, the very source of holiness, heed the devout prayers of Your Church, and grant that ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 1:6-11*\nBrethren: We are confident in the Lord J", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\nBehold how good it is, and how pleasant where brethren dwell as one!\n℣. It is as when the precious ointment", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:15-21*\nAt that time, the Pharisees went and took counsel", - "id": "Evangelium" - }, - { - "body": "*Esther 14:12-13*\nRemember me, O Lord, You Who rule above all power: and give a well-ordered speech in my mouth, that my", - "id": "Offertorium" - }, - { - "body": "Grant, O merciful God, that this saving sacrifice may always free us from sin, and protect us from all that works agains", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 16:6*\nI call upon You, for You will answer me, O God; incline Your ear to me; hear my word.", - "id": "Communio" - }, - { - "body": "We who have received the gift of Your blessed sacrament, O Lord, humbly pray that what You have taught us to do in comme", - "id": "Postcommunio" - } - ], - "2020-11-04": [ - { - "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", - "id": "Introitus" - }, - { - "body": "Safeguard Your Church, O Lord, under the continual protection of St. Charles, Your Confessor and Bishop, so that just as", - "id": "Oratio" - }, - { - "body": "*For Ss. Vitalis and Agrícola Martyrs*\nGrant, almighty God, we beseech You, that we who keep the feast of Your blessed M", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", - "id": "Lectio" - }, - { - "body": "*Sir 44:16, 20*\nBehold, a great priest, who in his days pleased God.\n℣. There was not found the like to him, who kept th", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:14-23*\nAt that time, Jesus spoke this parable to His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nI have found David, my servant; with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Offertorium" - }, - { - "body": "May Your Saints, we beseech you, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", - "id": "Secreta" - }, - { - "body": "*For Ss. Vitalis and Agrícola Martyrs*\nBe appeased, O Lord, we beseech You, by the gifts we offer, and by the intercessi", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", - "id": "Postcommunio" - }, - { - "body": "*For Ss. Vitalis and Agrícola Martyrs*\nMay this Communion, O Lord, cleanse us of sin and make us partakers of heavenly h", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-05": [ - { - "body": "*Ps 129:3-4*\nIf You, O Lord, mark iniquities, Lord, who can stand? But with You is forgiveness, O God of Israel.\n*Ps 129", - "id": "Introitus" - }, - { - "body": "O God, our refuge and our strength, the very source of holiness, heed the devout prayers of Your Church, and grant that ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 1:6-11*\nBrethren: We are confident in the Lord J", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\nBehold how good it is, and how pleasant where brethren dwell as one!\n℣. It is as when the precious ointment", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:15-21*\nAt that time, the Pharisees went and took counsel", - "id": "Evangelium" - }, - { - "body": "*Esther 14:12-13*\nRemember me, O Lord, You Who rule above all power: and give a well-ordered speech in my mouth, that my", - "id": "Offertorium" - }, - { - "body": "Grant, O merciful God, that this saving sacrifice may always free us from sin, and protect us from all that works agains", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 16:6*\nI call upon You, for You will answer me, O God; incline Your ear to me; hear my word.", - "id": "Communio" - }, - { - "body": "We who have received the gift of Your blessed sacrament, O Lord, humbly pray that what You have taught us to do in comme", - "id": "Postcommunio" - } - ], - "2020-11-06": [ - { - "body": "*Ps 129:3-4*\nIf You, O Lord, mark iniquities, Lord, who can stand? But with You is forgiveness, O God of Israel.\n*Ps 129", - "id": "Introitus" - }, - { - "body": "O God, our refuge and our strength, the very source of holiness, heed the devout prayers of Your Church, and grant that ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 1:6-11*\nBrethren: We are confident in the Lord J", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\nBehold how good it is, and how pleasant where brethren dwell as one!\n℣. It is as when the precious ointment", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 22:15-21*\nAt that time, the Pharisees went and took counsel", - "id": "Evangelium" - }, - { - "body": "*Esther 14:12-13*\nRemember me, O Lord, You Who rule above all power: and give a well-ordered speech in my mouth, that my", - "id": "Offertorium" - }, - { - "body": "Grant, O merciful God, that this saving sacrifice may always free us from sin, and protect us from all that works agains", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 16:6*\nI call upon You, for You will answer me, O God; incline Your ear to me; hear my word.", - "id": "Communio" - }, - { - "body": "We who have received the gift of Your blessed sacrament, O Lord, humbly pray that what You have taught us to do in comme", - "id": "Postcommunio" - } - ], - "2020-11-07": [ - { - "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", - "id": "Introitus" - }, - { - "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", - "id": "Postcommunio" - } - ], - "2020-11-08": [ - { - "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", - "id": "Introitus" - }, - { - "body": "Forgive, we beseech You, O Lord, the sins of Your faithful people, so that by Your goodness we may be released from the ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:17-21; 4:1-3*\nBrethren: Be imitators of me, an", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:18-26*\nAt that time, as Jesus was speaking to the crowds,", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", - "id": "Offertorium" - }, - { - "body": "We offer You O Lord, the sacrifice of praise that we may serve You even better, so that You may graciously complete what", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", - "id": "Communio" - }, - { - "body": "We beseech You, almighty God, let not human dangers overcome us to whom You grant joyful participation in things divine.", - "id": "Postcommunio" - } - ], - "2020-11-09": [ - { - "body": "*Gen. 28:17.*\nHow awesome is this place! This is none other than the house of God; this is the gate of heaven; and it sh", - "id": "Introitus" - }, - { - "body": "*Prayer on the anniversary of the dedication:*\nO God, Who for us bring each year the recurrence of the consecration day ", - "id": "Oratio" - }, - { - "body": "*For St. Theodore, Martyr*\nO God, Who surround and protect us with the glorious profession of blessed Theodore, Your Mar", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Revelation\n*Rev 21:2-5*\nIn those days, I saw the holy city, New Jerusalem, coming down out of he", - "id": "Lectio" - }, - { - "body": "This place was made by God, a priceless mystery; it is without reproof.\n℣. O God, before Whom stands the choir of angels", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:1-10*\nAt that time, Jesus entered and was passing through J", - "id": "Evangelium" - }, - { - "body": "*1 Par 29:17-18*\nO Lord God, in the simplicity of my heart I have joyfully offered all these things; and I have seen wit", - "id": "Offertorium" - }, - { - "body": "Look with favor upon our prayers, we beseech You, O Lord, that as we offer our prayers before You, we may, with Your hel", - "id": "Secreta" - }, - { - "body": "*For St. Theodore, Martyr*\nAccept, O Lord, the prayers and sacrificial gifts of Your faithful people, that, through thes", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 21:13*\nMy house shall be called a house of prayer, says the Lord; in it everyone who asks receives: and he who see", - "id": "Communio" - }, - { - "body": "*On the day of dedication*\nWe beseech You, almighty God, that in this place which we, all unworthy, have dedicated to Yo", - "id": "Postcommunio" - }, - { - "body": "*For St. Theodore, Martyr*\nGrant, we beseech You, O Lord, by the intercession of blessed Theodore, Your Martyr, that wha", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-10": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "O God, by his difficult vow to make daily progress in holiness, You placed in the heart of blessed Andrew, Your Confesso", - "id": "Oratio" - }, - { - "body": "*For St. Tryphon and Companions, Martyrs*\nMake us, we beseech You, O Lord, ever faithful to observe the feast-day of You", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 31:8-11*\nHappy the man found without fault, who turns not aside after gain, ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:35-40*\nAt that time, Jesus said to His disciples, Let your ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "We offer You sacrifices of praise, O Lord, in memory of Your Saints; trusting that by them we may be delivered from both", - "id": "Secreta" - }, - { - "body": "*For St. Tryphon and Companions, Martyrs*\nWe offer You, O Lord, the gifts of our homage; may they be made pleasing to Yo", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Refreshed with heavenly food and drink, we humbly pray You, our God, that we also may be helped by his prayers in memory", - "id": "Postcommunio" - }, - { - "body": "*For St. Tryphon and Companions, Martyrs*\nGrant, we beseech You, O Lord, by the intercession of blessed Tryphon, Respici", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-11": [ - { - "body": "*Ecclus 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignit", - "id": "Introitus" - }, - { - "body": "O God, Who see that we cannot survive by any power of our own, mercifully grant that, by the intercession of blessed Mar", - "id": "Oratio" - }, - { - "body": "*For St. Mennas*\nGrant, we beseech You, almighty God, that we, who honor the anniversary of the death of blessed Mennas,", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", - "id": "Lectio" - }, - { - "body": "*Sir 44:16, 20*\nBehold a great priest, who in his days pleased God.\n℣. There was not found the like to him, who kept the", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:33-36*\nAt that time, Jesus said to His disciples, No one li", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "Sanctify, we beseech You, O Lord God, the gifts we offer on the feast of Your holy Bishop, Martin, that through them our", - "id": "Secreta" - }, - { - "body": "*For St. Mennas*\nNow that You have received our gifts and prayers, we beseech You, O Lord, cleanse us by Your heavenly m", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant whom his master, when he comes, shall find watching. Amen I say to you, he will ", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, O Lord our God, that this sacrifice may be beneficial for our salvation, by the intercession of t", - "id": "Postcommunio" - }, - { - "body": "*For St. Mennas*\nGrant, we beseech You, O Lord our God, that we who in this life joyously assist in the veneration of Yo", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-12": [ - { - "body": "*John 21:15-17*\nIf thou lovest me, Simon Peter, feed my lambs, feed my sheep.\n*Ps 29:2*\nI will extol thee, O Lord, for t", - "id": "Introitus" - }, - { - "body": "Look forgivingly on thy flock, Eternal Shepherd, and keep it in thy constant protection, by the intercession of blessed ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St Peter the Apostle\n*1 Pet 5:1-4; 5:10-11.*\nDearly beloved brethren: The ancients there", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nAnd let them exalt him in the church of the people: and praise him in the chair of the ancients.\n℣. ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", - "id": "Offertorium" - }, - { - "body": "By the offered gifts we beseech thee, O Lord, that thou kindly enlighten thy Church, so that thy flock may everywhere pr", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", - "id": "Communio" - }, - { - "body": "Being appeased, O Lord, guide thy Church, which has been nourished by holy refreshment, that under thy direction and pow", - "id": "Postcommunio" - } - ], - "2020-11-13": [ - { - "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", - "id": "Introitus" - }, - { - "body": "Forgive, we beseech You, O Lord, the sins of Your faithful people, so that by Your goodness we may be released from the ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Didacus*\nAlmighty, eternal God, Who in Your wondrous providence choose the weak things of the world t", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:17-21; 4:1-3*\nBrethren: Be imitators of me, an", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 9:18-26*\nAt that time, as Jesus was speaking to the crowds,", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", - "id": "Offertorium" - }, - { - "body": "We offer You O Lord, the sacrifice of praise that we may serve You even better, so that You may graciously complete what", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Didacus*\nGrant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing t", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", - "id": "Communio" - }, - { - "body": "We beseech You, almighty God, let not human dangers overcome us to whom You grant joyful participation in things divine.", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Didacus*\nWe pray You, almighty God, that we who have received heavenly nourishment may thereby, throu", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-14": [ - { - "body": "Let us all rejoice in the Lord, celebrating a feast-day in honor of the Blessed Martyr Josaphat, at whose martyrdom the ", - "id": "Introitus" - }, - { - "body": "Arouse in Your Church, O Lord, the spirit with which blessed Josaphat, Your Martyr and Bishop, was filled when he laid d", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Hebrews\n*Heb 5:1-6*\nBrethren: Every high priest taken from among m", - "id": "Lectio" - }, - { - "body": "*Ps 88:21-23*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 10:11-16*\nAt that time, Jesus said to the Pharisees: I am the ", - "id": "Evangelium" - }, - { - "body": "*John 15:13*\nGreater love than this no one has, that one lay down his life for his friends.", - "id": "Offertorium" - }, - { - "body": "Most merciful God, shower these offerings with Your blessing and strengthen us in the faith which St. Josaphat, Your Mar", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*John 10:14*\nI am the Good Shepherd, and I know My sheep, and Mine know Me.", - "id": "Communio" - }, - { - "body": "May this heavenly food, O Lord, impart to us that spirit of strength which unfailingly sustained the life of blessed Jos", - "id": "Postcommunio" - } - ], - "2020-11-15": [ - { - "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", - "id": "Introitus" - }, - { - "body": "Grant us, we beseech You, almighty God, ever to think of spiritual things and in every word and work always to do what i", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Thessalonians\n*1 Thess. 1:2-10*\nBrethren: We give thanks to ", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", - "id": "Graduale" - }, - { - "body": "Continuation of the Holy Gospel according to St. Matthew\n*Matt 13:31-35*\nAt that time, Jesus spoke this parable to the c", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", - "id": "Offertorium" - }, - { - "body": "May this offering, O God, we beseech You, cleanse and renew us, govern and protect us.\nThrough our Lord…", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", - "id": "Communio" - }, - { - "body": "Nourished by Your heavenly food, O Lord, we beseech You that we may always strive after those things that give us true l", - "id": "Postcommunio" - } - ], - "2020-11-16": [ - { - "body": "*Ps 44:8*\nThou hast loved justice, and hated iniquity: therefore God, thy God, hath anointed thee with the oil of gladne", - "id": "Introitus" - }, - { - "body": "O God, Who prepared a pleasing dwelling place for Yourself in the heart of blessed Gertrude the Virgin, by her merits an", - "id": "Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Corinthians\n*2 Cor 10:17-18; 11:1-2*\nBrothers: He that glor", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nWith thy comeliness and thy beauty set out, proceed prosperously, and reign.\n℣. Because of truth and meekness ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13*\nIn that time Jesus said to the people: Then shall ", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nThe daughters of kings have delighted thee in thy glory. The queen stood on thy right hand, in gilded clothin", - "id": "Offertorium" - }, - { - "body": "May the offering made by Your devoted people be pleasing to You, O Lord, in honor of Your Saints, through whose merits t", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nThe five wise virgins took oil in their vessels with the lamps. And at midnight there was a cry made: ", - "id": "Communio" - }, - { - "body": "You have filled Your people, O Lord, with sacred gifts; we beseech You to ever comfort us by the intercession of her who", - "id": "Postcommunio" - } - ], - "2020-11-17": [ - { - "body": "*Sir 45:30*\nThe Lord made a covenant of friendship with him, and made him a prince; that he should possess the dignity o", - "id": "Introitus" - }, - { - "body": "Grant, we beseech You, almighty God, that the venerable feast of Your blessed Confessor and Bishop may increase our devo", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 44:16-27; 45:3-20*\nBehold, a great priest, who in his days pleased God, and ", - "id": "Lectio" - }, - { - "body": "*Sir 44:16*\nBehold, a great priest, who in his days pleased God.\n*Sir 44:20*\n℣. There was not found the like to him, who", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 11:22-24*\nAt that time, Jesus answered and said to His discipl", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nI have found David, My servant; with My holy oil I have anointed him, that My hand may be always with him,", - "id": "Offertorium" - }, - { - "body": "May Your Saints, we beseech You, O Lord, everywhere make us joyful: so that, while we reflect upon their merits, we may ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and prudent servant whom the master will set over his household to give them their ration of g", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, almighty God, that as we thank You for the favors we have received, we may, by the intercession o", - "id": "Postcommunio" - } - ], - "2020-11-18": [ - { - "body": "*Gen. 28:17.*\nHow awesome is this place! This is none other than the house of God; this is the gate of heaven; and it sh", - "id": "Introitus" - }, - { - "body": "O God, Who for us bring each year the recurrence of the consecration day of this Your holy temple, and always bring us b", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Revelation\n*Rev 21:2-5*\nIn those days, I saw the holy city, New Jerusalem, coming down out of he", - "id": "Lectio" - }, - { - "body": "This place was made by God, a priceless mystery; it is without reproof.\n℣. O God, before Whom stands the choir of angels", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 19:1-10*\nAt that time, Jesus entered and was passing through J", - "id": "Evangelium" - }, - { - "body": "*1 Par 29:17-18*\nO Lord God, in the simplicity of my heart I have joyfully offered all these things; and I have seen wit", - "id": "Offertorium" - }, - { - "body": "*Outside the dedicated church*\nLook with favor upon our prayers, we beseech You, O Lord, that as we offer our prayers be", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 21:13*\nMy house shall be called a house of prayer, says the Lord; in it everyone who asks receives: and he who see", - "id": "Communio" - }, - { - "body": "*On the anniversary of the dedication*\nO God, Who from living and chosen stones prepare an eternal dwelling place for Yo", - "id": "Postcommunio" - } - ], - "2020-11-19": [ - { - "body": "*Ps 118:75; 118:120*\nI know, O Lord, that Your ordinances are just, and in Your faithfulness You have afflicted me. Pier", - "id": "Introitus" - }, - { - "body": "O merciful God, enlighten the hearts of Your faithful people, and through the glorious prayers of blessed Elizabeth, mak", - "id": "Oratio" - }, - { - "body": "*For St. Pontianus*\nBe mindful of our weakness, almighty God, and because the burden of our sins weighs heavily upon us,", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Proverbs\n*Prov 31:10-31*\nWhen one finds a worthy wife, her value is far beyond pearls. Her husba", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nGrace is poured out upon your lips; thus God has blessed you forever.\n℣. In the cause of truth and mercy", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52*\nAt that time, Jesus spoke this parable to His dis", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", - "id": "Offertorium" - }, - { - "body": "O Lord, may the offerings of Your devoted people be pleasing to You in honor of Your saints, through whose merits they k", - "id": "Secreta" - }, - { - "body": "*For St. Pontianus*\nO Lord, graciously accept, through the merits of Your blessed Martyr and Bishop N., the sacrificial ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nYou love justice and hate wickedness; therefore God, your God, has anointed you with the oil of gladness above", - "id": "Communio" - }, - { - "body": "You have filled Your people, O Lord, with sacred gifts; ever comfort us, we beseech You, by the intercession of her whos", - "id": "Postcommunio" - }, - { - "body": "*For St. Pontianus*\nRefreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enjoy the ben", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-20": [ - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow: planted in the hous", - "id": "Introitus" - }, - { - "body": "O God, Who by heavenly inspiration graciously called forth blessed Felix, Your Confessor, from the desert to the work of", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St Paul the Apostle to the Corinthians\n*1 Cor. 4:9-14*\nBrethren: We have been made a spe", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just tells of wisdom, and his tongue utters what is right.\n℣. The law of his God is in hi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 12:32-34*\nAt that time, Jesus said to His disciples, Do not be", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nO Lord, in Your strength the just man is glad; in Your victory how greatly he rejoices! You have granted him", - "id": "Offertorium" - }, - { - "body": "Grant us, we beseech You, almighty God, that the offering of our lowliness may be pleasing to You in honor of Your Saint", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28-29*\nAmen I say to you that you, who have left all things and followed Me, shall receive a hundredfold, and s", - "id": "Communio" - }, - { - "body": "We pray You, almighty God, that we who have received heavenly nourishment may thereby, through the intercession of bless", - "id": "Postcommunio" - } - ], - "2020-11-21": [ - { - "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", - "id": "Introitus" - }, - { - "body": "O God, by Whose will the blessed Mary, ever Virgin, the dwelling place of the Holy Spirit, was on this day presented in ", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 24:14-16*\nBefore all ages, in the beginning, He created me, and through all ", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, without spot to your maidenhood, were made the Mother of the Saviour.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "*Luke 1:28, 42*\nHail, Mary, full of grace, the Lord is with you; blessed are you among women and blessed is the fruit of", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "We have received help for our salvation, O Lord; grant, we beseech You, that we may everywhere be protected by the patro", - "id": "Postcommunio" - } - ], - "2020-11-22": [ - { - "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, arouse the wills of Your faithful people that, by a more earnest search for the fruit of Your di", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:9-14*\nBrethren: We have been praying for you unc", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:15-35*\nAt that time, Jesus said to His disciples: When y", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", - "id": "Offertorium" - }, - { - "body": "Be merciful, O Lord, to our humble requests and accept the offerings and prayers of Your people: turn the hearts of all ", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", - "id": "Communio" - }, - { - "body": "Grant us, we beseech You, O Lord, that all the evil in our hearts may be cured by the healing power of the sacrament we ", - "id": "Postcommunio" - } - ], - "2020-11-23": [ - { - "body": "*Isa 59:21; 56:7*\nThe Lord says, My words which I have put in your mouth, shall not depart out of your mouth; and your g", - "id": "Introitus" - }, - { - "body": "Eternal Shepherd, look with favor upon Your flock. Safeguard and shelter it forevermore through blessed Clement, Your Ma", - "id": "Oratio" - }, - { - "body": "*For St. Felicity*\nGrant, we beseech You, almighty God, that we who keep the feast-day of blessed Felicitas Your Martyr,", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 3:17-21; 4:1-3*\nBrethren: Be imitators of me, an", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nAnd let them exalt him in the church of the people: and praise him in the chair of the ancients.\n℣. ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nIn that time: Jesus came into the quarters of Cae", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nBehold I have given my words in thy mouth: Lo, I have set thee over the nations, and over the kingdoms, to ", - "id": "Offertorium" - }, - { - "body": "Having offered You our gifts, we beseech You, O Lord, mercifully to enlighten Your Church, so that Your flock may everyw", - "id": "Secreta" - }, - { - "body": "*For St. Felicity*\nBe merciful, O Lord, and look with favor upon the prayers of Your people, and make us rejoice in the ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nThou art Peter; and upon this rock I will build My Church, and the gates of hell shall not prevail against ", - "id": "Communio" - }, - { - "body": "Since Your Church has been nourished by sacred food, govern her in Your clemency, we beseech You, O Lord, so that under ", - "id": "Postcommunio" - }, - { - "body": "*For St. Felicity*\nWe humbly beseech You, almighty God, that by the intercession of Your Saints, You will multiply Your ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-24": [ - { - "body": "*Sir 15:5*\nIn the midst of the church he opened his mouth, and the Lord filled him with the spirit of wisdom and underst", - "id": "Introitus" - }, - { - "body": "O God, Who made blessed John, Your Confessor and Teacher, an extraordinary lover of perfect self-denial and the Cross, g", - "id": "Oratio" - }, - { - "body": "*For St. Chrysogonus*\nHarken, O Lord, to our humble prayers, so that we who realize our guilt because of the evil we hav", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St Paul the Apostle to Timothy\n*2 Tim 4:1-8*\nDearly beloved: I charge thee, before God ", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nThe mouth of the just shall meditate wisdom:\n℣. And his tongue shall speak judgment. The law of his God is", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nIn that time, Jesus said to His disciples: You are", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "May the loving prayer of blessed John, Your Confessor and Doctor, fail us never, O Lord; may it commend our offerings an", - "id": "Secreta" - }, - { - "body": "*For St. Chrysogonus*\nBe appeased by the gifts we offer You, O Lord, and through the intercession of blessed Chrysogonus", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise steward, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "So that your sacrificial rites may grant us salvation, we pray You, O Lord, that blessed John, Your Confessor and illust", - "id": "Postcommunio" - }, - { - "body": "*For St. Chrysogonus*\nThrough the reception of Your sacrament, O Lord, may we be cleansed from our hidden sins and deliv", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-25": [ - { - "body": "*Ps 118:46-47.*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, wh", - "id": "Introitus" - }, - { - "body": "O God, Who gave the law to Moses on Sinai's height and through your holy angels miraculously placed there the body of bl", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 51:1-8; 5:12*\nI will give You thanks, O Lord, O King; I will praise You, O G", - "id": "Lectio" - }, - { - "body": "*Ps 44:8*\nYou love justice and hate wickedness.\n℣. Therefore God, your God, has anointed you with the oil of gladness. A", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 25:1-13.*\nAt that time Jesus spoke this parable to His disc", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15-16.*\nBehind her the virgins of her train are brought to the King. They are borne in to You with gladness and j", - "id": "Offertorium" - }, - { - "body": "Accept, O Lord, the gifts we bring on the festival of blessed Catherine, Your Virgin and Martyr, through whose patronage", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:78, 80*\nLet the proud be put to shame for oppressing me unjustly; I will meditate on Your precepts, on Your stat", - "id": "Communio" - }, - { - "body": "May the sacrament we have received, aid us, O Lord, and by the intercession of blessed Catherine, Your Virgin and Martyr", - "id": "Postcommunio" - } - ], - "2020-11-26": [ - { - "body": "*Ps 36:30-31*\nThe mouth of the just man tells of wisdom, and his tongue utters what is right. The law of his God is in h", - "id": "Introitus" - }, - { - "body": "Most merciful God, Who when the holy Abbot Sylvester was devoutly meditating upon the vanity of this world beside an ope", - "id": "Oratio" - }, - { - "body": "*For St. Peter Of Alexandria*\nBe mindful of our weakness, almighty God, and because the burden of our sins weighs heavil", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 45:1-6*\nBeloved of God and men, whose memory is held in benediction. He m", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nO Lord, You welcomed him with goodly blessings, You placed on his head a crown of pure gold.\n℣. He asked lif", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 19:27-29.*\nAt that time, Peter said to Jesus, Behold, we ha", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3-4.*\nYou have granted him his heart’s desire, O Lord; You refused not the wish of his lips. You placed on his he", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, that while offering these sacrificial gifts to Your Divine Majesty, we may become like the bless", - "id": "Secreta" - }, - { - "body": "*For St. Peter of Alexandria*\nO Lord, graciously accept, through the merits of Your blessed Martyr and Bishop, Peter, th", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Luke 12:42*\nThe faithful and wise servant, whom his lord setteth over his family, to give them their measure of wheat i", - "id": "Communio" - }, - { - "body": "We pray You, O Lord, grant that we who have renewed our strength at the heavenly banquet may closely follow in the foots", - "id": "Postcommunio" - }, - { - "body": "*For St. Peter of Alexandria*\nRefreshed by partaking of the sacred gift, we beseech You, O Lord our God, that we may enj", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-27": [ - { - "body": "*Jer 29:11-12; 29:14*\nThe Lord says: \"I think thoughts of peace, and not of affliction. You shall call upon Me, and I wi", - "id": "Introitus" - }, - { - "body": "O Lord, we beseech You, arouse the wills of Your faithful people that, by a more earnest search for the fruit of Your di", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Colossians\n*Col 1:9-14*\nBrethren: We have been praying for you unc", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nYou saved us, O Lord, from our foes, and those who hated us You put to shame.\n℣. In God we gloried day by da", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 24:15-35*\nAt that time, Jesus said to His disciples: When y", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nOut of the depths I cry to You, O Lord; Lord, hear my prayer! Out of the depths I cry to You, O Lord.", - "id": "Offertorium" - }, - { - "body": "Be merciful, O Lord, to our humble requests and accept the offerings and prayers of Your people: turn the hearts of all ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Mark 11:24*\nAmen I say to you, all things whatever you ask for in prayer, believe that you shall receive, and it shall ", - "id": "Communio" - }, - { - "body": "Grant us, we beseech You, O Lord, that all the evil in our hearts may be cured by the healing power of the sacrament we ", - "id": "Postcommunio" - } - ], - "2020-11-28": [ - { - "body": "Hail, holy Mother, who in childbirth brought forth the King Who rules heaven and earth world without end.\n*Ps 44:2*\nMy h", - "id": "Introitus" - }, - { - "body": "Grant us, Your servants, O Lord God, we beseech You, to enjoy lasting health of mind and body; and by the intercession o", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Ecclus 24:14-16*\nBefore all ages, in the beginning, He created me, and through a", - "id": "Lectio" - }, - { - "body": "Blessed and venerable are you, O Virgin Mary, who, with unsullied virginity, were found to be the Mother of the Saviour.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 11:27-28*\nAt that time, as Jesus was speaking to the multitude", - "id": "Evangelium" - }, - { - "body": "*Lk 1:28; 1:42*\nHail, Mary, full of grace, the Lord is with you. Blessed are you among women and blessed is the fruit of", - "id": "Offertorium" - }, - { - "body": "Through Your mercy, O Lord, and by the intercession of blessed Mary, ever Virgin, the Mother of Your only-begotten Son, ", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "Blessed is the womb of the Virgin Mary, which bore the Son of the eternal Father.", - "id": "Communio" - }, - { - "body": "Having received the aids conducive to our salvation, O Lord, we beseech You, grant that we may everywhere be protected b", - "id": "Postcommunio" - } - ], - "2020-11-29": [ - { - "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", - "id": "Introitus" - }, - { - "body": "Put forth Your power, O Lord, we beseech You, and come, that with You as our protector we may be rescued from the impend", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:11-14*\nBrethren: Understand, for it is now the hour", - "id": "Lectio" - }, - { - "body": "*Ps 24:3-4*\nNo one who waits for You shall be put to shame.\n℣. Your ways, O Lord, make known to me; teach me Your paths.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:25-33*\nAt that time, Jesus said to His disciples: There wil", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", - "id": "Offertorium" - }, - { - "body": "May these offerings, O Lord, cleanse us by their mighty power and thus make us come purer before You Who are their autho", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Ps 84:13*\nThe Lord will give His benefits: and our land shall yield its increase.", - "id": "Communio" - }, - { - "body": "May we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with due observance for the coming fest", - "id": "Postcommunio" - } - ], - "2020-11-30": [ - { - "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", - "id": "Introitus" - }, - { - "body": "We humbly pray Your majesty, O Lord, that, as blessed Andrew was a preacher and ruler in Your Church, so he may always i", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 10:10-18*\nBrethren: With the heart a man believes unto", - "id": "Lectio" - }, - { - "body": "*Ps 44:17-18*\nYou shall make them princes through all the land; they shall remember Your name, O Lord.\n℣. The place of y", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 4:18-22*\nAt that time, as Jesus was walking by the sea of G", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.", - "id": "Offertorium" - }, - { - "body": "O Lord, we beseech You, that the holy prayer of blessed Andrew may make our sacrifice pleasing to You, so that it would ", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 4:19-20*\nCome, follow Me, and I will make you fishers of men. And at once they left the nets, and followed the Lor", - "id": "Communio" - }, - { - "body": "O Lord, we have received the divine sacrament on the joyful feastday of blessed Andrew: as You make it contribute to the", - "id": "Postcommunio" - } - ], - "2020-12-01": [ - { - "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", - "id": "Introitus" - }, - { - "body": "Put forth Your power, O Lord, we beseech You, and come, that with You as our protector we may be rescued from the impend", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:11-14*\nBrethren: Understand, for it is now the hour", - "id": "Lectio" - }, - { - "body": "*Ps 24:3-4*\nNo one who waits for You shall be put to shame.\n℣. Your ways, O Lord, make known to me; teach me Your paths.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:25-33*\nAt that time, Jesus said to His disciples: There wil", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", - "id": "Offertorium" - }, - { - "body": "May these offerings, O Lord, cleanse us by their mighty power and thus make us come purer before You Who are their autho", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 84:13*\nThe Lord will give His benefits: and our land shall yield its increase.", - "id": "Communio" - }, - { - "body": "May we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with due observance for the coming fest", - "id": "Postcommunio" - } - ], - "2020-12-02": [ - { - "body": "*Ps 118:95-96.*\nSinners wait to destroy me, but I pay heed to Your decrees, O Lord. I see that all fulfillment has its l", - "id": "Introitus" - }, - { - "body": "O God, giver of all good gifts, You Who in Your servant, Bibiana, joined the flower of virginity with the palm of martyr", - "id": "Oratio" - }, - { - "body": "*Commemoration I Sunday of Advent*\nPut forth Your power, O Lord, we beseech You, and come, that with You as our protecto", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Ecclesiasticus\n*Sir 51:13-17.*\nO Lord, my God, You have exalted my dwelling place upon the earth", - "id": "Lectio" - }, - { - "body": "*Ps 45:6, 5*\nGod will help her with His countenance. God is in her midst; she shall not be disturbed.\n℣. There is a stre", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 13:44-52.*\nAt that time, Jesus spoke this parable to His di", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nGrace is poured out upon your lips; thus God has blessed you forever, and for ages of ages.", - "id": "Offertorium" - }, - { - "body": "Graciously accept the sacrificial gifts offered You, O Lord, through the merits of blessed Bibiana, Your Virgin and Mart", - "id": "Secreta" - }, - { - "body": "*Commemoration I Sunday of Advent*\nMay these offerings, O Lord, cleanse us by their mighty power and thus make us come p", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:121-122; 118:128*\nI have fulfilled just ordinances, O Lord; let not the proud oppress me. For in all Your precep", - "id": "Communio" - }, - { - "body": "We who have been refreshed by the richness of Your divine sacrament beseech You, O Lord our God, that through the interc", - "id": "Postcommunio" - }, - { - "body": "*Commemoration I Sunday of Advent*\nMay we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-03": [ - { - "body": "*Ps 118:46-47*\nI will speak of Your decrees before kings without being ashamed. And I will delight in Your commands, whi", - "id": "Introitus" - }, - { - "body": "O God, You Who were pleased to gather into Your Church the peoples of the Indies by the preaching and miracles of blesse", - "id": "Oratio" - }, - { - "body": "*Commemoration I Sunday of Advent*\nPut forth Your power, O Lord, we beseech You, and come, that with You as our protecto", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 10:10-18*\nBrethren: With the heart a man believes unto", - "id": "Lectio" - }, - { - "body": "*Ps 91:13-14*\nThe just man shall flourish like the palm tree, like a cedar of Lebanon shall he grow in the house of the ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Mark\n*Mark 16:15-18*\nAt that time, Jesus said to His disciples, Go into t", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, O almighty God, that the offering we make of our lowliness may be pleasing to You for the honor o", - "id": "Secreta" - }, - { - "body": "*Commemoration I Sunday of Advent*\nMay these offerings, O Lord, cleanse us by their mighty power and thus make us come p", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBlessed is that servant, whom his master, when he comes, shall find watching. Amen I say to you, he will", - "id": "Communio" - }, - { - "body": "We beseech You, O almighty God, that we who have eaten the food of heaven may find in it, by the intercession of blessed", - "id": "Postcommunio" - }, - { - "body": "*Commemoration I Sunday of Advent*\nMay we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-04": [ - { - "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", - "id": "Introitus" - }, - { - "body": "O God, Who willed to foreshow divinely that blessed Peter Chrysologus would be a great Doctor to rule and teach Your Chu", - "id": "Oratio" - }, - { - "body": "*Commemoration I Sunday of Advent*\nPut forth Your power, O Lord, we beseech You, and come, that with You as our protecto", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", - "id": "Lectio" - }, - { - "body": "*Ecclus 44:16*\nBehold a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not found the like to him", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: \"You are", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nThe just shall flourish like the palm tree: he shall grow up like the cedar of Libanus.", - "id": "Offertorium" - }, - { - "body": "May the loving prayer of blessed Peter, Your Confessor and Doctor, fail us never, O Lord; may it commend our offerings a", - "id": "Secreta" - }, - { - "body": "*Commemoration I Sunday of Advent*\nMay these offerings, O Lord, cleanse us by their mighty power and thus make us come p", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 25:20-21*\nMaster, you handed over to me five talents; behold, I have gained five others in addition. Well done, go", - "id": "Communio" - }, - { - "body": "So that your sacrificial rites may grant us salvation, we pray you, O Lord, that blessed Peter, Your Bishop and illustri", - "id": "Postcommunio" - }, - { - "body": "*Commemoration I Sunday of Advent*\nMay we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-05": [ - { - "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", - "id": "Introitus" - }, - { - "body": "Put forth Your power, O Lord, we beseech You, and come, that with You as our protector we may be rescued from the impend", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Sabbas*\nMay the intercession of the Blessed Abbot Sabbas, commend us, we beseech You, O Lord, so that", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 13:11-14*\nBrethren: Understand, for it is now the hour", - "id": "Lectio" - }, - { - "body": "*Ps 24:3-4*\nNo one who waits for You shall be put to shame.\n℣. Your ways, O Lord, make known to me; teach me Your paths.", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 21:25-33*\nAt that time, Jesus said to His disciples: There wil", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nTo You I lift up my soul: in You, O my God, I trust; let me not be put to shame; let not my enemies exult ov", - "id": "Offertorium" - }, - { - "body": "May these offerings, O Lord, cleanse us by their mighty power and thus make us come purer before You Who are their autho", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Sabbas*\nWe beseech You, O Lord, may the holy Abbot N., prevail by his prayers, so that the offerings ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 84:13*\nThe Lord will give His benefits: and our land shall yield its increase.", - "id": "Communio" - }, - { - "body": "May we receive Your mercy, O Lord, in the midst of Your temple, and thus prepare with due observance for the coming fest", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Sabbas*\nMay the intercession of the Blessed Abbot Sabbas, as well as the reception of Your sacrament,", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-06": [ - { - "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", - "id": "Introitus" - }, - { - "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", - "id": "Offertorium" - }, - { - "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", - "id": "Communio" - }, - { - "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", - "id": "Postcommunio" - } - ], - "2020-12-07": [ - { - "body": "*Ecclus 15:5*\nIn the midst of the assembly he opened his mouth; and the Lord filled him with the spirit of wisdom and un", - "id": "Introitus" - }, - { - "body": "O God, You Who have given blessed Ambrose to Your people as a help for eternal salvation, grant, we beseech you, that we", - "id": "Oratio" - }, - { - "body": "*Commemoration II Sunday of Advent*\nStir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that t", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to Timothy\n*2 Tim. 4:1-8*\nBeloved: I charge you, in the sight of G", - "id": "Lectio" - }, - { - "body": "*Ecclus 44:16*\nBehold a great priest, who in his days pleased God.\n*Ecclus 44:20*\n℣. There was not found the like to him", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 5:13-19*\nAt that time Jesus said to His disciples: \"You are", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nMy faithfulness and My kindness shall be with him, and through My name shall his horn be exalted.", - "id": "Offertorium" - }, - { - "body": "Almighty and everlasting God, grant that the gifts offered to Your majesty through the intercession of blessed Ambrose, ", - "id": "Secreta" - }, - { - "body": "*Commemoration II Sunday of Advent*\nBe appeased, we beseech You, O Lord, by the prayers and offerings of our human frail", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 88:36-38*\nOnce, by My holiness, have I sworn; his posterity shall continue forever, and his throne shall be like the", - "id": "Communio" - }, - { - "body": "Almighty God, we who receive the sacrament of our salvation, beseech You that the prayer of blessed Ambrose, Your Bishop", - "id": "Postcommunio" - }, - { - "body": "*Commemoration II Sunday of Advent*\nWe who have been refreshed by the food of spiritual nourishment, humbly beseech You,", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-08": [ - { - "body": "*Isa 61:10*\nI will heartily rejoice in the Lord, in my God is the joy of my soul; for He has clothed me with a robe of s", - "id": "Introitus" - }, - { - "body": "O God, Who by the Immaculate Conception of the Virgin, prepared a worthy dwelling for Your Son, and Who, by Your Son’s d", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Proverbs\n*Prov 8:22-35*\nThe Lord begot me, the firstborn of His ways, the forerunner of His prod", - "id": "Lectio" - }, - { - "body": "*Judith 13:23*\nBlessed are you, O Virgin Mary, by the Lord the most high God, above all women upon the earth.\n*Judith 15", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-28*\nAt that time, the angel Gabriel was sent from God to ", - "id": "Evangelium" - }, - { - "body": "*Luke 1:28*\nHail Mary full of grace, the Lord is with you; blessed are you among women. Alleluia.", - "id": "Offertorium" - }, - { - "body": "Accept, O Lord, the sacrifice of salvation which we offer You on the feast of the Immaculate Conception of the Blessed V", - "id": "Secreta" - }, - { - "body": "*Blessed Virgin*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places,", - "id": "Prefatio" - }, - { - "body": "*Ps 86:3, Luc 1:49*\nGlorious things are said of you, O Mary, for He Who is mighty has done great things for you.", - "id": "Communio" - }, - { - "body": "May the sacrament we have received, O Lord our God, heal in us the wounds of that sin from which by a singular privilege", - "id": "Postcommunio" - } - ], - "2020-12-09": [ - { - "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", - "id": "Introitus" - }, - { - "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", - "id": "Offertorium" - }, - { - "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", - "id": "Communio" - }, - { - "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", - "id": "Postcommunio" - } - ], - "2020-12-10": [ - { - "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", - "id": "Introitus" - }, - { - "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Melchiades*\nO God, Who by the Immaculate Conception of the Virgin, prepared a worthy dwelling for You", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", - "id": "Offertorium" - }, - { - "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Melchiades*\nAccept, O Lord, the sacrifice of salvation which we offer You on the feast of the Immacul", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", - "id": "Communio" - }, - { - "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Melchiades*\nMay the sacrament we have received, O Lord our God, heal in us the wounds of that sin fro", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-11": [ - { - "body": "*John 21:15-17*\nIf you love Me, Simon Peter, feed My lambs, feed my sheep.\n*Ps 29:2*\nI will extol You, O Lord, for You d", - "id": "Introitus" - }, - { - "body": "Eternal Shepherd, look with favor upon Your flock. Safeguard and shelter it forevermore through blessed Damasus, Supreme", - "id": "Oratio" - }, - { - "body": "*Commemoration II Sunday of Advent*\nStir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that t", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the first letter of St. Peter the Apostle\n*1 Pet. 5:1-4, 10-11.*\nBeloved: I exhort the presbyters among you ", - "id": "Lectio" - }, - { - "body": "*Ps 106:32, 31*\nLet them extol him in the assembly of the people and praise him in the council of the elders.\n℣. Let the", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 16:13-19*\nAt that time, Jesus, having come into the distric", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nSee, I place My words in your mouth! I set you over nations and over kingdoms, to root up and to tear down,", - "id": "Offertorium" - }, - { - "body": "Having offered You our gifts, we beseech You, O Lord, mercifully to enlighten Your Church, so that Your flock may everyw", - "id": "Secreta" - }, - { - "body": "*Commemoration II Sunday of Advent*\nBe appeased, we beseech You, O Lord, by the prayers and offerings of our human frail", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nYou are Peter, and upon this rock I will build My Church.", - "id": "Communio" - }, - { - "body": "Since Your Church has been nourished by sacred food, govern her in Your clemency, we beseech You, O Lord, so that under ", - "id": "Postcommunio" - }, - { - "body": "*Commemoration II Sunday of Advent*\nWe who have been refreshed by the food of spiritual nourishment, humbly beseech You,", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-12": [ - { - "body": "*Isa 30:30*\nPeople of Sion, behold the Lord shall come to save the nations; and the Lord shall make the glory of His voi", - "id": "Introitus" - }, - { - "body": "Stir up our hearts, O Lord, to prepare the ways of Your only-begotten Son, so that through His coming we may be able to ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 15:4-13*\nBrethren: Whatever things have been written h", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3, 5*\nFrom Sion, perfect in beauty, God shines forth.\n℣. Gather His faithful ones before Him, those who have ma", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 11:2-10*\nAt that time, when John had heard in prison of the", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindness,", - "id": "Offertorium" - }, - { - "body": "Be appeased, we beseech You, O Lord, by the prayers and offerings of our human frailty, and where the support of our own", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nUp, Jerusalem! stand upon the heights; and behold the joy that comes to you from your God.", - "id": "Communio" - }, - { - "body": "We who have been refreshed by the food of spiritual nourishment, humbly beseech You, O Lord, that through partaking of t", - "id": "Postcommunio" - } - ], - "2020-12-13": [ - { - "body": "*Phil. 4:4-6*\nRejoice in the Lord always: again I say, rejoice. Let your moderation be known to all men: for the Lord is", - "id": "Introitus" - }, - { - "body": "Lend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of our minds by the grace of Your coming", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Lucy*\nHear us, O God our Saviour, that, as we rejoice on the feast of blessed Lucy, Your Virgin and M", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-7*\nBrethren: Rejoice in the Lord always; aga", - "id": "Lectio" - }, - { - "body": "*Ps 79:2-3, 2*\nFrom Your throne, O Lord, upon the Cherubim, rouse Your power, and come.\n℣. O Shepherd of Israel, hearken", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:19-28*\nAt that time, the Jews sent to John from Jerusalem pr", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nYou have favored, O Lord, Your land; You have restored the well-being of Jacob. You have forgiven the guilt of", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continually, so that the sacramental rite Yo", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Lucy*\nGraciously accept the offering of Your holy people O Lord, in honor of Your Saints, through who", - "id": "Commemoratio Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Isa 35:4*\nSay to those who are frightened: Be strong, fear not! Here is our God, He comes to save us.", - "id": "Communio" - }, - { - "body": "We entreat You, merciful Lord, that these divine helps may cleanse us from our sins and prepare us for the coming festal", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Lucy*\nO Lord, O You have filled Your household with sacred gifts; always comfort us, we beseech You, ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-14": [ - { - "body": "*Phil. 4:4-6*\nRejoice in the Lord always: again I say, rejoice. Let your moderation be known to all men: for the Lord is", - "id": "Introitus" - }, - { - "body": "Lend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of our minds by the grace of Your coming", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-7*\nBrethren: Rejoice in the Lord always; aga", - "id": "Lectio" - }, - { - "body": "*Ps 79:2-3, 2*\nFrom Your throne, O Lord, upon the Cherubim, rouse Your power, and come.\n℣. O Shepherd of Israel, hearken", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:19-28*\nAt that time, the Jews sent to John from Jerusalem pr", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nYou have favored, O Lord, Your land; You have restored the well-being of Jacob. You have forgiven the guilt of", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continually, so that the sacramental rite Yo", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Isa 35:4*\nSay to those who are frightened: Be strong, fear not! Here is our God, He comes to save us.", - "id": "Communio" - }, - { - "body": "We entreat You, merciful Lord, that these divine helps may cleanse us from our sins and prepare us for the coming festal", - "id": "Postcommunio" - } - ], - "2020-12-15": [ - { - "body": "*Phil. 4:4-6*\nRejoice in the Lord always: again I say, rejoice. Let your moderation be known to all men: for the Lord is", - "id": "Introitus" - }, - { - "body": "Lend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of our minds by the grace of Your coming", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-7*\nBrethren: Rejoice in the Lord always; aga", - "id": "Lectio" - }, - { - "body": "*Ps 79:2-3, 2*\nFrom Your throne, O Lord, upon the Cherubim, rouse Your power, and come.\n℣. O Shepherd of Israel, hearken", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:19-28*\nAt that time, the Jews sent to John from Jerusalem pr", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nYou have favored, O Lord, Your land; You have restored the well-being of Jacob. You have forgiven the guilt of", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continually, so that the sacramental rite Yo", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Isa 35:4*\nSay to those who are frightened: Be strong, fear not! Here is our God, He comes to save us.", - "id": "Communio" - }, - { - "body": "We entreat You, merciful Lord, that these divine helps may cleanse us from our sins and prepare us for the coming festal", - "id": "Postcommunio" - } - ], - "2020-12-16": [ - { - "body": "*Isa 45:8*\nDrop down dew, you heavens, from above, and let the clouds rain the just: let the earth be opened and bud for", - "id": "Introitus" - }, - { - "body": "Grant us, we beseech You, almighty God, that the coming feast of our redemption may bring us both help for our present l", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa. 2:2-5*\nIn those days the prophet Isaiah said: In days to come, the mountain of the ", - "id": "LectioL1" - }, - { - "body": "*Ps 23:7; 23:3-4*\nLift up, O gates, your lintels; reach up, you ancient portals, that the King of glory may come in!\n℣. ", - "id": "GradualeL1" - }, - { - "body": "Hasten, we beseech You, O Lord, and delay not; bestow upon us the help of power from on high, that they who trust in You", - "id": "OratioL1" - }, - { - "body": "*Commemoration St. Eusebius*\nO God, Who gladden us with the yearly festival of blessed N., Your Martyr and Bishop, merci", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 7:10-15*\nIn those days, the Lord spoke to Achaz: Ask for a sign from the Lord, your ", - "id": "Lectio" - }, - { - "body": "*Ps 144:18, 21*\nThe Lord is near to all who call upon Him, to all who call upon Him in truth.\n℣. May my mouth speak the ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:26-38*\nAt that time, the angel Gabriel was sent from God to ", - "id": "Evangelium" - }, - { - "body": "*Isa 35:4*\nBe strong, fear no longer! For, behold, our God will bring judgment. He Himself will come to save us.", - "id": "Offertorium" - }, - { - "body": "May our fasting, we beseech You, O Lord, be acceptable to You, and by its purifying power make us worthy of Your grace a", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Eusebius*\nSanctify the offerings dedicated to You, O Lord, and through the intercession of blessed N.", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Isa 7:14*\nBehold, the virgin shall be with child and bear a Son, and shall name Him Emmanuel.", - "id": "Communio" - }, - { - "body": "Refreshed by the sacramental gift of Your salvation, we humbly beseech You, O Lord, that enjoying its savor we may be ma", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Eusebius*\nMay this Communion, O Lord, cleanse us of sin, and through the intercession of blessed N., ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-17": [ - { - "body": "*Phil. 4:4-6*\nRejoice in the Lord always: again I say, rejoice. Let your moderation be known to all men: for the Lord is", - "id": "Introitus" - }, - { - "body": "Lend Your ear to our prayers, O Lord, we beseech You; and brighten the darkness of our minds by the grace of Your coming", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Philippians\n*Phil 4:4-7*\nBrethren: Rejoice in the Lord always; aga", - "id": "Lectio" - }, - { - "body": "*Ps 79:2-3, 2*\nFrom Your throne, O Lord, upon the Cherubim, rouse Your power, and come.\n℣. O Shepherd of Israel, hearken", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 1:19-28*\nAt that time, the Jews sent to John from Jerusalem pr", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nYou have favored, O Lord, Your land; You have restored the well-being of Jacob. You have forgiven the guilt of", - "id": "Offertorium" - }, - { - "body": "We beseech You, O Lord, that the gift we dedicate to You, may be sacrificed continually, so that the sacramental rite Yo", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Isa 35:4*\nSay to those who are frightened: Be strong, fear not! Here is our God, He comes to save us.", - "id": "Communio" - }, - { - "body": "We entreat You, merciful Lord, that these divine helps may cleanse us from our sins and prepare us for the coming festal", - "id": "Postcommunio" - } - ], - "2020-12-18": [ - { - "body": "*Ps 118:151-152*\nYou, O Lord, are near, and all Your ways are truth. Of old I know from Your decrees that You are foreve", - "id": "Introitus" - }, - { - "body": "Put forth Your power, O Lord, we beseech You, and come; that those who trust in Your goodness may soon be delivered from", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 11:1-5*\nThus says the Lord God: A shoot shall sprout from the stump of Jesse, and fr", - "id": "Lectio" - }, - { - "body": "*Ps 84:8, 2*\nShow us, O Lord, Your kindness, and grant us Your salvation.\n℣. You have favored, O Lord, Your land; You ha", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 1:39-47*\nAt that time, Mary arose and went with haste into the", - "id": "Evangelium" - }, - { - "body": "*Ps 84: 7-8.*\nWill You not, O God, give us life; and shall not Your people rejoice in You? Show us, O Lord, Your kindnes", - "id": "Offertorium" - }, - { - "body": "Accept our offering and prayers, we beseech You, O Lord; cleanse us by this heavenly rite, and in Your mercy hear us.\nTh", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Zach 14:5-6*\nBehold, the Lord shall come, and all His holy ones with Him: and there shall be in that day a great light.", - "id": "Communio" - }, - { - "body": "May the devout reception of Your sacrament, O Lord, give us new strength, purge us of our old selves and let us come to ", - "id": "Postcommunio" - } - ], - "2020-12-19": [ - { - "body": "*Ps 79:4, 2*\nCome, O Lord, from Your throne upon the Cherubim; if Your face shine upon us, then we shall be safe.\n*Ps 79", - "id": "Introitus" - }, - { - "body": "O God, You Who see how we are troubled by our evil tendencies, mercifully grant that we may find consolation in Your com", - "id": "Oratio" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 19:20-22*\nIn those days, they shall cry out to the Lord against their oppressors, an", - "id": "LectioL1" - }, - { - "body": "*Ps 18:7, 2*\nAt one end of the heavens He comes forth, and His course is to their other end.\n℣. The heavens declare the ", - "id": "GradualeL1" - }, - { - "body": "Grant, we beseech You, almighty God, that we who are heavy-laden under the yoke of sin may be delivered from the bondage", - "id": "OratioL1" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 35:1-7*\nThus says the Lord: The desert and the parched land will exult; the steppe w", - "id": "LectioL2" - }, - { - "body": "*Ps 18:6-7*\nHe has pitched His tent in the sun, and He comes forth like the groom from his bridal chamber.\n℣. At one end", - "id": "GradualeL2" - }, - { - "body": "Saddened by the guilt of our deeds, we, Your unworthy servants, beseech You, O Lord, to gladden us by the coming of Your", - "id": "OratioL2" - }, - { - "body": "Lesson from the book of Isaias\n*Isa 40:9-11*\nThus says the Lord: Go up onto a high mountain, Sion, herald of glad tiding", - "id": "LectioL3" - }, - { - "body": "*Ps 79:20; 79:3*\nO Lord God of Hosts, restore us; if Your face shine upon us, then we shall be safe.\n℣. Rouse Your power", - "id": "GradualeL3" - }, - { - "body": "Grant, we beseech You, almighty God, that the coming festival of Your Son may bring us healing today and rewards eternal", - "id": "OratioL3" - }, - { - "body": "Lesson from the book of Isaias\n*Isa. 45:1-8*\nThus says the Lord to His anointed, Cyrus, whose right hand I grasp, subdui", - "id": "LectioL4" - }, - { - "body": "*Ps 79:3, 2, 3*\nRouse Your power, O Lord, and come to save us.\n℣. O Shepherd of Israel, hearken, O Guide of the flock of", - "id": "GradualeL4" - }, - { - "body": "Heed in Your mercy, we beseech You, O Lord, the prayers of Your people, that we, who are justly chastised for our sins, ", - "id": "OratioL4" - }, - { - "body": "Lesson from the book of Daniel\n*Dan. 3:47-51*\nIn those days, the Angel of the Lord went down into the furnace with Azari", - "id": "LectioL5" - }, - { - "body": "O God, You Who tempered the flames of fire for the three young men, mercifully grant that the flames of sin may not burn", - "id": "OratioL5" - }, - { - "body": "Lesson from the second letter of St. Paul the Apostle to the Thessalonians\n*2 Thess. 2:1-8*\nWe beseech you, brethren, by", - "id": "Lectio" - }, - { - "body": "*Ps 79:2-3*\nO Shepherd of Israel, hearken, O Guide of the flock of Joseph!\n℣. From Your throne upon the Cherubim, shine ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 3:1-6*\nNow in the fifteenth year of the reign of Tiberius Caes", - "id": "Evangelium" - }, - { - "body": "*Zach 9:9*\nRejoice heartily, O daughter of Sion, shout for joy, O daughter of Jerusalem! See, your King shall come to yo", - "id": "Offertorium" - }, - { - "body": "Look with favor, we beseech You, O Lord, upon the offerings here before You, that they may be beneficial for our devotio", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 18:6-7*\nHe has rejoiced as a giant to run the way: at one end of the heavens He comes forth, and His course is to th", - "id": "Communio" - }, - { - "body": "We beseech You, O Lord our God, that the sacrament You have given as the bulwark of our atonement may be made a saving r", - "id": "Postcommunio" - } - ], - "2020-12-20": [ - { - "body": "*Isa 45:8*\nLet the Just One descend, O heavens, like dew from above, like gentle rain let the skies drop Him down. Let t", - "id": "Introitus" - }, - { - "body": "Put forth Your power, O Lord, we beseech You, and delay not: and with Your great might come to our aid, so that what is ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:1-5*\nBrethren: Let a man so account us", - "id": "Lectio" - }, - { - "body": "*Ps 144:18, 21*\nThe Lord is near to all who call upon Him, to all who call upon Him in truth.\n℣. May my mouth speak the ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 3:1-6*\nNow in the fifteenth year of the reign of Tiberius Caes", - "id": "Evangelium" - }, - { - "body": "*Luke 1:28*\nHail, Mary, full of grace, the Lord is with you, blessed are you among women, and blessed is the fruit of yo", - "id": "Offertorium" - }, - { - "body": "Look with favor, O Lord, we beseech You, upon the offerings here present, that they may be profitable for our devotion a", - "id": "Secreta" - }, - { - "body": "*Holy Trinity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, g", - "id": "Prefatio" - }, - { - "body": "*Isa 7:14*\nBehold, a virgin shall be with child and bear a son, and shall name Him Emmanuel.", - "id": "Communio" - }, - { - "body": "Having received Your gifts, we beseech You, O Lord, that each partaking of this sacrament may increase within us its sav", - "id": "Postcommunio" - } - ], - "2020-12-21": [ - { - "body": "*Ps 138:17*\nTo me, Your friends, O God, are made exceedingly honorable; their principality is exceedingly strengthened.\n", - "id": "Introitus" - }, - { - "body": "O Lord, grant us, we beseech You, to glory in the feast-day of blessed Thomas, Your Apostle, that we may be helped conti", - "id": "Oratio" - }, - { - "body": "*Commemoration IV Sunday of Advent*\nPut forth Your power, O Lord, we beseech You, and delay not: and with Your great mig", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Ephesians\n*Eph 2:19-22*\nBrethren: You are now no longer strangers ", - "id": "Lectio" - }, - { - "body": "*Ps 138:17-18*\nYour friends, O God, are made exceedingly honorable: their principality is exceedingly strengthened.\n℣. W", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to John\n*John 20:24-29*\nAt that time, Thomas, one of the Twelve, called the ", - "id": "Evangelium" - }, - { - "body": "*Ps 18:5*\nThrough all the earth their voice resounds, and to the ends of the world, their message.", - "id": "Offertorium" - }, - { - "body": "O Lord, we who dutifully worship You humbly entreat You that, by the prayers of Your blessed Apostle Thomas, in honor of", - "id": "Secreta" - }, - { - "body": "*Commemoration IV Sunday of Advent*\nLook with favor, O Lord, we beseech You, upon the offerings here present, that they ", - "id": "Commemoratio Secreta" - }, - { - "body": "*of Apostles*\nIt is truly meet and just, right and for our salvation, to entreat Thee humbly, O Lord, that Thou wouldst ", - "id": "Prefatio" - }, - { - "body": "*John 20:27*\nPut in your hand and know the place of the nails, and be not unbelieving, but believing.", - "id": "Communio" - }, - { - "body": "Merciful God, abide with us, and through the intercession of Your blessed Apostle Thomas, mercifully safeguard the gifts", - "id": "Postcommunio" - }, - { - "body": "*Commemoration IV Sunday of Advent*\nHaving received Your gifts, we beseech You, O Lord, that each partaking of this sacr", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-22": [ - { - "body": "*Isa 45:8*\nLet the Just One descend, O heavens, like dew from above, like gentle rain let the skies drop Him down. Let t", - "id": "Introitus" - }, - { - "body": "Put forth Your power, O Lord, we beseech You, and delay not: and with Your great might come to our aid, so that what is ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:1-5*\nBrethren: Let a man so account us", - "id": "Lectio" - }, - { - "body": "*Ps 144:18, 21*\nThe Lord is near to all who call upon Him, to all who call upon Him in truth.\n℣. May my mouth speak the ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 3:1-6*\nNow in the fifteenth year of the reign of Tiberius Caes", - "id": "Evangelium" - }, - { - "body": "*Luke 1:28*\nHail, Mary, full of grace, the Lord is with you, blessed are you among women, and blessed is the fruit of yo", - "id": "Offertorium" - }, - { - "body": "Look with favor, O Lord, we beseech You, upon the offerings here present, that they may be profitable for our devotion a", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Isa 7:14*\nBehold, a virgin shall be with child and bear a son, and shall name Him Emmanuel.", - "id": "Communio" - }, - { - "body": "Having received Your gifts, we beseech You, O Lord, that each partaking of this sacrament may increase within us its sav", - "id": "Postcommunio" - } - ], - "2020-12-23": [ - { - "body": "*Isa 45:8*\nLet the Just One descend, O heavens, like dew from above, like gentle rain let the skies drop Him down. Let t", - "id": "Introitus" - }, - { - "body": "Put forth Your power, O Lord, we beseech You, and delay not: and with Your great might come to our aid, so that what is ", - "id": "Oratio" - }, - { - "body": "Lesson from the first letter of St. Paul the Apostle to the Corinthians\n*1 Cor. 4:1-5*\nBrethren: Let a man so account us", - "id": "Lectio" - }, - { - "body": "*Ps 144:18, 21*\nThe Lord is near to all who call upon Him, to all who call upon Him in truth.\n℣. May my mouth speak the ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 3:1-6*\nNow in the fifteenth year of the reign of Tiberius Caes", - "id": "Evangelium" - }, - { - "body": "*Luke 1:28*\nHail, Mary, full of grace, the Lord is with you, blessed are you among women, and blessed is the fruit of yo", - "id": "Offertorium" - }, - { - "body": "Look with favor, O Lord, we beseech You, upon the offerings here present, that they may be profitable for our devotion a", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Isa 7:14*\nBehold, a virgin shall be with child and bear a son, and shall name Him Emmanuel.", - "id": "Communio" - }, - { - "body": "Having received Your gifts, we beseech You, O Lord, that each partaking of this sacrament may increase within us its sav", - "id": "Postcommunio" - } - ], - "2020-12-24": [ - { - "body": "*Ex 16:6-7*\nThis day you shall know that the Lord will come, and save us: and in the morning you shall see His glory.\n*P", - "id": "Introitus" - }, - { - "body": "O God, You Who gladden us year after year with the expectation of our redemption, grant that we, who now welcome with jo", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Romans\n*Rom 1:1-6*\nPaul, the servant of Jesus Christ, called to be", - "id": "Lectio" - }, - { - "body": "*Exod 16:6-7*\nThis day you shall know that the Lord will come and save us: and in the morning you shall see His glory.\n*", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 1:18-21*\nWhen Mary, the Mother of Jesus, has been betrothed", - "id": "Evangelium" - }, - { - "body": "*Ps 23:7*\nLift up, O gates, your lintels; reach up, you ancient portals, that the King of glory may come in.", - "id": "Offertorium" - }, - { - "body": "Grant us, we beseech You, almighty God, that, as we anticipate the celebration of Your Son’s birthday, so we may joyfull", - "id": "Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Isa 40:5*\nThe glory of the Lord shall be revealed, and all mankind shall see the salvation of our God.", - "id": "Communio" - }, - { - "body": "Grant us, we beseech You, O Lord, to begin a new life with this commemoration of the birth of Your only-begotten Son, Wh", - "id": "Postcommunio" - } - ], - "2020-12-25": [ - { - "body": "*Ps 2:7*\nThe Lord said to Me, You are My Son; this day I have begotten You.\n*Ps 2:1*\nWhy do the nations rage and the peo", - "id": "Introitus" - }, - { - "body": "O God, Who have brightened this most holy night with the splendor of the true light, grant, we beseech You, that we may ", - "id": "Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to Titus\n*Titus 2:11-15*\nBeloved: The grace of God our Saviour has appear", - "id": "Lectio" - }, - { - "body": "*Ps 109:3; 109:1*\nYours is princely power in the day of Your birth, in holy splendor; before the daystar, I have begotte", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:1-14*\nAt that time, there went forth a decree from Caesar Au", - "id": "Evangelium" - }, - { - "body": "*Ps 95:11, 13*\nLet the heavens be glad and the earth rejoice before the Lord, for He comes.", - "id": "Offertorium" - }, - { - "body": "May the offering of this day’s festivity, we beseech You, O Lord, find acceptance with You; that, by the bounty of Your ", - "id": "Secreta" - }, - { - "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Ps 109:3*\nIn holy splendor, before the daystar I have begotten You.", - "id": "Communio" - }, - { - "body": "Grant, we beseech You, O Lord our God, that we who joyfully celebrate the birth of our Lord Jesus Christ, in this sacram", - "id": "Postcommunio" - } - ], - "2020-12-26": [ - { - "body": "*Ps 118:23, 86, 23*\nPrinces met and talked against me, and the wicked persecuted me wrongfully; help me, O Lord my God, ", - "id": "Introitus" - }, - { - "body": "Grant us, we beseech You, O Lord, to imitate what we celebrate, so that we may learn to love even our enemies; because w", - "id": "Oratio" - }, - { - "body": "*For Octave of the Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotte", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the Acts of Apostles\n*Acts 6:8-10; 7:54-59*\nIn those days, Stephen, full of grace and power, was working gre", - "id": "Lectio" - }, - { - "body": "*Ps 118:23, 86*\nPrinces met and talked against me, and the wicked persecuted me wrongfully.\n*Ps 6:5*\n℣. Help me, O Lord ", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 23:34-39*\nAt that time, Jesus said to the Scribes and Phari", - "id": "Evangelium" - }, - { - "body": "*Acts 6:5; 7:59*\nThe Apostles chose Stephen to be a levite, a man full of faith and of the Holy Spirit: whom the Jews st", - "id": "Offertorium" - }, - { - "body": "Receive our offerings, O Lord, in memory of Your saints, that, as their passion has given them eternal glory, so may thi", - "id": "Secreta" - }, - { - "body": "*For Octave of the Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotte", - "id": "Commemoratio Secreta" - }, - { - "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Acts 7:56, 59-60*\nI see the heavens opened, and Jesus standing on the right hand of the power of God: Lord Jesus receiv", - "id": "Communio" - }, - { - "body": "May the sacrament we have received aid us, O Lord; and by the intercession of blessed Stephen, Your Martyr, may it susta", - "id": "Postcommunio" - }, - { - "body": "*For Octave of the Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is t", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-27": [ - { - "body": "*Wis 18:14-15*\nWhen a profound stillness compassed everything and the night in its swift course was half spent, Your all", - "id": "Introitus" - }, - { - "body": "O Almighty and eternal God, direct our actions in conformity with Your will, that in the name of Your beloved Son we may", - "id": "Oratio" - }, - { - "body": "*Commemoration St. John the Evangelist*\nO Lord, graciously shed light upon Your Church, so that, enlightened by the teac", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 4:1-7*\nBrethren: As long as the heir is a child, he", - "id": "Lectio" - }, - { - "body": "*Ps 44:3, 2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows wi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:33-40*\nAt that time, Joseph and Mary, the mother of Jesus we", - "id": "Evangelium" - }, - { - "body": "*Ps 92:1-2*\nGod has made the world firm, not to be moved. Your throne, O God, stands firm from of old; from everlasting ", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", - "id": "Secreta" - }, - { - "body": "*Commemoration St. John the Evangelist*\nAccept, O Lord, the gifts we bring You on the feast of him upon whose patronage ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 2:20*\nTake the Child and His mother, and go into the land of Israel, for those who sought the Child’s life are dea", - "id": "Communio" - }, - { - "body": "By the working of this sacrament, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. John the Evangelist*\nRefreshed with heavenly food and drink, we humbly beseech You our God, that we m", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-28": [ - { - "body": "*Ps 8:3*\nOut of the mouths of babes and of sucklings, O God, You have fashioned praise because of Your foes.\n*Ps 8:2*\nO ", - "id": "Introitus" - }, - { - "body": "O God, Whose praise the Innocents, Your martyrs, this day proclaimed, not by speaking, but by dying, put to death in us ", - "id": "Oratio" - }, - { - "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotten So", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the book of Revelation\n*Apoc 14:1-5*\nIn those days, I saw the Lamb standing upon Mount Sion, and with Him a ", - "id": "Lectio" - }, - { - "body": "*Ps 123:7-8*\nWe were rescued like a bird from the fowlers’ snare.\n℣. Broken was the snare, and we were freed. Our help i", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Matthew\n*Matt 2:13-18*\nAt that time, an angel of the Lord appeared in a d", - "id": "Evangelium" - }, - { - "body": "*Ps 123:7*\nWe were rescued like a bird from the fowlers’ snare. Broken was the snare and we were freed.", - "id": "Offertorium" - }, - { - "body": "Let not the gracious prayer of Your saints fail us, O Lord, but may it make our offerings acceptable to You and obtain f", - "id": "Secreta" - }, - { - "body": "*For Octave of Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotten So", - "id": "Commemoratio Secreta" - }, - { - "body": "*Nativity*\nIt is truly meet and just, right and for our salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 2:18*\nA voice was heard in Rama, weeping and loud lamentation; Rachel weeping for her children, and she would not ", - "id": "Communio" - }, - { - "body": "We have partaken, O Lord, of the dedicated gifts: may they, we beseech You, help us through the intercession of Your sai", - "id": "Postcommunio" - }, - { - "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is the a", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-29": [ - { - "body": "*Wis 18:14-15*\nWhen a profound stillness compassed everything and the night in its swift course was half spent, Your all", - "id": "Introitus" - }, - { - "body": "O Almighty and eternal God, direct our actions in conformity with Your will, that in the name of Your beloved Son we may", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Thomas Becket*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-be", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 4:1-7*\nBrethren: As long as the heir is a child, he", - "id": "Lectio" - }, - { - "body": "*Ps 44:3, 2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows wi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:33-40*\nAt that time, Joseph and Mary, the mother of Jesus we", - "id": "Evangelium" - }, - { - "body": "*Ps 92:1-2*\nGod has made the world firm, not to be moved. Your throne, O God, stands firm from of old; from everlasting ", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Thomas Becket*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-be", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 2:20*\nTake the Child and His mother, and go into the land of Israel, for those who sought the Child’s life are dea", - "id": "Communio" - }, - { - "body": "By the working of this sacrament, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Thomas Becket*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-30": [ - { - "body": "*Wis 18:14-15*\nWhen a profound stillness compassed everything and the night in its swift course was half spent, Your all", - "id": "Introitus" - }, - { - "body": "O Almighty and eternal God, direct our actions in conformity with Your will, that in the name of Your beloved Son we may", - "id": "Oratio" - }, - { - "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begotten So", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 4:1-7*\nBrethren: As long as the heir is a child, he", - "id": "Lectio" - }, - { - "body": "*Ps 44:3, 2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows wi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:33-40*\nAt that time, Joseph and Mary, the mother of Jesus we", - "id": "Evangelium" - }, - { - "body": "*Ps 92:1-2*\nGod has made the world firm, not to be moved. Your throne, O God, stands firm from of old; from everlasting ", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", - "id": "Secreta" - }, - { - "body": "*For Octave of Nativity*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begotten So", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 2:20*\nTake the Child and His mother, and go into the land of Israel, for those who sought the Child’s life are dea", - "id": "Communio" - }, - { - "body": "By the working of this sacrament, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*For Octave of Nativity*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is the a", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-31": [ - { - "body": "*Wis 18:14-15*\nWhen a profound stillness compassed everything and the night in its swift course was half spent, Your all", - "id": "Introitus" - }, - { - "body": "O Almighty and eternal God, direct our actions in conformity with Your will, that in the name of Your beloved Son we may", - "id": "Oratio" - }, - { - "body": "*Commemoration St. Silvester*\nGrant, we beseech You, almighty God, that the new birth, in the flesh, of Your only-begott", - "id": "Commemoratio Oratio" - }, - { - "body": "Lesson from the letter of St. Paul the Apostle to the Galatians\n*Gal 4:1-7*\nBrethren: As long as the heir is a child, he", - "id": "Lectio" - }, - { - "body": "*Ps 44:3, 2*\nFairer in beauty are You than the sons of men; grace is poured out upon Your lips.\n℣. My heart overflows wi", - "id": "Graduale" - }, - { - "body": "Continuation ☩ of the Holy Gospel according to Luke\n*Luke 2:33-40*\nAt that time, Joseph and Mary, the mother of Jesus we", - "id": "Evangelium" - }, - { - "body": "*Ps 92:1-2*\nGod has made the world firm, not to be moved. Your throne, O God, stands firm from of old; from everlasting ", - "id": "Offertorium" - }, - { - "body": "Grant, we beseech You, almighty God, that the gift offered in the sight of Your majesty may obtain for us the grace of r", - "id": "Secreta" - }, - { - "body": "*Commemoration St. Silvester*\nMake holy the sacrificial gifts we offer, O Lord, and by the new birth of Your only-begott", - "id": "Commemoratio Secreta" - }, - { - "body": "*Common*\nIt is truly meet and just, and profitable unto salvation, that we should at all times, and in all places, give ", - "id": "Prefatio" - }, - { - "body": "*Matt 2:20*\nTake the Child and His mother, and go into the land of Israel, for those who sought the Child’s life are dea", - "id": "Communio" - }, - { - "body": "By the working of this sacrament, O Lord, may our sins be erased and our just desires fulfilled.\nThrough our Lord…", - "id": "Postcommunio" - }, - { - "body": "*Commemoration St. Silvester*\nGrant, we beseech You, almighty God, that the Saviour of the world, born this day, Who is ", - "id": "Commemoratio Postcommunio" - } - ] -} \ No newline at end of file diff --git a/tests/fixtures/propers_la.json b/tests/fixtures/propers_la.json new file mode 100644 index 00000000..03bf77a5 --- /dev/null +++ b/tests/fixtures/propers_la.json @@ -0,0 +1,34524 @@ +{ + "2024-01-01": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fecúnda, humáno géneri præmia præstitísti: tríbue, quǽsumus; ut ipsam ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt coeli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cæléstis remédii fáciat ", + "id": "Postcommunio" + } + ], + "2024-01-02": [ + { + "body": "*Phil 2:10-11*\nIn nómine Jesu omne genu flectátur, cœléstium, terréstrium et infernórum: et omnis lingua confiteátur, qu", + "id": "Introitus" + }, + { + "body": "Deus, qui unigénitum Fílium tuum constituísti humáni géneris Salvatórem, et Jesum vocári jussísti: concéde propítius; ut", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolorum\n*Act 4:8-12*\nIn diébus illis: Petrus, replétus Spíritu Sancto, dixit: Príncipes pópuli et seni", + "id": "Lectio" + }, + { + "body": "*Ps 105:47*\nSalvos fac nos, Dómine, Deus noster, et cóngrega nos de natiónibus: ut confiteámur nómini sancto tuo, et glo", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", + "id": "Evangelium" + }, + { + "body": "*Ps 85:12; 85:5*\nConfitébor tibi, Dómine, Deus meus, in toto corde meo, et glorificábo nomen tuum in ætérnum: quóniam tu", + "id": "Offertorium" + }, + { + "body": "Benedíctio tua, clementíssime Deus, qua omnis viget creatúra, sanctíficet, quǽsumus, hoc sacrifícium nostrum, quod ad gl", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 85:9-10*\nOmnes gentes, quascúmque fecísti, vénient et adorábunt coram te, Dómine, et glorificábunt nomen tuum: quóni", + "id": "Communio" + }, + { + "body": "Omnípotens ætérne Deus, qui creásti et redemísti nos, réspice propítius vota nostra: et sacrifícium salutáris hóstiæ, qu", + "id": "Postcommunio" + } + ], + "2024-01-03": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fecúnda, humáno géneri præmia præstitísti: tríbue, quǽsumus; ut ipsam ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt coeli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cæléstis remédii fáciat ", + "id": "Postcommunio" + } + ], + "2024-01-04": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fecúnda, humáno géneri præmia præstitísti: tríbue, quǽsumus; ut ipsam ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt coeli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cæléstis remédii fáciat ", + "id": "Postcommunio" + } + ], + "2024-01-05": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fecúnda, humáno géneri præmia præstitísti: tríbue, quǽsumus; ut ipsam ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Telesphori Papæ et Mart.*\nGregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt coeli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Telesphori Papæ et Mart.*\nOblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cæléstis remédii fáciat ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Telesphori Papæ et Mart.*\nRefectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésia", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-06": [ + { + "body": "*Malach 3:1; 1 Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium.\n*Ps 71:1*\nDeu", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qui jam te ex fide cognóvi", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta es", + "id": "Lectio" + }, + { + "body": "*Isa 60:6; 60:1*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 2:1-12*\nCum natus esset Jesus in Béthlehem Juda in diébus Heródis r", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", + "id": "Offertorium" + }, + { + "body": "Ecclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha profertur; sed quod eisdem ", + "id": "Secreta" + }, + { + "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intellegéntia consequámur.\nPer", + "id": "Postcommunio" + } + ], + "2024-01-07": [ + { + "body": "*Prov 23:24; 23:25*\nExsúltat gáudio pater Justi, gáudeat Pater tuus et Mater tua, et exsúltet quæ génuit te.\n*Ps 83:2-3*", + "id": "Introitus" + }, + { + "body": "Dómine Jesu Christe, qui, Maríæ et Joseph súbditus, domésticam vitam ineffabílibus virtútibus consecrásti: fac nos, utri", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses.\n*Col 3:12-17*\nFratres: Indúite vos sicut elécti Dei, sancti et dilé", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram: ut inhábitem in domo Dómini ómnibus diébus vitæ meæ.\n*Ps 83:5.*\nBeáti, qui", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:42-52*\nCum factus esset Jesus annórum duódecim, ascendéntibus illis ", + "id": "Evangelium" + }, + { + "body": "*Luc 2:22*\nTulérunt Jesum paréntes ejus in Jerúsalem, ut sísterent eum Dómino.", + "id": "Offertorium" + }, + { + "body": "Placatiónis hostiam offérimus tibi, Dómine, supplíciter ut, per intercessiónem Deíparæ Vírginis cum beáto Joseph, famíli", + "id": "Secreta" + }, + { + "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", + "id": "Prefatio" + }, + { + "body": "*Luc 2:51*\nDescéndit Jesus cum eis, et venit Názareth, et erat súbditus illis.", + "id": "Communio" + }, + { + "body": "Quos cœléstibus réficis sacraméntis, fac, Dómine Jesu, sanctæ Famíliæ tuæ exémpla júgiter imitári: ut in hora mortis nos", + "id": "Postcommunio" + } + ], + "2024-01-08": [ + { + "body": "In excélso throno vidi sedére virum, quem adórat multitúdo Angelórum, psalléntes in unum: ecce, cujus impérii nomen est ", + "id": "Introitus" + }, + { + "body": "Vota, quǽsumus, Dómine, supplicántis pópuli cœlésti pietáte proséquere: ut et, quæ agénda sunt, vídeant, et ad implénda,", + "id": "Oratio" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nDeus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:1-5*\nFratres: Obsecro vos per misericórdiam Dei, ut exhibeátis ", + "id": "Lectio" + }, + { + "body": "*Ps 71:18 ; 71:3*\nBenedíctus Dóminus, Deus Israël, qui facit mirabília magna solus a sǽculo.\n℣. Suscípiant montes pacem ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:42-52*\nCum factus esset Jesus annórum duódecim, ascendéntibus illis ", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1; 99:2*\nJubiláte Deo, omnis terra, servíte Dómino in lætítia: intráte in conspéctu ejus in exsultatióne: quia Dó", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nEcclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha pro", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 2:48; 2:49*\nFili, quid fecísti nobis sic? ego et pater tuus doléntes quærebámus te. Et quid est, quod me quærebátis", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", + "id": "Postcommunio" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nPræsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intell", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-09": [ + { + "body": "In excélso throno vidi sedére virum, quem adórat multitúdo Angelórum, psalléntes in unum: ecce, cujus impérii nomen est ", + "id": "Introitus" + }, + { + "body": "Vota, quǽsumus, Dómine, supplicántis pópuli cœlésti pietáte proséquere: ut et, quæ agénda sunt, vídeant, et ad implénda,", + "id": "Oratio" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nDeus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:1-5*\nFratres: Obsecro vos per misericórdiam Dei, ut exhibeátis ", + "id": "Lectio" + }, + { + "body": "*Ps 71:18 ; 71:3*\nBenedíctus Dóminus, Deus Israël, qui facit mirabília magna solus a sǽculo.\n℣. Suscípiant montes pacem ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:42-52*\nCum factus esset Jesus annórum duódecim, ascendéntibus illis ", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1; 99:2*\nJubiláte Deo, omnis terra, servíte Dómino in lætítia: intráte in conspéctu ejus in exsultatióne: quia Dó", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nEcclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha pro", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 2:48; 2:49*\nFili, quid fecísti nobis sic? ego et pater tuus doléntes quærebámus te. Et quid est, quod me quærebátis", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", + "id": "Postcommunio" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nPræsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intell", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-10": [ + { + "body": "In excélso throno vidi sedére virum, quem adórat multitúdo Angelórum, psalléntes in unum: ecce, cujus impérii nomen est ", + "id": "Introitus" + }, + { + "body": "Vota, quǽsumus, Dómine, supplicántis pópuli cœlésti pietáte proséquere: ut et, quæ agénda sunt, vídeant, et ad implénda,", + "id": "Oratio" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nDeus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:1-5*\nFratres: Obsecro vos per misericórdiam Dei, ut exhibeátis ", + "id": "Lectio" + }, + { + "body": "*Ps 71:18 ; 71:3*\nBenedíctus Dóminus, Deus Israël, qui facit mirabília magna solus a sǽculo.\n℣. Suscípiant montes pacem ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:42-52*\nCum factus esset Jesus annórum duódecim, ascendéntibus illis ", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1; 99:2*\nJubiláte Deo, omnis terra, servíte Dómino in lætítia: intráte in conspéctu ejus in exsultatióne: quia Dó", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nEcclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha pro", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 2:48; 2:49*\nFili, quid fecísti nobis sic? ego et pater tuus doléntes quærebámus te. Et quid est, quod me quærebátis", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", + "id": "Postcommunio" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nPræsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intell", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-11": [ + { + "body": "In excélso throno vidi sedére virum, quem adórat multitúdo Angelórum, psalléntes in unum: ecce, cujus impérii nomen est ", + "id": "Introitus" + }, + { + "body": "Vota, quǽsumus, Dómine, supplicántis pópuli cœlésti pietáte proséquere: ut et, quæ agénda sunt, vídeant, et ad implénda,", + "id": "Oratio" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nDeus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:1-5*\nFratres: Obsecro vos per misericórdiam Dei, ut exhibeátis ", + "id": "Lectio" + }, + { + "body": "*Ps 71:18 ; 71:3*\nBenedíctus Dóminus, Deus Israël, qui facit mirabília magna solus a sǽculo.\n℣. Suscípiant montes pacem ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:42-52*\nCum factus esset Jesus annórum duódecim, ascendéntibus illis ", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1; 99:2*\nJubiláte Deo, omnis terra, servíte Dómino in lætítia: intráte in conspéctu ejus in exsultatióne: quia Dó", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nEcclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha pro", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 2:48; 2:49*\nFili, quid fecísti nobis sic? ego et pater tuus doléntes quærebámus te. Et quid est, quod me quærebátis", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", + "id": "Postcommunio" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nPræsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intell", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-12": [ + { + "body": "In excélso throno vidi sedére virum, quem adórat multitúdo Angelórum, psalléntes in unum: ecce, cujus impérii nomen est ", + "id": "Introitus" + }, + { + "body": "Vota, quǽsumus, Dómine, supplicántis pópuli cœlésti pietáte proséquere: ut et, quæ agénda sunt, vídeant, et ad implénda,", + "id": "Oratio" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nDeus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:1-5*\nFratres: Obsecro vos per misericórdiam Dei, ut exhibeátis ", + "id": "Lectio" + }, + { + "body": "*Ps 71:18 ; 71:3*\nBenedíctus Dóminus, Deus Israël, qui facit mirabília magna solus a sǽculo.\n℣. Suscípiant montes pacem ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:42-52*\nCum factus esset Jesus annórum duódecim, ascendéntibus illis ", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1; 99:2*\nJubiláte Deo, omnis terra, servíte Dómino in lætítia: intráte in conspéctu ejus in exsultatióne: quia Dó", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nEcclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha pro", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 2:48; 2:49*\nFili, quid fecísti nobis sic? ego et pater tuus doléntes quærebámus te. Et quid est, quod me quærebátis", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", + "id": "Postcommunio" + }, + { + "body": "*Pro Octavam Epiphaniæ*\nPræsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intell", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-13": [ + { + "body": "*Malach 3:1; 3:1; Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium\n*Ps 71:1*\nD", + "id": "Introitus" + }, + { + "body": "Deus, cujus Unigénitus in substántia nostræ carnis appáruit: præsta, quǽsumus; ut per eum, quem símilem nobis foris agnó", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta e", + "id": "Lectio" + }, + { + "body": "*Isa 60:6; 60:11*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 1:29-34*\nIn illo témpore: Vidit Joánnes Jesum veniéntem ad se, et ", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, pro nati Fílii tui apparitióne deférimus, supplíciter exorántes: ut, sicut ipse nostrórum auctor e", + "id": "Secreta" + }, + { + "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", + "id": "Communio" + }, + { + "body": "Cœlésti lúmine, quǽsumus, Dómine, semper et ubíque nos præveni: ut mystérium, cujus nos partícipes esse voluísti, et pur", + "id": "Postcommunio" + } + ], + "2024-01-14": [ + { + "body": "*Ps 65:4*\nOmnis terra adóret te, Deus, et psallat tibi: psalmum dicat nómini tuo, Altíssime.\n*Ps 65:1-2*\nJubiláte Deo, o", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui cœléstia simul et terréna moderáris: supplicatiónes pópuli tui cleménter exáudi; et pace", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:6-16*\nFratres: Habéntes donatiónes secúndum grátiam, quæ data e", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nMisit Dóminus verbum suum, et sanávit eos: et erípuit eos de intéritu eórum.\n℣. Confiteántur Dómino miser", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 2:1-11*\nIn illo témpore: Núptiæ factæ sunt in Cana Galilǽæ: et era", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nJubiláte Deo, univérsa terra: psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", + "id": "Offertorium" + }, + { + "body": "Oblata, Dómine, múnera sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 2:7; 2:8; 2:9; 2:10-11*\nDicit Dóminus: Implete hýdrias aqua et ferte architriclíno. Cum gustásset architriclínus ", + "id": "Communio" + }, + { + "body": "Augeátur in nobis, quǽsumus, Dómine, tuæ virtútis operatio: ut divínis vegetáti sacraméntis, ad eórum promíssa capiénda,", + "id": "Postcommunio" + } + ], + "2024-01-15": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui nos beáti Pauli Confessóris tui ánnua sollemnitáte lætíficas: concéde propítius; ut, cujus natalítia cólimus, ", + "id": "Oratio" + }, + { + "body": "*Pro S. Mauro Abbate*\nIntercéssio nos, quǽsumus, Dómine, beáti Mauri Abbátis comméndet: ut, quod nostris méritis non val", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 3:7-12*\nFratres: Quæ mihi fuérunt lucra, hæc arbitrátus su", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAnnuntiándum m", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:25-30*\nIn illo témpore: Respóndens Jesus, dixit: Confíteor tibi,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Pro S. Mauro Abbate*\nSacris altáribus, Dómine, hóstias superpósitas sanctus Maurus Abbas, quǽsumus, in salútem nobis pr", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde.", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muni", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Mauro Abbate*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus Maurus Abbas, pro nobis intercedéndo: ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-16": [ + { + "body": "*Joann 21:15; 21:16; 21:17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine", + "id": "Introitus" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut beáti Marcélli Mártyris tui atque Pontíficis méritis adjuvémur", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior e", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi,", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et déstruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubíque succéssus, et ", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18.*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + } + ], + "2024-01-17": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Intercéssio nos, quǽsumus Dómine, beáti Antónii Abbátis comméndet: ut, quod nostris méritis non valémus, ejus patrocínio", + "id": "Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salútem nobis proveníre depóscat.\nPer Domi", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus N. Abbas, pro nobis intercedéndo: ut et conversatiónis ejus ", + "id": "Postcommunio" + } + ], + "2024-01-18": [ + { + "body": "*Ps 65:4*\nOmnis terra adóret te, Deus, et psallat tibi: psalmum dicat nómini tuo, Altíssime.\n*Ps 65:1-2*\nJubiláte Deo, o", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui cœléstia simul et terréna moderáris: supplicatiónes pópuli tui cleménter exáudi; et pace", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Priscæ Virginis*\nDa, quǽsumus, omnípotens Deus: ut, qui beátæ Priscæ Vírginis et Mártyris tuæ natalítia", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:6-16*\nFratres: Habéntes donatiónes secúndum grátiam, quæ data e", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nMisit Dóminus verbum suum, et sanávit eos: et erípuit eos de intéritu eórum.\n℣. Confiteántur Dómino miser", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 2:1-11*\nIn illo témpore: Núptiæ factæ sunt in Cana Galilǽæ: et era", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nJubiláte Deo, univérsa terra: psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", + "id": "Offertorium" + }, + { + "body": "Oblata, Dómine, múnera sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Priscæ Virginis*\nHæc hóstia, quǽsumus, Dómine, quam Sanctórum tuórum natalítia recenséntes offérimus, e", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 2:7; 2:8; 2:9; 2:10-11*\nDicit Dóminus: Implete hýdrias aqua et ferte architriclíno. Cum gustásset architriclínus ", + "id": "Communio" + }, + { + "body": "Augeátur in nobis, quǽsumus, Dómine, tuæ virtútis operatio: ut divínis vegetáti sacraméntis, ad eórum promíssa capiénda,", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Priscæ Virginis*\nQuǽsumus, Dómine, salutáribus repléti mystériis: ut, cujus sollémnia celebrámus, ejus ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-19": [ + { + "body": "*Ps 65:4*\nOmnis terra adóret te, Deus, et psallat tibi: psalmum dicat nómini tuo, Altíssime.\n*Ps 65:1-2*\nJubiláte Deo, o", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui cœléstia simul et terréna moderáris: supplicatiónes pópuli tui cleménter exáudi; et pace", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Marii et Soc. Mart.*\nExáudi, Dómine, pópulum tuum cum Sanctórum tuórum patrocínio supplicántem: ut et t", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:6-16*\nFratres: Habéntes donatiónes secúndum grátiam, quæ data e", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nMisit Dóminus verbum suum, et sanávit eos: et erípuit eos de intéritu eórum.\n℣. Confiteántur Dómino miser", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 2:1-11*\nIn illo témpore: Núptiæ factæ sunt in Cana Galilǽæ: et era", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nJubiláte Deo, univérsa terra: psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", + "id": "Offertorium" + }, + { + "body": "Oblata, Dómine, múnera sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Marii et Soc. Mart.*\nPreces, Dómine, tuórum réspice oblationésque fidélium: ut et tibi gratæ sint pro t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 2:7; 2:8; 2:9; 2:10-11*\nDicit Dóminus: Implete hýdrias aqua et ferte architriclíno. Cum gustásset architriclínus ", + "id": "Communio" + }, + { + "body": "Augeátur in nobis, quǽsumus, Dómine, tuæ virtútis operatio: ut divínis vegetáti sacraméntis, ad eórum promíssa capiénda,", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Marii et Soc. Mart.*\nSanctórum tuórum, Dómine, intercessióne placátus: præsta, quǽsumus; ut, quæ tempor", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-20": [ + { + "body": "*Ps 78:11-12; 78:10*\nIntret in conspéctu tuo, Dómine, gémitus compeditórum: redde vicínis nostris séptuplum in sinu eóru", + "id": "Introitus" + }, + { + "body": "Infirmitátem nostram réspice, omnípotens Deus: et, quia pondus própriæ actiónis gravat, beatórum Mártyrum tuórum Fabiáni", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos\n*Hebr 11:33-39*\nFratres: Sancti per fidem vicérunt regna, operáti sunt j", + "id": "Lectio" + }, + { + "body": "*Exod 15:11*\nGloriósus Deus in Sanctis suis: mirábilis in majestáte, fáciens prodígia.\n*Exod 15:6*\nDéxtera tua, Dómine, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 6:17-23*\nIn illo témpore: descéndens Jesus de monte, stetit in loco ca", + "id": "Evangelium" + }, + { + "body": "*Ps 31:11*\nLætámini in Dómino et exsultáte, justi: et gloriámini, omnes recti corde.", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, beatórum Mártyrum tuórum Fabiáni et Sebastiáni dicátas méritis, benígnus assúme: et ad perpétuum n", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 6:18; 6:19*\nMultitúdo languéntium, et qui vexabántur a spirítibus immúndis, veniébant ad eum: quia virtus de illo e", + "id": "Communio" + }, + { + "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedéntibus sancti", + "id": "Postcommunio" + } + ], + "2024-01-21": [ + { + "body": "*Ps 96:7-8*\nAdoráte Deum, omnes Angeli ejus: audívit, et lætáta est Sion: et exsultavérunt fíliæ Judæ.\n*Ps 96:1*\nDóminus", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, infirmitatem nostram propítius réspice: atque, ad protegéndum nos, déxteram tuæ majestátis e", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:16-21*\nFratres: Nolíte esse prudéntes apud vosmetípsos: nulli m", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:1-13*\nIn illo témpore: Cum descendísset Jesus de monte, secútæ s", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nDéxtera Dómini fecit virtutem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera ", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Luc 4:22*\nMirabántur omnes de his, quæ procedébant de ore Dei.", + "id": "Communio" + }, + { + "body": "Quos tantis, Dómine, largíris uti mystériis: quǽsumus; ut efféctibus nos eórum veráciter aptáre dignéris.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-01-22": [ + { + "body": "*Ps 78:11-12; 78:10*\nIntret in conspéctu tuo, Dómine, gémitus compeditórum: redde vicínis nostris séptuplum in sinu eóru", + "id": "Introitus" + }, + { + "body": "Adésto, Dómine, supplicatiónibus nostris: ut, qui ex iniquitáte nostra reos nos esse cognóscimus, beatórum Mártyrum tuór", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 3:1-8*\nJustorum ánimæ in manu Dei sunt, et non tanget illos torméntum mortis. Visi sunt ocul", + "id": "Lectio" + }, + { + "body": "*Exod 15:11*\nGloriósus Deus in Sanctis suis: mirábilis in majestáte, fáciens prodígia.\n*Exod 15:6*\n℣. Déxtera tua, Dómin", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 21:9-19*\nIn illo témpore: Dixit Jesus discípulis suis: Cum audieritis ", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nMirábilis Deus in Sanctis suis: Deus Israël, ipse dabit virtútem et fortitúdinem plebi suæ: benedíctus Deus, ", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, nostræ devotiónis offérimus: quæ et pro tuórum tibi grata sint honóre Justórum, et nobis salutária,", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentávit eos: tamquam aurum in fornáce probávit eos, et quas", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedéntibus beátis Martýribus tuis Vincéntio et Ana", + "id": "Postcommunio" + } + ], + "2024-01-23": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Raymúndum pœniténtiæ sacraménti insígnem minístrum elegísti, et per maris undas mirabíliter traduxísti:", + "id": "Oratio" + }, + { + "body": "*Pro S. Emerentiana Virg. et Mart.*\nIndulgéntiam nobis, quǽsumus, Dómine, beáta Emerentiána Virgo et Martyr implóret: qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Pro S. Emerentianæ Virg. et Mart.*\nHóstias tibi, Dómine, beátæ Emerentiánæ Vírginis et Mártyris tuæ dicátas méritis, be", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Emerentianæ Virg. et Mart.*\nDivíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut, intercedénte be", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-24": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum\n", + "id": "Introitus" + }, + { + "body": "Infirmitátem nostram réspice, omnípotens Deus: et, quia pondus própriæ actiónis gravat, beáti N. Mártyris tui atque Pont", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*1 Tim 6:11-16*\nCaríssime: Sectáre justítiam, pietátem, fidem, caritá", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23.*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum conf", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:26-33.*\nIn illo témpore: Dixit Jesus turbis: Si quis venit ad me, e", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25.*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, beáti N. Mártyris tui atque Pontíficis dicátas méritis, benígnus assúme: et ad perpétuum nobis trí", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36; 88:37-38.*\nSemel jurávi in sancto meo: Semen ejus in ætérnum manébit: et sedes ejus sicut sol in conspéctu me", + "id": "Communio" + }, + { + "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedénte beáto N. ", + "id": "Postcommunio" + } + ], + "2024-01-25": [ + { + "body": "*2 Tim 1:12*\nScio, cui crédidi, et certus sum, quia potens est depósitum meum serváre in illum diem, justus judex.\n*Ps 1", + "id": "Introitus" + }, + { + "body": "Deus, qui univérsum mundum beáti Pauli Apóstoli prædicatióne docuísti: da nobis, quǽsumus; ut, qui ejus hódie Conversión", + "id": "Oratio" + }, + { + "body": "*Pro S. Petro*\nDeus, qui beáto Petro Apóstolo tuo, collátis clávibus regni cœléstis, ligándi atque solvéndi pontifícium ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Act 9:1-22*\nIn diébus illis: Saulus adhuc spirans minárum et cædis in discípulos Dómini, accé", + "id": "Lectio" + }, + { + "body": "*Gal 2:8; 2:9*\nQui operátus est Petro in apostolátum, operátus est ei mihi inter gentes: et cognovérunt grátiam Dei, quæ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", + "id": "Offertorium" + }, + { + "body": "Apóstoli tui Pauli précibus, Dómine, plebis tuæ dona sanctífica: ut, quæ tibi tuo grata sunt institúto, gratióra fiant p", + "id": "Secreta" + }, + { + "body": "*Pro S. Petro*\nEcclésiæ tuæ, quǽsumus, Dómine, preces et hóstias beáti Petri Apóstoli comméndet orátio: ut, quod pro ill", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28; 19:29*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Sanctificáti, Dómine, salutári mystério: quǽsumus; ut nobis ejus non desit orátio, cujus nos donásti patrocínio gubernár", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Petro*\nLætíficet nos, Dómine, munus oblátum: ut, sicut in Apóstolo tuo Petro te mirábilem prædicámus; sic per il", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-26": [ + { + "body": "*Dan 3:84; 3:87*\nSacerdótes Dei, benedícite Dóminum: sancti et húmiles corde, laudáte Deum.\n*Dan 3:57*\nBenedícite, ómnia", + "id": "Introitus" + }, + { + "body": "Deus, qui nos beáti Polycárpi Mǽrtyris tui atque Pontíficis ánnua sollemnitáte lætíficas: concéde propítius; ut, cujus n", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 Joann 3:10-16*\nCaríssimi: Omnis qui non est justus, non est ex Deo, et qui non", + "id": "Lectio" + }, + { + "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum.\n℣. Et constituísti eum super ópera mánuum tuárum, Dómine. Allelúja, allelúja.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:26-32*\nIn illo témpore: Dixit Jesus discípulis suis: Nihil est o", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum. óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto Polycárpo Mártyre tuo atque Pontífice, per éadem nos plac", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso.", + "id": "Communio" + }, + { + "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedénte beáto Pol", + "id": "Postcommunio" + } + ], + "2024-01-27": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Ecclésiam tuam, quǽsumus, Dómine, grátia cœléstis amplíficet: quam beáti Joánnis Chrysóstomi Confessóris tui atque Pontí", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui j", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est inventus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", + "id": "Offertorium" + }, + { + "body": "Sancti Joánnis Chrysóstomi Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concí", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Joánnes Chrysóstomus Póntifex tuus et Doctor egrégius, quǽsumus, p", + "id": "Postcommunio" + } + ], + "2024-01-28": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nCircumdedérunt me gémitus mortis, dolóres inférni circumdedérunt me: et in tribulatióne mea invocá", + "id": "Introitus" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 9:24-27; 10:1-5*\nFratres: Nescítis, quod ii, qui in stádio cur", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nAdjútor in opportunitátibus, in tribulatióne: sperent in te, qui novérunt te: quóniam non derelínq", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 20:1-16*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nBonum est confitéri Dómino, et psállere nómini tuo, Altíssime.", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nIllúmina fáciem tuam super servum tuum, et salvum me fac in tua misericórdia: Dómine, non confúndar, quóni", + "id": "Communio" + }, + { + "body": "Fidéles tui, Deus, per tua dona firméntur: ut eadem et percipiéndo requírant, et quæréndo sine fine percípiant.\nPer Domi", + "id": "Postcommunio" + } + ], + "2024-01-29": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui ad animárum salútem beátum Francíscum Confessórem tuum atque Pontíficem ómnibus ómnia factum esse voluísti: co", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "*Pro Doctore Pontifice*\nSancti N. Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostr", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "*Pro Doctore Pontifice*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus N. Póntifex tuus et Doctor egrégius, quǽsu", + "id": "Postcommunio" + } + ], + "2024-01-30": [ + { + "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", + "id": "Introitus" + }, + { + "body": "Deus, qui inter cétera poténtiæ tuæ mirácula, étiam in sexu frágili victóriam martýrii contulísti: concéde propítius; ut", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", + "id": "Lectio" + }, + { + "body": "*Ps 44:8.*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ.\nVeni, Sponsa", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ in beátæ N. Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus patrocíni", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nConfundántur supérbi, quia injúste iniquitátem fecérunt in me: ego autem in mandátis tuis exercébor,", + "id": "Communio" + }, + { + "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta N. Vírgine et Mártyre tua, sempitérna fáciant protect", + "id": "Postcommunio" + } + ], + "2024-01-31": [ + { + "body": "*3 Reg 4:29*\nDedit illi Deus sapiéntiam, et prudéntiam multam nimis, et latitúdinem cordis, quasi arénam quæ est in lítt", + "id": "Introitus" + }, + { + "body": "Deus, qui sanctum Joánnem Confessórem tuum adolescentium patrem et magístrum excitásti, ac per eum, auxiliatríce Vírgine", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses.\n*Philipp 4:4-9*\nFratres: Gaudéte in Dómino semper: íterum dico, ga", + "id": "Lectio" + }, + { + "body": "*Ps 60:4-6*\nFactus es spes mea, Dómine: turris fortitúdinis a fácie inimíci.\n℣. Inhabitábo in tabernáculo tuo in sǽcula:", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-5*\nIn illo témpore: Accessérunt discípuli ad Jesum dicéntes: ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, oblatiónem mundam salutáris Hóstiæ, et præsta: ut, te in ómnibus et super ómnia diligéntes, in glóriæ t", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Rom 4:18*\nContra spem in spem crédidit, ut fíeret pater multárum géntium, secúndum quod dictum est ei.", + "id": "Communio" + }, + { + "body": "Córporis et Sánguinis tui, Dómine, mystério satiátis, concéde, quǽsumus; ut, intercedénte sancto Joánne Confessóre tuo, ", + "id": "Postcommunio" + } + ], + "2024-02-01": [ + { + "body": "*Gal 6:14.*\nMihi autem absit gloriári, nisi in Cruce Dómini nostri Jesu Christi: per quem mihi mundus crucifíxus est, et", + "id": "Introitus" + }, + { + "body": "Infirmitátem nostram respice, omnípotens Deus: et, quia pondus própriæ actionis gravat, beáti Ignátii Martyris tui atque", + "id": "Oratio" + }, + { + "body": "Léctio Epistolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:35-39.*\nFratres: Quis nos separábit a caritáte Christi: tribuláti", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16.*\nEcce sacérdos magnus, qui m diébus suis plácuit Deo.\n*Eccli 44:20.*\nNon est invéntus símilis illi, qui co", + "id": "Tractus" + }, + { + "body": "Sequentia sancti Evangelii secundum Joánnem\n*Joann 12:24-26.*\nIn illo témpore: Dixit Jesus discípulis suis: Amen, amen, ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7.*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Domine.", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, beáti Ignátii Martyris tui atque Pontíficis dicatas méritis, benígnus assúme: et ad perpétuum nobi", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "Fruméntum Christi sum: déntibus bestiárum molar, ut panis mundus invéniar.", + "id": "Communio" + }, + { + "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedénte beáto Ign", + "id": "Postcommunio" + } + ], + "2024-02-02": [ + { + "body": "*Si candelarum benedictio et processio, ob defectum ministrorum sacrorum, forma solemni fieri nequeat, licet formam simp", + "id": "De Benedictione Candelarum" + }, + { + "body": "*Tum dignior ex Clero accedit ad Altare, et ab eo Celebrans accipit Candelam, non genuflectens nec osculans manum illius", + "id": "De Distributione Candelarum" + }, + { + "body": "*Primo Celebrans ponit incensum in thuribulum: postea Diaconus vertens se ad populum, dicit:*\n℣. Procedámus in pace.\n℟. ", + "id": "De Processione" + }, + { + "body": "*Ps 47:10-11.*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tua in f", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, majestátem tuam súpplices exorámus: ut, sicut unigénitus Fílius tuus hodiérna die cum nostræ", + "id": "Oratio" + }, + { + "body": "Léctio Malachíæ Prophétæ.\n*Malach 3:1-4.*\nHæc dicit Dóminus Deus: Ecce, ego mitto Angelum meum, et præparábit viam ante ", + "id": "Lectio" + }, + { + "body": "*Ps 47:10-11; 47:9.*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tu", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:22-32.*\nIn illo témpore: Postquam impleti sunt dies purgatiónis Marí", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3.*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi.", + "id": "Offertorium" + }, + { + "body": "Exáudi, Dómine, preces nostras: et, ut digna sint múnera, quæ óculis tuæ majestátis offérimus, subsídium nobis tuæ pietá", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Luc 2:26.*\nRespónsum accépit Símeon a Spíritu Sancto, non visúrum se mortem, nisi vidéret Christum Dómini.", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti, intercedénte be", + "id": "Postcommunio" + } + ], + "2024-02-03": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Blasii Episcopi*\nDeus, qui nos beáti Blásii Mártyris tui atque Pontíficis ánnua solemnitáte lætíficas: ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "Felix namque es, sacra Virgo María, et omni laude digníssima: quia ex te ortus est sol justítiæ, Christus, Deus noster.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Blasii Episcopi*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto Blásio Mártyre tuo atqu", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Blasii Episcopi*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto Blásio Mártyre tuo ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-04": [ + { + "body": "*Ps 43:23-26*\nExsúrge, quare obdórmis, Dómine? exsúrge, et ne repéllas in finem: quare fáciem tuam avértis, oblivísceris", + "id": "Introitus" + }, + { + "body": "Deus, qui cónspicis, quia ex nulla nostra actióne confídimus: concéde propítius; ut, contra advérsa ómnia, Doctóris gént", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 11:19-33; 12:1-9*\nFratres: Libénter suffértis insipiéntes: cum", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nSciant gentes, quóniam nomen tibi Deus: tu solus Altíssimus super omnem terram,\n℣. Deus meus, pone ill", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 8:4-15*\nIn illo témpore: Cum turba plúrima convenírent, et de civitátib", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium, vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nIntroíbo ad altáre Dei, ad Deum, qui lætíficat juventútem meam.", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", + "id": "Postcommunio" + } + ], + "2024-02-05": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Agathæ Vírginis et Martyris: de cujus passióne gaude", + "id": "Introitus" + }, + { + "body": "Deus, qui inter cétera poténtiæ tuæ mirácula étiam in sexu frágili victóriam martýrii contulísti: concéde propítius; ut,", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 1:26-31.*\nFratres: Vidéte vocatiónem vestram: quia non multi s", + "id": "Lectio" + }, + { + "body": "*Ps 45:6 et 5.*\nAdjuvábit eam Deus vultu suo: Deus in médio ejus, non commovébitur.\n℣. Flúminis impetus lætíficat civitá", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 19:3-12.*\nIn illo témpore: Accessérunt ad Jesum pharisǽi, tentánte", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15.*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ in beátæ Agathæ Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus patro", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "Qui me dignátus est ab omni plaga curáre et mamíllam meam meo péctori restitúere, ipsum ínvoco Deum vivum.", + "id": "Communio" + }, + { + "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta Agatha Vírgine et Mártyre tua, sempitérna protectióne", + "id": "Postcommunio" + } + ], + "2024-02-06": [ + { + "body": "*Eccli 45:30*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.\n", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Titum Confessórem tuum atque Pontíficem apostólicis virtútibus decorásti: ejus méritis et intercessióne", + "id": "Oratio" + }, + { + "body": "*Pro S. Dorotheæ Virg. et Mart.*\nIndulgéntiam nobis, quǽsumus, Dómine, beáta Dorothéa Virgo et Martyr implóret: quæ tibi", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\n℣. Non est inventus símilis illi, qui ", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et álios septuagínta duos: ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos ubique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro S. Dorothea*\nHóstias tibi, Dómine, beátæ Dorótheæ Vírginis et Mártyris tuæ dicatas méritis, benígnus assúme: et ad ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Tito Confessóre tuo", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Dorothea*\nDivíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut, intercedénte beáta Dorothéa Vírgi", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-07": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Intercéssio nos, quǽsumus Dómine, beáti Romuáldi Abbátis comméndet: ut quod nostris méritis non valémus, ejus patrocínio", + "id": "Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salútem nobis proveníre depóscat.\nPer Domi", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus N. Abbas, pro nobis intercedéndo: ut et conversatiónis ejus ", + "id": "Postcommunio" + } + ], + "2024-02-08": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui per sanctum Joánnem órdinem sanctíssimæ Trinitátis ad rediméndum de potestáte Saracenórum captívos cǽlitus ins", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muni", + "id": "Postcommunio" + } + ], + "2024-02-09": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Cyríllum Confessórem tuum atque Pontíficem divínæ maternitátis beatíssimæ Vírginis Maríæ assertórem inv", + "id": "Oratio" + }, + { + "body": "*Pro S. Apollónia Virgine et Martyre*\nDeus qui inter cétera poténtiæ tuæ mirácula étiam in sexu frágili victóriam martýr", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Múnera nostra, omnípotens Deus, benígnus réspice: et, intercedénte beáto Cyríllo, præsta; ut unigénitum tuum Jesum Chris", + "id": "Secreta" + }, + { + "body": "*Pro S. Apollónia*\nSúscipe, Dómine, múnera, quæ in beátæ Apollóniæ Vírginis et Martyris tuæ sollemnitáte deférimus: cuju", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Divínis, Dómine, refécti mystériis, te súpplices deprecámur: ut, exémplis et méritis beáti Cyrílli Pontíficis adjúti, sa", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Apollónia*\nAuxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta Apollónia Vírgine et Mártyre tua, ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-10": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Deus, qui ánimam beátæ Vírginis tuæ Scholásticæ ad ostendéndam innocéntiæ viam in colúmbæ spécie cœlum penetráre fecísti", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2024-02-11": [ + { + "body": "*Ps 30:3-4*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias: quóniam firmaméntum meum et refúgiu", + "id": "Introitus" + }, + { + "body": "Preces nostras, quǽsumus, Dómine, cleménter exáudi: atque, a peccatórum vínculis absolútos, ab omni nos adversitáte cust", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 13:1-13*\nFratres: Si linguis hóminum loquar et Angelórum, cari", + "id": "Lectio" + }, + { + "body": "*Ps 76:15; 76:16*\nTu es Deus qui facis mirabília solus: notam fecísti in géntibus virtútem tuam.\n℣. Liberásti in bráchio", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:31-43*\nIn illo témpore: Assúmpsit Jesus duódecim, et ait illis: Ecce", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBenedíctus es, Dómine, doce me justificatiónes tuas: in lábiis meis pronuntiávi ómnia judícia oris tui.", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nManducavérunt, et saturári sunt nimis, et desidérium eórum áttulit eis Dóminus: non sunt fraudáti a desidé", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui coeléstia aliménta percépimus, per hæc contra ómnia adversa muniámur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-02-12": [ + { + "body": "*Sap 10:20-21.*\nJusti decantavérunt, Dómine, nomen sanctum tuum, et victrícem manum tuam laudavérunt páriter: quóniam sa", + "id": "Introitus" + }, + { + "body": "Dómine Jesu Christe, qui, ad recoléndam memóriam dolórum sanctíssimæ Genetrícis tuæ, per septem beátos Patres nova Servo", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:1-15*\nLaudémus viros gloriósos et paréntes nostros in generatióne sua. Multam glóriam f", + "id": "Lectio" + }, + { + "body": "*Is 65:23.*\nElécti mei non laborábunt frustra, neque germinábunt in conturbatióne: quia semen benedictórum Dómini est, e", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 19:27-29.*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíq", + "id": "Evangelium" + }, + { + "body": "*Is 56:7.*\nAddúcam eos in montem sanctum meum, et lætificábo eos in domo oratiónis meæ: holocáusta eórum et víctimæ eóru", + "id": "Offertorium" + }, + { + "body": "Accipe, quǽsumus, Dómine, hóstias quas tibi offérimus: et præsta; ut, intercedéntibus Sanctis tuis, libera tibi mente se", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 15:16.*\nEgo vos elégi de mundo, ut eátis et fructum afferátis: et fructus vester máneat.", + "id": "Communio" + }, + { + "body": "Cœléstibus refécti mystériis te, Dómine, deprecámur: ut, quorum festa percólimus imitántes exémpla; juxta Crucem Jesu cu", + "id": "Postcommunio" + } + ], + "2024-02-13": [ + { + "body": "*Ps 30:3-4*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias: quóniam firmaméntum meum et refúgiu", + "id": "Introitus" + }, + { + "body": "Preces nostras, quǽsumus, Dómine, cleménter exáudi: atque, a peccatórum vínculis absolútos, ab omni nos adversitáte cust", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 13:1-13*\nFratres: Si linguis hóminum loquar et Angelórum, cari", + "id": "Lectio" + }, + { + "body": "*Ps 76:15; 76:16*\nTu es Deus qui facis mirabília solus: notam fecísti in géntibus virtútem tuam.\n℣. Liberásti in bráchio", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:31-43*\nIn illo témpore: Assúmpsit Jesus duódecim, et ait illis: Ecce", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBenedíctus es, Dómine, doce me justificatiónes tuas: in lábiis meis pronuntiávi ómnia judícia oris tui.", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nManducavérunt, et saturári sunt nimis, et desidérium eórum áttulit eis Dóminus: non sunt fraudáti a desidé", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui coeléstia aliménta percépimus, per hæc contra ómnia adversa muniámur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-02-14": [ + { + "body": "*Antiphona.*\n*Ps 68:17*\nExáudi nos, Dómine, quóniam benígna est misericórdia tua: secúndum multitúdinem miseratiónum tuá", + "id": "Benedictio cinerum" + }, + { + "body": "*Sap 11:24 11:25; 11:27*\nMiseréris ómnium, Dómine, et nihil odísti eórum quæ fecísti, dissímulans peccáta hóminum propte", + "id": "Introitus" + }, + { + "body": "Præsta, Dómine, fidélibus tuis: ut jejuniórum veneránda sollémnia, et cóngrua pietáte suscípiant, et secúra devotióne pe", + "id": "Oratio" + }, + { + "body": "Léctio Joélis Prophétæ.\n*Joel 2:12-19*\nHæc dicit Dóminus: Convertímini ad me in toto corde vestro, in jejúnio, et in fle", + "id": "Lectio" + }, + { + "body": "*Ps 56:2; 56:4*\nMiserére mei, Deus, miserére mei: quóniam in te confídit ánima mea.\n℣. Misit de coelo, et liberávit me, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthaeum.\n*Matt 6:16-21*\nIn illo témpore: Dixit Jesus discípulis suis: Cum jejuná", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nExaltábo te, Dómine, quóniam suscepísti me, nec delectásti inimícos meos super me: Dómine, clamávi ad te, et", + "id": "Offertorium" + }, + { + "body": "Fac nos, quǽsumus, Dómine, his munéribus offeréndis conveniénter aptári: quibus ipsíus venerábilis sacraménti celebrámus", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 1:2 et 3.*\nQui meditábitur in lege Dómini die ac nocte, dabit fructum suum in témpore suo.", + "id": "Communio" + }, + { + "body": "Percépta nobis, Dómine, praebeant sacraménta subsídium: ut tibi grata sint nostra jejúnia, et nobis profíciant ad medéla", + "id": "Postcommunio" + }, + { + "body": "*Deinde Sacerdos absolute dicit:*\n*Oratio super populum*\nOrémus.\n*Et Diaconus, si in officio Diaconatus serviat versus a", + "id": "Super populum" + } + ], + "2024-02-15": [ + { + "body": "*Ps 54:17-23*\nDum clamárem ad Dóminum, exaudívit vocem meam ab his, qui appropínquant mihi, et humiliávit eos, qui est a", + "id": "Introitus" + }, + { + "body": "Deus, qui culpa offénderis, pæniténtia placáris: preces pópuli tui supplicántis propítius réspice; et flagélla tuæ iracú", + "id": "Oratio" + }, + { + "body": "*Commemoratio SS. Faustini et Jovitæ*\nDeus, qui nos ánnua sanctórum Mártyrum tuórum Faustíni et Jovítæ sollemnitáte lætí", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Is 38:1-6*\nIn diébus illis: Ægrotávit Ezechías usque ad mortem: et introívit ad eum Isaías fíliu", + "id": "Lectio" + }, + { + "body": "*Ps 54:23, 17, 18 et 19.*\nJacta cogitátum tuum in Dómino, et ipse te enútriet.\n℣. Dum clamárem ad Dóminum, exaudívit voc", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:5-13*\nIn illo témpore: Cum introísset Jesus Caphárnaum, accéssit", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, Dómine, quǽsumus, inténde placátus: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio SS. Faustini et Jovitæ*\nAdésto, Dómine, supplicatiónibus nostris, quas in Sanctórum tuórum commemoratióne ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nAcceptábis sacrifícium justítiæ, oblatiónes et holocáusta, super altáre tuum, Dómine.", + "id": "Communio" + }, + { + "body": "Cœléstis doni benedictióne percépta: súpplices te, Deus omnípotens, deprecámur; ut hoc idem nobis et sacraménti causa si", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio SS. Faustini et Jovitæ*\nQuǽsumus, Dómine, salutáribus repléti mystériis: ut, quorum sollémnia celebrámus, ", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nParce, Dómine, parce populo tuo: ut, dignis flagellatiónibus", + "id": "Super populum" + } + ], + "2024-02-16": [ + { + "body": "*Ps 29:11.*\nAudívit Dóminus, et misértus est mihi: Dóminus factus est adjútor meus.\n*Ps 29:2*\nExaltábo te, Dómine, quóni", + "id": "Introitus" + }, + { + "body": "Inchoáta jejúnia, quǽsumus, Dómine, benígno favore proséquere: ut observántiam, quam corporáliter exhibémus, méntibus ét", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Isa 58:1-9*\nHæc dicit Dóminus Deus: Clama, ne cesses: quasi tuba exálta vocem tuam: et annúntia ", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram, ut inhábitem in domo Dómini,\n℣. Ut vídeam voluptátem Dómini, et prótegar a", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:43-48; 6:1-4*\nIn illo témpore: Dixit Jesus discípulis suis: Audí", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154; 118:125*\nDómine, vivífica me secúndum elóquium tuum: ut sciam testimónia tua.", + "id": "Offertorium" + }, + { + "body": "Sacrifícium, Dómine, observántiæ quadragesimális, quod offérimus, præsta, quǽsumus: ut tibi et mentes nostras reddat acc", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nServite Dómino in timóre, et exsultáte ei cum tremóre: apprehéndite disciplínam, ne pereátis de via justa.", + "id": "Communio" + }, + { + "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos uno pane cœlésti satiásti, tua fácias pietáte concórdes.\nPer Dom", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nTuére, Dómine, pópulum tuum et ab ómnibus peccátis cleménter", + "id": "Super populum" + } + ], + "2024-02-17": [ + { + "body": "*Ps 29:11*\nAudívit Dóminus, et misértus est mihi: Dóminus factus est adjútor meus.\n*Ps 29:2*\nExaltábo te, Dómine, quónia", + "id": "Introitus" + }, + { + "body": "Adésto, Dómine, supplicatiónibus nostris: et concéde; ut hoc sollémne jejúnium, quod animábus corporibúsque curándis sal", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Isa 58:9-14*\nHæc dicit Dóminus Deus: Si abstúleris de médio tui caténam, et desíeris exténdere d", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram, ut inhábitem in domo Dómini,\n℣. Ut vídeam voluptátem Dómini, et prótegar a", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 6:47-56*\nIn illo témpore: Cum sero esset, erat navis in médio mari, ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154 ; 118:125*\nDómine, vivífica me secúndum elóquium tuum: ut sciam testimónia tua.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, sacrifícium, cujus te voluísti dignánter immolatióne placári: præsta, quǽsumus; ut, hujus operatióne mu", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nServite Dómino in timóre, et exsultáte ei cum tremóre: apprehéndite disciplínam, ne pereátis de via justa.", + "id": "Communio" + }, + { + "body": "Cœléstis vitæ múnere vegetáti, quǽsumus, Dómine: ut, quod est nobis in præsénti vita mystérium, fiat æternitátis auxíliu", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nFidéles tui, Deus, per tua dona firméntur: ut éadem et perci", + "id": "Super populum" + } + ], + "2024-02-18": [ + { + "body": "*Ps 90:15; 90:16*\nInvocábit me, et ego exáudiam eum: erípiam eum, et glorificábo eum: longitúdine diérum adimplébo eum.\n", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiam tuam ánnua quadragesimáli observatióne puríficas: præsta famíliæ tuæ; ut, quod a te obtinére abstiné", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 6:1-10.*\nFratres: Exhortámur vos, ne in vácuum grátiam Dei rec", + "id": "Lectio" + }, + { + "body": "*Ps 90,11-12*\nAngelis suis Deus mandávit de te, ut custódiant te in ómnibus viis tuis.\n℣. In mánibus portábunt te, ne um", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 4:1-11*\nIn illo témpore: Ductus est Jesus in desértum a Spíritu, ut", + "id": "Evangelium" + }, + { + "body": "*Ps 90:4-5*\nScápulis suis obumbrábit tibi Dóminus, et sub pennis ejus sperábis: scuto circúmdabit te véritas ejus.", + "id": "Offertorium" + }, + { + "body": "Sacrifícium quadragesimális inítii sollémniter immolámus, te, Dómine, deprecántes: ut, cum epulárum restrictióne carnáli", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 90:4-5*\nScápulis suis obumbrábit tibi Dóminus, et sub pennis ejus sperábis: scuto circúmdabit te véritas ejus.", + "id": "Communio" + }, + { + "body": "Tuis nos, Dómine, sacraménti libátio sancta restáuret: et a vetustáte purgátos, in mystérii salutáris fáciat transíre co", + "id": "Postcommunio" + } + ], + "2024-02-19": [ + { + "body": "*Ps 122:2*\nSicut óculi servórum in mánibus dominórum suórum: ita óculi nostri ad Dóminum, Deum nostrum, donec misereátur", + "id": "Introitus" + }, + { + "body": "Convérte nos, Deus, salutáris noster: et, ut nobis jejúnium quadragesimále profíciat, mentes nostras cœléstibus ínstrue ", + "id": "Oratio" + }, + { + "body": "Léctio Ezechiélis Prophétæ\n*Ezech 34:11-16*\nHæc dicit Dóminus Deus: Ecce, ego ipse requíram oves meas, et visitábo eas. ", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Matthǽum\n*Matt 25:31-46*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vénerit", + "id": "Evangelium" + }, + { + "body": "*Ps 118:18; 118:26; 118:73*\nLevábo óculos meos, et considerábo mirabília tua, Dómine, ut dóceas me justítias tuas: da mi", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, obláta sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:40; 25:34*\nAmen, dico vobis: quod uni ex mínimis meis fecístis, mihi fecístis: veníte, benedícti Patris mei, po", + "id": "Communio" + }, + { + "body": "Salutáris tui, Dómine, múnere satiáti, súpplices exorámus: ut, cujus lætámur gustu, renovémur efféctu.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAbsólve, quǽsumus, Dómine, nostrórum víncula peccatórum: et,", + "id": "Super populum" + } + ], + "2024-02-20": [ + { + "body": "*Ps 89:1; 89:2*\nDómine, refúgium factus es nobis a generatióne et progénie: a sǽculo et in sǽculum tu es.\n*Ps 89:2*\nPriú", + "id": "Introitus" + }, + { + "body": "Réspice, Dómine, famíliam tuam: et præsta; ut apud te mens nostra tuo desidério fúlgeat, quæ se carnis maceratióne castí", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 55:6-11*\nIn diébus illis: Locútus est Isaías Prophéta, dicens: Quǽrite Dóminum, dum inveníri p", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nDirigátur orátio mea sicut incénsum in conspéctu tuo, Dómine,\n℣. Elevátio mánuum meárum sacrifícium vespertín", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 21:10-17*\nIn illo témpore: Cum intrásset Jesus Jerosólymam, commóta", + "id": "Evangelium" + }, + { + "body": "*Ps 30:15-16*\nIn te sperávi, Dómine; dixi: Tu es Deus meus, in mánibus tuis témpora mea.", + "id": "Offertorium" + }, + { + "body": "Oblátis, quǽsumus, Dómine, placáre munéribus: et a cunctis nos defénde perículis.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 4:2*\nCum invocárem te, exaudísti me, Deus justítiæ meæ: in tribulatióne dilatásti me: miserére mihi, Dómine, et exáu", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut illíus salutáris capiámus efféctum, cujus per hæc mystéria pignus accépimus.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super Populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAscéndant ad te, Dómine, preces nostræ: et ab Ecclésia tua c", + "id": "Super populum" + } + ], + "2024-02-21": [ + { + "body": "*Ps 24:6; 24:3; 24:22*\nReminíscere miseratiónum tuárum, Dómine, et misericórdiæ tuæ, quæ a sǽculo sunt: ne umquam dominé", + "id": "Introitus" + }, + { + "body": "Preces nostras, quǽsumus, Dómine, cleménter exáudi: et contra cuncta nobis adversántia, déxteram tuæ majestátis exténde.", + "id": "Oratio" + }, + { + "body": "Léctio libri Exodi\n*Exod 24:12-18*\nIn diébus illis: Dixit Dóminus ad Móysen: Ascénde ad me in montem, et esto ibi: dabóq", + "id": "LectioL1" + }, + { + "body": "*Ps 24:17-18*\nTribulatiónes cordis mei dilatátæ sunt: de necessitátibus meis éripe me, Dómine.\n℣. Vide humilitátem meam,", + "id": "GradualeL1" + }, + { + "body": "Devotiónem pópuli tui, quǽsumus, Dómine, benígnus inténde: ut, qui per abstinéntiam macerántur in córpore, per fructum b", + "id": "OratioL1" + }, + { + "body": "Léctio libri Regum\n*3 Reg 19:3-8*\nIn diébus illis: Venit Elías in Bersabée Juda, et dimísit ibi púerum suum, et perréxit", + "id": "Lectio" + }, + { + "body": "*Ps 24:17; 24:18; 24:1-4*\nDe necessitátibus meis éripe me, Dómine: vide humilitátem meam et labórem meum: et dimítte ómn", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 12:38-50*\nIn illo témpore: Respondérunt Jesu quidam de scribis et p", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 118:48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi.", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, placatiónis offérimus: ut et delícta nostra miserátus absólvas, et nutántia corda tu dírigas.\nPer ", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nIntéllege clamórem meum: inténde voci oratiónis meæ, Rex meus et Deus meus: quóniam ad te orábo, Dómine.", + "id": "Communio" + }, + { + "body": "Tui, Dómine, perceptióne sacraménti, et a nostris mundémur occúltis, et ab hóstium liberémur insídiis.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\n℣. Mentes nostras, quǽsumus, Dómine, lúmine tuæ claritátis i", + "id": "Super populum" + } + ], + "2024-02-22": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui beáto Petro Apóstolo tuo, collátis clávibus regni cœléstis, ligándi atque solvéndi pontifícium tradidísti: con", + "id": "Oratio" + }, + { + "body": "*Commemoratio Feria V infra Hebd I Quadragesimæ*\nDevotiónem pópuli tui, quǽsumus, Dómine, benígnus inténde: ut, qui per ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1. Pet 1:1-7*\nPetrus, Apóstolus Jesu Christi, eléctis ádvenis dispersiónis Ponti,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi,", + "id": "Evangelium" + }, + { + "body": "*Matt 16:18-19*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam: et portæ inferi non prævalébunt advérsus ea", + "id": "Offertorium" + }, + { + "body": "Ecclésiæ tuæ, quǽsumus, Dómine, preces et hóstias beáti Petri Apóstoli comméndet orátio: ut, quod pro illíus glória cele", + "id": "Secreta" + }, + { + "body": "*Commemoratio Feria V infra Hebd I Quadragesimæ*\nSacrifícia, Dómine, quǽsumus, propénsius ista nos salvent, quæ mediciná", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Lætíficet nos, Dómine, munus oblátum: ut, sicut in Apóstolo tuo Petro te mirábilem prædicámus; sic per illum tuæ sumámus", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Feria V infra Hebd I Quadragesimæ*\nTuórum nos, Dómine, largitáte donórum, et temporálibus attólle præsídii", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-23": [ + { + "body": "*Ps 24:17; 24:18*\nDe necessitátibus meis éripe me, Dómine: vide humilitátem meam et labórem meum, et dimítte ómnia peccá", + "id": "Introitus" + }, + { + "body": "Esto, Dómine, propítius plebi tuæ: et, quam tibi facis esse devótam, benígno réfove miserátus auxílio.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Petri Damiani*\nConcéde nos, quǽsumus, omnípotens Deus: beáti Petri Confessóris tui atque Pontíficis món", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Ezechiélis Prophétæ\n*Ezech 18:20-28*\nHæc dicit Dóminus Deus: Anima, quæ peccáverit, ipsa moriétur: fílius non por", + "id": "Lectio" + }, + { + "body": "*Ps 85:2; 85:6*\nSalvum fac servum tuum. Deus meus, sperántem in te.\n℣. Auribus pércipe, Dómine, oratiónem meam.\n\n*Tractu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 5:1-15*\nIn illo témpore: Erat dies festus Judæórum, et ascéndit Jes", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2; 102:5*\nBénedic, ánima mea, Dómino, et noli oblivísci omnes retributiónes ejus: et renovábitur, sicut áquilæ, ", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, múnera nostris obláta servítiis: et tua propítius dona sanctífica.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Petri Damiani*\nSancti Petri Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio, quæ et m", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 6:11*\nErubéscant et conturbéntur omnes inimíci mei: avertántur retrórsum, et erubéscant valde velóciter.", + "id": "Communio" + }, + { + "body": "Per hujus, Dómine, operatiónem mystérii, et vítia nostra purgéntur, et justa desidéria compleántur.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Petri Damiani*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus Petrus Póntifex tuus et Doctor egr", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nExáudi nos, miséricors Deus: et méntibus nostris grátiæ tuæ ", + "id": "Super populum" + } + ], + "2024-02-24": [ + { + "body": "*Ps 87:3*\nIntret orátio mea in conspéctu tuo: inclína aurem tuam ad precem meam, Dómine.\n*Ps 87:2*\nDómine, Deus salútis ", + "id": "Introitus" + }, + { + "body": "Pópulum tuum, quǽsumus, Dómine, propítius réspice: atque ab eo flagélla tuæ iracúndiæ cleménter avérte.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "Léctio libri Deuteronómii\n*Deut 26:12-19*\nIn diébus illis: Locútus est Móyses ad pópulum, dicens: Quando compléveris déc", + "id": "LectioL1" + }, + { + "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", + "id": "GradualeL1" + }, + { + "body": "Protéctor noster, áspice, Deus: ut, qui malórum nostrórum póndere prémimur, percépta misericórdia, líbera tibi mente fam", + "id": "OratioL1" + }, + { + "body": "Léctio libri Deuteronómii\n*Deut 11:22-25*\nIn diébus illis: Dixit Móyses fíliis Israël: Si custodiéritis mandáta, quæ ego", + "id": "LectioL2" + }, + { + "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", + "id": "GradualeL2" + }, + { + "body": "Adésto, quǽsumus, Dómine, supplicatiónibus nostris: ut esse, te largiénte, mereámur et inter próspera húmiles, et inter ", + "id": "OratioL2" + }, + { + "body": "Léctio libri Machabæórum\n*2 Mach 1:23-26; 1:27*\nIn diébus illis: Oratiónem faciébant omnes sacerdótes, dum consummarétur", + "id": "LectioL3" + }, + { + "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", + "id": "GradualeL3" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", + "id": "OratioL3" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 36:1-10*\nMiserére nostri, Deus ómnium, et réspice nos, et osténde nobis lucem miseratiónum", + "id": "LectioL4" + }, + { + "body": "*Ps 140:2*\nDirigátur orátio mea sicut incénsum in conspéctu tuo, Dómine.\n℣. Elevátio mánuum meárum sacrifícium vespertín", + "id": "GradualeL4" + }, + { + "body": "Actiónes nostras, quǽsumus, Dómine, aspirándo prǽveni, et adjuvándo proséquere: ut cuncta nostra orátio et operátio a te", + "id": "OratioL4" + }, + { + "body": "Léctio Daniélis Prophétæ\n*Dan 3:47-51*\nIn diébus illis: Angelus Dómini descéndit cum Azaría et sóciis ejus in fornácem: ", + "id": "LectioL5" + }, + { + "body": "Deus, qui tribus púeris mitigásti flammas ígnium: concéde propítius; ut nos fámulos tuos non exúrat flamma vitiórum.\nPer", + "id": "OratioL5" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses\n*1 Thess 5:14-23*\nFratres: Rogámus vos, corrípite inquiétos, co", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nLaudáte Dóminum, omnes gentes: et collaudáte eum, omnes pópuli.\n℣. Quóniam confirmáta est super nos miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 17:1-9*\nIn illo témpore: Assúmpsit Jesus Petrum, et Jacóbum, et Joá", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nDómine, Deus salútis meæ, in die clamávi et nocte coram te: intret orátio mea in conspéctu tuo, Dómine.", + "id": "Offertorium" + }, + { + "body": "Præséntibus sacrifíciis, quǽsumus, Dómine, jejúnia nostra sanctífica: ut, quod observántia nostra profitétur extrínsecus", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 7:2*\nDómine, Deus meus, in te sperávi: líbera me ab ómnibus persequéntibus me, et éripe me.", + "id": "Communio" + }, + { + "body": "Sanctificatiónibus tuis, omnípotens Deus, et vítia nostra curéntur, et remédia nobis ætérna provéniant.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nFidéles tuos, Deus, benedíctio desideráta confírmet: quæ eos", + "id": "Super populum" + } + ], + "2024-02-25": [ + { + "body": "*Ps 24:6; 24:3; 24:22*\nReminíscere miseratiónum tuarum, Dómine, et misericórdiæ tuæ, quæ a sǽculo sunt: ne umquam dominé", + "id": "Introitus" + }, + { + "body": "Deus, qui cónspicis omni nos virtúte destítui: intérius exteriúsque custódi; ut ab ómnibus adversitátibus muniámur in có", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses\n*1 Thess 4:1-7.*\nFratres: Rogámus vos et obsecrámus in Dómino J", + "id": "Lectio" + }, + { + "body": "*Ps 24:17-18*\nTribulatiónes cordis mei dilatátæ sunt: de necessitátibus meis éripe me, Dómine,\n℣. Vide humilitátem meam ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 17:1-9*\nIn illo témpore: Assúmpsit Jesus Petrum, et Jacóbum, et Joá", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 118:48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, Dómine, quǽsumus, inténde placátus: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nIntéllege clamórem meum: inténde voci oratiónis meæ, Rex meus et Deus meus: quóniam ad te orábo, Dómine.", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservíre", + "id": "Postcommunio" + } + ], + "2024-02-26": [ + { + "body": "*Ps 25:11-12.*\nRédime me, Dómine, et miserére mei: pes enim meus stetit in via recta: in ecclésiis benedícam Dóminum.\n*P", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut família tua, quæ se, affligéndo carnem, ab aliméntis ábstinet: sectándo justítiam,", + "id": "Oratio" + }, + { + "body": "Léctio Daniélis Prophétæ.\n*Dan 9:15-19*\nIn diébus illis: Orávit Dániel Dóminum, dicens: Dómine, Deus noster, qui eduxíst", + "id": "Lectio" + }, + { + "body": "*Ps 69:6; 69:3*\nAdjútor meus et liberátor meus esto: Dómine, ne tardáveris.\n℣. Confundántur et revereántur inimíci mei, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joh 8:21-29*\nIn illo témpore: Dixit Jesus turbis Judæórum: Ego vado, et ", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7; 15:8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Dóminum in conspéctu meo semper: quóniam a d", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, placatiónis et laudis, tua nos protectióne dignos effíciat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 8:2*\nDómine, Dóminus noster, quam admirábile est nomen tuum in univérsa terra!", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et cœléstis remédii fáciat esse consórtes.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAdésto supplicatiónibus nostris, omnípotens Deus: et, quibus", + "id": "Super populum" + } + ], + "2024-02-27": [ + { + "body": "*Ps 26:8; 26:9*\nTibi dixit cor meum, quæsívi vultum tuum. vultum tuum, Dómine, requíram: ne avértas fáciem tuam a me.\n*P", + "id": "Introitus" + }, + { + "body": "Pérfice, quǽsumus, Dómine, benígnus in nobis observántiæ sanctæ subsídium: ut, quæ te auctóre faciénda cognóvimus, te op", + "id": "Oratio" + }, + { + "body": "Léctio libri Regum.\n*3 Reg 17:8-16*\nIn diébus illis: Factus est sermo Dómini ad Elíam Thesbíten, dicens: Surge et vade i", + "id": "Lectio" + }, + { + "body": "*Ps 54:23; 54:17; 54:18; 54:19*\nJacta cogitátum tuum in Dómino, et ipse te enútriet.\n℣. Dum clamárem ad Dóminum, exaudív", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 23:1-12*\nIn illo témpore: Locútus est Jesus ad turbas et ad discíp", + "id": "Evangelium" + }, + { + "body": "*Ps 50:3.*\nMiserére mei, Dómine, secúndum magnam misericórdiam tuam: dele, Dómine, iniquitátem meam.", + "id": "Offertorium" + }, + { + "body": "Sanctificatiónem tuam nobis, Dómine, his mystériis operáre placátus: quæ nos et a terrénis purget vítiis, et ad cœléstia", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nNarrábo ómnia mirabília tua: lætábor, et exsultábo in te: psallam nómini tuo, Altíssime.", + "id": "Communio" + }, + { + "body": "Ut sacris, Dómine, reddámur digni munéribus: fac nos tuis, quǽsumus, semper obœdíre mandátis.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPropitiáre, Dómine, supplicatiónibus nostris, et animárum no", + "id": "Super populum" + } + ], + "2024-02-28": [ + { + "body": "*Ps 37:22-23.*\nNe derelínquas me, Dómine, Deus meus, ne discédas a me: inténde in adjutórium meum, Dómine, virtus salúti", + "id": "Introitus" + }, + { + "body": "Pópulum tuum, quǽsumus, Dómine, propítius réspice: et, quos ab escis carnálibus prǽcipis abstinére, a nóxiis quoque víti", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Gabrielis a Virgine Perdolente Confessoris*\nDeus, qui beátum Gabriélem dulcíssimæ Matris tuæ dolóres as", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Esther.\n*Esth 13:8-11; 13:15-17*\nIn diébus illis: Orávit Mardochǽus ad Dóminum, dicens: Dómine, Dómine, Rex", + "id": "Lectio" + }, + { + "body": "*Ps 27:9; 27:1*\nSalvum fac pópulum tuum, Dómine, et bénedic hereditáti tuæ.\n℣. Ad te, Dómine, clamávi: Deus meus, ne síl", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 20:17-28*\nIn illo témpore: Ascéndens Jesus Jerosólymam, assúmpsit ", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", + "id": "Offertorium" + }, + { + "body": "Hóstias, Dómine, quas tibi offérimus, propítius réspice: et, per hæc sancta commércia, víncula peccatórum nostrórum absó", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Gabrielis a Virgine Perdolente Confessoris*\nSalutárem hóstiam in memóriam sancti Gabriélis tibi, Dómine", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 10:8*\nJustus Dóminus, et justítiam diléxit: æquitátem vidit vultus ejus.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, sacraméntis: ad redemptiónis ætérnæ, quǽsumus, proficiámus augméntum.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Gabrielis a Virgine Perdolente Confessoris*\nQuas tibi, Dómine, in festivitáte sancti Gabriélis Confessó", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDeus, innocéntiæ restitútor et amátor, dírige ad te tuórum c", + "id": "Super populum" + } + ], + "2024-02-29": [ + { + "body": "*Ps 69:2; 69:3*\nDeus, in adjutórium meum inténde: Dómine, ad adjuvándum me festína: confundántur et revereántur inimíci ", + "id": "Introitus" + }, + { + "body": "Præsta nobis, quǽsumus, Dómine, auxílium grátiæ tuæ: ut, jejúniis et oratiónibus conveniénter inténti, liberémur ab hóst", + "id": "Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ.\n*Jer 17:5-10*\nHæc dicit Dóminus Deus: Maledíctus homo, qui confídit in hómine, et ponit carnem ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 16:19-31*\nIn illo témpore: Dixit Jesus pharisǽis: Homo quidam erat div", + "id": "Evangelium" + }, + { + "body": "*Exod 32:11; 32:13; 32:14*\nPrecátus est Móyses in conspéctu Dómini, Dei sui, et dixit: Quare, Dómine, irásceris in pópul", + "id": "Offertorium" + }, + { + "body": "Præsénti sacrifício, nómini tuo nos, Dómine, jejúnia dicáta sanctíficent: ut, quod observántia nostra profitétur extériu", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Joann 6:57*\nQui mandúcat meam carnem, et bibit meum sánguinem, in me manet, et ego in eo, dicit Dóminus.", + "id": "Communio" + }, + { + "body": "Grátia tua nos, quǽsumus, Dómine, non derelínquat: quæ et sacræ nos déditos fáciat servitúti, et tuam nobis opem semper ", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAdésto, Dómine, fámulis tuis, et perpétuam benignitátem larg", + "id": "Super populum" + } + ], + "2024-03-01": [ + { + "body": "*Ps 16:15*\nEgo autem cum justítia apparébo in conspéctu tuo: satiábor, dum manifestábitur glória tua.\n*Ps 16:1*\nExáudi, ", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, omnípotens Deus: ut, sacro nos purificánte jejúnio, sincéris méntibus ad sancta ventúra fácias perveníre.\n", + "id": "Oratio" + }, + { + "body": "Léctio libri Génesis.\n*Gen 37:6-22*\nIn diébus illis: Dixit Joseph frátribus suis: Audíte sómnium meum, quod vidi: Putába", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nAd Dóminum, cum tribulárer, clamávi, et exaudívit me.\n℣. Dómine, líbera ánimam meam a lábiis iníquis et a l", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 21:33-46*\nIn illo témpore: Dixit Jesus turbis Judæórum et princípib", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14; 39:15*\nDómine, in auxílium meum réspice: confundántur et revereántur, qui quærunt ánimam meam, ut áuferant ea", + "id": "Offertorium" + }, + { + "body": "Hæc in nobis sacrifícia, Deus, et actióne permáneant, et operatióne firméntur.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 11:8*\nTu, Dómine, servábis nos, et custódies nos a generatióne hac in ætérnum.", + "id": "Communio" + }, + { + "body": "Fac nos, quǽsumus, Dómine: accépto pígnore salútis ætérnæ, sic téndere congruénter; ut ad eam perveníre possímus.\nPer Do", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDa, quǽsumus, Dómine, pópulo tuo salútem mentis et córporis:", + "id": "Super populum" + } + ], + "2024-03-02": [ + { + "body": "*Ps 18:8.*\nLex Dómini irreprehensíbilis, convértens ánimas: testimónium Dómini fidéle, sapiéntiam præstans párvulis.\n*Ps", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, Dómine, nostris efféctum jejúniis salutárem: ut castigátio carnis assúmpta, ad nostrárum vegetatiónem trán", + "id": "Oratio" + }, + { + "body": "Léctio libri Genesis\n*Gen 27:6-40*\nIn diébus illis: Dixit Rebécca fílio suo Jacob: Audívi patrem tuum loquéntem cum Esau", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nBonum est confitéri Dómino: et psállere nómini tuo, Altíssime.\n℣. Ad annuntiándum mane misericórdiam tuam, e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 15:11-32*\nIn illo témpore: Dixit Jesus pharisǽis et scribis parábolam i", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nIllúmina óculos meos, ne umquam obdórmiam in morte: ne quando dicat inimícus meus: Præválui advérsus eum.", + "id": "Offertorium" + }, + { + "body": "His sacrifíciis, Dómine, concéde placátus: ut, qui própriis orámus absólvi delíctis, non gravémur extérnis.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Luc 15:32*\nOpórtet te, fili, gaudére, quia frater tuus mórtuus fúerat, et revíxit: períerat, et invéntus est.", + "id": "Communio" + }, + { + "body": "Sacraménti tui, Dómine, divína libátio, penetrália nostri cordis infúndat: et sui nos partícipes poténter effíciat.\nPer ", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nFamíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: u", + "id": "Super populum" + } + ], + "2024-03-03": [ + { + "body": "*Ps 24:15-16.*\nOculi mei semper ad Dóminum, quia ipse evéllet de láqueo pedes meos: réspice in me, et miserére mei, quón", + "id": "Introitus" + }, + { + "body": "Quǽsumus, omnípotens Deus, vota humílium réspice: atque, ad defensiónem nostram, déxteram tuæ majestátis exténde.\nPer Do", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Ephes 5:1-9*\nFratres: Estóte imitatóres Dei, sicut fílii caríssimi: e", + "id": "Lectio" + }, + { + "body": "*Ps 9:20; 9:4*\nExsúrge, Dómine, non præváleat homo: judicéntur gentes in conspéctu tuo.\n℣. In converténdo inimícum meum ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 11:14-28*\nIn illo témpore: Erat Jesus ejíciens dæmónium, et illud erat", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9, 10, 11, 12*\nJustítiæ Dómini rectæ, lætificántes corda, et judícia ejus dulcióra super mel et favum: nam et ser", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 83:4-5*\nPasser invénit sibi domum, et turtur nidum, ubi repónat pullos suos: altária tua, Dómine virtútum, Rex meus,", + "id": "Communio" + }, + { + "body": "A cunctis nos, quǽsumus, Dómine, reátibus et perículis propitiátus absólve: quos tanti mystérii tríbuis esse partícipes.", + "id": "Postcommunio" + } + ], + "2024-03-04": [ + { + "body": "*Ps 55:5.*\nIn Deo laudábo verbum, in Dómino laudábo sermónem: in Deo sperábo, non timebo, quid fáciat mihi homo.\n*Ps 55:", + "id": "Introitus" + }, + { + "body": "Córdibus nostris, quǽsumus, Dómine, grátiam tuam benígnus infúnde: ut, sicut ab escis carnálibus abstinémus; ita sensus ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Casimiri Confessoris*\nDeus, qui inter regáles delícias et mundi illécebras sanctum Casimírum virtúte co", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Regum.\n*4 Reg 5:1-15*\nIn diébus illis: Náaman, princeps milítiæ regis Sýriæ, erat vir magnus apud dóminum s", + "id": "Lectio" + }, + { + "body": "*Ps 55:9, 2*\nDeus, vitam meam annuntiávi tibi: posuísti lácrimas meas in conspéctu tuo.\n℣. Miserére mei, Dómine, quóniam", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 4:23-30.*\nIn illo témpore: Dixit Jesus pharisǽis: Utique dicétis mihi ", + "id": "Evangelium" + }, + { + "body": "*Ps 54:2-3*\nExáudi, Deus, oratiónem meam, et ne despéxeris deprecatiónem meam: inténde in me, et exáudi me.", + "id": "Offertorium" + }, + { + "body": "Munus, quod tibi, Dómine, nostræ servitútis offérimus, tu salutáre nobis pérfice sacraméntum.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Casimiri Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 13:7*\nQuis dabit ex Sion salutáre Israël? cum avérterit Dóminus captivitátem plebis suæ, exsultábit Jacob, et lætábi", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens et miséricors Deus: ut, quod ore contíngimus, pura mente capiámus.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Casimiri Confessoris*\nRefécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus h", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nSubvéniat nobis, Dómine, misericórdia tua: ut ab imminéntibu", + "id": "Super populum" + } + ], + "2024-03-05": [ + { + "body": "*Ps 16:6, 8*\nEgo clamávi, quóniam exaudísti me, Deus: inclína aurem tuam, et exáudi verba mea: custódi me, Dómine, ut pu", + "id": "Introitus" + }, + { + "body": "Exáudi nos, omnípotens et miséricors Deus: et continéntiæ salutáris propítius nobis dona concéde.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "Léctio libri Regum.\n*4 Reg 4:1-7*\nIn diébus illis: Múlier quædam clamábat ad Eliséum Prophétam, dicens: Servus tuus vir ", + "id": "Lectio" + }, + { + "body": "*Ps 18:13-14*\nAb occúltis meis munda me, Dómine: et ab aliénis parce servo tuo.\n℣. Si mei non fúerint domináti, tunc imm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:15-22*\nIn illo témpore: Dixit Jesus discípulis suis: Si peccáve", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16, 17*\nDéxtera Dómini fecit virtútem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera Dómi", + "id": "Offertorium" + }, + { + "body": "Per hæc véniat, quǽsumus, Dómine, sacraménta nostræ redemptiónis efféctus: qui nos et ab humánis rétrahat semper excéssi", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 14:1-2*\nDómine, quis habitábit in tabernáculo tuo? aut quis requiéscet in monte sancto tuo? Qui ingréditur sine mácu", + "id": "Communio" + }, + { + "body": "Sacris, Dómine, mystériis expiáti: et véniam, quǽsumus, consequámur et grátiam.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nTua nos, Dómine, protectióne defénde: et ab omni semper iniq", + "id": "Super populum" + } + ], + "2024-03-06": [ + { + "body": "*Ps 30:7-8.*\nEgo autem in Dómino sperábo: exsultábo et lætábor in tua misericórdia: quia respexísti humilitátem meam.\n*P", + "id": "Introitus" + }, + { + "body": "Præsta nobis, quǽsumus, Dómine: ut salutáribus jejúniis erudíti, a nóxiis quoque vítiis abstinéntes, propitiatiónem tuam", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Perpetuæ et Felicitatis Martyrum*\nDa nobis, quǽsumus, Dómine, Deus noster, sanctarum Mártyrum tuárum P", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Exodi\n*Exod 20:12-24*\nHæc dicit Dóminus Deus: Honóra patrem tuum et matrem tuam, ut sis longǽvus super terr", + "id": "Lectio" + }, + { + "body": "*Ps 6:3-4*\nMiserére mei, Dómine, quóniam infírmus sum: sana me, Dómine,\n℣. Conturbáta sunt ómnia ossa mea: et ánima mea ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangéliim secúndum Matthǽum.\n*Matt 15:1-20*\nIn illo témpore: Accessérunt ad Jesum ab Jerosólymis scr", + "id": "Evangelium" + }, + { + "body": "*Ps 108:21*\nDómine, fac mecum misericórdiam tuam, propter nomen tuum: quia suávis est misericórdia tua.", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, preces pópuli tui cum oblatiónibus hostiárum: et tua mystéria celebrántes, ab ómnibus nos def", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Perpetuæ et Felicitatis Martyrum*\nInténde, quǽsumus, Dómine, múnera altáribus tuis pro sanctárum Márty", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 15:10*\nNotas mihi fecísti vias vitæ: adimplébis me lætítia cum vultu tuo, Dómine.", + "id": "Communio" + }, + { + "body": "Sanctíficet nos, Dómine, qua pasti sumus, mensa cœléstis: et a cunctis erróribus expiátos, supérnis promissiónibus redda", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Perpetuæ et Felicitatis Martyrum*\nMýsticis, Dómine, repléti sumus votis et gáudiis: præsta, quǽsumus; ", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nConcéde, quǽsumus, omnípotens Deus: ut, qui protectiónis tuæ", + "id": "Super populum" + } + ], + "2024-03-07": [ + { + "body": "Salus pópuli ego sum, dicit Dóminus: de quacúmque tribulatióne clamáverint ad me, exáudiam eos: et ero illórum Dóminus i", + "id": "Introitus" + }, + { + "body": "Magníficet te, Dómine, sanctórum tuórum Cosmæ et Damiáni beáta solémnitas: qua et illis glóriam sempitérnam, et opem nob", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Thomæ de Aquino Confessoris Ecclesiæ Doctoris*\nDeus, qui Ecclésiam tuam beáti Thomæ Confessóris tui mir", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ.\n*Jer 7:1-7*\nIn diébus illis: Factum est verbum Dómini ad me, dicens: Sta in porta domus Dómini:", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno,\n℣. Aperis tu manum tuam: ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 4:38-44*\nIn illo témpore: Surgens Jesus de synagóga, introívit in domu", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nSi ambulávero in médio tribulatiónis, vivificábis me, Dómine: et super iram inimicórum meorum exténdes manum ", + "id": "Offertorium" + }, + { + "body": "In tuorum, Dómine, pretiósa morte justórum sacrifícium illud offérimus, de quo martýrium sumpsit omne princípium.\nPer Do", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Thomæ de Aquino Confessoris Ecclesiæ Doctoris*\nSancti N. Confessóris tui atque Doctóris nobis, Dómine, ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nTu mandásti, mandáta tua custodíri nimis: útinam dirigántur viæ meæ, ad custodiéndas justificatiónes tuas.", + "id": "Communio" + }, + { + "body": "Sit nobis, Dómine, sacraménti tui certa salvátio: quæ cum beatórum Mártyrum tuórum Cosmæ et Damiáni méritis implorátur.\n", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Thomæ de Aquino Confessoris Ecclesiæ Doctoris*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus N.", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nSubjéctum tibi pópulum, quǽsumus, Dómine, propitiátio cœlést", + "id": "Super populum" + } + ], + "2024-03-08": [ + { + "body": "*Ps 85:17.*\nFac mecum, Dómine, signum in bonum: ut vídeant, qui me oderunt, et confundántur: quóniam tu, Dómine, adjuvís", + "id": "Introitus" + }, + { + "body": "Jejúnia nostra, quǽsumus, Dómine, benígno favóre proséquere: ut, sicut ab aliméntis abstinémus in córpore; ita a vítiis ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Joannis de Deo Confessoris*\nDeus, qui beátum Joánnem, tuo amóre succénsum, inter flammas innóxium incéd", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Numeri.\n*Num 20:1, 3, 6-13*\nIn diébus illis: Convenérunt fílii Israël adversum Móysen et Aaron: et versi in", + "id": "Lectio" + }, + { + "body": "*Ps 27:7, 1*\nIn Deo sperávit cor meum, et adjútus sum: et reflóruit caro mea, et ex voluntáte mea confitébor illi.\n℣. Ad", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 4:5-42*\nIn illo témpore: Venit Jesus in civitátem Samaríæ, quæ díc", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4*\nInténde voci oratiónis meæ, Rex meus, et Deus meus: quóniam ad te orábo, Dómine.", + "id": "Offertorium" + }, + { + "body": "Réspice, quǽsumus, Dómine, propítius ad múnera, quæ sacrámus: ut tibi grata sint, et nobis salutária semper exsístant.\nP", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Joannis de Deo Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Joann 4:13, 14*\nQui bíberit aquam, quam ego dabo ei, dicit Dóminus, fiet in eo fons aquæ saliéntis in vitam ætérnam.", + "id": "Communio" + }, + { + "body": "Hujus nos, Dómine, percéptio sacraménti mundet a crimine: et ad cœléstia regna perdúcat.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Joannis de Deo Confessoris*\nRefécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in c", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPræsta, quǽsumus, omnípotens Deus: ut, qui in tua protectión", + "id": "Super populum" + } + ], + "2024-03-09": [ + { + "body": "*Ps 5:2-3.*\nVerba mea áuribus pércipe, Dómine, intéllege clamórem meum: inténde voci oratiónis meæ, Rex meus et Deus meu", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui se, affligéndo carnem, ab aliméntis ábstinent; sectándo justítiam, a culpa je", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Franciscæ Viduæ Romanæ*\nDeus, qui beátam Francíscam fámulam tuam, inter cétera grátiæ tuæ dona, familiá", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Daniélis Prophétæ.\n*Dan 13:1-9, 15-17, 19-30, 33-62*\nIn diébus illis: Erat vir hábitans in Babylóne, et nomen eju", + "id": "Lectio" + }, + { + "body": "*Ps 22:4*\nSi ámbulem in médio umbræ mortis, non timébo mala: quóniam tu mecum es, Dómine.\n℣. Virga tua et báculus tuus, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 8:1-11*\nIn illo témpore: Perréxit Jesus in montem Olivéti: et dilú", + "id": "Evangelium" + }, + { + "body": "*Ps 118:133.*\nGressus meos dírige secúndum elóquium tuum: ut non dominétur mei omnis injustítia, Dómine.", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut hujus sacrifícii munus oblátum, fragilitátem nostram ab omni malo purget semper e", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Franciscæ Viduæ Romanæ*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: q", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Joann 8:10, 11*\nNemo te condemnávit, mulier? Nemo, Dómine. Nec ego te condemnábo: jam ámplius noli peccáre.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut inter ejus membra numerémur, cujus córpori communicámus et sánguini:\nQui tecum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Franciscæ Viduæ Romanæ*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interv", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPræténde, Dómine, fidélibus tuis déxteram cœléstis auxílii: ", + "id": "Super populum" + } + ], + "2024-03-10": [ + { + "body": "*Is 66:10 et 11*\nLætáre, Jerúsalem: et convéntum fácite, omnes qui dilígitis eam: gaudéte cum lætítia, qui in tristítia ", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui ex mérito nostræ actiónis afflígimur, tuæ grátiæ consolatióne respirémus.\nPe", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas\n*Gal 4:22-31*\nFratres: Scriptum est: Quóniam Abraham duos fílios hábuit:", + "id": "Lectio" + }, + { + "body": "*Ps 121:1, 7*\nLætátus sum in his, quæ dicta sunt mihi: in domum Dómini íbimus.\n℣. Fiat pax in virtúte tua: et abundántia", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 6:1-15*\nIn illo témpore: Abiit Jesus trans mare Galilǽæ, quod est T", + "id": "Evangelium" + }, + { + "body": "*Ps 134:3, 6*\nLaudáte Dóminum, quia benígnus est: psállite nómini ejus, quóniam suávis est: ómnia, quæcúmque vóluit, fec", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, Dómine, quǽsumus, inténde placátus: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 121:3-4*\nJerúsalem, quæ ædificátur ut cívitas, cujus participátio ejus in idípsum: illuc enim ascendérunt tribus, tr", + "id": "Communio" + }, + { + "body": "Da nobis, quǽsumus, miséricors Deus: ut sancta tua, quibus incessánter explémur, sincéris tractémus obséquiis, et fidéli", + "id": "Postcommunio" + } + ], + "2024-03-11": [ + { + "body": "*Ps 53:3-4*\nDeus, in nómine tuo salvum me fac, et in virtúte tua líbera me: Deus, exáudi oratiónem meam: áuribus pércipe", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, observatiónes sacras ánnua devotióne recoléntes, et córpore tibi placeámus et men", + "id": "Oratio" + }, + { + "body": "Léctio libri Regum\n*3 Reg 3:16-28.*\nIn diébus illis: Venérunt duæ mulíeres meretríces ad regem Salomónem, steterúntque c", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nEsto mihi in Deum protectórem et in locum refúgii, ut salvum me fácias.\n*Ps 70:1.*\n℣. Deus, in te sperávi: Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 2:13-25*\nIn illo témpore: Prope erat Pascha Judæórum, et ascéndit J", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1-2*\nJubiláte Deo, omnis terra, servíte Dómino in lætítia: intráte in conspéctu ejus in exsultatióne: quia Dóminu", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 18:13, 14*\nAb occúltis meis munda me, Dómine: et ab aliénis parce servo tuo.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salutáribus sacraméntis: ad redemptiónis ætérnæ, quǽsumus, proficiámus augméntum.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDeprecatiónem nostram, quǽsumus. Dómine, benígnus exáudi: et", + "id": "Super populum" + } + ], + "2024-03-12": [ + { + "body": "*Ps 54:2-3*\nExáudi, Deus, oratiónem meam, et ne despéxeris deprecatiónem meam: inténde in me et exáudi me.\n*Ps 54:3-4*\nC", + "id": "Introitus" + }, + { + "body": "Sacræ nobis, quǽsumus, Dómine, observatiónis jejúnia: et piæ conversatiónis augméntum, et tuæ propitiatiónis contínuum p", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Gregorii Papæ Confessoris et Ecclesiæ Doctoris*\nDeus, qui ánimæ fámuli tui Gregórii ætérnæ beatitúdinis", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Exodi.\n*Exod 32:7-14*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: Descénde de monte: peccávit p", + "id": "Lectio" + }, + { + "body": "*Ps 43:26, 2*\nExsúrge, Dómine, fer opem nobis: et líbera nos propter nomen tuum.\n℣. Deus, áuribus nostris audívimus: et ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 7:14-31*\nIn illo témpore: Jam die festo mediánte, ascéndit Jesus i", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2, 3, 4*\nExspéctans exspectávi Dóminum, et respéxit me: et exaudívit deprecatiónem meam: et immísit in os meum cá", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Gregorii Papæ Confessoris et Ecclesiæ Doctoris*\nAnnue nobis, quǽsumus, Dómine: ut intercessióne beáti G", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 19:6*\nLætábimur in salutári tuo: et in nómine Dómini, Dei nostri, magnificábimur.", + "id": "Communio" + }, + { + "body": "Hujus nos, Dómine, percéptio sacraménti mundet a crímine: et ad cæléstia regna perdúcat.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Gregorii Papæ Confessoris et Ecclesiæ Doctoris*\nDeus, qui beátum Gregórium Pontíficem Sanctórum tuórum ", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nMiserére, Dómine, pópulo tuo: et contínuis tribulatiónibus l", + "id": "Super populum" + } + ], + "2024-03-13": [ + { + "body": "*Ezech 36:23-26*\nCum sanctificátus fúero in vobis, congregábo vos de univérsis terris: et effúndam super vos aquam munda", + "id": "Introitus" + }, + { + "body": "Deus, qui et justis prǽmia meritórum et peccatóribus per jejúnium véniam præbes: miserére supplícibus tuis; ut reátus no", + "id": "Oratio" + }, + { + "body": "Léctio Ezechiélis Prophétæ.\n*Ezech 36:23-28*\nHæc dicit Dóminus Deus: Sanctificábo nomen meum magnum, quod pollútum est i", + "id": "LectioL1" + }, + { + "body": "*Ps 38:12, 6*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.\n℣. Accédite ad eum, et illuminámini: et fácies vestræ", + "id": "GradualeL1" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quos jejúnia votíva castígant, ipsa quoque devótio sancta lætíficet; ut, terrénis", + "id": "OratioL1" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Is 1:16-19*\nHæc dicit Dóminus Deus: Lavámini, mundi estóte, auférte malum cogitatiónum vestrárum", + "id": "Lectio" + }, + { + "body": "*Ps 32:12, 6*\nBeáta gens, cujus est Dóminus Deus eórum: pópulus, quem elégit Dóminus in hereditátem sibi.\n℣. Verbo Dómin", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 9:1-38*\nIn illo témpore: Prætériens Jesus vidit hóminem cæcum a na", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9, 20*\nBenedícite, gentes, Dóminum, Deum nostrum, et obaudíte vocem laudis ejus: qui pósuit ánimam meam ad vita", + "id": "Offertorium" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut his sacrifíciis peccáta nostra mundéntur; quia tunc veram nobis tríbuis et men", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Joann 9:11*\nLutum fecit ex sputo Dóminus, et linívit óculos meos: et ábii, et lavi, et vidi, et crédidi Deo.", + "id": "Communio" + }, + { + "body": "Sacraménta, quæ súmpsimus, Dómine, Deus noster: et spirituálibus nos répleant aliméntis, et corporálibus tueántur auxíli", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPáteant aures misericórdiæ tuæ. Dómine, précibus supplicánti", + "id": "Super populum" + } + ], + "2024-03-14": [ + { + "body": "*Ps 104:3-4.*\nLætétur cor quæréntium Dóminum: quǽrite Dóminum, et confirmámini: quǽrite fáciem ejus semper.\n*Ps 104:1*\nC", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quos jejúnia votíva castígant, ipsa quoque devótio sancta lætíficet; ut, terrénis", + "id": "Oratio" + }, + { + "body": "Léctio libri Regum\n*4 Reg 4:25-38*\nIn diébus illis: Venit múlier Sunamítis ad Eliséum in montem Carméli: cumque vidísset", + "id": "Lectio" + }, + { + "body": "*Ps 73:20, 19, 22*\nRéspice, Dómine, in testaméntum tuum: et ánimas páuperum tuórum ne obliviscáris in finem.\n℣. Exsúrge,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 7:11-16*\nIn illo témpore: Ibat Jesus in civitátem, quæ vocátur Naim: et", + "id": "Evangelium" + }, + { + "body": "*Ps 69:2, 3, 4*\nDómine, ad adjuvándum me festína: confundántur omnes, qui cógitant servis tuis mala.", + "id": "Offertorium" + }, + { + "body": "Purífica nos, miséricors Deus: ut Ecclésiæ tuæ preces, quæ tibi gratæ sunt, pia múnera deferéntes, fiant expiátis méntib", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-17, 18*\nDómine, memorábor justítiæ tuæ solíus: Deus, docuísti me a juventúte mea: et usque in senéctam et séni", + "id": "Communio" + }, + { + "body": "Cœléstia dona capiéntibus, quǽsumus, Dómine: non ad judícium proveníre patiáris, quæ fidélibus tuis ad remédium providís", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPópuli tui, Deus, institútor et rector, peccáta, quibus impu", + "id": "Super populum" + } + ], + "2024-03-15": [ + { + "body": "*Ps 18:15*\nMeditátio cordis mei in conspéctu tuo semper: Dómine, adjútor meus, et redémptor meus.\n*Ps 18:2*\nCœli enárran", + "id": "Introitus" + }, + { + "body": "Deus, qui ineffabílibus mundum rénovas sacraméntis: præsta, quǽsumus; ut Ecclésia tua et ætérnis profíciat institútis, e", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Clementis Hofbauer*\nDeus, qui beátum Cleméntem Maríam miro fídei róbore et invíctæ constántiæ virtúte d", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Regum.\n*3 Reg 17:17-24*\nIn diébus illis: Ægrotávit fílius mulíeris matris famílias, et erat languor fortíss", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nBonum est confídere in Dómino, quam confídere in hómine.\n℣. Bonum est speráre in Dómino, quam speráre in pr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 11:1-45*\nIn illo témpore: Erat quidam languens Lázarus a Bethánia,", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28, 32*\nPópulum húmilem salvum fácies, Dómine, et óculos superbórum humiliábis: quóniam quis Deus præter te, Dómi", + "id": "Offertorium" + }, + { + "body": "Múnera nos, Dómine, quǽsumus, obláta puríficent: et te nobis jugiter fáciant esse placátum.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Clementis Hofbauer*\nIlle nos, quǽsumus, Dómine, devotiónis ignis accéndat: quo beátus Clemens María, du", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Joann 11:33, 35, 43, 44, 39*\nVidens Dóminus flentes soróres Lázari ad monuméntum, lacrimátus est coram Judǽis, et excla", + "id": "Communio" + }, + { + "body": "Hæc nos, quǽsumus, Dómine, participátio sacraménti: et a propriis reátibus indesinénter expédiat, et ab ómnibus tueátur ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Clementis Hofbauer*\nCælésti pane reféctis; concéde nobis, omnípotens Deus: ut beáti Cleméntis exémplo i", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDa nobis, quǽsumus, omnípotens Deus: ut, qui infirmitátis no", + "id": "Super populum" + } + ], + "2024-03-16": [ + { + "body": "*Isa 55:1*\nSitiéntes, veníte ad aquas, dicit Dóminus: et qui non habétis prétium, veníte et bíbite cum lætítia.\n*Ps 77:1", + "id": "Introitus" + }, + { + "body": "Fiat, Dómine, quǽsumus, per grátiam tuam fructuósus nostræ devotiónis afféctus: quia tunc nobis próderunt suscépta jejún", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Isa 49:8-15*\nHæc dicit Dóminus: In témpore plácito exaudívi te, et in die salútis auxiliátus sum", + "id": "Lectio" + }, + { + "body": "*Ps 9:14, 1-2*\nTibi, Dómine, derelíctus est pauper: pupíllo tu eris adjútor.\n℣. Ut quid, Dómine, recessísti longe, déspi", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 8:12-20*\nIn illo témpore: Locútus est Jesus turbis Judæórum, dicen", + "id": "Evangelium" + }, + { + "body": "*Ps 17:3*\nFactus est Dóminus firmaméntum meum, et refúgium meum, et liberátor meus: et sperábo in eum.", + "id": "Offertorium" + }, + { + "body": "Oblatiónibus nostris, quǽsumus, Dómine, placáre suscéptis: et ad te nostras étiam rebélles compélle propítius voluntátes", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 22:1-2*\nDóminus regit me, et nihil mihi déerit: in loco páscuæ ibi me collocávit: super aquam refectiónis educávit m", + "id": "Communio" + }, + { + "body": "Tua nos, quǽsumus, Dómine, sancta puríficent: et operatióne sua tibi plácitos esse perfíciant.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDeus, qui sperántibus in te miseréri pótius éligis quam irás", + "id": "Super populum" + } + ], + "2024-03-17": [ + { + "body": "*Ps 42:1-2.*\nJúdica me, Deus, et discérne causam meam de gente non sancta: ab hómine iníquo et dolóso éripe me: quia tu ", + "id": "Introitus" + }, + { + "body": "Quǽsumus, omnípotens Deus, famíliam tuam propítius réspice: ut, te largiénte, regátur in córpore; et, te servánte, custo", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos.\n*Hebr 9:11-15*\nFratres: Christus assístens Póntifex futurórum bonórum, ", + "id": "Lectio" + }, + { + "body": "*Ps 142:9, 10*\nEripe me, Dómine, de inimícis meis: doce me fácere voluntátem tuam\n*Ps 17:48-49*\nLiberátor meus, Dómine, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 8:46-59*\nIn illo témpore: Dicébat Jesus turbis Judæórum: Quis ex v", + "id": "Evangelium" + }, + { + "body": "*Ps 9:1, 118:17, 107*\nConfitébor tibi, Dómine, in toto corde meo: retríbue servo tuo: vivam, et custódiam sermónes tuos:", + "id": "Offertorium" + }, + { + "body": "Hæc múnera, quǽsumus Dómine, et víncula nostræ pravitátis absólvant, et tuæ nobis misericórdiæ dona concílient.\nPer Domi", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*1 Cor 11:24, 25*\nHoc corpus, quod pro vobis tradétur: hic calix novi Testaménti est in meo sánguine, dicit Dóminus: hoc", + "id": "Communio" + }, + { + "body": "Adésto nobis, Dómine, Deus noster: et, quos tuis mystériis recreásti, perpétuis defénde subsídiis.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-03-18": [ + { + "body": "*Ps 55:2*\nMiserére mihi, Dómine, quóniam conculcávit me homo: tota die bellans tribulávit me.\n*Ps 55:3*\nConculcavérunt m", + "id": "Introitus" + }, + { + "body": "Sanctífica, quǽsumus, Dómine, nostra jejúnia: et cunctárum nobis indulgéntiam propítius largíre culpárum.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Cyrilli Episcopi Hierosolymitani Ecclesiæ Doctoris*\nDa nobis, quǽsumus, omnípotens Deus, beáto Cyríllo ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Jonæ Prophétæ.\n*Jonæ 3:1-10*\nIn diébus illis: Factum est verbum Dómini ad Jonam Prophétam secúndo, dicens: Surge,", + "id": "Lectio" + }, + { + "body": "*Ps 53:4, 3*\nDeus, exáudi oratiónem meam: áuribus pércipe verba oris mei.\n℣. Deus, in nómine tuo salvum me fac, et in vi", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 7:32-39*\nIn illo témpore: Misérunt príncipes et pharisǽi minístros", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nDómine, convértere, et éripe ánimam meam: salvum me fac propter misericórdiam tuam.", + "id": "Offertorium" + }, + { + "body": "Concéde nobis, Dómine, Deus noster: ut hæc hóstia salutáris et nostrórum fiat purgátio delictórum, et tuæ propitiátio ma", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Cyrilli Episcopi Hierosolymitani Ecclesiæ Doctoris*\nRéspice, Dómine, immaculátam hóstiam, quam tibi off", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 23:10*\nDóminus virtútum ipse est Rex glóriæ.", + "id": "Communio" + }, + { + "body": "Sacraménti tui, quǽsumus, Dómine, participátio salutáris, et purificatiónem nobis tríbuat, et medélam.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Cyrilli Episcopi Hierosolymitani Ecclesiæ Doctoris*\nSacraménta Córporis et Sánguinis tui, quæ súmpsimus", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDa, quǽsumus, Dómine, pópulo tuo salútem mentis et córporis:", + "id": "Super populum" + } + ], + "2024-03-19": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Sanctíssimæ Genetrícis tuæ Sponsi, quǽsumus, Dómine, méritis adjuvémur: ut, quod possibílitas nostra non óbtinet, ejus n", + "id": "Oratio" + }, + { + "body": "*Commemoratio Feria III infra Hebd Passionis*\nNostra tibi, Dómine, quǽsumus, sint accépta jejúnia: quæ nos et expiándo g", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 1:18-21*\nCum esset desponsáta Mater Jesu María Joseph, ántequam con", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Débitum tibi, Dómine, nostræ réddimus servitútis, supplíciter exorántes: ut, suffrágiis beáti Joseph, Sponsi Genetrícis ", + "id": "Secreta" + }, + { + "body": "*Commemoratio Feria III infra Hebd Passionis*\nHóstias tibi, Dómine, deférimus immolándas: quæ temporálem consolatiónem s", + "id": "Commemoratio Secreta" + }, + { + "body": "*de S. Joseph*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pat", + "id": "Prefatio" + }, + { + "body": "*Matt 1:20*\nJoseph, fili David, noli timére accípere Maríam cónjugem tuam: quod enim in ea natum est, de Spíritu Sancto ", + "id": "Communio" + }, + { + "body": "Adésto nobis, quǽsumus, miséricors Deus: et, intercedénte pro nobis beáto Joseph Confessóre, tua circa nos propitiátus d", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Feria III infra Hebd Passionis*\nDa, quǽsumus, omnípotens Deus: ut, quæ divína sunt, júgiter exsequéntes, d", + "id": "Commemoratio Postcommunio" + } + ], + "2024-03-20": [ + { + "body": "*Ps 17:48-49*\nLiberátor meus de géntibus iracúndis: ab insurgéntibus in me exaltábis me: a viro iníquo erípies me, Dómin", + "id": "Introitus" + }, + { + "body": "Sanctificáto hoc jejúnio, Deus, tuórum corda fidélium miserátor illústra: et quibus devotiónis præstas afféctum, præbe s", + "id": "Oratio" + }, + { + "body": "Léctio libri Levítici.\n*Lev 19:1-2, 11-19, 25*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: Lóquere ad omnem ", + "id": "Lectio" + }, + { + "body": "*Ps 29:2-4*\nExaltábo te, Dómine, quóniam suscepísti me: nec delectásti inimícos meos super me.\n℣. Dómine, Deus meus, cla", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 10:22-38*\nIn illo témpore: Facta sunt encǽnia in Jerosólymis: et h", + "id": "Evangelium" + }, + { + "body": "*Ps 58:2*\nEripe me de inimícis meis, Deus meus: et ab insurgéntibus in me líbera me, Dómine.", + "id": "Offertorium" + }, + { + "body": "Annue, miséricors Deus: ut hóstias placatiónis et laudis sincéro tibi deferámus obséquio.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 25:6-7*\nLavábo inter innocéntes manus meas, et circuíbo altáre tuum, Dómine: ut áudiam vocem laudis tuæ, et enárrem ", + "id": "Communio" + }, + { + "body": "Cœléstis doni benedictióne percépta: súpplices te, Deus omnípotens, deprecámur; ut hoc idem nobis et sacraménti causa si", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\n℣. Humiliáte cápita vestra Deo.\nAdésto supplicatiónibus nostris, omnípotens Deus: et, qui", + "id": "Super populum" + } + ], + "2024-03-21": [ + { + "body": "*Dan 3:31*\nOmnia, quæ fecísti nobis, Dómine, in vero judício fecísti: quia peccávimus tibi, et mandátis tuis non obedívi", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut dígnitas condiciónis humánæ, per immoderántiam sauciáta, medicinális parsimóniæ st", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Benedicti Abbatis*\nIntercéssio nos, quǽsumus, Dómine, beáti Benedícti Abbátis comméndet: ut quod nostri", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Daniélis Prophétæ\n*Dan 3:25, 34-45*\nIn diébus illis: Orávit Azarías Dóminum, dicens: Dómine, Deus noster: ne, quǽ", + "id": "Lectio" + }, + { + "body": "*Ps 95:8-9*\nTóllite hóstias, et introíte in átria ejus: adoráte Dóminum in aula sancta ejus\n*Ps 28:9*\nRevelávit Dóminus ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:36-50*\nIn illo témpore: Rogábat Jesum quidam de pharisǽis, ut manduc", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nSuper flúmina Babylónis illic sédimus et flévimus: dum recordarémur tui, Sion.", + "id": "Offertorium" + }, + { + "body": "Dómine, Deus noster, qui in his pótius creatúris, quas ad fragilitátis nostræ subsídium condidísti, tuo quoque nómini mú", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Benedicti Abbatis*\nSacris altáribus, Dómine, hóstias superpósitas sanctus Benedíctus Abbas, quǽsumus, i", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nMeménto verbi tui servo tuo, Dómine, in quo mihi spem dedísti: hæc me consoláta est in humilitáte mea.", + "id": "Communio" + }, + { + "body": "Quod ore súmpsimus, Dómine, pura mente capiámus: et de munere temporáli, fiat nobis remédium sempitérnum.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Benedicti Abbatis*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus Benedíctus Abbas, pro no", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus. Humiliáte cápita vestra Deo.\nEsto, quǽsumus, Dómine, propítius plebi tuæ: ut, quæ tibi no", + "id": "Super populum" + } + ], + "2024-03-22": [ + { + "body": "*Ps 30:10, 16, 18*\nMiserére mihi, Dómine, quóniam tríbulor: líbera me, et éripe me de mánibus inimicórum meórum et a per", + "id": "Introitus" + }, + { + "body": "Córdibus nostris, quǽsumus, Dómine, grátiam tuam benígnus infúnde: ut peccáta nostra castigatióne voluntária cohibéntes,", + "id": "Oratio" + }, + { + "body": "*Commemoratio Septem Dolorum B. M. ℣.*\nDeus, in cujus passióne, secúndum Simeónis prophetíam, dulcíssimam ánimam gloriós", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ\n*Jer 17:13-18*\nIn diébus illis: Dixit Jeremías: Dómine, omnes, qui te derelínquunt, confundéntur", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nPacífice loquebántur mihi inimíci mei: et in ira molésti erant mihi.\n℣. Vidísti, Dómine, ne síleas: ne di", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 11:47-54*\nIn illo témpore: Collegérunt pontífices et pharisǽi concí", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBenedíctus es, Dómine, doce me justificatiónes tuas: et non tradas calumniántibus me supérbis: et r", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, miséricors Deus: ut digne tuis servíre semper altáribus mereámur; et eórum perpétua participatióne salvári", + "id": "Secreta" + }, + { + "body": "*Commemoratio Septem Dolorum B. M. ℣.*\nOfférimus tibi preces et hóstias, Dómine Jesu Christe, humíliter supplicántes: ut", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nNe tradíderis me, Dómine, in animas persequéntium me: quóniam insurrexérunt in me testes iníqui, et mentíta e", + "id": "Communio" + }, + { + "body": "Sumpti sacrifícii, Dómine, perpetua nos tuítio non derelínquat: et nóxia semper a nobis cuncta depéllat.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Septem Dolorum B. M. ℣.*\nSacrifícia, quæ súmpsimus, Dómine Jesu Christe, Transfixiónem Matris tuæ et Vírgi", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nConcéde, quǽsumus, omnípotens Deus: ut, qui protectiónis tuæ", + "id": "Super populum" + } + ], + "2024-03-23": [ + { + "body": "*Ps 30:10,16, 18*\nMiserére mihi, Dómine, quóniam tríbulor: líbera me, et éripe me de mánibus inimicórum meórum et a pers", + "id": "Introitus" + }, + { + "body": "Profíciat, quǽsumus, Dómine, plebs tibi dicáta piæ devotiónis afféctu: ut sacris actiónibus erudíta, quanto majestáti tu", + "id": "Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ\n*Jer 18:18-23*\nIn diébus illis: Dixérunt ímpii Judǽi ad ínvicem: Veníte, et cogitémus contra jus", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nPacífice loquebántur mihi inimíci mei: et in ira molésti erant mihi.\n℣. Vidísti, Dómine, ne síleas: ne di", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 12:10-36*\nIn illo témpore: Cogitavérunt príncipes sacerdótum, ut et", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBenedíctus es, Dómine, doce me justificatiónes tuas: et non tradas calumniántibus me supérbis: et r", + "id": "Offertorium" + }, + { + "body": "A cunctis nos, quǽsumus, Dómine, reátibus et perículis propitiátus absólve: quos tanti mystérii tríbuis esse consórtes.\n", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nNe tradíderis me, Dómine, in ánimas persequéntium me: quóniam insurrexérunt in me testes iníqui, et mentíta e", + "id": "Communio" + }, + { + "body": "Divíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut hujus semper participatióne vivámus.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nTueátur, quǽsumus, Dómine, déxtera tua pópulum deprecántem: ", + "id": "Super populum" + } + ], + "2024-03-24": [ + { + "body": "*Celebrans, omissa aspersione aquae, proceditur ad benedicendum ramos palmarum seu olivarum, sive aliarum arborum. Color", + "id": "Benedictio Palmorum" + }, + { + "body": "*Celebrans dat ramos benedictos primum omnibus clericis, deinde ministrantibus, denique, ad cancellos, fidelibus. Et cum", + "id": "De distributione ramorum" + }, + { + "body": "*Ramorum distributione peracta, diaconus defert librum Evangeliorum ad altare. Celebrans ponit incensum in thuribulo. Di", + "id": "De lectione Evangelica" + }, + { + "body": "*His peractis, celebrans ponit incensum in thuribulo, more solito. Deinde diaconus, vertens se ad populum, dicit:*\n\n℣. P", + "id": "De processione cum ramis benedictis" + }, + { + "body": "\n*Chorus:*\nGlória, laus et honor tibi sit, Rex Christe, Redémptor: Cui pueríle decus prompsit Hosánna pium.\n*Omnes:*\nGló", + "id": "Hymnus ad Christum Regem" + }, + { + "body": "*Ps 21:20 et 22.*\nDómine, ne longe fácias auxílium tuum a me, ad defensiónem meam áspice: líbera me de ore leonis, et a ", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui humáno generi, ad imitandum humilitátis exémplum, Salvatórem nostrum carnem súmere et cr", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses.\n*Phil 2:5-11*\nFratres: Hoc enim sentíte in vobis, quod et in Chris", + "id": "Lectio" + }, + { + "body": "*Ps 72:24 et 1-3*\nTenuísti manum déxteram meam: et in voluntáte tua deduxísti me: et cum glória assumpsísti me.\n℣. Quam ", + "id": "Graduale" + }, + { + "body": "Pássio Dómini nostri Jesu Christi secúndum Matthǽum.\n*Matt 26:36-75; 27:1-60.*\nTunc venit Jesus cum illis in villam, quæ", + "id": "Evangelium" + }, + { + "body": "*Ps 68:21-22.*\nImpropérium exspectávit cor meum et misériam: et sustínui, qui simul mecum contristarétur, et non fuit: c", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, Dómine: ut oculis tuæ majestátis munus oblátum, et grátiam nobis devotionis obtineat, et efféctum beá", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Matt 26:42.*\nPater, si non potest hic calix transíre, nisi bibam illum: fiat volúntas tua.", + "id": "Communio" + }, + { + "body": "Per hujus, Dómine, operatiónem mystérii: et vitia nostra purgéntur, et justa desidéria compleántur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-03-25": [ + { + "body": "*Ps 34:1-2.*\nJúdica, Dómine, nocéntes me, expúgna impugnántes me: apprehénde arma et scutum, et exsúrge in adjutórium me", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, omnípotens Deus: ut, qui in tot advérsis ex nostra infirmitáte defícimus; intercedénte unigéniti Fílii tui", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Isa 50:5-10*\nIn diébus illis: Dixit Isaías: Dóminus Deus apéruit mihi aurem, ego autem non contr", + "id": "Lectio" + }, + { + "body": "*Ps 34:23 et 3.*\nExsúrge, Dómine, et inténde judício meo, Deus meus et Dóminus meus, in causam meam.\n℣. Effúnde frámeam,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 12:1-9*\nAnte sex dies Paschæ venit Jesus Bethániam, ubi Lázarus fú", + "id": "Evangelium" + }, + { + "body": "*Ps 142:9-10*\nEripe me de inimícis meis, Dómine: ad te confúgi, doce me fácere voluntátem tuam: quia Deus meus es tu.", + "id": "Offertorium" + }, + { + "body": "Hæc sacrifícia nos, omnípotens Deus, poténti virtúte mundátos, ad suum fáciant purióres veníre princípium.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 34:26*\nErubéscant et revereántur simul, qui gratulántur malis meis: induántur pudóre et reveréntia, qui malígna loqu", + "id": "Communio" + }, + { + "body": "Prǽbeant nobis, Dómine, divínum tua sancta fervórem: quo eórum páriter et actu delectémur et fructu.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAdjuva nos, Deus, salutáris noster: et ad benefícia recolénd", + "id": "Super populum" + } + ], + "2024-03-26": [ + { + "body": "*Gal 6:14*\nNos autem gloriári opórtet in Cruce Dómini nostri Jesu Christi: in quo est salus, vita et resurréctio nostra:", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus: da nobis ita Domínicæ passiónis sacraménta perágere; ut indulgéntiam percípere mereámur.\nPer", + "id": "Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ\n*Jer 11:18-20*\nIn diébus illis: Dixit Jeremías: Dómine, demonstrásti mihi, et cognóvi: tunc oste", + "id": "Lectio" + }, + { + "body": "*Ps 34:13 et 1-2*\nEgo autem, dum mihi molésti essent, induébam me cilício, et humiliábam in jejúnio ánimam meam: et orát", + "id": "Graduale" + }, + { + "body": "\n\n \nPássio Dómini nostri Jesu Christi secúndum Marcum\n\n*Marc 14:32-72; 15, 1-46*\n\nEt véniunt in prǽdium, cui nomen Geths", + "id": "Evangelium" + }, + { + "body": "*Ps 139:5*\nCustódi me, Dómine, de manu peccatóris: et ab homínibus iníquis éripe me.", + "id": "Offertorium" + }, + { + "body": "Sacrifícia nos, quǽsumus, Dómine, propénsius ista restáurent: quæ medicinálibus sunt institúta jejúniis.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 68:13-14*\nAdvérsum me exercebántur, qui sedébant in porta: et in me psallébant, qui bibébant vinum: ego vero oratión", + "id": "Communio" + }, + { + "body": "Sanctificatiónibus tuis, omnípotens Deus: et vítia nostra curéntur, et remédia nobis sempitérna provéniant.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nTua nos misericórdia, Deus, et ab omni subreptióne vetustáti", + "id": "Super populum" + } + ], + "2024-03-27": [ + { + "body": "*Phil 2:10, 8 et 11*\nIn nómine Jesu omne genu flectátur, cœléstium, terréstrium et infernórum: quia Dóminus factus est o", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui nostris excéssibus incessánter afflígimur, per unigéniti Fílii tui passiónem ", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Isa 63:1-7*\nHæc dicit Dóminus Deus: Dícite fíliæ Sion: Ecce Salvátor tuus venit: ecce,\nmerces eju", + "id": "LectioL1" + }, + { + "body": "*Ps 68:18 et 2-3*\nNe avértas fáciem tuam a púero tuo, quóniam tríbulor: velóciter exáudi me.\n℣. Salvum me fac, Deus, quó", + "id": "GradualeL1" + }, + { + "body": "Deus, qui pro nobis Fílium tuum Crucis patíbulum subire voluísti, ut inimíci a nobis expélleres potestatem: concéde nobi", + "id": "OratioL1" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 53:1-12.*\nIn diébus illis: Dixit Isaías: Dómine, quis crédidit audítui nostro? et bráchium Dóm", + "id": "Lectio" + }, + { + "body": "*Ps. 101:2-5, 14*\nDómine, exáudi oratiónem meam, et clamor meus ad te véniat.\n℣. Ne avértas fáciem tuam a me: in quacúmq", + "id": "Graduale" + }, + { + "body": "\n\n \nPássio Dómini nostri Jesu Christi secúndum Lucam.\n\n*Luc 22:39-71; 23:1-53*\n\n\nIn illo témpore: Egréssus Jesus ibat se", + "id": "Evangelium" + }, + { + "body": "*Ps 101:2-3*\nDómine, exáudi oratiónem meam, et clamor meus ad te pervéniat: ne avértas fáciem tuam a me.", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, munus oblátum, et dignánter operáre: ut, quod passiónis Fílii tui, Dómini nostri, mystério gé", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 101:13 et 14.*\nPotum meum cum fletu temperábam: quia élevans allisísti me: et ego sicut fænum árui: tu autem, Dómine", + "id": "Communio" + }, + { + "body": "Largíre sénsibus nostris, omnípotens Deus: ut, per temporálem Fílii tui mortem, quam mystéria veneránda testántur, vitam", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nRéspice, quǽsumus, Dómine, super hanc famíliam tuam, pro qua", + "id": "Super populum" + } + ], + "2024-03-28": [ + { + "body": "*Gal 6:14.*\nNos autem gloriári opórtet in Cruce Dómini nostri Jesu Christi: in quo est salus, vita et resurréctio nostra", + "id": "Introitus" + }, + { + "body": "Deus, a quo et Judas reatus sui poenam, et confessiónis suæ latro praemium sumpsit, concéde nobis tuæ propitiatiónis eff", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 11:20-32.*\nFratres: Conveniéntibus vobis in unum, jam non est", + "id": "Lectio" + }, + { + "body": "*Phil 2:8-9*\nChristus factus est pro nobis oboediens usque ad mortem, mortem autem crucis\n℣. Propter quod et Deus exaltá", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 13:1-15*\nAnte diem festum Paschae, sciens Jesus, quia venit hora e", + "id": "Evangelium" + }, + { + "body": "*Post homiliam proceditur, ad lotionem pedum. In medio presbyterii, vel in ipsa aula ecclesiæ, parata sint sedilia hinc ", + "id": "Maundi" + }, + { + "body": "*Ps 117:16 et 17.*\nDéxtera Dómini fecit virtútem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera D", + "id": "Offertorium" + }, + { + "body": "Ipse tibi, quǽsumus, Dómine sancte, Pater omnípotens, ætérne Deus, sacrifícium nostrum reddat accéptum, qui discípulis s", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "Communicántes et diem sacratíssimum celebrántes, quo Dóminus noster Jesus Christus pro nobis est tráditus: sed et memóri", + "id": "Communicantes" + }, + { + "body": "*Joann 13:12, 13 et 15.*\nDóminus Jesus, postquam coenávit cum discípulis suis, lavit pedes eórum, et ait illis: Scitis, ", + "id": "Communio" + }, + { + "body": "Refécti vitálibus aliméntis, quǽsumus, Dómine, Deus noster: ut, quod témpore nostræ mortalitátis exséquimur, immortalitá", + "id": "Postcommunio" + }, + { + "body": "*Missa expleta, statim proceditur ad solemnem translationem et repositionem Sacramenti. Dum fit processio, cantatur hymn", + "id": "Post Missam" + }, + { + "body": "\n*Deinde celebrans et ministri, seu *\n*ministrantes, exeunt ante altare maius; facta *\n*eidem reverentia, stantes, incip", + "id": "Denudatione altaris" + } + ], + "2024-03-29": [ + { + "body": "\n\n\n\n\n\n\n\nDeus, qui peccati veteris hereditariam mortem, in qua posteritatis genus omne successerat, Christi tui, Domini n", + "id": "Lectiones" + }, + { + "body": "*Proceditur ad cantum vel lectionem historiae Passionis Domini secundum Ioannem.*\n\n\nS. Dominus sit in cordibus vestris e", + "id": "Passio" + }, + { + "body": "*Dicuntur autem hoc ordine: Praecedit celebrantis praefatio, qua intentio specialis indicatur, et cantatur tono peculiar", + "id": "Oratio Fidelium" + }, + { + "body": "\n*Orationibus solemnibus completis, celebrans et ministri redeunt ad sedilia, ubi celebrans deponit pluviale, ministri d", + "id": "Crucis Adoratione" + }, + { + "body": "*Cum ad altare maius pervenerint, illud ascendunt, diaconus sacram pyxidem super corporale, acolythi autem candelabra su", + "id": "CommunioQ" + } + ], + "2024-03-30": [ + { + "body": "*Hora competenti tobaleis cooperiuntur *\n*altaria, sed candelæ exstinctæ manent usque *\n*ad principium Missæ. Interim ex", + "id": "Benedictio ignis" + }, + { + "body": "*Unus ministrantium portat cereum paschalem ante celebrantem, qui facit super earn crux, litteram græcam Alpha, subtus v", + "id": "De benedictione cerei Paschalis" + }, + { + "body": "*Tum celebrans iterum ponit incensum *\n*in thuribulo; postea diaconus, depositis *\n*paramentis violaceis, et indutus sto", + "id": "De solemni processione" + }, + { + "body": "*Diaconus accipiens librum, petit benedictionem, dicens:*\n\nIube, domne, benedícere.\n\n*Et celebrans subiungit:*\n\nDóminus ", + "id": "De praeconio paschali" + }, + { + "body": "*Post præconium paschale, diaconus, *\n*depositis paramentis albis, assumit violacea, *\n*et vadit ad celebrantem.*\n*In fi", + "id": "De lectionibus" + }, + { + "body": "*His expletis, a duobus cantoribus, in medio chori genuflexis, cantantur Litaniæ Sanctorum.*\n\n\n\n℣. Kýrie eléison.\n℟. Kýr", + "id": "De prima parte Litaniarum" + }, + { + "body": "℣. Dóminus vobíscum. \n\r℟. Et cum spíritu tuo.\nOrémus.\nOmnípotens sempitérne Deus, adésto magnæ pietátis tuæ mystériis", + "id": "De benedictione aquae baptismalis" + }, + { + "body": "*Celebrans assumit stolam et pluviale albi coloris; deinde, imposito thure, et facta incensatione cerei, stans iuxta ill", + "id": "De renovatione promissionum baptismatis" + }, + { + "body": "*Renovatione promissionum Baptismatis peracta, cantores, seu ipse sacerdos, incipiunt alteram partem Litaniarum. Propiti", + "id": "De altera parte Litaniarum" + }, + { + "body": "*Celebratio solius Missæ Vigiliæ paschalis sine cæremoniis præcedentibus interdicitur.*\n\n*Sacra Communio fidelibus dari ", + "id": "De Missa solemni Vigiliae paschalis" + }, + { + "body": "℣. Dóminus vobíscum. \n\r℟. Et cum spíritu tuo.\nOrémus.\nDeus, qui hanc sacratíssimum noctem gloria domínicæ Resurrectió", + "id": "Oratio" + }, + { + "body": "Lectio Epistolæ beati Pauli apostoli ad Colossenses.\n*Col 3:1-4*\nFratres: si consurrexístis cum Christo, quæ sursum sunt", + "id": "Lectio" + }, + { + "body": "*Ps. 116*\n℣. Laudáte Dominum omnes gentes: et collaudáte eum, omnes pópuli.\n℣. Quóniam confirmáta est super nos misericó", + "id": "Tractus" + }, + { + "body": "*Ad Evangelium non portantur luminaria*\n\nSequéntia ☩ sancti Evangélii secúndum Matthǽum.\n℟. Glória tibi, Dómine.\n*Matt. ", + "id": "Evangelium" + }, + { + "body": "Suscipe, quǽsumus, Domine, preces populi tui, cum oblationibus hostiarum: ut paschalibus initiata mysteriis, ad æternita", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Post sumptionem Sacramenti, distributio Communionis, purificatio et ablutio fiunt more solito; deinde pro LAUDIBUS domi", + "id": "Pro Laudibus" + }, + { + "body": "℣. Dóminus vobíscum. \n\r℟. Et cum spíritu tuo.\nOrémus.\nSpíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos sacramé", + "id": "Postcommunio" + }, + { + "body": "℣. Ite, Missa est, allelúia, allelúia.\n℟. Deo grátias, allelúia, allelúia.", + "id": "Conclusio" + } + ], + "2024-03-31": [ + { + "body": "*Ps 138:18; 138:5-6.*\nResurréxi, et adhuc tecum sum, allelúja: posuísti super me manum tuam, allelúja: mirábilis facta e", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die per Unigénitum tuum æternitátis nobis áditum, devícta morte, reserásti: vota nostra, quæ prævenié", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios.\n*1 Cor 5:7-8*\nFratres: Expurgáte vetus ferméntum, ut sitis nova cons", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps. 117:24; 117:1*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Confitémini Dómino", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 16:1-7.*\nIn illo témpore: María Magdaléne et María Jacóbi et Salóme ", + "id": "Evangelium" + }, + { + "body": "*Ps. 75:9-10.*\nTerra trémuit, et quiévit, dum resúrgeret in judício Deus, allelúja.", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, preces pópuli tui cum oblatiónibus hostiárum: ut, Paschálibus initiáta mystériis, ad æternitá", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*1 Cor 5:7-8*\nPascha nostrum immolátus est Christus, allelúja: itaque epulémur in ázymis sinceritátis et veritátis, alle", + "id": "Communio" + }, + { + "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos sacraméntis paschálibus satiásti, tua fácias pietáte concordes.\n", + "id": "Postcommunio" + } + ], + "2024-04-01": [ + { + "body": "*Exod 13:5; 13:9*\nIntrodúxit vos Dóminus in terram fluéntem lac et mel, allelúja: et ut lex Dómini semper sit in ore ves", + "id": "Introitus" + }, + { + "body": "Deus, qui sollemnitáte pascháli, mundo remédia contulísti: pópulum tuum, quǽsumus, cœlésti dono proséquere; ut et perféc", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostólorum\n*Act. 10, 37-43.*\nIn diébus illis: Stans Petrus in médio plebis, dixit: Viri fratres, vos scit", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:2*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Dicat nunc Israël, quóniam bonus: quóni", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc. 24:13-35*\nIn illo témpore: Duo ex discípulis Jesu ibant ipsa die in ca", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAngelus Dómini descéndit de cœlo, et dixit muliéribus: Quem quǽritis, surréxit, sicut dixit, allelúj", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, preces pópuli tui cum oblatiónibus hostiárum: ut, paschálibus initiáta mystériis, ad æternitá", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Luc 24:34*\nSurréxit Dóminus, et appáruit Petro, allelúja.", + "id": "Communio" + }, + { + "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos sacraméntis paschálibus satiásti, tua fácias pietáte concórdes.\n", + "id": "Postcommunio" + } + ], + "2024-04-02": [ + { + "body": "*Eccli 15:3-4*\nAqua sapiéntiæ potávit eos, allelúja: firmábitur in illis et non flectétur, allelúja: et exaltábit eos in", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiam tuam novo semper fœtu multíplicas: concéde fámulis tuis; ut sacraméntum vivéndo téneant, quod fide p", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 13:16; 13:26-33*\nIn diébus illis: Surgens Paulus et manu siléntium índicens, ait: Viri f", + "id": "Lectio" + }, + { + "body": "*Ps 117:24;106:2*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n*Ps 106:2*\n℣. Dicant nunc, qui redémpti sun", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc. 24, 36-47*\nIn illo témpore: Stetit Jesus in médio discipulórum suórum ", + "id": "Evangelium" + }, + { + "body": "*Ps. 17:14; 17:16*\nIntónuit de cœlo Dóminus, et Altíssimus dedit vocem suam: et apparuérunt fontes aquárum, allelúja.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, fidélium preces cum oblatiónibus hostiárum: ut, per hæc piæ devotiónis offícia, ad cœléstem glóriam tra", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Col 3:1-2*\nSi consurrexístis cum Christo, quæ sursum sunt quǽrite, ubi Christus est in déxtera Dei sedens, allelúja: qu", + "id": "Communio" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut paschális percéptio sacraménti, contínua in nostris méntibus persevéret.\nPer Domi", + "id": "Postcommunio" + } + ], + "2024-04-03": [ + { + "body": "*Matt 25:34*\nVeníte, benedícti Patris mei, percípite regnum, allelúja: quod vobis parátum est ab orígine mundi, allelúja", + "id": "Introitus" + }, + { + "body": "Deus, qui nos Resurrectiónis Domínicæ ánnua solemnitáte lætíficas: concéde propítius; ut per temporália festa, quæ ágimu", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 3:13-15; 3:17-19*\nIn diébus illis: Apériens Petrus os suum, dixit: Viri Israëlítæ, et qu", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:16*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Déxtera Dómini fecit virtútem, déxtera", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 21:1-14*\nIn illo témpore: Manifestávit se íterum Jesus discípulis", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nPortas cœli apéruit Dóminus: et pluit illis manna, ut éderent: panem cœli dedit eis: panem Angelórum mandu", + "id": "Offertorium" + }, + { + "body": "Sacrifícia, Dómine, paschálibus gáudiis immolámus: quibus Ecclésia tua mirabíliter et páscitur et nutrítur.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Rom 6:9*\nChristus resúrgens ex mórtuis jam non móritur, allelúja: mors illi ultra non dominábitur, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Ab omni nos, quǽsumus, Dómine, vetustáte purgátos: sacraménti tui veneránda percéptio in novam tránsferat creatúram:\nQui", + "id": "Postcommunio" + } + ], + "2024-04-04": [ + { + "body": "*Sap 10:20-21*\nVictrícem manum tuam, Dómine, laudavérunt páriter, allelúja: quia sapiéntia apéruit os mutum, et linguas ", + "id": "Introitus" + }, + { + "body": "Deus, qui diversitátem géntium in confessióne tui nóminis adunásti: da, ut renátis fonte baptísmatis una sit fides ménti", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolorum\n*Act 8:26-40*\nIn diébus illis: Angelus Dómini locútus est ad Philíppum, dicens: Surge et vade ", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:22-23.*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Lápidem, quem reprobavérunt ædific", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 20:11-18*\nIn illo témpore: María stabat ad monuméntum foris, plor", + "id": "Evangelium" + }, + { + "body": "*Exod 13:5*\nIn die solemnitátis vestræ, dicit Dóminus, indúcam vos in terram fluéntem lac et mel, allelúja.", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, múnera populórum tuórum propítius: ut, confessióne tui nóminis et baptísmate renováti, sempit", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*1 Pet 2:9*\nPópulus acquisitiónis, annuntiáte virtútes ejus, allelúja: qui vos de ténebris vocávit in admirábile lumen s", + "id": "Communio" + }, + { + "body": "Exáudi, Dómine, preces nostras: ut redemptiónis nostræ sacrosáncta commércia, et vitæ nobis cónferant præséntis auxílium", + "id": "Postcommunio" + } + ], + "2024-04-05": [ + { + "body": "*Ps 77:53*\nEdúxit eos Dóminus in spe, allelúja: et inimícos eórum opéruit mare, allelúja, allelúja, allelúja.\n*Ps 77:1*\n", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui paschále sacraméntum in reconciliatiónis humánæ fœ́dere contulísti: da méntibus nostris;", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 3:18-22*\nCaríssimi: Christus semel pro peccátis nostris mórtuus est, justu", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:26-27*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Benedíctus, qui venit in nómine Dóm", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 28:16-20*\nIn illo témpore: Undecim discípuli abiérunt in Galilǽam, ", + "id": "Evangelium" + }, + { + "body": "*Exod 12:14*\nErit vobis hæc dies memoriális, allelúja: et diem festum celebrábitis solémnem Dómino in progénies vestras:", + "id": "Offertorium" + }, + { + "body": "Hóstias, quǽsumus, Dómine, placátus assúme: quas et pro renatórum expiatióne peccáti deférimus, et pro acceleratióne cœl", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 28:18-19*\nData est mihi omnis potéstas in cœlo et in terra, allelúja: eúntes, docéte omnes gentes, baptizántes eos", + "id": "Communio" + }, + { + "body": "Réspice, quǽsumus, Dómine, pópulum tuum: et, quem ætérnis dignátus es renováre mystériis, a temporálibus culpis dignánte", + "id": "Postcommunio" + } + ], + "2024-04-06": [ + { + "body": "*Ps 104:43.*\nEdúxit Dóminus pópulum suum in exsultatióne, allelúja: et eléctos suos in lætítia, allelúja, allelúja.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui festa paschália venerándo égimus, per hæc contíngere ad gáudia ætérna mereám", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 2:1-10*\nCaríssimi: Deponéntes ígitur omnem malítiam, et omnem dolum, et simu", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 117:24*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea. Allelúja.\n*Ps 112:1*\nLaudáte,", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 20:1-9*\nIn illo témpore: Una sábbati, María Magdaléne venit mane", + "id": "Evangelium" + }, + { + "body": "*Ps 7:26-27*\nBenedíctus, qui venit in nómine Dómini: benedíximus vobis de domo Dómini: Deus Dóminus, et illúxit nobis, a", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, Dómine, semper nos per hæc mystéria paschália gratulári: ut contínua nostræ reparatiónis operátio per", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Gal 3:27*\nOmnes, qui in Christo baptizáti estis, Christum induístis, allelúja.", + "id": "Communio" + }, + { + "body": "Redemptiónis nostræ múnere vegetáti, quǽsumus, Dómine: ut, hoc perpétuæ salútis auxílio, fides semper vera profíciat.\nPe", + "id": "Postcommunio" + } + ], + "2024-04-07": [ + { + "body": "*1 Pet 2:2*\nQuasi modo géniti infántes, allelúja: rationábiles, sine dolo lac concupíscite, allelúja, allelúja, allelúja", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui paschália festa perégimus, hæc, te largiénte, móribus et vita teneámus.\nPer D", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 Joannes 5:4-10*\nCaríssimi: Omne, quod natum est ex Deo, vincit mundum: et hæc ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Matt 28:7*\nIn die resurrectiónis meæ, dicit Dóminus, præcédam vos in Galilǽam. Allelúja.\n*Joannes 2", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 20:19-31*\nIn illo témpore: Cum sero esset die illo, una sabbatóru", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAngelus Dómini descéndit de cœlo, et dixit muliéribus: Quem quǽritis, surréxit, sicut dixit, allelúj", + "id": "Offertorium" + }, + { + "body": "Súscipe múnera, Dómine, quǽsumus, exsultántis Ecclésiæ: et, cui causam tanti gáudii præstitísti, perpétuæ fructum concéd", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 20:27*\nMitte manum tuam, et cognósce loca clavórum, allelúja: et noli esse incrédulus, sed fidélis, allelúja, a", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti; et præsens nobi", + "id": "Postcommunio" + } + ], + "2024-04-08": [ + { + "body": "*Ps 44:13, 15 et 16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus add", + "id": "Introitus" + }, + { + "body": "Deus, qui de beátæ Maríæ Vírginis útero Verbum tuum, Angelo nuntiánte, carnem suscípere voluísti: præsta supplícibus tui", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 7:10-15*\nIn diébus illis: Locútus est Dóminus ad Achaz, dicens: Pete tibi signum a Dómino, Deo", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Luc 1:28.*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus. Allelúja.\n*Num 17, ", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:26-38*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitátem", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 et 42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "In méntibus nostris, quǽsumus, Dómine, veræ fídei sacraménta confírma: ut, qui concéptum de Vírgine Deum verum et hómine", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel. (Allelúja.)", + "id": "Communio" + }, + { + "body": "Grátiam tuam, quǽsumus, Dómine, méntibus nostris infúnde: ut qui, Angelo nuntiánte, Christi Fílii tui incarnatiónem cogn", + "id": "Postcommunio" + } + ], + "2024-04-09": [ + { + "body": "*1 Pet 2:2*\nQuasi modo géniti infántes, allelúja: rationábiles, sine dolo lac concupíscite, allelúja, allelúja, allelúja", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui paschália festa perégimus, hæc, te largiénte, móribus et vita teneámus.\nPer D", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 Joannes 5:4-10*\nCaríssimi: Omne, quod natum est ex Deo, vincit mundum: et hæc ", + "id": "Lectio" + }, + { + "body": "\n*Matt 28:7*\nIn die resurrectiónis meæ, dicit Dóminus, præcédam vos in Galilǽam. \n*Joannes 20:26*\nPost dies octo, jánuis", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 20:19-31*\nIn illo témpore: Cum sero esset die illo, una sabbatóru", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAngelus Dómini descéndit de cœlo, et dixit muliéribus: Quem quǽritis, surréxit, sicut dixit, allelúj", + "id": "Offertorium" + }, + { + "body": "Súscipe múnera, Dómine, quǽsumus, exsultántis Ecclésiæ: et, cui causam tanti gáudii præstitísti, perpétuæ fructum concéd", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 20:27*\nMitte manum tuam, et cognósce loca clavórum, allelúja: et noli esse incrédulus, sed fidélis, allelúja, a", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti; et præsens nobi", + "id": "Postcommunio" + } + ], + "2024-04-10": [ + { + "body": "*1 Pet 2:2*\nQuasi modo géniti infántes, allelúja: rationábiles, sine dolo lac concupíscite, allelúja, allelúja, allelúja", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui paschália festa perégimus, hæc, te largiénte, móribus et vita teneámus.\nPer D", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 Joannes 5:4-10*\nCaríssimi: Omne, quod natum est ex Deo, vincit mundum: et hæc ", + "id": "Lectio" + }, + { + "body": "\n*Matt 28:7*\nIn die resurrectiónis meæ, dicit Dóminus, præcédam vos in Galilǽam. \n*Joannes 20:26*\nPost dies octo, jánuis", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 20:19-31*\nIn illo témpore: Cum sero esset die illo, una sabbatóru", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAngelus Dómini descéndit de cœlo, et dixit muliéribus: Quem quǽritis, surréxit, sicut dixit, allelúj", + "id": "Offertorium" + }, + { + "body": "Súscipe múnera, Dómine, quǽsumus, exsultántis Ecclésiæ: et, cui causam tanti gáudii præstitísti, perpétuæ fructum concéd", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 20:27*\nMitte manum tuam, et cognósce loca clavórum, allelúja: et noli esse incrédulus, sed fidélis, allelúja, a", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti; et præsens nobi", + "id": "Postcommunio" + } + ], + "2024-04-11": [ + { + "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", + "id": "Introitus" + }, + { + "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum atque) Summum Pontíficem, perpétua protec", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam\n*Ps 44:17-18.*\nConstítues eo", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + } + ], + "2024-04-12": [ + { + "body": "*1 Pet 2:2*\nQuasi modo géniti infántes, allelúja: rationábiles, sine dolo lac concupíscite, allelúja, allelúja, allelúja", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui paschália festa perégimus, hæc, te largiénte, móribus et vita teneámus.\nPer D", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 Joannes 5:4-10*\nCaríssimi: Omne, quod natum est ex Deo, vincit mundum: et hæc ", + "id": "Lectio" + }, + { + "body": "\n*Matt 28:7*\nIn die resurrectiónis meæ, dicit Dóminus, præcédam vos in Galilǽam. \n*Joannes 20:26*\nPost dies octo, jánuis", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 20:19-31*\nIn illo témpore: Cum sero esset die illo, una sabbatóru", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAngelus Dómini descéndit de cœlo, et dixit muliéribus: Quem quǽritis, surréxit, sicut dixit, allelúj", + "id": "Offertorium" + }, + { + "body": "Súscipe múnera, Dómine, quǽsumus, exsultántis Ecclésiæ: et, cui causam tanti gáudii præstitísti, perpétuæ fructum concéd", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 20:27*\nMitte manum tuam, et cognósce loca clavórum, allelúja: et noli esse incrédulus, sed fidélis, allelúja, a", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti; et præsens nobi", + "id": "Postcommunio" + } + ], + "2024-04-13": [ + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus: et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Hermenegíldum Mártyrem tuum cœlésti regno terrénum postpónere docuísti: da, quǽsumus, nobis; ejus exémp", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 10:10-14*\nJustum dedúxit Dóminus per vias rectas, et ostendit illi regnum Dei, et dedit illi", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:26-33.*\nIn illo témpore: Dixit Jesus turbis: Si quis venit ad me, e", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mystériis, et cleménter exáudi.\nPer ", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nQui vult veníre post me, ábneget semetípsum, et tollat crucem suam, et sequátur me.", + "id": "Communio" + }, + { + "body": "Da, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur officio; ita perpétuo ", + "id": "Postcommunio" + } + ], + "2024-04-14": [ + { + "body": "*Ps 32:5-6*\nMisericórdia Dómini plena est terra, allelúja: verbo Dómini cœli firmáti sunt, allelúja, allelúja.\n*Ps 32:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui in Fílii tui humilitáte jacéntem mundum erexísti: fidélibus tuis perpétuam concéde lætítiam; ut, quos perpétuæ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 2:21-25*\nCaríssimi: Christus passus est pro nobis, vobis relínquens exémpl", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Luc 24:35*\nCognovérunt discípuli Dóminum Jesum in fractióne panis. Allelúja\n*Joannes 10:14*\nEgo sum", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nDeus, Deus meus, ad te de luce vígilo: et in nómine tuo levábo manus meas, allelúja.", + "id": "Offertorium" + }, + { + "body": "Benedictiónem nobis, Dómine, cónferat salutárem sacra semper oblátio: ut, quod agit mystério, virtúte perfíciat.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 10:14*\nEgo sum pastor bonus, allelúja: et cognósco oves meas, et cognóscunt me meæ, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut, vivificatiónis tuæ grátiam consequéntes, in tuo semper múnere gloriémur.\nPe", + "id": "Postcommunio" + } + ], + "2024-04-15": [ + { + "body": "*Ps 32:5-6*\nMisericórdia Dómini plena est terra, allelúja: verbo Dómini cœli firmáti sunt, allelúja, allelúja.\n*Ps 32:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui in Fílii tui humilitáte jacéntem mundum erexísti: fidélibus tuis perpétuam concéde lætítiam; ut, quos perpétuæ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 2:21-25*\nCaríssimi: Christus passus est pro nobis, vobis relínquens exémpl", + "id": "Lectio" + }, + { + "body": "\n*Luc 24:35*\nCognovérunt discípuli Dóminum Jesum in fractióne panis. \n*Joannes 10:14*\nEgo sum pastor bonus: et cognósco ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nDeus, Deus meus, ad te de luce vígilo: et in nómine tuo levábo manus meas, allelúja.", + "id": "Offertorium" + }, + { + "body": "Benedictiónem nobis, Dómine, cónferat salutárem sacra semper oblátio: ut, quod agit mystério, virtúte perfíciat.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 10:14*\nEgo sum pastor bonus, allelúja: et cognósco oves meas, et cognóscunt me meæ, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut, vivificatiónis tuæ grátiam consequéntes, in tuo semper múnere gloriémur.\nPe", + "id": "Postcommunio" + } + ], + "2024-04-16": [ + { + "body": "*Ps 32:5-6*\nMisericórdia Dómini plena est terra, allelúja: verbo Dómini cœli firmáti sunt, allelúja, allelúja.\n*Ps 32:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui in Fílii tui humilitáte jacéntem mundum erexísti: fidélibus tuis perpétuam concéde lætítiam; ut, quos perpétuæ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 2:21-25*\nCaríssimi: Christus passus est pro nobis, vobis relínquens exémpl", + "id": "Lectio" + }, + { + "body": "\n*Luc 24:35*\nCognovérunt discípuli Dóminum Jesum in fractióne panis. \n*Joannes 10:14*\nEgo sum pastor bonus: et cognósco ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nDeus, Deus meus, ad te de luce vígilo: et in nómine tuo levábo manus meas, allelúja.", + "id": "Offertorium" + }, + { + "body": "Benedictiónem nobis, Dómine, cónferat salutárem sacra semper oblátio: ut, quod agit mystério, virtúte perfíciat.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 10:14*\nEgo sum pastor bonus, allelúja: et cognósco oves meas, et cognóscunt me meæ, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut, vivificatiónis tuæ grátiam consequéntes, in tuo semper múnere gloriémur.\nPe", + "id": "Postcommunio" + } + ], + "2024-04-17": [ + { + "body": "*Ps 32:5-6*\nMisericórdia Dómini plena est terra, allelúja: verbo Dómini cœli firmáti sunt, allelúja, allelúja.\n*Ps 32:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui in Fílii tui humilitáte jacéntem mundum erexísti: fidélibus tuis perpétuam concéde lætítiam; ut, quos perpétuæ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Aniceti Papæ et Martyris*\nGregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 2:21-25*\nCaríssimi: Christus passus est pro nobis, vobis relínquens exémpl", + "id": "Lectio" + }, + { + "body": "\n*Luc 24:35*\nCognovérunt discípuli Dóminum Jesum in fractióne panis. \n*Joannes 10:14*\nEgo sum pastor bonus: et cognósco ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nDeus, Deus meus, ad te de luce vígilo: et in nómine tuo levábo manus meas, allelúja.", + "id": "Offertorium" + }, + { + "body": "Benedictiónem nobis, Dómine, cónferat salutárem sacra semper oblátio: ut, quod agit mystério, virtúte perfíciat.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Aniceti Papæ et Martyris*\nOblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et", + "id": "Commemoratio Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 10:14*\nEgo sum pastor bonus, allelúja: et cognósco oves meas, et cognóscunt me meæ, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut, vivificatiónis tuæ grátiam consequéntes, in tuo semper múnere gloriémur.\nPe", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Aniceti Papæ et Martyris*\nRefectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésia", + "id": "Commemoratio Postcommunio" + } + ], + "2024-04-18": [ + { + "body": "*Ps 32:5-6*\nMisericórdia Dómini plena est terra, allelúja: verbo Dómini cœli firmáti sunt, allelúja, allelúja.\n*Ps 32:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui in Fílii tui humilitáte jacéntem mundum erexísti: fidélibus tuis perpétuam concéde lætítiam; ut, quos perpétuæ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 2:21-25*\nCaríssimi: Christus passus est pro nobis, vobis relínquens exémpl", + "id": "Lectio" + }, + { + "body": "\n*Luc 24:35*\nCognovérunt discípuli Dóminum Jesum in fractióne panis. \n*Joannes 10:14*\nEgo sum pastor bonus: et cognósco ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nDeus, Deus meus, ad te de luce vígilo: et in nómine tuo levábo manus meas, allelúja.", + "id": "Offertorium" + }, + { + "body": "Benedictiónem nobis, Dómine, cónferat salutárem sacra semper oblátio: ut, quod agit mystério, virtúte perfíciat.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 10:14*\nEgo sum pastor bonus, allelúja: et cognósco oves meas, et cognóscunt me meæ, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut, vivificatiónis tuæ grátiam consequéntes, in tuo semper múnere gloriémur.\nPe", + "id": "Postcommunio" + } + ], + "2024-04-19": [ + { + "body": "*Ps 32:5-6*\nMisericórdia Dómini plena est terra, allelúja: verbo Dómini cœli firmáti sunt, allelúja, allelúja.\n*Ps 32:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui in Fílii tui humilitáte jacéntem mundum erexísti: fidélibus tuis perpétuam concéde lætítiam; ut, quos perpétuæ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 2:21-25*\nCaríssimi: Christus passus est pro nobis, vobis relínquens exémpl", + "id": "Lectio" + }, + { + "body": "\n*Luc 24:35*\nCognovérunt discípuli Dóminum Jesum in fractióne panis. \n*Joannes 10:14*\nEgo sum pastor bonus: et cognósco ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nDeus, Deus meus, ad te de luce vígilo: et in nómine tuo levábo manus meas, allelúja.", + "id": "Offertorium" + }, + { + "body": "Benedictiónem nobis, Dómine, cónferat salutárem sacra semper oblátio: ut, quod agit mystério, virtúte perfíciat.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 10:14*\nEgo sum pastor bonus, allelúja: et cognósco oves meas, et cognóscunt me meæ, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut, vivificatiónis tuæ grátiam consequéntes, in tuo semper múnere gloriémur.\nPe", + "id": "Postcommunio" + } + ], + "2024-04-20": [ + { + "body": "*Sedulius*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum, allelúja, allelúja", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sir 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, et i", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Num 17:8*\nVirga Jesse flóruit: Virgo Deum et hóminem génuit: pacem Deus réddidit, in se reconcílians", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 19:25-27*\nIn illo témpore: Stabant juxta Crucem Jesu Mater ejus, ", + "id": "Evangelium" + }, + { + "body": "Beáta es, Virgo María, quæ ómnium portásti Creatórem: genuísti qui te fecit, et in ætérnum pérmanes Virgo, allelúja.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2024-04-21": [ + { + "body": "*Ps 65:1-2.*\nJubiláte Deo, omnis terra, allelúja: psalmum dícite nómini ejus, allelúja: date glóriam laudi ejus, allelúj", + "id": "Introitus" + }, + { + "body": "Deus, qui errántibus, ut in viam possint redíre justítiæ, veritátis tuæ lumen osténdis: da cunctis, qui christiána profe", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 2:11-19*\nCaríssimi: Obsecro vos tamquam ádvenas et peregrínos abstinére vos ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 110:9*\nRedemptiónem misit Dóminus pópulo suo. Allelúja.\n*Luc 24:46*\nOportébat pati Christum, et ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:16-22*\nIn illo témpore: Dixit Jesus discípulis suis: Módicum, ", + "id": "Evangelium" + }, + { + "body": "*Ps 145:2*\nLauda, ánima mea, Dóminum: laudábo Dóminum in vita mea: psallam Deo meo, quámdiu ero, allelúja.", + "id": "Offertorium" + }, + { + "body": "His nobis, Dómine, mystériis conferátur, quo, terréna desidéria mitigántes, discámus amáre cœléstia.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 16:16*\nMódicum, et non vidébitis me, allelúja: íterum módicum, et vidébitis me, quia vado ad Patrem, allelúja, ", + "id": "Communio" + }, + { + "body": "Sacraménta quæ súmpsimus, quǽsumus, Dómine: et spirituálibus nos instáurent aliméntis, et corporálibus tueántur auxíliis", + "id": "Postcommunio" + } + ], + "2024-04-22": [ + { + "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", + "id": "Introitus" + }, + { + "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum atque) Summum Pontíficem, perpétua protec", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam\n*Ps 44:17-18.*\nConstítues eo", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + } + ], + "2024-04-23": [ + { + "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Tuam nobis indulgéntiam, quǽsumus, Dómine, beátus Adalbértus Epíscopus et Martyr implóret: ut et delícta nobis cleménter", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebræos.\n*Hebr 5:1-6*\nFratres: Omnis póntifex ex homínibus assúmptus, pro homíni", + "id": "Lectio" + }, + { + "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ. Alleluia.\n*Ps 109:4*\n℣. Tu es sacerdos i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso: vitam pétiit a te, et tribuísti ei, allelúja.", + "id": "Offertorium" + }, + { + "body": "Sacrifícium exhíbitum, quǽsumus, Dómine, benígnus assúme: ut, quod nómini tuo in solemnitáte beáti Adalbérti Mártyris tu", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Refécti, Dómine, munéribus sacris, súpplices te deprecámur: ut indulgéntiam tuam nobis intercéssio beáti Adalbérti Márty", + "id": "Postcommunio" + } + ], + "2024-04-24": [ + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus: et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Fidélem, seráphico spíritus ardóre succénsum, in veræ fídei propagatióne martýrii palma et gloriósis mi", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 10:10-14*\nJustum dedúxit Dóminus per vias rectas, et ostendit illi regnum Dei, et dedit illi", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:34-42*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte arbi", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nQui vult veníre post me, ábneget semetípsum, et tollat crucem suam, et sequátur me.", + "id": "Communio" + }, + { + "body": "Da, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur offício; ita perpétuo ", + "id": "Postcommunio" + } + ], + "2024-04-25": [ + { + "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Marcum Evangelístam tuum evangélicæ prædicatiónis grátia sublimásti: tríbue, quǽsumus; ejus nos semper ", + "id": "Oratio" + }, + { + "body": "*Pro rogationibus*\nPræsta, quǽsumus, omnípotens Deus: ut, qui in afflictióne nostra de tua pietáte confídimus; contra ad", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Ezechiélis Prophétæ.\n*Ezech 1:10-14*\nSimilitúdo vultus quátuor animálium: fácies hóminis, et fácies leónis a dext", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. All", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et alios septuagínta duos:", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: et veritátem tuam in ecclésia sanctórum, allelúja, allelúja.", + "id": "Offertorium" + }, + { + "body": "Beáti Marci Evangelístæ tui sollemnitáte tibi múnera deferéntes, quǽsumus, Dómine: ut, sicut illum prædicátio evangélica", + "id": "Secreta" + }, + { + "body": "*Pro rogationibus*\nHæc múnera, quǽsumus, Dómine, et víncula nostræ pravitátis absólvant, et tuæ nobis misericórdiæ dona ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Tríbuant nobis, quǽsumus, Dómine, contínuum tua sancta præsídium: quo, beáti Marci evangelístæ tui précibus, nos ab ómni", + "id": "Postcommunio" + }, + { + "body": "*Pro rogationibus*\nVota nostra, quǽsumus, Dómine, pio favóre proséquere: ut, dum dona tua in tribulatióne percípimus, de", + "id": "Commemoratio Postcommunio" + } + ], + "2024-04-26": [ + { + "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", + "id": "Introitus" + }, + { + "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum atque) Summum Pontíficem, perpétua protec", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam\n*Ps 44:17-18.*\nConstítues eo", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + } + ], + "2024-04-27": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui ad tuéndam cathólicam fidem beátum Petrum Confessórem tuum virtúte et doctrína roborásti: concéde propítius; u", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Eccli 45:9*\nAmávit eum Dóminus, et ornávit eum: stolam glóriæ índuit eum.\n*Osee 14:6.*\nJustus germi", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Sancti Petri Confessóris tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et tuam", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Petrus Conféssor tuus et Doctor egrégius, quǽsumus, precátor accéd", + "id": "Postcommunio" + } + ], + "2024-04-28": [ + { + "body": "*Ps 97:1; 97:2*\nCantáte Dómino cánticum novum, allelúja: quia mirabília fecit Dóminus, allelúja: ante conspéctum géntium", + "id": "Introitus" + }, + { + "body": "Deus, qui fidélium mentes uníus éfficis voluntátis: da pópulis tuis id amáre quod prǽcipis, id desideráre quod promíttis", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jas 1:17-21*\nCaríssimi: Omne datum óptimum, et omne donum perféctum desúrsum est,", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 117:16.*\nDéxtera Dómini fecit virtútem: déxtera Dómini exaltávit me. Allelúja.\n*Rom 6:9*\nChristu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:5-14*\nIn illo témpore: Dixit Jesus discípulis suis: Vado ad eu", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nJubiláte Deo, univérsa terra, psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", + "id": "Offertorium" + }, + { + "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes effecísti: præsta, quǽsumus;", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joann 16:8*\nCum vénerit Paráclitus Spíritus veritátis, ille árguet mundum de peccáto et de justítia et de judício, alle", + "id": "Communio" + }, + { + "body": "Adésto nobis, Dómine, Deus noster: ut per hæc, quæ fidéliter súmpsimus, et purgémur a vítiis et a perículis ómnibus eruá", + "id": "Postcommunio" + } + ], + "2024-04-29": [ + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus: et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut beáti Petri Mártyris tui fidem cóngrua devotióne sectémur; qui, pro ejúsdem fídei ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*2 Tim 2:8-10; 3:10-12*\nCaríssime: Memor esto, Dóminum Jesum Christum", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:34-42*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte arbi", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", + "id": "Offertorium" + }, + { + "body": "Preces, quas tibi, Dómine, offérimus, intercedénte beáto Petro Mártyre tuo, cleménter inténde: et propugnatóres fídei su", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nQui vult veníre post me, ábneget semetípsum, et tollat crucem suam, et sequátur me.", + "id": "Communio" + }, + { + "body": "Fidéles tuos, Dómine, custódiant sacraménta, quæ súmpsimus: et, intercedénte beáto Petro Mártyre tuo, contra omnes advér", + "id": "Postcommunio" + } + ], + "2024-04-30": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ N. Vírginis tuæ festivitáte gaudémus; ita piæ devotiónis erudiámu", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "Allelúia, allelúja\n*Ps 44:15-16*\nAdducéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia. Allelúja.\n*", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2024-05-01": [ + { + "body": "*Sap. 10:17*\nSapiéntia réddidit justis mercédem labórum suórum, et dedúxit illos in via mirábili, et fuit illis in velam", + "id": "Introitus" + }, + { + "body": "Rerum cónditor Deus, qui legem labóris humáno géneri statuísti: concéde propítius; ut, sancti Joseph exémplo et patrocín", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses.\n*Col. 3:14-15, 17, 23-24*\nFratres: Caritátem habéte, quod est víncu", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. De quacúmque tribulatióne clamáverint ad me, exáudiam eos, et ero protéctor eórum semper. Allelúj", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 13:54-58*\nIn illo témpore: Véniens Jesus in pátriam suam, docébat ", + "id": "Evangelium" + }, + { + "body": "*Ps 89:17*\nBónitas Dómini Dei nostri sit super nos, et opus mánuum nostrárum secúnda nobis, et opus mánuum nostrárum sec", + "id": "Offertorium" + }, + { + "body": "Quas tibi, Dómine, de opéribus mánuum nostrárum offérimus hóstias, sancti Joseph interpósito suffrágio, pignus fácias no", + "id": "Secreta" + }, + { + "body": "*de S. Joseph*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pat", + "id": "Prefatio" + }, + { + "body": "*Matt 13:54-55*\nUnde huic sapiéntia hæc et virtútes? Nonne hic est fabri fílius? Nonne mater ejus dícitur María? Allelúj", + "id": "Communio" + }, + { + "body": "Hæc sancta quæ súmpsimus, Dómine, per intercessiónem beáti Joseph; et operatiónem nostram cómpleant, et prǽmia confírmen", + "id": "Postcommunio" + } + ], + "2024-05-02": [ + { + "body": "*Eccli 15:5.*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ", + "id": "Introitus" + }, + { + "body": "Exáudi, quǽsumus, Dómine, preces nostras, quas in beáti Athanásii Confessóris tui atque Pontíficis solemnitáte deférimus", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*2 Cor 4:5-14.*\nFratres: Non nosmetípsos prædicámus, sed Jesum Chris", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 109:4*\nTu es sacérdos in ætérnum, secúndum órdinem Melchísedech. Allelúja\n*Jas 1:12*\nBeátus vir,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 10:23-28*\nIn illo témpore: Dixit Jesus discípulis suis: Cum perseq", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti Athanásii Confessóris tui atque Pontíficis, quǽsumus, Dómine, ánnua solémnitas pietáti tuæ nos reddat accéptos: u", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 10:27*\nQuod dico vobis in ténebris, dícite in lúmine, dicit Dóminus: et quod in aure audítis, prædicáte super tect", + "id": "Communio" + }, + { + "body": "Deus, fidélium remunerátor animárum: præsta; ut beáti Athanásii Confessóris tui atque Pontíficis, cujus venerándam celeb", + "id": "Postcommunio" + } + ], + "2024-05-03": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Maríæ Vírginis: de cujus sollemnitáte gaudent Angeli", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, qui ad defensiónem pópuli nostri, in beatíssima Vírgine María mirábile nobis auxílium con", + "id": "Oratio" + }, + { + "body": "Léctio libri Judith.\n*Judith 13:22; 13:23-25*\nBenedíxit te Dóminus in virtúte sua, quia per te ad níhilum redégit inimíc", + "id": "Lectio" + }, + { + "body": "Allelúia, allelúia.\n*Cant 6:3; 6:9*\n℣. Tota formósa et suávis es, fília Sion, pulchra ut luna, elécta ut sol, terríbilis", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 19:25-27*\nIn illo témpore: Stabant juxta crucem Jesu mater ejus, e", + "id": "Evangelium" + }, + { + "body": "*Jer 18:20*\nRecordáre, Virgo, Mater Dei, dum stéteris in conspéctu Dómini, ut loquáris pro nobis bona, et ut avértat ind", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, munus quod tibi offérimus, memóriam recoléntes piíssimæ Vírginis Maríæ, quæ consolátur nos in omni trib", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Regína mundi digníssima, María Virgo perpétua intercéde pro nostra pace et salúte, quæ genuísti Christum Dóminum, Salvat", + "id": "Communio" + }, + { + "body": "Deus, qui nobis beátam Vírginem Maríam singulárem Patrónam dedísti: concéde propítius; ut, sacris donis tuis satiáti, pr", + "id": "Postcommunio" + } + ], + "2024-05-04": [ + { + "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Deus, qui nos beáti Floriáni Mártyris solemnitáte lætíficas: concéde propítius; ut, cuius gloriósum triúmphum venerámur ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Monicæ Viduæ*\nDeus, mæréntium consolátor et in te sperántium salus, qui beátæ Mónicæ pias lácrimas in c", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 5:1-5*\nStabunt justi in magna constántia advérsus eos, qui se angustiavérunt et qui abstulér", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 15:1-7*\nIn illo témpore: Dixit Jesus discípulis suis: Ego sum vi", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: et veritátem tuam in ecclésia sanctórum, allelúja, allelúja.", + "id": "Offertorium" + }, + { + "body": "Hanc oblatiónis hóstiam, quǽsumus, omnípotens Deus, beáti Floriáni Mártyris tui digna comméndet orátio: qui sancto carit", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Monicæ Viduæ*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se m", + "id": "Commemoratio Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11.*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Sancta nos, quǽsumus, Dómine, sacraménti cæléstis participátio: et ab hóstium cállido tueátur incúrsu; et sancto Florián", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Monicæ Viduæ*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne no", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-05": [ + { + "body": "*Isa 48:20*\nVocem jucunditátis annuntiáte, et audiátur, allelúja: annuntiáte usque ad extrémum terræ: liberávit Dóminus ", + "id": "Introitus" + }, + { + "body": "Deus, a quo bona cuncta procédunt, largíre supplícibus tuis: ut cogitémus, te inspiránte, quæ recta sunt; et, te guberná", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jas 1:22-27*\nCaríssimi: Estóte factóres verbi, et non auditóres tantum: falléntes", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. Surréxit Christus, et illúxit nobis, quos rédemit sánguine suo. Allelúja.\n*Joannes 16:28*\nExívi a", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 16:23-30*\nIn illo témpore: Dixit Jesus discípulis suis: Amen, amen,", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9; 65:20*\nBenedícite, gentes, Dóminum, Deum nostrum, et obaudíte vocem laudis ejus: qui pósuit ánimam meam ad v", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, fidélium preces cum oblatiónibus hostiárum: ut, per hæc piæ devotiónis offícia, ad cœléstem glóriam tra", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Ps 95:2*\nCantáte Dómino, allelúja: cantáte Dómino et benedícite nomen ejus: bene nuntiáte de die in diem salutáre ejus,", + "id": "Communio" + }, + { + "body": "Tríbue nobis, Dómine, cæléstis mensæ virtúte satiátis: et desideráre, quæ recta sunt, et desideráta percípere.\nPer Domin", + "id": "Postcommunio" + } + ], + "2024-05-06": [ + { + "body": "*Acta 1:11*\nViri Galilǽi, quid admirámini aspiciéntes in cœlum? allelúja: quemádmodum vidístis eum ascendéntem in cœlum,", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui hodiérna die Unigénitum tuum, Redemptórem nostrum, ad cœlos ascendísse crédi", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostólorum\n*Act 1:1-11*\nPrimum quidem sermónem feci de ómnibus, o Theóphile, quæ cœpit Jesus facere et do", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ. \n*Ps 67:18-19*\n℣. Dóminus in Sina in sancto, ascéndens", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 16:14-20*\nIn illo témpore: Recumbéntibus úndecim discípulis, appárui", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ pro Fílii tui gloriósa Ascensióne deférimus: et concéde propítius; ut a præséntibus perícul", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nPsállite Dómino, qui ascéndit super cœlos cœlórum ad Oriéntem, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens et miséricors Deus: ut, quæ visibílibus mystériis suménda percépimus, invisíbili cons", + "id": "Postcommunio" + } + ], + "2024-05-07": [ + { + "body": "*Acta 1:11*\nViri Galilǽi, quid admirámini aspiciéntes in cœlum? allelúja: quemádmodum vidístis eum ascendéntem in cœlum,", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui hodiérna die Unigénitum tuum, Redemptórem nostrum, ad cœlos ascendísse crédi", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostólorum\n*Act 1:1-11*\nPrimum quidem sermónem feci de ómnibus, o Theóphile, quæ cœpit Jesus facere et do", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ. \n*Ps 67:18-19*\n℣. Dóminus in Sina in sancto, ascéndens", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 16:14-20*\nIn illo témpore: Recumbéntibus úndecim discípulis, appárui", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ pro Fílii tui gloriósa Ascensióne deférimus: et concéde propítius; ut a præséntibus perícul", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nPsállite Dómino, qui ascéndit super cœlos cœlórum ad Oriéntem, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens et miséricors Deus: ut, quæ visibílibus mystériis suménda percépimus, invisíbili cons", + "id": "Postcommunio" + } + ], + "2024-05-08": [ + { + "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Deus, pro cuius honóre gloriósus Póntifex Stanisláus gládiis impiórum occúbuit: præsta, quǽsumus; ut omnes, qui eius imp", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebræos.\n*Hebr 5:1-6*\nFratres: Omnis póntifex ex homínibus assúmptus, pro homíni", + "id": "Lectio" + }, + { + "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ. Alleluia.\n*Ps 109:4*\n℣. Tu es sacerdos i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso: vitam pétiit a te, et tribuísti ei, allelúja.", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto Stanisláo Mártyre tuo atque Pontífice, per éadem nos plac", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto Stanisláo Mártyre tuo atque Pontífice, cæléstis reméd", + "id": "Postcommunio" + } + ], + "2024-05-09": [ + { + "body": "*Acta 1:11*\nViri Galilǽi, quid admirámini aspiciéntes in cœlum? allelúja: quemádmodum vidístis eum ascendéntem in cœlum,", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui hodiérna die Unigénitum tuum, Redemptórem nostrum, ad cœlos ascendísse crédi", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostólorum\n*Act 1:1-11*\nPrimum quidem sermónem feci de ómnibus, o Theóphile, quæ cœpit Jesus facere et do", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ. Allelúja.\n*Ps 67:18-19*\n℣. Dóminus ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 16:14-20*\nIn illo témpore: Recumbéntibus úndecim discípulis, appárui", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ pro Fílii tui gloriósa Ascensióne deférimus: et concéde propítius; ut a præséntibus perícul", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nPsállite Dómino, qui ascéndit super cœlos cœlórum ad Oriéntem, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens et miséricors Deus: ut, quæ visibílibus mystériis suménda percépimus, invisíbili cons", + "id": "Postcommunio" + } + ], + "2024-05-10": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Sancti Antoníni, Dómine, Confessóris tui atque Pontíficis méritis adjuvémur: ut, sicut te in illo mirábilem prædicámus, ", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Gordiano et Epimacho Martyribus*\nDa, quǽsumus, omnípotens Deus: ut, qui beatórum Mártyrum tuórum Gordiáni et Ep", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Ps 109:4*\nTu es sacérdos in ætérnum, secúndum órdinem Melchísedech. Allelúja.\n℣. Hic est sacérdos, q", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos úbique lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Gordiano et Epimacho Martyribus*\nHóstias tibi, Dómine, beatórum Martyrum tuórum Gordiáni et Epímachi dicátas mé", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Antoníno Confessóre", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Gordiano et Epimacho Martyribus*\nQuǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedéntib", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-11": [ + { + "body": "*Neh 9:27*\nClamavérunt ad te, Dómine, in témpore afflictiónis suæ, et tu de cœlo exaudísti eos, allelúja, allelúja.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Deus, qui nos ánnua Apostolórum tuórum Philíppi et Jacóbi sollemnitáte lætíficas: præsta, quǽsumus: ut, quorum gaudémus ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 5:1-5.*\nStabunt justi in magna constántia advérsus eos, qui se angustiavérunt et qui abstulé", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: etenim veritátem tuam in ecclésia sanctórum. All", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 14:1-13*\nIn illo témpore: Dixit Jesus discípulis suis: Non turbát", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: et veritátem tuam in ecclésia sanctórum, allelúja, allelúja.", + "id": "Offertorium" + }, + { + "body": "Múnera, Dómine, quæ pro Apostolórum tuórum Philippi et Jacóbi sollemnitáte deférimus, propítius súscipe: et mala ómnia, ", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Joannes 14:9; 14:10*\nTanto témpore vobíscum sum, et non cognovístis me? Philíppe, qui videt me, videt et Patrem meum, a", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, salutáribus repléti mystériis: ut, quorum sollémnia celebrámus, eórum oratiónibus adjuvémur.\nPer Domin", + "id": "Postcommunio" + } + ], + "2024-05-12": [ + { + "body": "*Ps 26:7; 26:8; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te, allelúja: tibi dixit cor meum, quæsívi vultum tuum,", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus: fac nos tibi semper et devótam gérere voluntátem; et majestáti tuæ sincéro corde servíre.\nPe", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 4:7-11*\nCaríssimi: Estóte prudéntes et vigiláte in oratiónibus. Ante ómnia a", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 46:9*\n℣. Regnávit Dóminus super omnes gentes: Deus sedet super sedem sanctam suam. Allelúja.\n*Jo", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 15:26-27; 16:1-4*\nIn illo témpore: Dixit Jesus discípulis suis: C", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6.*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", + "id": "Offertorium" + }, + { + "body": "Sacrifícia nos, Dómine, immaculáta puríficent: et méntibus nostris supérnæ grátiæ dent vigórem.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Joannes 17:12-13; 17:15*\nPater, cum essem cum eis, ego servábam eos, quos dedísti mihi, allelúja: nunc autem ad te véni", + "id": "Communio" + }, + { + "body": "Repléti, Dómine, munéribus sacris: da, quǽsumus; ut in gratiárum semper actióne maneámus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-05-13": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui ad errórum insídias repelléndas et apostólicæ Sedis jura propugnánda, beátum Robértum Pontíficem tuum atque Do", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 7:7-14*\nOptávi, et datus est mihi sensus: et invocávi, et venit in me spíritus sapiéntiæ: et", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. Qui docti fúerint fulgébunt quasi splendor firmaménti. Allelúja.\n℣. Qui ad justítiam erúdiunt mul", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 72:28*\nMihi autem adhærére Deo bonum est, pónere in Dómino Deo spem meam: ut annúntiem omnes prædicatiónes tuas in p", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, in odórem suavitátis offérimus: et præsta; ut, beáti Robérti mónitis et exémplis edócti, per sémit", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Matt 5:14; 5:16*\nVos estis lux mundi: sic lúceat lux vestra coram homínibus, ut vídeant ópera vestra bona, et glorífice", + "id": "Communio" + }, + { + "body": "Sacraménta, quæ súmpsimus, Dómine Deus noster, in nobis fóveant caritátis ardórem: quo beátus Robértus veheménter accéns", + "id": "Postcommunio" + } + ], + "2024-05-14": [ + { + "body": "*Ps 26:7; 26:8; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te, allelúja: tibi dixit cor meum, quæsívi vultum tuum,", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus: fac nos tibi semper et devótam gérere voluntátem; et majestáti tuæ sincéro corde servíre.\nPe", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Bonifacii Martyris*\nDa, quǽsumus, omnípotens Deus: ut, qui beáti Bonifátii Mártyris tui sollémnia cólim", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 4:7-11*\nCaríssimi: Estóte prudéntes et vigiláte in oratiónibus. Ante ómnia a", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:9*\n℣. Regnávit Dóminus super omnes gentes: Deus sedet super sedem sanctam suam. \n*Joannes 14:18*\n℣. Non vos relí", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 15:26-27; 16:1-4*\nIn illo témpore: Dixit Jesus discípulis suis: C", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6.*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", + "id": "Offertorium" + }, + { + "body": "Sacrifícia nos, Dómine, immaculáta puríficent: et méntibus nostris supérnæ grátiæ dent vigórem.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Bonifacii Martyris*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Joannes 17:12-13; 17:15*\nPater, cum essem cum eis, ego servábam eos, quos dedísti mihi, allelúja: nunc autem ad te véni", + "id": "Communio" + }, + { + "body": "Repléti, Dómine, munéribus sacris: da, quǽsumus; ut in gratiárum semper actióne maneámus.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Bonifacii Martyris*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exsé", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-15": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus, allelúja,", + "id": "Introitus" + }, + { + "body": "Deus, qui, ad christiánam páuperum eruditiónem et ad juvéntam in via veritátis firmándam, sanctum Joánnem Baptístam Conf", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11*\nBeátus vir, qui inventus est sine mácula, et qui post aurum non ábiit, nec speráv", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia\n*Jas 1:12.*\nBeátus vir, qui suffert tentatiónem: quóniam, cum probátus fúerit, accípiet corónam vitæ.", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-5*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes:", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVeritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus, allelúja.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cælésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + } + ], + "2024-05-16": [ + { + "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Deus, qui in confessióne veræ fídei beátum Andréam, multíplici suppliciórum génere excruciátum, illústri martýrio coroná", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Ubaldi Episcopi Confessoris*\nAuxílium tuum nobis, Dómine, quǽsumus, placátus impénde: et, intercessióne", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timotheum\n*2 Tim 2:8-10; 3:10-12.*\nCaríssime: Memor esto, Dóminum Jesum Christum", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 15:1-7*\nIn illo témpore: Dixit Jesus discípulis suis: Ego sum vi", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: et veritátem tuam in ecclésia sanctórum, allelúja, allelúja.", + "id": "Offertorium" + }, + { + "body": "Offérimus tibi, Dómine, hóstiam immaculátam unigéniti Fílii tui, eníxe deprecántes, ut, quæ pro salúte nostra humíliter ", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Ubaldi Episcopi Confessoris*\nSancti tui, quǽsumus, Dómine, nos ubíque lætíficent: ut, dum eórum mérita ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11.*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Deam, hæc sancta, Dómine, in honórem beáti Andréæ Mártyris tui de altári libávimus: concéde propítius; ut, cuius exémpli", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Ubaldi Episcopi Confessoris*\nPræsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhi", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-17": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Paschálem Confessórem tuum mirífica erga Córporis et Sánguinis tui sacra mystéria dilectióne decorásti:", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia\n*Jas 1:12.*\nBeátus vir, qui suffert tentatiónem: quóniam, cum probátus fúerit, accípiet corónam vitæ.", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi. Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + } + ], + "2024-05-18": [ + { + "body": "*Ezek 36:23; 36:24; 36:25-26*\nCum sanctificátus fúero in vobis, congregábo vos de univérsis terris: et effúndam super vo", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut claritatis tuæ super nos splendor effúlgeat; et lux tuæ lucis corda eórum, qui per", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolorum.\n*Acts 19:1-8*\nIn diébus illis: Factum est, cum Apóllo esset Corínthi, ut Paulus, peragrátis s", + "id": "Lectio" + }, + { + "body": "Allelúja\n*Ps 106:1*\n℣. Confitémini Dómino, quóniam bonus: quóniam in sǽculum misericordia ejus.\n*Ps 116:1-2*\nLaudáte Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 14:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Si dilíg", + "id": "Evangelium" + }, + { + "body": "*Ps 103:30-31*\nEmítte Spíritum tuum, et creabúntur, et renovábis fáciem terræ: sit glória Dómini in sǽcula, allelúja.", + "id": "Offertorium" + }, + { + "body": "Múnera, quǽsumus, Dómine, obláta sanctífica: et corda nostra Sancti Spíritus illustratióne emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 7:37-39*\nUltimo festivitátis die dicébat Jesus: Qui in me credit, flúmina de ventre ejus fluent aquæ vivæ: hoc ", + "id": "Communio" + }, + { + "body": "Sancti Spíritus, Dómine, corda nostra mundet infúsio: et sui roris íntima aspersióne fecúndet.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-05-19": [ + { + "body": "*Sap 1:7.*\nSpíritus Dómini replévit orbem terrárum, allelúja: et hoc quod cóntinet ómnia, sciéntiam habet vocis, allelúj", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die corda fidélium Sancti Spíritus illustratióne docuísti: da nobis in eódem Spíritu recta sápere; et", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 2:1-11*\nCum compleréntur dies Pentecóstes, erant omnes discípuli pariter in eódem loco: ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 103:30*\nEmítte Spíritum tuum, et creabúntur, et renovábis fáciem terræ. Allelúja. (Hic genuflect", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 14:23-31*\nIn illo témpore: Dixit Jesus discípulis suis: Si quis d", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nConfírma hoc, Deus, quod operátus es in nobis: a templo tuo, quod est in Jerúsalem, tibi ófferent reges mú", + "id": "Offertorium" + }, + { + "body": "Múnera, quǽsumus, Dómine, obláta sanctífica: et corda nostra Sancti Spíritus illustratióne emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Act 2:2; 2:4*\nFactus est repénte de cœlo sonus, tamquam adveniéntis spíritus veheméntis, ubi erant sedéntes, allelúja: ", + "id": "Communio" + }, + { + "body": "Sancti Spíritus, Dómine, corda nostra mundet infúsio: et sui roris íntima aspersióne fecúndet.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-05-20": [ + { + "body": "*Ps 80:17*\nCibávit eos ex ádipe fruménti, allelúja: et de petra, melle saturávit eos, allelúja, allelúja.\n*Ps 80:2*\nExsu", + "id": "Introitus" + }, + { + "body": "Deus, qui Apóstolis tuis Sanctum dedísti Spíritum: concéde plebi tuæ piæ petitiónis efféctum; ut, quibus dedísti fidem, ", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 10:34; 10:42-48*\nIn diébus illis: Apériens Petrus os suum, dixit: Viri fratres, nobis pr", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Acts 2:4*\nLoquebántur váriis linguis Apóstoli magnália Dei. Allelúja. (Hic genuflectitur)\n℣. Veni, ", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 3:16-21*\nIn illo témpore: Dixit Jesus Nicodémo: Sic Deus diléxit ", + "id": "Evangelium" + }, + { + "body": "*Ps 17:14 et 16*\nIntónuit de cœlo Dóminus, et Altíssimus dedit vocem suam: et apparuérunt fontes aquárum, allelúja.", + "id": "Offertorium" + }, + { + "body": "Propítius, Dómine, quǽsumus, hæc dona sanctífica: et, hóstiæ spiritális oblatióne suscépta, nosmetípsos tibi pérfice mun", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 14:26*\nSpíritus Sanctus docébit vos, allelúja: quæcúmque díxero vobis, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Adésto, quǽsumus, Dómine, pópulo tuo: et, quem mystériis cœléstibus imbuísti, ab hóstium furóre defénde.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-05-21": [ + { + "body": "*Esdr 2:36 2:37*\nAccípite jucunditátem glóriæ vestræ, allelúja: grátias agéntes Deo, allelúja: qui vos ad cœléstia regna", + "id": "Introitus" + }, + { + "body": "Adsit nobis, quǽsumus, Dómine, virtus Spíritus Sancti: quæ et corda nostra cleménter expúrget, et ab ómnibus tueátur adv", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 8:14-17*\nIn diébus illis: Cum audíssent Apóstoli, qui erant Jerosólymis, quod recepísset", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 14:26*\nSpíritus Sanctus docébit vos, quæcúmque díxero vobis. Allelúja. (Hic genuflectitur)\n℣. Ve", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 10:1-10*\nIn illo témpore: Dixit Jesus pharisǽis: Amen, amen, dico", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nPortas cœli aperuit Dóminus: et pluit illis manna, ut éderent: panem cœli dedit eis, panem Angelórum mandu", + "id": "Offertorium" + }, + { + "body": "Puríficet nos, quǽsumus. Dómine, múneris præséntis oblátio: et dignos sacra participatióne effíciat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 15:26; 16:14*\nSpíritus qui a Patre procédit, allelúja: ille me clarificábit, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Mentes nostras, quǽsumus, Dómine, Spíritus Sanctus divínis réparet sacraméntis: quia ipse est remíssio ómnium peccatórum", + "id": "Postcommunio" + } + ], + "2024-05-22": [ + { + "body": "*Ps 67:8 67:9*\nDeus, dum egrederéris coram pópulo tuo, iter fáciens eis, hábitans in illis, allelúja: terra mota est, cœ", + "id": "Introitus" + }, + { + "body": "Mentes nostras, quǽsumus, Dómine, Paráclitus, qui a te procédit, illúminet: et indúcat in omnem, sicut tuus promísit Fíl", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Act 2:14-21.*\nIn diébus illis: Stans Petrus cum úndecim, levávit vocem suam, et locútus est e", + "id": "LectioL1" + }, + { + "body": "Alleluia.\n*Ps 32:6*\nVerbo Dómini cœli firmáti sunt, et Spíritu oris ejus omnis virtus eórum.\n\n##Gloria\nGlória in excélsi", + "id": "GradualeL1" + }, + { + "body": "Præsta, quǽsumus, omnípotens et miséricors Deus: ut Spíritus Sanctus advéniens, templum nos glóriæ suæ dignánter inhabit", + "id": "OratioL1" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 5:12-16*\nIn diébus illis: Per manus autem Apostolórum fiébant signa et prodígia multa in", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. (Hic genuflectitur) Veni, Sancte Spíritus, reple tuórum corda fidélium: et tui amóris in eis igne", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 6:44-52*\nIn illo témpore: Dixit Jesus turbis Judæórum: Nemo potes", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accipe, quǽsumus, Dómine, munus oblátum: et dignánter operáre; ut, quod mystériis ágimus, piis efféctibus celebrámus.\nPe", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 14:27*\nPacem relínquo vobis, allelúja: pacem meam do vobis, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Suméntes, Dómine, cœléstia sacraménta, quǽsumus cleméntiam tuam: ut quod temporáliter gérimus ætérnis gáudiis consequámu", + "id": "Postcommunio" + } + ], + "2024-05-23": [ + { + "body": "*Sap 1:7*\nSpíritus Dómini replévit orbem terrárum, allelúja: et hoc quod cóntinet ómnia, sciéntiam habet vocis, allelúja", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die corda fidélium Sancti Spíritus illustratióne docuísti: da nobis in eódem Spíritu recta sápere; et", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 8:5-8*\nIn diébus illis: Philíppus descéndens in civitátem Samaríæ, prædicábat illis Chri", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 103:30*\n℣. Emítte Spíritum tuum, et creabúntur, et renovábis fáciem terræ. Allelúja. (Hic genuf", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 9:1-6*\nIn illo témpore: Convocátis Jesus duódecim Apóstolis, dedit illi", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nConfírma hoc, Deus, quod operátus es in nobis: a templo tuo, quod est in Jerúsalem, tibi ófferent reges mú", + "id": "Offertorium" + }, + { + "body": "Múnera, quǽsumus, Dómine, oblata sanctífica: et corda nostra Sancti Spíritus illustratióne emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Acts 2:2 2:4*\nFactus est repénte de cœlo sonus tamquam adveniéntis spíritus veheméntis, ubi erant sedéntes, allelúja: e", + "id": "Communio" + }, + { + "body": "Sancti Spíritus, Dómine, corda nostra mundet infúsio: et sui roris íntima aspersióne fecúndet.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-05-24": [ + { + "body": "*Ps 70:8 70:23*\nRepleátur os meum laude tua, allelúja: ut possim cantáre, allelúja: gaudébunt lábia mea, dum cantávero t", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, Ecclésiæ tuæ, miséricors Deus: ut, Sancto Spíritu congregáta, hostíli nullátenus incursióne turbétur.\nPer ", + "id": "Oratio" + }, + { + "body": "Léctio Joélis Prophétæ\n*Joël 2:23-24; 2:26-27*\nHæc dicit Dóminus Deus: Exsultáte, fílii Sion, et lætámini in Dómino, Deo", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 12:1*\nO quam bonus et suávis est, Dómine, Spíritus tuus in nobis! Allelúja. (Hic genuflectitur)\n", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 5:17-26*\nIn illo témpore: Factum est in una diérum, et Jesus sedébat do", + "id": "Evangelium" + }, + { + "body": "*Sap 145:2*\nLauda, ánima mea, Dóminum: laudábo Dóminum in vita mea: psallam Deo meo, quámdiu ero, allelúja.", + "id": "Offertorium" + }, + { + "body": "Sacrifícia, Dómine, tuis obláta conspéctibus, ignis ille divínus absúmat, qui discipulórum Christi, Fílii tui, per Spíri", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 14:18*\nNon vos relínquam órphanos: véniam ad vos íterum, allelúja: et gaudébit cor vestrum, allelúja.", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, sacri dona mystérii: humíliter deprecántes; ut, quæ in tui commemoratiónem nos fácere præcepísti, in ", + "id": "Postcommunio" + } + ], + "2024-05-25": [ + { + "body": "*Rom 5:5.*\nCáritas Dei diffúsa est in córdibus nostris, allelúja: per inhabitántem Spíritum ejus in nobis, allelúja, all", + "id": "Introitus" + }, + { + "body": "Méntibus nostris, quǽsumus, Dómine, Spíritum Sanctum benígnus infúnde: cujus et sapiéntia cónditi sumus, et providéntia ", + "id": "Oratio" + }, + { + "body": "Léctio Joélis Prophétæ\n*Joel 2:28-32*\nHæc dicit Dóminus Deus: Effúndam Spíritum meum super omnem carnem: et prophetábunt", + "id": "LectioL1" + }, + { + "body": "Allelúja.\n*Joannes 6:64*\nSpíritus est, qui vivíficat: caro autem non prodest quidquam.", + "id": "GradualeL1" + }, + { + "body": "Illo nos igne, quǽsumus, Dómine, Spíritus Sanctus inflámmet: quem Dóminus noster Jesus Christus misit in terram, et vólu", + "id": "OratioL1" + }, + { + "body": "Léctio libri Levítici\n*Lev 23:9-11; 23:15-17; 23:21*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: Lóquere fíl", + "id": "LectioL2" + }, + { + "body": "Allelúja.\n*Job 26:13*\nSpíritus ejus ornávit cœlos.", + "id": "GradualeL2" + }, + { + "body": "Deus, qui, ad animárum medélam, jejúnii devotióne castigári córpora præcepísti: concéde nobis propítius; et mente et cór", + "id": "OratioL2" + }, + { + "body": "Léctio libri Deuteronómii\n*Deut 26:1-3; 7-11.*\nIn diébus illis: Dixit Moyses fíliis Israël: Audi, Israël, quæ ego præcíp", + "id": "LectioL3" + }, + { + "body": "Allelúja.\n*Acts 2:1*\nCum compleréntur dies Pentecóstes, erant omnes páriter sedéntes.", + "id": "GradualeL3" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, salutáribus jejúniis erudíti, ab ómnibus étiam vítiis abstinéntes, propitiatiónem", + "id": "OratioL3" + }, + { + "body": "Léctio libri Levítici\n*Lev 26:3-12*\nIn diébus illis: Dixit Dóminus ad Móysen: Lóquere fíliis Israël, et dices ad eos: Si", + "id": "LectioL4" + }, + { + "body": "Allelúja.\n℣. (Hic genuflectitur) Veni, Sancte Spíritus, reple tuórum corda fidélium: et tui amóris in eis ignem accénde.", + "id": "GradualeL4" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: sic nos ab épulis carnálibus abstinére; ut a vítiis irruéntibus páriter jejunémus.\nPe", + "id": "OratioL4" + }, + { + "body": "Léctio Daniélis Prophétæ\n*Dan 3:47-51*\nIn diébus illis: Angelus Dómini descéndit cum Azaría et sóciis ejus in fornácem: ", + "id": "LectioL5" + }, + { + "body": "Allelúja.\n*Dan 3:52*\nBenedíctus es, Dómine, Deus patrum nostrórum, et laudábilis in sǽcula.", + "id": "GradualeL5" + }, + { + "body": "Deus, qui tribus púeris mitigásti flammas ígnium: concéde propítius; ut nos fámulos tuos non exúrat flamma vitiórum.\nPer", + "id": "OratioL5" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 5:1-5.*\nFratres: Justificáti ex fide, pacem habeámus ad Deum per Dó", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nLaudáte Dóminum, omnes gentes: et collaudáte eum, omnes pópuli.\n℣. Quóniam confirmáta est super nos miseric", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 4:38-44*\nIn illo témpore: Surgens Jesus de synagóga, introívit in domum", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3.*\nDómine, Deus salútis meæ, in die clamávi et nocte coram te: intret orátio mea in conspéctu tuo, Dómine, all", + "id": "Offertorium" + }, + { + "body": "Ut accépta tibi sint, Dómine, nostra jejúnia: præsta nobis, quǽsumus; hujus múnere sacraménti purificátum tibi pectus of", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 3:8*\nSpíritus, ubi vult, spirat: et vocem ejus audis, allelúja, allelúja: sed nescis, unde véniat aut quo vadat", + "id": "Communio" + }, + { + "body": "Prǽbeant nobis, Dómine, divínum tua sancta fervórem: quo eórum páriter et actu delectémur et fructu.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-05-26": [ + { + "body": "*Tob 12:6*\nBenedícta sit sancta Trínitas atque indivísa Unitas: confitébimur ei, quia fecit nobíscum misericórdiam suam.", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui dedísti fámulis tuis in confessióne veræ fídei, ætérnæ Trinitátis glóriam agnóscere, et ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 11:33-36.*\nO altitúdo divitiárum sapiéntiæ et sciéntiæ Dei: quam in", + "id": "Lectio" + }, + { + "body": "*Dan 3:55-56*\nBenedíctus es, Dómine, qui intuéris abýssos, et sedes super Chérubim,\n℣. Benedíctus es, Dómine, in firmamé", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 28:18-20*\nIn illo témpore: Dixit Jesus discípulis suis: Data est mi", + "id": "Evangelium" + }, + { + "body": "*Tob 12:6.*\nBenedíctus sit Deus Pater, unigenitúsque Dei Fílius, Sanctus quoque Spíritus: quia fecit nobíscum misericórd", + "id": "Offertorium" + }, + { + "body": "Sanctífica, quǽsumus, Dómine, Deus noster, per tui sancti nóminis invocatiónem, hujus oblatiónis hóstiam: et per eam nos", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Tob 12:6*\nBenedícimus Deum cœli et coram ómnibus vivéntibus confitébimur ei: quia fecit nobíscum misericórdiam suam.", + "id": "Communio" + }, + { + "body": "Profíciat nobis ad salútem córporis et ánimæ, Dómine, Deus noster, hujus sacraménti suscéptio: et sempitérnæ sanctæ Trin", + "id": "Postcommunio" + } + ], + "2024-05-27": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiam tuam beáti Bedæ Confessóris tui atque Doctóris eruditióne claríficas: concéde propítius fámulis tuis", + "id": "Oratio" + }, + { + "body": "*Pro S. Joanne*\nDeus, qui nos beáti N. Mártyris tui atque Pontíficis ánnua sollemnitáte lætíficas: concéde propítius; ut", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Sancti Bedæ Confessóris tui atque Doctoris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et tuam ", + "id": "Secreta" + }, + { + "body": "*Pro S. Joanne*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto N. Mártyre tuo atque Pontífice, per éadem", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Beda Conféssor tuus et egrégius, quǽsumus, precátor accédat.\nPer D", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Joanne*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto N. Mártyre tuo atque Pontífice, coelé", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-28": [ + { + "body": "*Ps 131:9-10*\nSacerdótes tui, Dómine, induant justítiam, et sancti tui exsúltent: propter David servum tuum, non avértas", + "id": "Introitus" + }, + { + "body": "Deus, qui Anglórum gentes, prædicatióne et miráculis beáti Augustíni Confessóris tui atque Pontíficis, veræ fídei luce i", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses.\n*1 Thess 2:2-9*\nFratres: Fidúciam habúimus in Deo nostro loqui", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\nSacerdótes ejus índuam salutári: et sancti ejus exsultatióne exsultabunt.\n℣. Illuc prodúcam cornu David: ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et alios septuagínta duos:", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Sacrifícium tibi offérimus. Dómine, in sollemnitáte beáti Augustíni Pontíficis et Confessóris tui, humíliter deprecántes", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Hóstia salutári refécti: te, Dómine, súpplices exorámus; ut eadem, beáti Augustíni interveniénte suffrágio, in omni loco", + "id": "Postcommunio" + } + ], + "2024-05-29": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Deus, virginitátis amátor. qui beátam Maríam Magdalénam Vírginem, tuo amóre succénsam, cœléstibus donis decorásti: da; u", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2024-05-30": [ + { + "body": "*Ps 80:17.*\nCibávit eos ex ádipe fruménti, allelúja: et de petra, melle saturávit eos, allelúja, allelúja, allelúja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Deus, qui nobis sub Sacraménto mirábili passiónis tuæ memóriam reliquísti: tríbue, quǽsumus, ita nos Córporis et Sánguin", + "id": "Oratio" + }, + { + "body": "Léctio Epistolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 11:23-29*\nFratres: Ego enim accépi a Dómino quod et trádidi vo", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno,\n℣. Aperis tu manum tuam: ", + "id": "Graduale" + }, + { + "body": "*Thomæ de Aquino. (infra octavam ad libitum Celebrantis omitti potest, juxta Rubricas.)*\nLauda, Sion, Salvatórem,\nlauda ", + "id": "Sequentia" + }, + { + "body": "Sequéntia sancti Evangéli secúndum Joánnem.\n*Joann 6:56-59*\nIn illo témpore: Dixit Jesus turbis Judæórum: Caro mea vere ", + "id": "Evangelium" + }, + { + "body": "*Levit 21:6*\nSacerdótes Dómini incénsum et panes ófferunt Deo: et ideo sancti erunt Deo suo, et non pólluent nomen ejus,", + "id": "Offertorium" + }, + { + "body": "Ecclésiæ tuæ, quǽsumus, Dómine, unitátis et pacis propítius dona concéde: quæ sub oblátis munéribus mýstice designántur.", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*1 Cor 11:26-27*\nQuotiescúmque manducábitis panem hunc et cálicem bibétis, mortem Dómini annuntiábitis, donec véniat: it", + "id": "Communio" + }, + { + "body": "Fac nos, quǽsumus, Dómine, divinitátis tuæ sempitérna fruitióne repléri: quam pretiósi Corporis et Sanguinis tui tempora", + "id": "Postcommunio" + } + ], + "2024-05-31": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Maríæ Vírginis Regínæ: de cuius solemnitáte gaudent ", + "id": "Introitus" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine: ut, qui solemnitátem beátæ Maríæ Vírginis Regínæ nostræ celebrámus; eius muníti præsídi", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Petronilla*\nExáudi nos, Deus, salutáris noster: ut, sicut de beátæ N. Vírginis tuæ festivitáte gaudémus", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapientiæ.\n*Eccli 24:5, 7, 9-11, 30-31*\nEgo ex ore Altíssimi prodívi, primogénita ante omnem creatúram; ego", + "id": "Lectio" + }, + { + "body": "*Apo 19:16*\nIpse habet in vestiménto et in fémore suo scriptum: Rex regum et Dóminus dominántium.\n*Ps 44:10*\nRegína adst", + "id": "Graduale" + }, + { + "body": "Sequentia sancti Evangelii secundum Lucam.\n*Luc 1:26-33*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitátem ", + "id": "Evangelium" + }, + { + "body": "Regáli ex progénie María exórta refúlget; cuius præscibus nos adiuvári, mente et spíritu devotíssime póscimus. (Allelúia", + "id": "Offertorium" + }, + { + "body": "Accipe, quǽsumus, Dómine, múnera lætántis Ecclésiæ, et, beátæ Vírginis Maríæ Regínæ suffragántibus méritis, ad nostræ sa", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Petronilla*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se mér", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Regína mundi digníssima, María Virgo perpétua, intercéde pro nostra pace et salúte, quæ genuísti Christum Dóminum, Salva", + "id": "Communio" + }, + { + "body": "Celebrátis solémniis, Dómine, quæ pro sanctæ Maríæ Regínæ nostræ festivitáte (memória) perégimus: eius, quǽsumus, nobis ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Petronilla*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-01": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2024-06-02": [ + { + "body": "*Ps 17:19-20*\nFactus est Dóminus protéctor meus, et edúxit me in latitúdinem: salvum me fecit, quóniam vóluit me.\n*Ps 17", + "id": "Introitus" + }, + { + "body": "Sancti nóminis tui, Dómine, timórem páriter et amórem fac nos habére perpétuum: quia numquam tua gubernatióne destítuis,", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 John 3:13-18*\nCaríssimi: Nolíte mirári, si odit vos mundus. Nos scimus, quónia", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nAd Dóminum, cum tribulárer, clamávi, et exaudívit me.\n℣. Dómine, libera ánimam meam a lábiis iníquis, et a ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 14:16-24*\nIn illo témpore: Dixit Jesus pharisǽis parábolam hanc: Homo q", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nDómine, convértere, et éripe ánimam meam: salvum me fac propter misericórdiam tuam.", + "id": "Offertorium" + }, + { + "body": "Oblátio nos, Dómine, tuo nómini dicánda puríficet: et de die in diem ad cœléstis vitæ tránsferat actiónem.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 12:6*\nCantábo Dómino, qui bona tríbuit mihi: et psallam nómini Dómini altíssimi.", + "id": "Communio" + }, + { + "body": "Sumptis munéribus sacris, quǽsumus, Dómine: ut cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum", + "id": "Postcommunio" + } + ], + "2024-06-03": [ + { + "body": "*Ps 17:19-20*\nFactus est Dóminus protéctor meus, et edúxit me in latitúdinem: salvum me fecit, quóniam vóluit me.\n*Ps 17", + "id": "Introitus" + }, + { + "body": "Sancti nóminis tui, Dómine, timórem páriter et amórem fac nos habére perpétuum: quia numquam tua gubernatióne destítuis,", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 John 3:13-18*\nCaríssimi: Nolíte mirári, si odit vos mundus. Nos scimus, quónia", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nAd Dóminum, cum tribulárer, clamávi, et exaudívit me.\n℣. Dómine, libera ánimam meam a lábiis iníquis, et a ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 14:16-24*\nIn illo témpore: Dixit Jesus pharisǽis parábolam hanc: Homo q", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nDómine, convértere, et éripe ánimam meam: salvum me fac propter misericórdiam tuam.", + "id": "Offertorium" + }, + { + "body": "Oblátio nos, Dómine, tuo nómini dicánda puríficet: et de die in diem ad cœléstis vitæ tránsferat actiónem.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 12:6*\nCantábo Dómino, qui bona tríbuit mihi: et psallam nómini Dómini altíssimi.", + "id": "Communio" + }, + { + "body": "Sumptis munéribus sacris, quǽsumus, Dómine: ut cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum", + "id": "Postcommunio" + } + ], + "2024-06-04": [ + { + "body": "*Ps 68:10.*\nFactum est cor meum tamquam cera liquéscens in médio ventris mei: quóniam zelus domus tuæ comédit me. (Allel", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Francíscum, novi órdinis institutórem, orándi stúdio et pœniténtiæ amóre decorásti: da fámulis tuis in ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Sap 4:7-14*\nJustus, si morte præoccupátus fúerit, in refrigério erit. Senéctus enim venerábilis", + "id": "Lectio" + }, + { + "body": "*Ps 41:2*\nQuemádmodum desíderat cervus ad fontes aquárum: ita desíderat ánima mea ad te, Deus.\n*Ps 41:3*\nSitívit ánima m", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12: 35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi ve", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Da nobis, clementíssime Jesu: ut præclára beáti Francísci mérita recoléntes, eódem nos, ac ille, caritátis igne succénsi", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 30:20*\nQuam magna multitúdo dulcédinis tuæ, Dómine, quam abscondísti timéntibus te! (Allelúja.)", + "id": "Communio" + }, + { + "body": "Sacrosáncta sacrifícii, quǽsumus, Dómine, quod hódie in sollemnitáte beáti Francísci tuæ obtúlimus majestáti, grata semp", + "id": "Postcommunio" + } + ], + "2024-06-05": [ + { + "body": "*Is 65:19; 65:23*\nExsultábo in Jerúsalem et gaudébo in pópulo meo: et non audiétur in eo ultra vos fletus et vox clamóri", + "id": "Introitus" + }, + { + "body": "Deus, qui multitúdinem populórum, beáti Bonifátii Mártyris tui atque Pontíficis zelo, ad agnitiónem tui nóminis vocáre d", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:1-15*\nLaudémus viros gloriósos et paréntes nostros in generatióne sua. Multam glóriam ", + "id": "Lectio" + }, + { + "body": "*1 Pet 4:13-14*\nCommunicántes Christi passiónibus gaudéte, ut in revelatióne glóriæ ejus gaudeátis exsultántes.\n℣. Si ex", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:1-12*\nIn illo témpore: Videns Jesus turbas, ascéndit in montem, ", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7; 15:8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Deum in conspéctu meo semper, quóniam a dext", + "id": "Offertorium" + }, + { + "body": "Super has hóstias. Dómine, quǽsumus, benedíctio copiósa descéndat: quæ et sanctificatiónem nostram misericórditer operát", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Apoc 3:21*\nQui vícerit, dabo ei sedére mecum in throno meo: sicut et ego vici et sedi cum Patre meo in throno ejus. (Al", + "id": "Communio" + }, + { + "body": "Sanctificáti, Dómine, salutári mystério: quǽsumus; ut nobis sancti Bonifátii Mártyris tui atque Pontíficis pia non desit", + "id": "Postcommunio" + } + ], + "2024-06-06": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Norbértum Confessórem tuum atque Pontíficem verbi tui præcónem exímium effecísti, et per eum Ecclésiam ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos úbique lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Norbérto Confessóre", + "id": "Postcommunio" + } + ], + "2024-06-07": [ + { + "body": "*Ps 32:11; 32:19*\nCogitatiónes Cordis ejus in generatióne et generatiónem: ut éruat a morte ánimas eórum et alat eos in ", + "id": "Introitus" + }, + { + "body": "Deus, qui nobis in Corde Fílii tui, nostris vulneráto peccátis, infinítos dilectiónis thesáuros misericórditer largíri d", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Eph 3:8-12, 14-19*\nFratres: Mihi, ómnium sanctórum mínimo, data est g", + "id": "Lectio" + }, + { + "body": "*Ps 24:8-9*\nDulcis et rectus Dóminus: propter hoc legem dabit delinquéntibus in via.\n℣. Díriget mansúetos in judício, do", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 19:31-37*\nIn illo témpore: Judǽi - quóniam Parascéve erat, - ut ", + "id": "Evangelium" + }, + { + "body": "*Ps 68:21*\nImpropérium exspectávi Cor meum et misériam: et sustínui, qui simul mecum contristarétur, et non fuit: consol", + "id": "Offertorium" + }, + { + "body": "Réspice, quǽsumus, Dómine, ad ineffábilem Cordis dilécti Fílii tui caritátem: ut quod offérimus sit tibi munus accéptum ", + "id": "Secreta" + }, + { + "body": "*de sacratissimo Cordis Jesu*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dóm", + "id": "Prefatio" + }, + { + "body": "*Joannes 19:34*\nUnus mílitum láncea latus ejus apéruit, et contínuo exívit sanguis et aqua.", + "id": "Communio" + }, + { + "body": "Prǽbeant nobis, Dómine Jesu, divínum tua sancta fervórem: quo dulcíssimi Cordis tui suavitáte percépta; discámus terréna", + "id": "Postcommunio" + } + ], + "2024-06-08": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2024-06-09": [ + { + "body": "*Ps. 24:16; 24:18*\nRéspice in me et miserére mei, Dómine: quóniam únicus et pauper sum ego: vide humilitátem meam et lab", + "id": "Introitus" + }, + { + "body": "Protéctor in te sperántium, Deus, sine quo nihil est válidum, nihil sanctum: multíplica super nos misericórdiam tuam; ut", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet. 5:6-11*\nCaríssimi: Humiliámini sub poténti manu Dei, ut vos exáltet in témp", + "id": "Lectio" + }, + { + "body": "*Ps. 54:23; 54:17; 54:19*\nJacta cogitátum tuum in Dómino: et ipse te enútriet.\n℣. Dum clamárem ad Dóminum, exaudívit voc", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 15:1-10*\nIn illo témpore: Erant appropinquántes ad Jesum publicáni et p", + "id": "Evangelium" + }, + { + "body": "*Ps. 9:11-12 9:13*\nSperent in te omnes, qui novérunt nomen tuum, Dómine: quóniam non derelínquis quæréntes te: psállite ", + "id": "Offertorium" + }, + { + "body": "Réspice, Dómine, múnera supplicántis Ecclésiæ: et salúti credéntium perpétua sanctificatióne suménda concéde.\nPer Dominu", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 15:10.*\nDico vobis: gáudium est Angelis Dei super uno peccatóre pœniténtiam agénte.", + "id": "Communio" + }, + { + "body": "Sancta tua nos, Dómine, sumpta vivíficent: et misericórdiæ sempitérnæ prǽparent expiátos.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-06-10": [ + { + "body": "*Osee 2:14*\nDucam eum in solitúdinem: et loquar ad cor eius.\n*Ps 110:1*\n℣. Beáti immaculáti in via, qui ámbulant in lege", + "id": "Introitus" + }, + { + "body": "Exáudi, quǽsumus, Dómine, pópulum tuum tota mente tibi subiéctum: et beáti Bogumili Confessóris tui atque Pontíficis sup", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Margaritæ Reginæ viduæ*\nDeus, qui beátam Margarítam regínam exímia in páuperes caritáte mirábilem effec", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 140:2*\nDirigátur, Dómine, orátio mea, sicut incénsum in conspéctu tuo.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, preces et múnera: quæ, ut tuo sint digna conspéctu, sancti Confessóris tui atque Pontíficis Bogumili pr", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Margaritæ Reginæ viduæ*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: q", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nAmen dico vobis, quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam ætérna", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus, ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Bogumilo, Confessór", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Margaritæ Reginæ viduæ*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interv", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-11": [ + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui. Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2*\nDómine", + "id": "Introitus" + }, + { + "body": "Deus, qui nos beáti Bárnabæ Apóstoli tui méritis et intercessióne lætíficas: concéde propítius; ut, qui tua per eum bene", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Act 11:21-26; 13:1-3.*\nIn diébus illis: Multus númerus credéntium Antiochíæ convérsus est ad ", + "id": "Lectio" + }, + { + "body": "*Ps 18:5; 18:2*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.\n℣. Cœli enárrant glóriam Dei: e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:16-22*\nIn illo témpore: Dixit Jesus discípulis suis: Ecce, ego m", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine, in omni progénie et genera", + "id": "Offertorium" + }, + { + "body": "Múnera, Dómine, obláta sanctífica, et, intercedénte beáto Bárnaba Apostolo tuo, nos per hæc a peccatórum nostrórum mácul", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël.", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, intercedénte beáto Bárnaba Apóstolo tuo, tibi ", + "id": "Postcommunio" + } + ], + "2024-06-12": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, auctor pacis et amátor caritátis, qui beátum Joánnem Confessórem tuum mirífica dissidéntes componéndi grátia decor", + "id": "Oratio" + }, + { + "body": "*Pro SS. Martyribus*\nSanctórum Mártyrum tuórum Basílidis, Cyríni, Nabóris atque Nazárii, quǽsumus, Dómine, natalítia nob", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Pro SS. Martyribus*\nPro sanctórum tuórum Basílidis, Cyríni, Nabóris atque Nazárii sánguine venerándo, hóstias tibi. Dóm", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + }, + { + "body": "*Pro SS. Martyribus*\nSemper, Dómine, sanctórum Martyrum tuórum Basílidis, Cyríni, Nabóris atque Nazárii sollémnia celebr", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-13": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Ecclésiam tuam, Deus, beáti Antónii Confessóris tui sollémnitas votiva lætíficet: ut spirituálibus semper muniátur auxíl", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Præsens oblátio fiat, Dómine, pópulo tuo salutáris: pro quo dignátus es Patri tuo te vivéntem hóstiam immoláre:\nQui cum ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Divínis, Dómine, munéribus satiáti: quǽsumus; ut, beáti Antónii Confessóris tui méritis et intercessióne, salutáris sacr", + "id": "Postcommunio" + } + ], + "2024-06-14": [ + { + "body": "*Eccli 15:5.*\nIn médio Ecclésiæ apéruit os ejus: et implevit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ", + "id": "Introitus" + }, + { + "body": "Exáudi, quǽsumus, Dómine, preces nostras, quas in beáti Basilíi Confessóris tui atque Pontíficis sollemnitáte deférimus:", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui j", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-81*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:26-35*\nIn illo témpore: Dixit Jesus turbis: Si quis venit ad me, et", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Sancti Basilíi Confessóris tui atque Pontíficis, quǽsumus, Dómine, ánnua sollémnitas pietáti tuæ nos reddat accéptos: ut", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Deus, fidélium remunerátor animárum: præsta; ut, beáti Basilíi Confessóris tui atque Pontíficis, cujus venerándam celebr", + "id": "Postcommunio" + } + ], + "2024-06-15": [ + { + "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui beátam Jolántam ab honóribus divitiísque misericórditer abstraxísti, et húmilem Fílii tu", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Viti, Modesti atque Crescentiæ Martyrum*\nDa Ecclésiæ tuæ, quǽsumus, Dómine, sanctis Martýribus tuis Vi", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Viti, Modesti atque Crescentiæ Martyrum*\nSicut glóriam divínæ poténtiæ múnera pro Sanctis obláta testá", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Viti, Modesti atque Crescentiæ Martyrum*\nRepléti, Dómine, benedictióne sollémni: quǽsumus; ut, per int", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-16": [ + { + "body": "*Ps 26:1; 26:2*\nDóminus illuminátio mea et salus mea, quem timebo? Dóminus defensor vitæ meæ, a quo trepidábo? qui tríbu", + "id": "Introitus" + }, + { + "body": "Da nobis, quǽsumus, Dómine: ut et mundi cursus pacífice nobis tuo órdine dirigátur; et Ecclésia tua tranquílla devotióne", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:18-23*\nFratres: Exístimo, quod non sunt condígnæ passiónes hujus ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 5:1-11*\nIn illo témpore: Cum turbæ irrúerent in Jesum, ut audírent verb", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nIllúmina óculos meos, ne umquam obdórmiam in morte: ne quando dicat inimícus meus: Præválui advérsus eum.", + "id": "Offertorium" + }, + { + "body": "Oblatiónibus nostris, quǽsumus, Dómine, placáre suscéptis: et ad te nostras étiam rebélles compélle propítius voluntátes", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 17:3*\nDóminus firmaméntum meum, et refúgium meum, et liberátor meus: Deus meus, adjútor meus.", + "id": "Communio" + }, + { + "body": "Mystéria nos, Dómine, quǽsumus, sumpta puríficent: et suo múnere tueántur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-06-17": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Gregórium Confessórem tuum atque Pontíficem pastoráli sollicitúdine, et páuperum miseratióne claréscere", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto N. Confessóre tuo a", + "id": "Postcommunio" + } + ], + "2024-06-18": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiam tuam beáti Ephræm Confessóris tui et Doctoris mira eruditióne et præcláris vitæ méritis illustráre v", + "id": "Oratio" + }, + { + "body": "*SS. Marci et Marcelliani Martyrum*\nPræsta, quǽsumus, omnípotens Deus: ut, qui sanctórum Mártyrum tuórum Marci et Marcel", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Sancti Ephræm Confessóris tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et tua", + "id": "Secreta" + }, + { + "body": "*Pro SS. Marco et Marcelliano Martyribus*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedéntibus sanctis Martýribus", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Ephræm Conféssor tuus et Doctor egrégius, quǽsumus, precátor accéd", + "id": "Postcommunio" + }, + { + "body": "*Pro SS. Marco et Marcelliano Martyribus*\nSalutáris tui, Dómine, múnere satiáti, súpplices exorámus: ut, cujus lætámur g", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-19": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Deus, qui beátam Juliánam Vírginem tuam extrémo morbo laborántem, pretióso Fílii tui Córpore mirabíliter recreáre dignát", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Gervasio et Protasio Martyribus*\nDeus, qui nos ánnua sanctórum Martyrum tuórum Gervásii et Protásii sollemnitát", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Gervasio et Protasio Martyribus*\nOblátis, quǽsumus, Dómine, placáre munéribus: et, intercedéntibus sanctis Mart", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Gervasio et Protasio Martyribus*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedéntibus sanctis Martýr", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-20": [ + { + "body": "*Ps 26:1; 26:2*\nDóminus illuminátio mea et salus mea, quem timebo? Dóminus defensor vitæ meæ, a quo trepidábo? qui tríbu", + "id": "Introitus" + }, + { + "body": "Da nobis, quǽsumus, Dómine: ut et mundi cursus pacífice nobis tuo órdine dirigátur; et Ecclésia tua tranquílla devotióne", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Silverii Papæ et Martyri*\nGregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:18-23*\nFratres: Exístimo, quod non sunt condígnæ passiónes hujus ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 5:1-11*\nIn illo témpore: Cum turbæ irrúerent in Jesum, ut audírent verb", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nIllúmina óculos meos, ne umquam obdórmiam in morte: ne quando dicat inimícus meus: Præválui advérsus eum.", + "id": "Offertorium" + }, + { + "body": "Oblatiónibus nostris, quǽsumus, Dómine, placáre suscéptis: et ad te nostras étiam rebélles compélle propítius voluntátes", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Silverii Papæ et Martyri*\nOblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 17:3*\nDóminus firmaméntum meum, et refúgium meum, et liberátor meus: Deus meus, adjútor meus.", + "id": "Communio" + }, + { + "body": "Mystéria nos, Dómine, quǽsumus, sumpta puríficent: et suo múnere tueántur.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Silverii Papæ et Martyri*\nRefectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésia", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-21": [ + { + "body": "*Ps 8:6*\nMinuísti eum paulo minus ab Angelis: glória et honóre coronásti eum.\n*Ps 148:2*\nLaudáte Dóminum, omnes Angeli e", + "id": "Introitus" + }, + { + "body": "Cœléstium donórum distribútor, Deus, qui in angélico júvene Aloísio miram vitæ innocéntiam pari cum pœniténtia sociásti:", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 31:8-11*\nBeátus vir, qui inventus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 70:5-6*\nDómine, spes mea a juventúte mea: in te confirmátus sum ex útero: de ventre matris meæ tu es protéctor meus.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 22:29-40*\nIn illo témpore: Respóndens Jesus, ait sadducæis: Erráti", + "id": "Evangelium" + }, + { + "body": "*Ps 23:3-4*\nQuis ascéndet in montem Dómini, aut quis stabit in loco sancto ejus? Innocens mánibus, et mundo corde.", + "id": "Offertorium" + }, + { + "body": "Cœlésti convívio fac nos, Dómine, nuptiáli veste indútos accúmbere: quam beáti Aloísii pia præparátio et juges lácrimæ i", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 77:24-25*\nPanem cœli dedit eis: panem Angelórum manducávit homo.", + "id": "Communio" + }, + { + "body": "Angelórum esca nutrítos, angélicis étiam, Dómine, da móribus vívere: et ejus, quem hódie cólimus, exémplo in gratiárum s", + "id": "Postcommunio" + } + ], + "2024-06-22": [ + { + "body": "*Ps 131:9-10*\nSacerdótes tui, Dómine, índuant justítiam, et sancti tui exsúltent: propter David servum tuum, non avértas", + "id": "Introitus" + }, + { + "body": "Deus, qui ómnia pro te in hoc sǽculo relinquéntibus, céntuplum in futúro et vitam ætérnam promisísti: concéde propítius;", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*2 Cor 8:9-15*\nFratres: Scitis grátiam Dómini nostri Jesu Christi, q", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Da nobis, Dómine, perféctæ caritátis sacrifícium, exémplo sancti Pontíficis Paulíni, cum altáris oblatióne conjúngere: e", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Tríbue nobis per hæc sancta, Dómine, illum pietátis et humilitátis afféctum, quem ex hoc divíno fonte hausit sanctus Pón", + "id": "Postcommunio" + } + ], + "2024-06-23": [ + { + "body": "*Ps 26:7; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te: adjútor meus esto, ne derelínquas me neque despícias me, ", + "id": "Introitus" + }, + { + "body": "Deus, qui diligéntibus te bona invisibília præparásti: infúnde córdibus nostris tui amóris afféctum; ut te in ómnibus et", + "id": "Oratio" + }, + { + "body": "*Commemoratio In Vigilia S. Joannis Baptistæ*\nPræsta, quǽsumus, omnípotens Deus: ut família tua per viam salútis incédat", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 3:8-15*\nCaríssimi: Omnes unánimes in oratióne estóte, compatiéntes, fraterni", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:20-24*\nIn illo témpore: Dixit Jesus discípulis suis: Nisi abundáv", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7 et 8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Deum in conspéctu meo semper: quóniam a dextr", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, supplicatiónibus nostris: et has oblatiónes famulórum famularúmque tuárum benígnus assúme; ut, quod ", + "id": "Secreta" + }, + { + "body": "*Commemoratio In Vigilia S. Joannis Baptistæ*\nMúnera, Dómine, obláta sanctífica: et, intercedénte beáto Joánne Baptista,", + "id": "Commemoratio Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram: ut inhábitem in domo Dómini ómnibus diébus vitæ meæ.", + "id": "Communio" + }, + { + "body": "Quos cœlésti, Dómine, dono satiásti: præsta, quǽsumus; ut a nostris mundémur occúltis et ab hóstium liberémur insídiis.\n", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio In Vigilia S. Joannis Baptistæ*\nBeáti Joánnis Baptístæ nos, Dómine, præclára comitétur orátio: et, quem ve", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-24": [ + { + "body": "*Isa 49:1; 49:2*\nDe ventre matris meæ vocávit me Dóminus in nómine meo: et pósuit os meum ut gládium acútum: sub tegumén", + "id": "Introitus" + }, + { + "body": "Deus, qui præséntem diem honorábilem nobis in beáti Joánnis nativitáte fecísti: da pópulis tuis spirituálium grátiam gau", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Isa 49:1-3; 49:5-7*\nAudíte, ínsulæ, et atténdite, pópuli, de longe: Dóminus ab útero vocavit me,", + "id": "Lectio" + }, + { + "body": "*Jer 1:5; 1:9*\nPriusquam te formárem in útero, novi te: et ántequam exíres de ventre, santificávi te.\n℣. Misit Dóminus m", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:57-68*\nElísabeth implétum est tempus pariéndi, et péperit fílium. Et ", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, munéribus altária cumulámus: illíus nativitátem honóre débito celebrántes, qui Salvatórem mundi et cécinit ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 1:76*\nTu, puer, Propheta Altíssimi vocaberis: præíbis enim ante fáciem Dómini paráre vias ejus.", + "id": "Communio" + }, + { + "body": "Sumat Ecclésia tua, Deus, beáti Joánnis Baptístæ generatióne lætítiam: per quem suæ regeneratiónis cognóvit auctórem, Dó", + "id": "Postcommunio" + } + ], + "2024-06-25": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui infirmitáti nostræ ad teréndam salútis viam in Sanctis tuis exémplum et præsídium collocásti: da nobis, ita be", + "id": "Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus Guliélmus Abbas, quǽsumus, in salútem nobis proveníre depóscat.\nP", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus Guliélmus Abbas, pro nobis intercedéndo: ut et conversatióni", + "id": "Postcommunio" + } + ], + "2024-06-26": [ + { + "body": "*Ps 33:20-21*\nMultæ tribulatiónes justórum, et de his ómnibus liberávit eos Dóminus: Dóminus custódit ómnia ossa eórum: ", + "id": "Introitus" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut nos gemináta lætítia hodiérnæ festivitátis excípiat, quæ de beatórum Joánnis et Pauli glor", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:10-15*\nHi viri misericórdiæ sunt, quorum pietátes non defuérunt: cum semine eórum pérm", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:1-8*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ferm", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nGloriabúntur in te omnes, qui díligunt nomen tuum, quóniam tu, Dómine, benedíces justo: Dómine, ut scuto bo", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, sanctórum Martyrum tuórum Joánnis et Pauli dicátas méritis, benígnus assúme: et ad perpétuum nobis", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentavit eos: tamquam aurum in fornáce probávit eos, et quas", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, sanctórum Martyrum tuórum Joánnis et Pauli sollémnia celebrántes, sacraménta cœléstia: præsta, quǽsum", + "id": "Postcommunio" + } + ], + "2024-06-27": [ + { + "body": "*Ps 26:7; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te: adjútor meus esto, ne derelínquas me neque despícias me, ", + "id": "Introitus" + }, + { + "body": "Deus, qui diligéntibus te bona invisibília præparásti: infúnde córdibus nostris tui amóris afféctum; ut te in ómnibus et", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 3:8-15*\nCaríssimi: Omnes unánimes in oratióne estóte, compatiéntes, fraterni", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:20-24*\nIn illo témpore: Dixit Jesus discípulis suis: Nisi abundáv", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7 et 8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Deum in conspéctu meo semper: quóniam a dextr", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, supplicatiónibus nostris: et has oblatiónes famulórum famularúmque tuárum benígnus assúme; ut, quod ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram: ut inhábitem in domo Dómini ómnibus diébus vitæ meæ.", + "id": "Communio" + }, + { + "body": "Quos cœlésti, Dómine, dono satiásti: præsta, quǽsumus; ut a nostris mundémur occúltis et ab hóstium liberémur insídiis.\n", + "id": "Postcommunio" + } + ], + "2024-06-28": [ + { + "body": "*Joannes 21:18-19*\nDicit Dóminus Petro: Cum esses júnior, cingébas te et ambulábas, ubi volébas: cum autem senúeris, ext", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut nullis nos permíttas perturbatiónibus cóncuti; quos in apostólicæ confessiónis pet", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum.\n*Act 3:1-10.*\nIn diébus illis: Petrus et Joánnes ascendébant in templum ad horam oratiónis no", + "id": "Lectio" + }, + { + "body": "*Ps 18:5; 18:2*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.\n℣. Cœli enárrant glóriam Dei: e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 21:15-10*\nIn illo témpore: Dixit Jesus Simóni Petro: Simon Joánn", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", + "id": "Offertorium" + }, + { + "body": "Munus pópuli tui, quǽsumus, Dómine, apostólica intercessióne sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nP", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joannes 21:15; 21:17*\nSimon Joánnis, díligis me plus his? Dómine, tu ómnia nosti: tu scis, Dómine, quia amo te.", + "id": "Communio" + }, + { + "body": "Quos cœlésti, Dómine, aliménto satiásti: apostólicis intercessiónibus ab omni adversitáte custódi.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-06-29": [ + { + "body": "*Acts 12:11*\nNunc scio vere, quia misit Dóminus Angelum suum: et erípuit me de manu Heródis et de omni exspectatióne ple", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérnam diem Apostolórum tuórum Petri et Pauli martýrio consecrásti: da Ecclésiæ tuæ, eórum in ómnibus sequi", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum.\n*Act 12:1-11*\nIn diébus illis: Misit Heródes rex manus, ut afflígeret quosdam de ecclésia. Oc", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro pátribus tuis nati ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philippi,", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine, in omni progénie et genera", + "id": "Offertorium" + }, + { + "body": "Hóstias, Dómine, quas nómini tuo sacrándas offérimus, apostólica prosequátur orátio: per quam nos expiári tríbuas et def", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, ei super hanc petram ædificabo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Quos cœlésti, Dómine, aliménto satiásti: apostólicis intercessiónibus ab omni adversitáte custódi.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-06-30": [ + { + "body": "*Ps 27:8-9*\nDóminus fortitudo plebis suæ, et protéctor salutárium Christi sui est: salvum fac pópulum tuum, Dómine, et b", + "id": "Introitus" + }, + { + "body": "Deus virtútum, cujus est totum quod est óptimum: ínsere pectóribus nostris amórem tui nóminis, et præsta in nobis religi", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:3-11*\nFratres: Quicúmque baptizáti sumus in Christo Jesu, in mort", + "id": "Lectio" + }, + { + "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum\n*Marc 8:1-9*\nIn illo témpore: Cum turba multa esset cum Jesu, nec habérent,", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, supplicatiónibus nostris, et has pópuli tui oblatiónes benígnus assúme: et, ut nullíus sit írritum v", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 26:6*\nCircuíbo et immolábo in tabernáculo ejus hóstiam jubilatiónis: cantábo et psalmum dicam Dómino.", + "id": "Communio" + }, + { + "body": "Repléti sumus, Dómine, munéribus tuis: tríbue, quǽsumus; ut eórum et mundémur efféctu et muniámur auxílio.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-07-01": [ + { + "body": "*Apoc 5:9-10*\nRedemísti nos, Dómine, in sánguine tuo, ex omni tribu et lingua et pópulo et natióne: et fecísti nos Deo n", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui unigénitum Fílium tuum mundi Redemptórem constituísti, ac ejus Sánguine placári voluísti", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos.\n*Hebr 9:11-15*\nFratres: Christus assístens Póntifex futurórum bonórum, ", + "id": "Lectio" + }, + { + "body": "*1 Joann 5:6; 5:7-8*\nHic est, qui venit per aquam et sánguinem, Jesus Christus: non in aqua solum, sed in aqua et sángui", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 19:30-35*\nIn illo témpore: Cum accepísset Jesus acétum, dixit: Con", + "id": "Evangelium" + }, + { + "body": "*1 Cor 10:16*\nCalix benedictiónis, cui benedícimus, nonne communicátio sánguinis Christi est? et panis, quem frángimus, ", + "id": "Offertorium" + }, + { + "body": "Per hæc divína mystéria, ad novi, quǽsumus, Testaménti mediatórem Jesum accedámus: et super altária tua, Dómine virtútum", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Hebr 9:28*\nChristus semel oblátus est ad multórum exhauriénda peccáta: secúndo sine peccáto apparébit exspectántibus se", + "id": "Communio" + }, + { + "body": "Ad sacram, Dómine, mensam admíssi, háusimus aquas in gáudio de fóntibus Salvatóris: sanguis ejus fiat nobis, quǽsumus, f", + "id": "Postcommunio" + } + ], + "2024-07-02": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cælum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Fámulis tuis, quǽsumus, Dómine, cœléstis grátiæ munus impertíre: ut, quibus beátæ Vírginis partus éxstitit salútis exórd", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Processi et Martiniani*\nDeus, qui nos sanctórum Mártyrum tuórum Procéssi et Martiniáni gloriósis confe", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Cant 2:8-14*\nEcce, iste venit sáliens in móntibus, transíliens colles; símilis est diléctus meu", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:39-47*\nIn illo témpore: Exsúrgens María ábiit in montána cum festina", + "id": "Evangelium" + }, + { + "body": "Beáta es, Virgo María, quæ ómnium portásti Creatórem: genuísti, qui te fecit, et in ætérnum pérmanes Virgo.", + "id": "Offertorium" + }, + { + "body": "Unigéniti tui, Dómine, nobis succúrrat humánitas: ut, qui, natus de Vírgine, Matris integritátem non mínuit, sed sacrávi", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Processi et Martiniani*\nSúscipe, Dómine, preces et múnera: quæ ut tuo sint digna conspéctu. Sanctórum ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, celebritátis ánnuæ votíva sacraménta: præsta, quǽsumus; ut et temporális vitæ nobis remédia prǽbeant ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Processi et Martiniani*\nCórporis sacri et pretiósi Sánguinis repléti libámine, quǽsumus, Dómine, Deus ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-03": [ + { + "body": "*Malach 2:6*\nLex veritátis fuit in ore ejus, et iníquitas non est invénta in lábiis ejus: in pace et in æquitáte ambuláv", + "id": "Introitus" + }, + { + "body": "Deus, qui beáto Irenǽo Mártyri tuo atque Pontifici tribuísti, ut et veritate doctrínæ expugnáret hæreses, et pacem Ecclé", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 3:14-17; 4:1-5*\nCaríssime: Permane in iis, quæ didicísti et cré", + "id": "Lectio" + }, + { + "body": "*Ps 121:8*\nPropter fratres meos et próximos meos loquébar pacem de te.\n*Ps 36:37*\nCustódi innocéntiam et vide æquitátem:", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:28-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timé", + "id": "Evangelium" + }, + { + "body": "*Eccli 24:44*\nDoctrínam quasi ante lucánum illúmino ómnibus, et enarrábo illam usque ad longínquum.", + "id": "Offertorium" + }, + { + "body": "Deus, qui credéntes in te pópulos nullis sinis cóncuti terróribus: dignáre preces et hóstias dicátæ tibi plebis suscíper", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Eccli 24:47*\nVidéte, quóniam non soli mihi laborávi, sed ómnibus exquiréntibus veritátem.", + "id": "Communio" + }, + { + "body": "Deus, auctor pacis et amátor, quem nosse vívere, cui servíre regnáre est: prótege ab ómnibus impugnatiónibus súpplices t", + "id": "Postcommunio" + } + ], + "2024-07-04": [ + { + "body": "*Ps 27:8-9*\nDóminus fortitudo plebis suæ, et protéctor salutárium Christi sui est: salvum fac pópulum tuum, Dómine, et b", + "id": "Introitus" + }, + { + "body": "Deus virtútum, cujus est totum quod est óptimum: ínsere pectóribus nostris amórem tui nóminis, et præsta in nobis religi", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:3-11*\nFratres: Quicúmque baptizáti sumus in Christo Jesu, in mort", + "id": "Lectio" + }, + { + "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum\n*Marc 8:1-9*\nIn illo témpore: Cum turba multa esset cum Jesu, nec habérent,", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, supplicatiónibus nostris, et has pópuli tui oblatiónes benígnus assúme: et, ut nullíus sit írritum v", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 26:6*\nCircuíbo et immolábo in tabernáculo ejus hóstiam jubilatiónis: cantábo et psalmum dicam Dómino.", + "id": "Communio" + }, + { + "body": "Repléti sumus, Dómine, munéribus tuis: tríbue, quǽsumus; ut eórum et mundémur efféctu et muniámur auxílio.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-07-05": [ + { + "body": "*1 Cor 2:4.*\nSermo meus et prædicátio mea non in persuasibílibus humánæ sapiéntiæ verbis, sed in ostensióne spíritus et ", + "id": "Introitus" + }, + { + "body": "Fac nos, Dómine Deus, supereminéntem Jesu Christi sciéntiam, spíritu Pauli Apóstoli, edíscere: qua beátus Antónius María", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*1. Tim 4:8-16.*\nCaríssime: Píetas ad ómnia utilis est: promissiónem ", + "id": "Lectio" + }, + { + "body": "*Philipp 1:8-9*\nTestis mihi est Deus, quo modo cúpiam omnes vos in viscéribus Jesu Christi. Et hoc oro, ut cáritas vestr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 10:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Quisquis non", + "id": "Evangelium" + }, + { + "body": "*Ps 137:1-2*\nIn conspéctu Angelórum psallam tibi: adorábo ad templum sanctum tuum, et confitébor nómini tuo.", + "id": "Offertorium" + }, + { + "body": "Ad mensam cœléstis convívii fac nos, Dómine, eam mentis et córporis puritátem afférre, qua beátus Antónius María, hanc s", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Philipp 3:17*\nImitatóres mei estóte, fratres, et observáte eos, qui ita ámbulant, sicut habétis formam nostram.", + "id": "Communio" + }, + { + "body": "Cœlésti dape, qua pasti sumus, Dómine Jesu Christe, eo corda nostra caritátis igne flamméscant: quo beátus Antónius Marí", + "id": "Postcommunio" + } + ], + "2024-07-06": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2024-07-07": [ + { + "body": "*Ps 46:2*\nOmnes gentes, pláudite mánibus: jubiláte Deo in voce exsultatiónis.\n*Ps 46:3*\nQuóniam Dóminus excélsus, terríb", + "id": "Introitus" + }, + { + "body": "Deus, cujus providéntia in sui dispositióne non fállitur: te súpplices exorámus; ut nóxia cuncta submóveas, et ómnia nob", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:19-23*\nFratres: Humánum dico, propter infirmitátem carnis vestræ:", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.\n℣. Accédite ad eum, et illuminámini: et fácies ves", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 7:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nSicut in holocáustis aríetum et taurórum, et sicut in mílibus agnórum pínguium: sic fiat sacrifícium nostrum ", + "id": "Offertorium" + }, + { + "body": "Deus, qui legálium differéntiam hostiárum unius sacrifícii perfectione sanxísti: accipe sacrifícium a devótis tibi fámul", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nInclína aurem tuam, accélera, ut erípias me.", + "id": "Communio" + }, + { + "body": "Tua nos, Dómine, medicinális operátio, et a nostris perversitátibus cleménter expédiat, et ad ea, quæ sunt recta, perdúc", + "id": "Postcommunio" + } + ], + "2024-07-08": [ + { + "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", + "id": "Introitus" + }, + { + "body": "Clementíssime Deus, qui beátam Elisabeth regínam, inter céteras egrégias dotes, béllici furóris sedándi prærogatíva deco", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2024-07-09": [ + { + "body": "*Ps 46:2*\nOmnes gentes, pláudite mánibus: jubiláte Deo in voce exsultatiónis.\n*Ps 46:3*\nQuóniam Dóminus excélsus, terríb", + "id": "Introitus" + }, + { + "body": "Deus, cujus providéntia in sui dispositióne non fállitur: te súpplices exorámus; ut nóxia cuncta submóveas, et ómnia nob", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:19-23*\nFratres: Humánum dico, propter infirmitátem carnis vestræ:", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.\n℣. Accédite ad eum, et illuminámini: et fácies ves", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 7:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nSicut in holocáustis aríetum et taurórum, et sicut in mílibus agnórum pínguium: sic fiat sacrifícium nostrum ", + "id": "Offertorium" + }, + { + "body": "Deus, qui legálium differéntiam hostiárum unius sacrifícii perfectione sanxísti: accipe sacrifícium a devótis tibi fámul", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nInclína aurem tuam, accélera, ut erípias me.", + "id": "Communio" + }, + { + "body": "Tua nos, Dómine, medicinális operátio, et a nostris perversitátibus cleménter expédiat, et ad ea, quæ sunt recta, perdúc", + "id": "Postcommunio" + } + ], + "2024-07-10": [ + { + "body": "*Ps 112:1; 112:9*\nLaudáte, púeri, Dóminum, laudáte nomen Dómini: qui habitáre facit stérilem in domo, matrem filiórum læ", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui gloriósos Mártyres fortes in sua confessióne cognóvimus, pios apud te in nost", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Prov 31:10-31.*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confí", + "id": "Lectio" + }, + { + "body": "*Ps 123:7-8.*\nAnima nostra, sicut passer, erépta est de láqueo venántium.\n℣. Láqueus contrítus est, et nos liberáti sumu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 12:46-50.*\nIn illo témpore: Loquente Jesu ad turbas, ecce, Mater e", + "id": "Evangelium" + }, + { + "body": "*Ps 123:7*\nAnima nostra, sicut passer, erépta est de láqueo venántium: láqueus contrítus est, et nos liberáti sumus.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, inténde placátus: et, intercedéntibus Sanctis tuis, devotióni nostræ profícia", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 12:50*\nQuicumque fecerit voluntátem Patris mei, qui in cælis est: ipse meus frater et soror et mater est, dicit Dó", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, intercedéntibus Sanctis tuis, illíus salutáris capiámus efféctum; cujus per heec mystéria", + "id": "Postcommunio" + } + ], + "2024-07-11": [ + { + "body": "*Ps 46:2*\nOmnes gentes, pláudite mánibus: jubiláte Deo in voce exsultatiónis.\n*Ps 46:3*\nQuóniam Dóminus excélsus, terríb", + "id": "Introitus" + }, + { + "body": "Deus, cujus providéntia in sui dispositióne non fállitur: te súpplices exorámus; ut nóxia cuncta submóveas, et ómnia nob", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Pii I Papæ et Martyris*\nGregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:19-23*\nFratres: Humánum dico, propter infirmitátem carnis vestræ:", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.\n℣. Accédite ad eum, et illuminámini: et fácies ves", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 7:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nSicut in holocáustis aríetum et taurórum, et sicut in mílibus agnórum pínguium: sic fiat sacrifícium nostrum ", + "id": "Offertorium" + }, + { + "body": "Deus, qui legálium differéntiam hostiárum unius sacrifícii perfectione sanxísti: accipe sacrifícium a devótis tibi fámul", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Pii I Papæ et Martyris*\nOblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et g", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nInclína aurem tuam, accélera, ut erípias me.", + "id": "Communio" + }, + { + "body": "Tua nos, Dómine, medicinális operátio, et a nostris perversitátibus cleménter expédiat, et ad ea, quæ sunt recta, perdúc", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Pii I Papæ et Martyris*\nRefectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam:", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-12": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Intercéssio nos, quǽsumus, Dómine, beáti Joánnis Abbatis comméndet: ut, quod nostris méritis non valémus, ejus patrocíni", + "id": "Oratio" + }, + { + "body": "*Ss. Naboris et Felicis*\nPræsta, quǽsumus, Dómine: ut, sicut nos sanctórum Martyrum tuórum Nabóris et Felícis natalítia ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:43-48*\nIn illo témpore: Dixit Jesus discípulis suis: Audístis, q", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus Joánnes Abbas, quǽsumus, in salútem nobis proveníre depóscat.\nPer", + "id": "Secreta" + }, + { + "body": "*Ss. Naboris et Felicis*\nMúnera plebis tuæ, quǽsumus, Dómine, sanetórum Mártyrum tuórum Nabóris et Felícis fiant grata s", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus Joánnes Abbas, pro nobis intercedéndo: ut et conversatiónis ", + "id": "Postcommunio" + }, + { + "body": "*Ss. Naboris et Felicis*\nNatalítiis Sanctórum tuórum, quǽsumus, Dómine: ut, sacraménti múnere vegetáti, bonis, quibus pe", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-13": [ + { + "body": "*Ps 104:3-4*\nLaetetur cor quaerentium Dominum: quaerite Dominum et confirmamini: quaerite faciem eius semper. (T. P. All", + "id": "Introitus" + }, + { + "body": "Clementissime Deus, qui beatos Andream et Benedictum mira abstinentia et assidua vitae austeritate tibi soli adhaerere f", + "id": "Oratio" + }, + { + "body": "Lectio libri Sapientiæ.\n*Eccli 2:7-13*\nMetuentes Dominum, sustinete misericordiam ejus: et non deflectatis ab illo, ne c", + "id": "Lectio" + }, + { + "body": "*Ps 30:24-25*\nDiligite Dominum, omnes Sancti eius, quoniam veritatem requiret Dominus, et retribuet abundanter facientib", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 67:4*\nIusti epulentur, et exsultent in conspectu Dei, et delectentur in laetitia. (T. P. Alleluia.)", + "id": "Offertorium" + }, + { + "body": "Hostias ad altare tuum offerentibus, Domine, da nobis illum pietatis affectum, quem beatis Andreae et Benedicto Confesso", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:37*\nBeati servi illi, quos, cum venerit Dominus, invenerit vigilantes: amen dico vobis, quod praecinget se, et f", + "id": "Communio" + }, + { + "body": "Tribuat nobis, omnipotens Deus, suffragantibus beatorum Andreae et Benedicti Confessorum tuorum precibus, refectio sacra", + "id": "Postcommunio" + } + ], + "2024-07-14": [ + { + "body": "*Ps 47:10-11*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tua in fi", + "id": "Introitus" + }, + { + "body": "Largíre nobis, quǽsumus, Dómine, semper spíritum cogitándi quæ recta sunt, propítius et agéndi: ut, qui sine te esse non", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:12-17*\nFratres: Debitóres sumus non carni, ut secúndum carnem viv", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias.\n*Ps 70:1*\n℣. Deus, in te sperávi: Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 16:1-9*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc: Ho", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28; 17:32*\nPópulum húmilem salvum fácies, Dómine, et óculos superbórum humiliábis: quóniam quis Deus præter te, D", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, múnera, quæ tibi de tua largitáte deférimus: ut hæc sacrosáncta mystéria, grátiæ tuæ operánte", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nGustáte et vidéte, quóniam suávis est Dóminus: beátus vir, qui sperat in eo.", + "id": "Communio" + }, + { + "body": "Sit nobis, Dómine, reparátio mentis et córporis cæléste mystérium: ut, cujus exséquimur cultum, sentiámus efféctum.\nPer ", + "id": "Postcommunio" + } + ], + "2024-07-15": [ + { + "body": "*Isa 42:6*\nEgo Dominus vocavi te in iustitia, et apprehendi manum tuam et dedi te in foedus populi, in lucem gentium, ut", + "id": "Introitus" + }, + { + "body": "Misericordissime Deus, pro cuius fidei propagatione beatus Bruno Episcopus et Martyr in his terris sanguinem liberaliter", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Henrici Imperatoris Confessoris*\nDeus, qui hodiérna die beátum Henrícum Confessórem tuum e terréni cúlm", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Sap 6:10-22*\nAd vos ergo, reges, sunt hi sermones mei, ut discatis sapientiam, et non excidatis.", + "id": "Lectio" + }, + { + "body": "*Ps 118:46-47*\nLoquebar de testimoniis tuis in conspectu regum et non confundebar.\n℣. Et meditabar in mandatis tuis, qua", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 15:12-16*\nIn illo tempore: Dixit Jesus discipulis suis: «Hoc est p", + "id": "Evangelium" + }, + { + "body": "*Col 1:24-25*\nGaudeo in passionibus et adimpleo ea quae desunt passionum Christi in carne mea, pro corpore eius quod est", + "id": "Offertorium" + }, + { + "body": "Haec hostia, Domine, vincula nostri reatus absolvat, et intercedente beato Brunone Martyre tuo atque Pontifice, donum no", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Henrici Imperatoris Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctó", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Phil 1:20-21*\nMagnificabitur Christus in corpore meo, sive per vitam sive per mortem; mihi enim vivere Christus est et ", + "id": "Communio" + }, + { + "body": "Caelestibus epulis refecti, te, Domine, supplices deprecamur; ut ignem in nobis spiritus tui clementer accendas, qui bea", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Henrici Imperatoris Confessoris*\nRefécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-16": [ + { + "body": "*Ps 47:10-11*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tua in fi", + "id": "Introitus" + }, + { + "body": "Largíre nobis, quǽsumus, Dómine, semper spíritum cogitándi quæ recta sunt, propítius et agéndi: ut, qui sine te esse non", + "id": "Oratio" + }, + { + "body": "*Commemoratio In Commemoratione Beatæ Mariæ Virgine de Monte Carmelo.*\nDeus, qui beatíssimæ semper Vírginis et Genetríci", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:12-17*\nFratres: Debitóres sumus non carni, ut secúndum carnem viv", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias.\n*Ps 70:1*\n℣. Deus, in te sperávi: Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 16:1-9*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc: Ho", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28; 17:32*\nPópulum húmilem salvum fácies, Dómine, et óculos superbórum humiliábis: quóniam quis Deus præter te, D", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, múnera, quæ tibi de tua largitáte deférimus: ut hæc sacrosáncta mystéria, grátiæ tuæ operánte", + "id": "Secreta" + }, + { + "body": "*Commemoratio In Commemoratione Beatæ Mariæ Virgine de Monte Carmelo.*\nSanctífica, Dómine, quǽsumus, obláta libámina: et", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nGustáte et vidéte, quóniam suávis est Dóminus: beátus vir, qui sperat in eo.", + "id": "Communio" + }, + { + "body": "Sit nobis, Dómine, reparátio mentis et córporis cæléste mystérium: ut, cujus exséquimur cultum, sentiámus efféctum.\nPer ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio In Commemoratione Beatæ Mariæ Virgine de Monte Carmelo.*\nAdjuvet nos, quǽsumus, Dómine, gloriósæ tuæ Genet", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-17": [ + { + "body": "*Ps 47:10-11*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tua in fi", + "id": "Introitus" + }, + { + "body": "Largíre nobis, quǽsumus, Dómine, semper spíritum cogitándi quæ recta sunt, propítius et agéndi: ut, qui sine te esse non", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Alexii Confessoris*\nDeus, qui nos beáti N. Confessóris tui ánnua solemnitáte lætíficas: concéde propíti", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:12-17*\nFratres: Debitóres sumus non carni, ut secúndum carnem viv", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias.\n*Ps 70:1*\n℣. Deus, in te sperávi: Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 16:1-9*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc: Ho", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28; 17:32*\nPópulum húmilem salvum fácies, Dómine, et óculos superbórum humiliábis: quóniam quis Deus præter te, D", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, múnera, quæ tibi de tua largitáte deférimus: ut hæc sacrosáncta mystéria, grátiæ tuæ operánte", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Alexii Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus n", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nGustáte et vidéte, quóniam suávis est Dóminus: beátus vir, qui sperat in eo.", + "id": "Communio" + }, + { + "body": "Sit nobis, Dómine, reparátio mentis et córporis cæléste mystérium: ut, cujus exséquimur cultum, sentiámus efféctum.\nPer ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Alexii Confessoris*\nRefécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-18": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus: qui beátum Simónem Confessórem tuum evangélicæ prædicatiónis grátiam sublimásti: concéde pro", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Camilli de Lellis Confessoris*\nDeus, qui sanctum Camíllum, ad animárum in extrémo agóne luctántium subs", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Camilli de Lellis Confessoris*\nHóstia immaculáta, qua illud Dómini nostri Jesu Christi imménsæ caritáti", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto N. Confessóre tuo, per hæc contra óm", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Camilli de Lellis Confessoris*\nPer hæc cœléstia aliménta, quæ, sancti Camílli Confessóris tui sollémnia", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-19": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui, ad evangelizándum paupéribus et ecclesiástici órdinis decórem promovéndum, beátum Vincéntium apostólica virtú", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios.\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et alios septuagínta duos:", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus: et super salutáre tuum exsultábit vehementer: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28; 19:29*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto Vincéntio Confessóre tuo, per hæc co", + "id": "Postcommunio" + } + ], + "2024-07-20": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Cesláum virgíneo morum candóre prǽditum, et salútis animárum zelo succénsum, in divérsis natiónum pópul", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Hieronymi Emiliani Confessoris*\nDeus, misericordiárum pater, per mérita et intercessiónem beáti Hierony", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et alios septuagínta duos:", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Hieronymi Emiliani Confessoris*\nClementíssime Deus, qui, véteri homine consúmpto, novum secúndum te in ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muni", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Hieronymi Emiliani Confessoris*\nAngelórum pane refécti te, Dómine, supplíciter deprecámur: ut, qui ánnu", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-21": [ + { + "body": "*Ps 53:6-7*\nEcce, Deus adjuvat me, et Dóminus suscéptor est ánimæ meæ: avérte mala inimícis meis, et in veritáte tua dis", + "id": "Introitus" + }, + { + "body": "Páteant aures misericórdiæ tuæ, Dómine, précibus supplicántium: et, ut peténtibus desideráta concédas; fac eos quæ tibi ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 10:6-13*\nFratres: Non simus concupiscéntes malórum, sicut et i", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nDómine, Dóminus noster, quam admirábile est nomen tuum in universa terra!\n℣. Quóniam eleváta est magnificéntia ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:41-47*\nIn illo témpore: Cum appropinquáret Jesus Jerúsalem, videns c", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nJustítiæ Dómini rectæ, lætificántes corda, et judícia ejus dulcióra super mel et favum: n", + "id": "Offertorium" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine, hæc digne frequentáre mystéria: quia, quóties hujus hóstiæ commemorátio celebrátur, opu", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Joann 6:57*\nQui mandúcat meam carnem et bibit meum sánguinem, in me manet et ego in eo, dicit Dóminus.", + "id": "Communio" + }, + { + "body": "Tui nobis, quǽsumus, Dómine, commúnio sacraménti, et purificatiónem cónferat, et tríbuat unitátem.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-07-22": [ + { + "body": "*Ps 118:95-96*\nMe exspectavérunt peccatóres, ut pérderent me: testimónia tua, Dómine, intelléxi: omnis consummatiónis vi", + "id": "Introitus" + }, + { + "body": "Beátæ Maríæ Magdalénæ, quǽsumus, Dómine, suffrágiis adjuvémur: cujus précibus exorátus, quatriduánum fratrem Lázarum viv", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Cant 3:2-5; 8:6-7*\nSurgam, et circuíbo civitátem: per vicos et pláteas quæram, quem díligit áni", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:36-50*\nIn illo témpore: Rogábat Jesum quidam de pharisæis, ut manduc", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Múnera nostra, quǽsumus. Dómine, beátæ Maríæ Magdalénæ gloriósa mérita tibi reddant accépta: cujus oblatiónis obséquium ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:121; 118:122; 118:128*\nFeci judícium et justítiam, Dómine, non calumniéntur mihi supérbi: ad ómnia mandáta tua d", + "id": "Communio" + }, + { + "body": "Sumpto, quǽsumus, Dómine, único ac salutári remédio, Córpore et Sánguine tuo pretióso: ab ómnibus malis, sanctæ Maríæ Ma", + "id": "Postcommunio" + } + ], + "2024-07-23": [ + { + "body": "*Dan 3:84; 3:87*\nSacerdótes Dei, benedícite Dóminum: sancti et húmiles corde, laudáte Deum.\n*Dan 3:57*\nBenedícite, ómnia", + "id": "Introitus" + }, + { + "body": "Deus, fidélium remunerátor animárum, qui hunc diem beáti Apollináris Sacerdótis tui martýrio consecrásti: tríbue nobis, ", + "id": "Oratio" + }, + { + "body": "*S. Liborii Ep. et Conf.*\nDa, quǽsumus, omnípotens Deus: ut beáti Libórii Confessóris tui atque Pontíficis veneránda sol", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1 Petri 5:1-11*\nCaríssimi: Senióres, qui in vobis sunt, obsecro, consénior et tes", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 22:24-30*\nIn illo témpore: Facta est conténtio inter discípulos, quis ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Réspice, Dómine, propítius super hæc múnera: quæ pro beáti Sacerdótis et Martyris tui Apollináris commemoratióne deférim", + "id": "Secreta" + }, + { + "body": "*Pro S. Liborio*\nSancti tui, quǽsumus, Dómine, nos úbique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiám", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:20; 20:21*\nDómine, quinque talénta tradidísti mihi, ecce, ália quinque superlucrátus sum. Euge, serve bone et f", + "id": "Communio" + }, + { + "body": "Tua sancta suméntes, quǽsumus, Dómine, ut beáti Apollináris nos fóveant continuáta præsídia: quia non désinis propítius ", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Liborio*\nPræsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Li", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-24": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Deus, qui beátam Cunegúndem dulcédinis tuæ benedictiónibus prævenísti, ac vírginem étiam in coniúgio conservásti: præsta", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Christinæ Virginis et Martyris*\nIndulgéntiam nobis, quǽsumus, Dómine, beáta Christína Virgo et Martyr i", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Munéribus tibi, Dómine, pro beáte Vírginis tuæ Cunegúndis honóre dicátis, benedictiónem tuam propitiátus effúnde: ut per", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Christinæ Virginis et Martyris*\nHóstias tibi, Dómine, beátæ Christínæ Vírginis et Mártyris tuæ dicátas ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Sumpta mystéria, quǽsumus, Dómine, suffragántibus beáte Cunegúndis Vírginis tuæ méritis, íncitent nos iúgiter, et illúst", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Christinæ Virginis et Martyris*\nDivíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut, in", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-25": [ + { + "body": "*Ps 138:17*\nMihi autem nimis bonoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2*\nDómine", + "id": "Introitus" + }, + { + "body": "Esto, Dómine, plebi tuæ sanctificátor et custos: ut, Apóstoli tui Jacóbi muníta præsídiis, et conversatióne tibi pláceat", + "id": "Oratio" + }, + { + "body": "*S. Christophori Martyris*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti Christóphori Mártyris tui natalícia cólimus,", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 4:9-15*\nFratres: Puto, quod Deus nos Apóstolos novíssimos ost", + "id": "Lectio" + }, + { + "body": "*Ps 44:17; 44:18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro pátribus tuis n", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 20:20-23*\nIn illo témpore: Accessit ad Jesum mater filiórum Zebedæ", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.", + "id": "Offertorium" + }, + { + "body": "Oblatiónes pópuli tui, quǽsumus, Dómine, beáti Jacóbi Apóstoli pássio beáta concíliet: et, quæ nostris non aptæ sunt mér", + "id": "Secreta" + }, + { + "body": "*Pro S. Christophoro*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mystériis, et ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël.", + "id": "Communio" + }, + { + "body": "Beáti Apóstoli tui Jacóbi, quǽsumus, Dómine, intercessióne nos ádjuva: pro cujus festivitáte percépimus tua sancta lætán", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Christophoro*\nDa, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-26": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Annæ: de cujus sollemnitáte gaudent Angeli et colláu", + "id": "Introitus" + }, + { + "body": "Deus, qui beátæ Annæ grátiam conférre dignatus es, ut Genetrícis unigéniti Fílii tui mater effici mererétur: concéde pro", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placatus inténde: ut per intercessiónem beátæ Annæ, quæ Genetrícis Fílii tui,", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi.", + "id": "Communio" + }, + { + "body": "Cœléstibus sacraméntis vegetáti, quǽsumus, Dómine, Deus noster: ut, intercessióne beátæ Annæ, quam Genetrícis Fílii tui ", + "id": "Postcommunio" + } + ], + "2024-07-27": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Pantaleonis Martyris*\nPræsta, quǽsumus, omnípotens Deus: ut, intercedénte beáto Pantaleóne Mártyre tuo,", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Pantaleonis Martyris*\nAccépta sit in conspéctu tuo, Dómine, nostra devótio: et ejus nobis fiat supplica", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Pantaleonis Martyris*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus ex", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-28": [ + { + "body": "*Ps 54:17-20; 54:23*\nDum clamárem ad Dóminum, exaudívit vocem meam, ab his, qui appropínquant mihi: et humiliávit eos, q", + "id": "Introitus" + }, + { + "body": "Deus, qui omnipoténtiam tuam parcéndo máxime et miserándo maniféstas: multíplica super nos misericórdiam tuam; ut, ad tu", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 12:2-11*\nFratres: Scitis, quóniam, cum gentes essétis, ad simu", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nCustódi me, Dómine, ut pupíllam óculi: sub umbra alárum tuárum prótege me.\n℣. De vultu tuo judícium meum", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:9-14*\nIn illo témpore: Dixit Jesus ad quosdam, qui in se confidébant", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", + "id": "Offertorium" + }, + { + "body": "Tibi, Dómine, sacrifícia dicáta reddántur: quæ sic ad honórem nóminis tui deferénda tribuísti, ut eadem remédia fíeri no", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nAcceptábis sacrificium justítiæ, oblatiónes et holocáusta, super altáre tuum, Dómine.", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut, quos divínis reparáre non désinis sacraméntis, tuis non destítuas benígnus auxíliis.\n", + "id": "Postcommunio" + } + ], + "2024-07-29": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ Marthæ Vírginis tuæ festivitáte gaudémus; ita piæ devotiónis erud", + "id": "Oratio" + }, + { + "body": "*Ss. Felicis, Simplicii, Faustini et Beatricis.*\nPræsta, quǽsumus, Dómine: ut, sicut pópulus christiánus Mártyrum tuórum", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11, 1-2.*\nFratres: Qui gloriátur, in Dómino gloriétu", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:38-42*\nIn illo témpore: Intrávit Jesus in quoddam castéllum: et múl", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Ss. Felicis, Simplicii, Faustini et Beatricis.*\nHóstias tibi, Dómine, pro sanctórum Mártyrum tuórum Felícis, Simplícii,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Ss. Felicis, Simplicii, Faustini et Beatricis.*\nPræsta, quǽsumus, omnípotens Deus: ut sanctórum Martyrum tuórum Felícis", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-30": [ + { + "body": "*Ps 54:17-20; 54:23*\nDum clamárem ad Dóminum, exaudívit vocem meam, ab his, qui appropínquant mihi: et humiliávit eos, q", + "id": "Introitus" + }, + { + "body": "Deus, qui omnipoténtiam tuam parcéndo máxime et miserándo maniféstas: multíplica super nos misericórdiam tuam; ut, ad tu", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Abdon et Sennen Martyrum*\nDeus, qui sanctis tuis Abdon et Sennen ad hanc glóriam veniéndi copiósum munu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 12:2-11*\nFratres: Scitis, quóniam, cum gentes essétis, ad simu", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nCustódi me, Dómine, ut pupíllam óculi: sub umbra alárum tuárum prótege me.\n℣. De vultu tuo judícium meum", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:9-14*\nIn illo témpore: Dixit Jesus ad quosdam, qui in se confidébant", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", + "id": "Offertorium" + }, + { + "body": "Tibi, Dómine, sacrifícia dicáta reddántur: quæ sic ad honórem nóminis tui deferénda tribuísti, ut eadem remédia fíeri no", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Abdon et Sennen Martyrum*\nHæc hóstia, quǽsumus, Dómine, quam sanctórum Mártyrum tuórum natalítia recens", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nAcceptábis sacrificium justítiæ, oblatiónes et holocáusta, super altáre tuum, Dómine.", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut, quos divínis reparáre non désinis sacraméntis, tuis non destítuas benígnus auxíliis.\n", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Abdon et Sennen Martyrum*\nPer hujus, Dómine, operationem mystérii, et vitia nostra purgéntur: et, inter", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-31": [ + { + "body": "*Philipp 2:10-11*\nIn nómine Jesu omne genu flectátur, cœléstium, terréstrium et infernórum: et omnis lingua confiteátur,", + "id": "Introitus" + }, + { + "body": "Deus, qui ad majórem tui nóminis glóriam propagándam, novo per beátum Ignátium subsídio militántem Ecclésiam roborásti: ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 2:8-10; 3:10-12*\nCaríssime: Memor esto, Dóminum Jesum Christum ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annuntiá", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et álios septuagínta duos: ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Adsint, Dómine Deus, oblatiónibus nostris sancti Ignátii benígna suffrágia: ut sacrosáncta mystéria, in quibus omnis san", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:49*\nIgnem veni míttere in terram: et quid volo, nisi ut accendátur?", + "id": "Communio" + }, + { + "body": "Laudis hóstia, Dómine, quam pro sancto Ignátio grátias agentes obtúlimus: ad perpétuam nos majestátis tuæ laudatiónem, e", + "id": "Postcommunio" + } + ], + "2024-08-01": [ + { + "body": "*Ps 54:17-20; 54:23*\nDum clamárem ad Dóminum, exaudívit vocem meam, ab his, qui appropínquant mihi: et humiliávit eos, q", + "id": "Introitus" + }, + { + "body": "Deus, qui omnipoténtiam tuam parcéndo máxime et miserándo maniféstas: multíplica super nos misericórdiam tuam; ut, ad tu", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Martyrum Machabæorum*\nFratérna nos, Dómine, Mártyrum tuórum coróna lætíficet: quæ et fídei nostræ præb", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 12:2-11*\nFratres: Scitis, quóniam, cum gentes essétis, ad simu", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nCustódi me, Dómine, ut pupíllam óculi: sub umbra alárum tuárum prótege me.\n℣. De vultu tuo judícium meum", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:9-14*\nIn illo témpore: Dixit Jesus ad quosdam, qui in se confidébant", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", + "id": "Offertorium" + }, + { + "body": "Tibi, Dómine, sacrifícia dicáta reddántur: quæ sic ad honórem nóminis tui deferénda tribuísti, ut eadem remédia fíeri no", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Martyrum Machabæorum*\nMystéria tua, Dómine, pro sanctórum Mártyrum tuórum honóre, devóta mente tractém", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nAcceptábis sacrificium justítiæ, oblatiónes et holocáusta, super altáre tuum, Dómine.", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut, quos divínis reparáre non désinis sacraméntis, tuis non destítuas benígnus auxíliis.\n", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Martyrum Machabæorum*\nPræsta, quǽsumus, omnípotens Deus: ut, quorum memóriam sacraménti participatióne", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-02": [ + { + "body": "*Luc 4:18*\nSpíritus Dómini super me: propter quod unxit me: evangelizáre paupéribus misit me, sanáre contrítos corde.\n*P", + "id": "Introitus" + }, + { + "body": "Deus, qui per beátum Alfónsum Maríam Confessórem tuum atque Pontíficem, animárum zelo succénsum, Ecclésiam tuam nova pro", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Stephani Papæ et Martyris*\nDeus, qui nos beáti N. Mártyris tui atque Pontíficis ánnua sollemnitáte lætí", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 2:1-7*\nCaríssime: Confortáre in grátia, quæ est in Christo Jesu", + "id": "Lectio" + }, + { + "body": "*Ps 118:52-53*\nMemor fui judiciórum tuórum a sǽculo, Dómine, et consolátus sum: deféctio ténuit me pro peccatóribus dere", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et alios septuagínta duos: ", + "id": "Evangelium" + }, + { + "body": "*Prov 3:9; 3:27*\nHónora Dóminum de tua substántia, et de primítiis ómnium frugum tuárum da ei. Noli prohibére benefácere", + "id": "Offertorium" + }, + { + "body": "Cœlésti, Dómine Jesu Christe, sacrifícii igne corda nostra in odórem suavitátis exúre: qui beáto Alfónso Maríæ tribuísti", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Stephani Papæ et Martyris*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto N. Mártyre tu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Eccli 50:1; 50:9*\nSacérdos magnus, qui in vita sua suffúlsit domum, et in diébus suis corroborávit templum, quasi ignis", + "id": "Communio" + }, + { + "body": "Deus, qui beátum Alfónsum Maríam Confessórem tuum atque Pontíficem fidelem divíni mystérii dispensatórem et præcónem eff", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Stephani Papæ et Martyris*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto N. Mártyr", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-03": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2024-08-04": [ + { + "body": "*Ps 67:6-7; 67:36*\nDeus in loco sancto suo: Deus qui inhabitáre facit unánimes in domo: ipse dabit virtútem et fortitúdi", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui, abundántia pietátis tuæ, et mérita súpplicum excédis et vota: effúnde super nos miseric", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 15:1-10*\nFratres: Notum vobis fácio Evangélium, quod prædicáv", + "id": "Lectio" + }, + { + "body": "*Ps 27:7 27:1*\nIn Deo sperávit cor meum, et adjútus sum: et reflóruit caro mea, et ex voluntáte mea confitébor illi.\n℣. ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 7:31-37*\nIn illo témpore: Exiens Jesus de fínibus Tyri, venit per Si", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nExaltábo te, Dómine, quóniam suscepísti me, nec delectásti inimícos meos super me: Dómine, clamávi ad te, et", + "id": "Offertorium" + }, + { + "body": "Réspice, Dómine, quǽsumus, nostram propítius servitútem: ut, quod offérimus, sit tibi munus accéptum, et sit nostræ frag", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Prov 3:9-10*\nHónora Dóminum de tua substántia, et de prímitiis frugum tuárum: et implebúntur hórrea tua saturitáte, et ", + "id": "Communio" + }, + { + "body": "Sentiámus, quǽsumus, Dómine, tui perceptióne sacraménti, subsídium mentis et córporis: ut, in utróque salváti, cæléstis ", + "id": "Postcommunio" + } + ], + "2024-08-05": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum. (Allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16.*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, ", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28; 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium. (Allelúja.)", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2024-08-06": [ + { + "body": "*Ps 76:19*\nIlluxérunt coruscatiónes tuæ orbi terræ: commóta est et contrémuit terra.\n*Ps 83:2-3*\nQuam dilécta tabernácul", + "id": "Introitus" + }, + { + "body": "Deus, qui fídei sacraménta in Unigéniti tui gloriósa Transfiguratióne patrum testimónio roborásti, et adoptiónem filióru", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Xysti II Papæ, Felicissimi et Agapiti Martyrum*\nDeus, qui nos concédis sane in Mártyrum tuórum Xysti F", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*2 Petri 1:16-19*\nCaríssimi: Non doctas fábulas secúti notam fecimus vobis Dómini n", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nSpeciosus forma præ fíliis hóminum: diffúsa est grátia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 17:1-9*\nIn illo témpore: Assúmpsit Jesus Petrum, et Jacóbum, et Joá", + "id": "Evangelium" + }, + { + "body": "*Ps 111:3*\nGlória et divítiæ in domo ejus: et justítia ejus manet in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Obláta, quǽsumus, Dómine, múnera gloriósa Unigéniti tui Transfiguratióne sanctífica: nosque a peccatórum máculis, splend", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Xysti II Papæ, Felicissimi et Agapiti Martyrum*\nMúnera tibi, Dómine, nostræ devotiónis offérimus: quæ ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Matt 17:9*\nVisiónem, quam vidístis, némini dixéritis, donec a mórtuis resúrgat Fílius hóminis.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut sacrosáncta Fílii tui Transfiguratiónis mystéria, quæ sollemni celebrámus offício,", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Xysti II Papæ, Felicissimi et Agapiti Martyrum*\nPræsta nobis, quǽsumus, Dómine: intercedéntibus sancti", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-07": [ + { + "body": "*Ps 36:30-31.*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1", + "id": "Introitus" + }, + { + "body": "Deus, qui beáto Cajetáno Confessóri tuo apostólicam vivéndi formam imitári tribuísti: da nobis, ejus intercessióne et ex", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Donati, Episcopi et Martyris*\nDeus, tuórum glória sacerdótum: præsta, quǽsumus, ut sancti Martyris tui ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec speráv", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annuntiá", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 6:24-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo potest ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio, et pro tuórum tibi grata sit honóre Sanctórum, e", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Donati, Episcopi et Martyris*\nPræsta, quǽsumus, Dómine: ut sancti Martyris tui et Episcopi Donati inter", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus : ut, qui cæléstia aliménta percépimus, intercedénte beáto Caietáno Confessóre tuo, per hæc co", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Donati, Episcopi et Martyris*\nOmnípotens et miséricors Deus, qui nos sacramentórum tuórum et partícipes", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-08": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, qui sanctum Joánnem Maríam pastoráli stúdio et jugi oratiónis ac pœniténtiæ ardóre mirábi", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Cyriaci, Largi et Smaragdi Martyrum*\nDeus, qui nos ánnua sanctórum Mártyrum tuórum Cyriáci, Largi et S", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Cyriaci, Largi et Smaragdi Martyrum*\nAccépta sit in conspéctu tuo, Dómine, nostra devótio: et eórum no", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Cyriaci, Largi et Smaragdi Martyrum*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus nost", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-09": [ + { + "body": "*Ps 111:9*\nDispérsit, dedit paupéribus: justítia ejus manet in sǽculum sǽculi: cornu ejus exaltábitur in glória.\n*Ps 111", + "id": "Introitus" + }, + { + "body": "Adésto, Dómine, supplicatiónibus nostris: et intercessióne beáti Lauréntii Mártyris tui, cujus prævénimus festivitátem; ", + "id": "Oratio" + }, + { + "body": "*Pro S. Romano Martyre*\nPræsta, quǽsumus, omnípotens Deus: ut, intercedénte beáto Románo Mártyre tuo, et a cunctis adver", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", + "id": "Lectio" + }, + { + "body": "*Ps 111:9; 111:2*\nDispersit, dedit paupéribus: justítia ejus manet in sǽculum sǽculi.\n℣. Potens in terra erit semen ejus", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:24-27*\nIn illo témpore: Dixit Jesus discípulis suis: Si quis vul", + "id": "Evangelium" + }, + { + "body": "*Job 16:20*\nOrátio mea munda est: et ídeo peto, ut detur locus voci meæ in cœlo: quia ibi est judex meus, et cónscius me", + "id": "Offertorium" + }, + { + "body": "Hóstias, Dómine, quas tibi offérimus, propítius súscipe: et, intercedénte beáto Lauréntio Mártyre tuo, víncula peccatóru", + "id": "Secreta" + }, + { + "body": "*Pro S. Romano Martyre*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mysteriis, e", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nQui vult veníre post me, ábneget semetípsum, et tollat crucem suam, et sequátur me.", + "id": "Communio" + }, + { + "body": "Da, quǽsumus, Dómine, Deus noster: ut, sicut beáti Lauréntii Mártyris tui commemoratióne, temporáli gratulámur offício; ", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Romano Martyre*\nQuǽsumus, omnípotensDeus: ut, qui cœlestia aliménta percépimus, intercedénte beáto Románo Mártyr", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-10": [ + { + "body": "*Ps 95:6*\nConféssio et pulchritúdo in conspéctu ejus: sánctitas et magnificéntia in sanctificatióne ejus.\n*Ps 95:1*\nCant", + "id": "Introitus" + }, + { + "body": "Da nobis, quǽsumus, omnípotens Deus: vitiórum nostrorum flammas exstínguere; qui beáto Lauréntio tribuísti tormentórum s", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 9:6-10.*\nFratres: Qui parce séminat, parce et metet: et qui sé", + "id": "Lectio" + }, + { + "body": "*Ps 16:3.*\nProbásti, Dómine, cor meum, et visitásti nocte.\n℣. Igne me examinásti, et non est invénta in me iníquitas. Al", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 12:24-26*\nIn illo témpore: Dixit Jesus discípulis suis: Amen, amen,", + "id": "Evangelium" + }, + { + "body": "*Ps 95:6*\nConféssio et pulchritúdo in conspéctu ejus: sánctitas, et magnificéntia in sanctificatióne ejus.", + "id": "Offertorium" + }, + { + "body": "Accipe, quǽsumus, Dómine, múnera dignánter obláta: et, beáti Lauréntii suffragántibus méritis, ad nostræ salútis auxíliu", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 12:26.*\nQui mihi mínistrat, me sequátur: et ubi ego sum, illic et miníster meus erit.", + "id": "Communio" + }, + { + "body": "Sacro múnere satiáti, súpplices te, Dómine, deprecámur: ut, quod débitæ servitútis celebrámus offício, intercedénte beát", + "id": "Postcommunio" + } + ], + "2024-08-11": [ + { + "body": "*Ps 69:2-3*\nDeus, in adjutórium meum inténde: Dómine, ad adjuvándum me festína: confundántur et revereántur inimíci mei,", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, de cujus múnere venit, ut tibi a fidélibus tuis digne et laudabíliter serviátur: tríbue, ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 3:4-9*\nFratres: Fidúciam talem habémus per Christum ad Deum: n", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nBenedícam Dóminum in omni témpore: semper laus ejus in ore meo.\n℣. In Dómino laudábitur ánima mea: áudiant m", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:23-37*\nIn illo témpore: Dixit Jesus discípulis suis: Beáti óculi, qu", + "id": "Evangelium" + }, + { + "body": "*Exod 32:11 32:13; 32:14*\nPrecátus est Moyses in conspéctu Dómini, Dei sui, et dixit: Quare, Dómine, irásceris in pópulo", + "id": "Offertorium" + }, + { + "body": "Hóstias, quǽsumus, Dómine, propítius inténde, quas sacris altáribus exhibémus: ut, nobis indulgéntiam largiéndo, tuo nóm", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13; 103:14-15*\nDe fructu óperum tuórum, Dómine, satiábitur terra: ut edúcas panem de terra, et vinum lætíficet c", + "id": "Communio" + }, + { + "body": "Vivíficet nos, quǽsumus, Dómine, hujus participátio sancta mystérii: et páriter nobis expiatiónem tríbuat et múnimen.\nPe", + "id": "Postcommunio" + } + ], + "2024-08-12": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ N. Vírginis tuæ festivitáte gaudémus; ita piæ devotiónis erudiámu", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2024-08-13": [ + { + "body": "*Ps 69:2-3*\nDeus, in adjutórium meum inténde: Dómine, ad adjuvándum me festína: confundántur et revereántur inimíci mei,", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, de cujus múnere venit, ut tibi a fidélibus tuis digne et laudabíliter serviátur: tríbue, ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Hippolyti et Cassiani Martyrum*\nDa, quǽsumus, omnípotens Deus: ut beatórum Mártyrum tuórum Hippolýti e", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 3:4-9*\nFratres: Fidúciam talem habémus per Christum ad Deum: n", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nBenedícam Dóminum in omni témpore: semper laus ejus in ore meo.\n℣. In Dómino laudábitur ánima mea: áudiant m", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:23-37*\nIn illo témpore: Dixit Jesus discípulis suis: Beáti óculi, qu", + "id": "Evangelium" + }, + { + "body": "*Exod 32:11 32:13; 32:14*\nPrecátus est Moyses in conspéctu Dómini, Dei sui, et dixit: Quare, Dómine, irásceris in pópulo", + "id": "Offertorium" + }, + { + "body": "Hóstias, quǽsumus, Dómine, propítius inténde, quas sacris altáribus exhibémus: ut, nobis indulgéntiam largiéndo, tuo nóm", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Hippolyti et Cassiani Martyrum*\nRéspice, Dómine, múnera pópuli tui, Sanctórum festivitáte votíva: et t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13; 103:14-15*\nDe fructu óperum tuórum, Dómine, satiábitur terra: ut edúcas panem de terra, et vinum lætíficet c", + "id": "Communio" + }, + { + "body": "Vivíficet nos, quǽsumus, Dómine, hujus participátio sancta mystérii: et páriter nobis expiatiónem tríbuat et múnimen.\nPe", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Hippolyti et Cassiani Martyrum*\nSacramentórum tuórum, Dómine, commúnio sumpta nos salvet: et in tuæ ve", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-14": [ + { + "body": "*Ps 44:13; 44:15; 44:16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus", + "id": "Introitus" + }, + { + "body": "Deus, qui virginálem aulam beátæ Maríæ, in qua habitáres, elígere dignátus es: da, quǽsumus; ut, sua nos defensióne muni", + "id": "Oratio" + }, + { + "body": "*Pro S. Eusebio Confessore*\nDeus, qui nos beáti Eusébii Confessóris tui ánnua sollemnitáte lætíficas: concéde propítius;", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:23-31*\nEgo quasi vitis fructificávi suavitátem odóris: et flores mei fructus honóris e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem qu", + "id": "Evangelium" + }, + { + "body": "Beáta es, Virgo María, quæ ómnium portásti Creatórem: genuísti qui te fecit, et in ætérnum pérmanes Virgo.", + "id": "Offertorium" + }, + { + "body": "Múnera nostra, Dómine, apud cleméntiam tuam Dei Genetrícis comméndet orátio: quam idcírco de præsénti sǽculo transtulíst", + "id": "Secreta" + }, + { + "body": "*Pro S. Eusebio Confessore*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Concéde, miséricors Deus, fragilitáti nostræ præsídium: ut, qui sanctæ Dei Genetrícis festivitátem prævénimus; intercess", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Eusebio Confessore*\nRefécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemora", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-15": [ + { + "body": "*Ap 12:1*\nSignum magnum appáruit in cœlo: múlier amicta sole, et luna sub pédibus ejus, et in cápite ejus coróna stellár", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui Immaculátam Vírginem Maríam, Fílii tui genitrícem, córpore et ánima ad cœléstem glóriam ", + "id": "Oratio" + }, + { + "body": "Léctio libri Judith.\n*Judith 13, 22-25; 15:10*\nBenedíxit te Dóminus in virtúte sua, quia per te ad níhilum redégit inimí", + "id": "Lectio" + }, + { + "body": "*Ps 44:11-12; 44:14*\nAudi, fília, et vide, et inclína aurem tuam, et concupíscit rex decórem tuum.\n℣. Omnis glória ejus ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:41-50*\nIn illo témpore: Repléta est Spíritu Sancto Elisabeth et excl", + "id": "Evangelium" + }, + { + "body": "*Gen 3:15*\nInimicítias ponam inter te et mulíerem, et semen tuum et semen illíus.", + "id": "Offertorium" + }, + { + "body": "Ascéndat ad te, Dómine, nostræ devotiónis oblátio, et, beatíssima Vírgine María in cœlum assumpta intercedénte, corda no", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "*Luc 1:48-49*\nBeátam me dicent omnes generatiónes, quia fecit mihi magna qui potens est.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salutáribus sacraméntis: da, quǽsumus; ut, méritis et intercessióne beátæ Vírginis Maríæ in cœlum assúm", + "id": "Postcommunio" + } + ], + "2024-08-16": [ + { + "body": "*Ps 111:9*\nDispérsit, dedit paupéribus: justítia ejus manet in sǽculum sǽculi: cornu ejus exaltábitur in glória.\n*Ps 111", + "id": "Introitus" + }, + { + "body": "Deus, qui præ ómnibus Sanctis tuis beátum Jóachim Genetrícis Fílii tui patrem esse voluísti: concéde, quǽsumus; ut, cuju", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec speráv", + "id": "Lectio" + }, + { + "body": "*Ps 111:9; 111:2*\nDispérsit, dedit paupéribus: justítia ejus manet in sǽculum sǽculi.\n℣. Potens in terra erit semen ejus", + "id": "Graduale" + }, + { + "body": "Initium ☩ sancti Evangélii secúndum Matthǽum\n*Matt 1:1-16*\nLiber generatiónis Jesu Christi, fílii David, fílii Abraham. ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", + "id": "Offertorium" + }, + { + "body": "Súscipe, clementíssime Deus, sacrifícium in honórem sancti Patriarchæ Jóachim, patris Maríæ Vírginis, majestáti tuæ oblá", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut per hæc sacraménta, quæ súmpsimus, intercedéntibus méritis et précibus beáti Jóachim patri", + "id": "Postcommunio" + } + ], + "2024-08-17": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui nos beáti Hyacínthi Confessóris tui ánnua solemnitáte lætíficas: concéde propítius; ut, cujus natalítia cólimu", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muni", + "id": "Postcommunio" + } + ], + "2024-08-18": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nRéspice, Dómine, in testaméntum tuum, et ánimas páuperum tuórum ne derelínquas in finem: exsúrg", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, da nobis fídei, spei et caritátis augméntum: et, ut mereámur asséqui quod promíttis, fac nos", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas\n*Gal 3:16-22*\nFratres: Abrahæ dictæ sunt promissiónes, et sémini ejus. N", + "id": "Lectio" + }, + { + "body": "*Ps 73:20; 73:19; 73:22*\nRéspice, Dómine, in testaméntum tuum: et ánimas páuperum tuórum ne obliviscáris in finem.\n℣. Ex", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 17:11-19*\nIn illo témpore: Dum iret Jesus in Jerúsalem, transíbat per m", + "id": "Evangelium" + }, + { + "body": "*Sap 30:15-16*\nIn te sperávi, Dómine; dixi: Tu es Deus meus, in mánibus tuis témpora mea.", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, pópulo tuo, propitiáre munéribus: ut, hac oblatióne placátus, et indulgéntiam nobis tríbuas et postu", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Sap 16:20*\nPanem de cœlo dedísti nobis, Dómine, habéntem omne delectaméntum et omnem sapórem suavitátis.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, cœléstibus sacraméntis: ad redemptiónis ætérnæ, quǽsumus, proficiámus augméntum.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-08-19": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Joánnem, Confessórem tuum, ad cultum sacrórum Córdium Jesu et Maríæ rite promovéndum, mirabíliter infla", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + } + ], + "2024-08-20": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Bernárdum minístrum tribuísti: præsta, quǽsumus; ut, quem Doctórem vitæ habúi", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 39:6-14*\nJustus cor suum tradet ad vigilándum dilúculo ad Dóminum, qui fecit illum, et in ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", + "id": "Offertorium" + }, + { + "body": "Sancti Bernardi Confessóris tui atque Doctoris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et t", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Bernárdus Conféssor tuus et Doctor egrégius, quǽsumus, precátor ac", + "id": "Postcommunio" + } + ], + "2024-08-21": [ + { + "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, qui beátam Joánnam Francíscam, tuo amóre succénsam, admirábili spíritus fortitúdine per o", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Illo nos amóris igne, quǽsumus. Dómine, hæc hóstia salutáris inflámmet: quo beátæ Joannæ Francíscæ cor veheménter incénd", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Communio" + }, + { + "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos cœléstis panis virtúte satiásti, beáta Joánna Francisca interced", + "id": "Postcommunio" + } + ], + "2024-08-22": [ + { + "body": "*Hebr 4:16.*\nAdeámus cum fidúcia ad thronum grátiæ, ut misericórdiam consequámur, et grátiam inveniámus in auxílio oppor", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui in Corde beátæ Maríæ Vírginis dignum Spíritus Sancti habitáculum præparásti: concéde pro", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Timotheo, Hippolyto et Symphoriano, Martyribus*\nAuxílium tuum nobis, Dómine, quǽsumus, placátus impénde: et, in", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:23-31*\nEgo quasi vitis fructificávi suavitátem odóris: et flores mei, fructus honóris ", + "id": "Lectio" + }, + { + "body": "*Ps 12:6*\nExsultábit cor meum in salutári tuo: cantábo Dómino, qui bona tríbuit mihi: et psallam nómini Dómini altíssimi", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 19:25-27*\nIn illo témpore: Stabant juxta crucem Jesu mater ejus, e", + "id": "Evangelium" + }, + { + "body": "*Luc 1:46; 1:49*\nExsultávit spíritus meus in Deo salutári meo; quia fecit mihi magna qui potens est, et sanctum nomen ej", + "id": "Offertorium" + }, + { + "body": "Majestáti tuæ, Dómine, Agnum immaculátum offeréntes, quǽsumus: ut corda nostra ignis ille divínus accéndat, cui Cor beát", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Timotheo, Hippolyto et Symphoriano, Martyribus*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum hon", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "*Joann 19:27*\nDixit Jesus matri suæ: Múlier, ecce fílius tuus: deinde dixit discípulo: Ecce mater tua. Et ex illa hora a", + "id": "Communio" + }, + { + "body": "Divínis refécti munéribus te, Dómine, supplíciter exorámus: ut beátæ Maríæ Vírginis intercessióne, cujus immaculáti Cord", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Timotheo, Hippolyto et Symphoriano, Martyribus*\nDivíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-23": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui per beátum Philippum Confessórem tuum, exímium nobis humilitátis exémplum tribuísti: da fámulis tuis próspera ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto Philíppo Confessóre tuo, per hæc con", + "id": "Postcommunio" + } + ], + "2024-08-24": [ + { + "body": "*Ps 138:17.*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortatus est principatus eórum.\n*Ps 138:1-2*\nDómin", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui hujus diei venerándam sanctámque lætítiam in beáti Apóstoli tui Bartholomæi festivitáte ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 12:27-31*\nFratres: Vos estis corpus Christi et membra de membr", + "id": "Lectio" + }, + { + "body": "*Ps 44:17; 44:18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro patribus tuis n", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 6:12-19*\nIn illo témpore: Exiit Jesus in montem oráre, et erat pernóct", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", + "id": "Offertorium" + }, + { + "body": "Beáti Apóstoli tui Bartholomæi sollémnia recenséntes, quǽsumus, Dómine: ut ejus auxílio tua benefícia capiámus, pro quo ", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël, dicit Dóminus.", + "id": "Communio" + }, + { + "body": "Sumptum, Dómine, pignus redemptiónis ætérnæ: sit nobis, quǽsumus; interveniénte beáto Bartholomæo Apóstolo tuo, vitæ præ", + "id": "Postcommunio" + } + ], + "2024-08-25": [ + { + "body": "*Ps 83:10-11.*\nProtéctor noster, áspice, Deus, et réspice in fáciem Christi tui: quia mélior est dies una in átriis tuis", + "id": "Introitus" + }, + { + "body": "Custódi, Dómine, quǽsumus, Ecclésiam tuam propitiatióne perpétua: et quia sine te lábitur humána mortálitas; tuis semper", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:16-24*\nFratres: Spíritu ambuláte, et desidéria carnis non perfic", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nBonum est confidére in Dómino, quam confidére in hómine.\n℣. Bonum est speráre in Dómino, quam speráre in pr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 6:24-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo potest", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nImmíttet Angelus Dómini in circúitu timéntium eum, et erípiet eos: gustáte et vidéte, quóniam suávis est Dóm", + "id": "Offertorium" + }, + { + "body": "Concéde nobis, Dómine, quǽsumus, ut hæc hóstia salutáris et nostrórum fiat purgátio delictórum, et tuæ propitiátio potes", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Matt 6:33*\nPrimum quǽrite regnum Dei, et ómnia adjiciéntur vobis, dicit Dóminus.", + "id": "Communio" + }, + { + "body": "Puríficent semper et múniant tua sacraménta nos, Deus: et ad perpétuæ ducant salvatiónis efféctum.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-08-26": [ + { + "body": "*Ps 86:1-2*\nFundaménta eius in móntibus sanctis: díligit Dóminus portas Sion super ómnia tabernácula Jacob.\n*Ps 86:3*\nGl", + "id": "Introitus" + }, + { + "body": "Omnipotens et misericors Deus, qui ad defensionem populi Polonici in beatissima Virgine Maria perpetuum auxilium mirabli", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Prov 8:17-24; 8:32-35*\nEgo díligentés mé díligó et quí máne vigilant ad mé invenient mé. Mécum ", + "id": "Lectio" + }, + { + "body": "Porta cæli et stella maris es. Virgo Maria, Regis æterni Mater ac Regina nostra.\n℣. Gratos nos redde Filio tuo: quia omn", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 2:1-11*\nIn illo témpore: Núptiæ factæ sunt in Cana Galilǽæ: et era", + "id": "Evangelium" + }, + { + "body": "*Ps 47:13-15*\nCircumdate Sion, et complectimini eam, narrate in turribus eius: pronite corda vestra in virtute eius, et ", + "id": "Offertorium" + }, + { + "body": "Pro religiónis christiánæ triúmpho hóstias placatiónis tibi, Dómine, immolámus: quæ ut nobis profíciant, opem auxiliátri", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 86:3; 86:2*\nGloriosa dicta sunt de te, civitas Dei: diligit Dominus portas Sion super omnia tabernacula Iacob.", + "id": "Communio" + }, + { + "body": "Adésto, Dómine, pópulis, qui participatióne Córporis et Sánguinis tui reficiúntur: ut, sanctíssima tua Genetríce auxiliá", + "id": "Postcommunio" + } + ], + "2024-08-27": [ + { + "body": "*Ps 33:12*\nVeníte, fílii, audíte me: timorem Dómini docébo vos.\n*Ps 33:2*\nBenedícam Dóminum in omni témpore: semper laus", + "id": "Introitus" + }, + { + "body": "Deus, qui per sanctum Joséphum Confessórem tuum, ad erudiéndam spíritu intellegéntiæ ac pietátis juventútem, novum Ecclé", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 10:10-14*\nJustum dedúxit Dóminus per vias rectas, et ostendit illi regnum Dei, et dedit illi", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-5*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes:", + "id": "Evangelium" + }, + { + "body": "*Ps 9:17*\nDesidérium páuperum exaudívit Dóminus: præparatiónem cordis eórum audívit auris tua.", + "id": "Offertorium" + }, + { + "body": "Atáre tuum, Dómine, munéribus cumulamus oblatis: ut ejus nobis fiant supplicatione propitia, cujus nos donasti patrocíni", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 10:14*\nSínite párvulos veníre ad me, et ne prohibuéritis eos: tálium est enim regnum Dei.", + "id": "Communio" + }, + { + "body": "Sanctificáti, Dómine, salutári mystério: quǽsumus; ut, intercedénte sancto Josépho Confessóre tuo, ad majus semper profi", + "id": "Postcommunio" + } + ], + "2024-08-28": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Adésto supplicatiónibus nostris, omnípotens Deus: et, quibus fidúciam sperándæ pietátis indúlges, intercedénte beáto Aug", + "id": "Oratio" + }, + { + "body": "*Pro S. Hermete Martyre*\nDeus, qui beátum Hermétem Mártyrem tuum virtúte constántiæ in passióne roborásti: ex ejus nobis", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis s", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", + "id": "Offertorium" + }, + { + "body": "Sancti Augustíni Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et t", + "id": "Secreta" + }, + { + "body": "*Pro S. Hermete Martyre*\nSacrifícium tibi, Dómine, laudis offérimus in tuórum commemoratióne Sanctórum: da, quǽsumus; ut", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Augustínus Póntifex tuus et Doctor egrégius, quǽsumus, precátor ac", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Hermete Martyre*\nRepleti, Dómine, benedictióne cœlésti, quǽsumus cleméntiam tuam: ut, intercedénte beáto Herméte", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-29": [ + { + "body": "*Ps 118:46-47.*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ ", + "id": "Introitus" + }, + { + "body": "Sancti Joánnis Baptístæ Præcursóris et Martyris tui, quǽsumus, Dómine, veneránda festívitas: salutáris auxílii nobis præ", + "id": "Oratio" + }, + { + "body": "*Pro S. Sabina Martyre*\nDeus, qui inter cétera poténtiæ tuæ mirácula étiam in sexu frágili victóriam martýrii contulísti", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ.\n*Jer 1:17-19*\nIn diébus illis: Factum est verbum Dómini ad me, dicens: Accínge lumbos tuos, et ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiándu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 6:17-29*\nIn illo témpore: Misit Heródes, ac ténuit Joánnem, et vinxi", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Múnera, quæ tibi, Dómine, pro sancti Martyris tui Joánnis Baptístæ passióne deférimus: quǽsumus; ut ejus obténtu nobis p", + "id": "Secreta" + }, + { + "body": "*Pro S. Sabina Martyre*\nHóstias tibi, Dómine, beátæ Sabínæ Mártyris tuæ dicátas méritis, benígnus assúme: et ad perpétuu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso.", + "id": "Communio" + }, + { + "body": "Cónferat nobis, Dómine, sancti Joánnis Baptístæ sollémnitas: ut et magnífica sacraménta, quæ súmpsimus, significáta vene", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Sabina Martyre*\nDivíni muneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut, intercedénte beáta Sabína M", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-30": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Bonórum ómnium largítor, omnípotens Deus, qui beátam Rosam, cœléstis grátiæ rore prævéntam, virginitátis et patiéntiæ de", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Felice et Adaucto*\nMajestátem tuam, Dómine, súpplices exorámus: ut, sicut nos júgiter Sanctórum tuórum commemor", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Felice et Adaucto*\nHóstias, Dómine, tuæ plebis inténde: et, quas in honóre Sanctórum tuórum devóta mente celébr", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Felice et Adaucto*\nRepléti, Dómine, munéribus sacris: quǽsumus: ut, intercedéntibus Sanctis tuis, in gratiárum ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-31": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui in liberándis fidélibus tuis ab impiórum captivitáte beátum Raymúndum Confessórem tuum mirábilem effecísti: ej", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlesti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + } + ], + "2024-09-01": [ + { + "body": "*Ps 85:1; 85:2-3*\nInclína, Dómine, aurem tuam ad me, et exáudi me: salvum fac servum tuum, Deus meus, sperántem in te: m", + "id": "Introitus" + }, + { + "body": "Ecclésiam tuam, Dómine, miserátio continuáta mundet et múniat: et quia sine te non potest salva consístere; tuo semper m", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:25-26; 6:1-10*\nFratres: Si spíritu vívimus, spíritu et ambulémus", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3.*\nBonum est confitéri Dómino: et psallere nómini tuo, Altíssime.\n℣. Ad annuntiándum mane misericórdiam tuam, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:11-16*\nIn illo témpore: Ibat Jesus in civitátem, quæ vocátur Naim: e", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2; 39:3; 39:4*\nExspéctans exspectávi Dóminum, et respéxit me: et exaudívit deprecatiónem meam: et immísit in os m", + "id": "Offertorium" + }, + { + "body": "Tua nos, Dómine, sacramenta custodiant: et contra diabólicos semper tueántur incúrsus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Joann 6:52*\nPanis, quem ego dédero, caro mea est pro sǽculi vita.", + "id": "Communio" + }, + { + "body": "Mentes nostras et córpora possídeat, quǽsumus, Dómine, doni cœléstis operátio: ut non noster sensus in nobis, sed júgite", + "id": "Postcommunio" + } + ], + "2024-09-02": [ + { + "body": "*Ps 36:30-31.*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, Ecclésiæ tuæ, omnípotens Deus: ut beátum Stéphanum Confessórem tuum, quem regnántem in terris propaga", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 31:8-11*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiándu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:12-26*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc: ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Réspice, quas offérimus, hóstias, omnípotens Deus: et præsta; ut, qui passiónis Dominicæ mystéria celebrámus, imitémur q", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut beáti Stephani Confessóris tui fidem cóngrua devotióne sectémur; qui, pro ejúsdem ", + "id": "Postcommunio" + } + ], + "2024-09-03": [ + { + "body": "*Ps 88:20-22*\nExtuli eléctum de pópulo, óleo sancto meo unxi eum: ut manus mea sit semper cum eo, et brácchium meum conf", + "id": "Introitus" + }, + { + "body": "Deus, qui ad tuéndam cathólicam fidem, et univérsa in Christo instauránda sanctum Pium, Summum Pontíficem, cælésti sapié", + "id": "Oratio" + }, + { + "body": "Lectio prima Sancti Pauli apóstoli ad Thessalonicénses\n*1 Thess 2:2-8*\nFratres: Fidúciam habúimus in Deo nostro, loqui a", + "id": "Lectio" + }, + { + "body": "*Ps 39:10-11*\nAnnuntiávi justítiam tuam in cœtu magno; ecce lábia mea non cohíbui: Dómine, tu nosti.\n℣. Justítiam tuam n", + "id": "Graduale" + }, + { + "body": "Sequéntia Sancti evangélii secúndum Joánnem\n*Joannes 21:15-17*\nIn illo témpore, dicit Jesus Simóni Petro: Simon Joánnis,", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nVeníte, fílii; audíte me: timórem Dómini docébo vos.", + "id": "Offertorium" + }, + { + "body": "Oblatiónibus nostris, quǽsumus, Dómine, benígne suscéptis, da nobis, ut hæc divína mystéria, sancto Pio Summo Pontífice ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joannes 6:56-57*\nCaro enim mea vere est cibus: et sanguis meus, vere est potus; qui mandúcat meam carnem et bibit meum ", + "id": "Communio" + }, + { + "body": "Mensæ cæléstis virtúte refécti, quǽsumus, Dómine Deus noster: ut, interveniénte sancto Pio Summo Pontífice; fortes effic", + "id": "Postcommunio" + } + ], + "2024-09-04": [ + { + "body": "*Ps 85:1; 85:2-3*\nInclína, Dómine, aurem tuam ad me, et exáudi me: salvum fac servum tuum, Deus meus, sperántem in te: m", + "id": "Introitus" + }, + { + "body": "Ecclésiam tuam, Dómine, miserátio continuáta mundet et múniat: et quia sine te non potest salva consístere; tuo semper m", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:25-26; 6:1-10*\nFratres: Si spíritu vívimus, spíritu et ambulémus", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3.*\nBonum est confitéri Dómino: et psallere nómini tuo, Altíssime.\n℣. Ad annuntiándum mane misericórdiam tuam, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:11-16*\nIn illo témpore: Ibat Jesus in civitátem, quæ vocátur Naim: e", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2; 39:3; 39:4*\nExspéctans exspectávi Dóminum, et respéxit me: et exaudívit deprecatiónem meam: et immísit in os m", + "id": "Offertorium" + }, + { + "body": "Tua nos, Dómine, sacramenta custodiant: et contra diabólicos semper tueántur incúrsus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 6:52*\nPanis, quem ego dédero, caro mea est pro sǽculi vita.", + "id": "Communio" + }, + { + "body": "Mentes nostras et córpora possídeat, quǽsumus, Dómine, doni cœléstis operátio: ut non noster sensus in nobis, sed júgite", + "id": "Postcommunio" + } + ], + "2024-09-05": [ + { + "body": "*Eccli 45:30*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.\n", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, omnípotens Deus: ut beáti Lauréntii Confessóris tui atque Pontíficis veneránda sollémnitas, et devotiónem ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:16-27; 45:3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Ps 44:20*\nNon est invéntus símilis illi, qui conser", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam h", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Lauréntio Confessór", + "id": "Postcommunio" + } + ], + "2024-09-06": [ + { + "body": "*Ps 85:1; 85:2-3*\nInclína, Dómine, aurem tuam ad me, et exáudi me: salvum fac servum tuum, Deus meus, sperántem in te: m", + "id": "Introitus" + }, + { + "body": "Ecclésiam tuam, Dómine, miserátio continuáta mundet et múniat: et quia sine te non potest salva consístere; tuo semper m", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:25-26; 6:1-10*\nFratres: Si spíritu vívimus, spíritu et ambulémus", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3.*\nBonum est confitéri Dómino: et psallere nómini tuo, Altíssime.\n℣. Ad annuntiándum mane misericórdiam tuam, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:11-16*\nIn illo témpore: Ibat Jesus in civitátem, quæ vocátur Naim: e", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2; 39:3; 39:4*\nExspéctans exspectávi Dóminum, et respéxit me: et exaudívit deprecatiónem meam: et immísit in os m", + "id": "Offertorium" + }, + { + "body": "Tua nos, Dómine, sacramenta custodiant: et contra diabólicos semper tueántur incúrsus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 6:52*\nPanis, quem ego dédero, caro mea est pro sǽculi vita.", + "id": "Communio" + }, + { + "body": "Mentes nostras et córpora possídeat, quǽsumus, Dómine, doni cœléstis operátio: ut non noster sensus in nobis, sed júgite", + "id": "Postcommunio" + } + ], + "2024-09-07": [ + { + "body": "*Ps 63:11.*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde.\n*Ps 63:2*\nExáudi, Deus, ora", + "id": "Introitus" + }, + { + "body": "Beati Martyris tui Melchioris, quǽsumus, Domine, precibus adiuvemur; ut, cuius gloriamur triumpho, fidei constantiam imi", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timotheum\n*2 Tim 2:8-10; 3:10-12.*\nCaríssime: Memor esto, Dóminum Jesum Christum", + "id": "Lectio" + }, + { + "body": "*Ps 36:24*\nJustus cum cecíderit, non collidétur: quia Dóminus suppónit manum suam.\n*Ps 36:26*\nTota die miserétur, et cóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:26-32*\nIn illo témpore: Dixit Jesus discípulis suis: Nihil est o", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso: vitam pétiit a te, et tribuísti ei, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accépta sit in conspéctu tuo, Dómine, nostra devótio: et ejus nobis fiat supplicatióne salutáris, pro cujus sollemnitáte", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 12:26*\nQui mihi mínistrat, me sequátur: et ubi sum ego, illic et miníster meus erit.", + "id": "Communio" + }, + { + "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedénte beáto N. ", + "id": "Postcommunio" + } + ], + "2024-09-08": [ + { + "body": "*Ps 85:3; 85:5*\nMiserére mihi, Dómine, quóniam ad te clamávi tota die: quia tu, Dómine, suávis ac mitis es, et copiósus ", + "id": "Introitus" + }, + { + "body": "Tua nos, quǽsumus, Dómine, grátia semper et prævéniat et sequátur: ac bonis opéribus júgiter præstet esse inténtos.\nPer ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Nativitate Beatæ Mariæ Virginis*\nFámulis tuis, quǽsumus, Dómine, cœléstis grátiæ munus impertíre: ut, quib", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 3:13-21*\nFratres: Obsecro vos, ne deficiátis in tribulatiónibus ", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:1-11*\nIn illo témpore: Cum intráret Jesus in domum cujúsdam príncip", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14; 39:15*\nDómine, in auxílium meum réspice: confundántur et revereántur, qui quærunt ánimam meam, ut áuferant ea", + "id": "Offertorium" + }, + { + "body": "Munda nos, quǽsumus, Dómine, sacrifícii præséntis efféctu: et pérfice miserátus in nobis; ut ejus mereámur esse partícip", + "id": "Secreta" + }, + { + "body": "*Commemoratio Nativitate Beatæ Mariæ Virginis*\nUnigéniti tui, Dómine, nobis succúrrat humánitas: ut, qui natus de Vírgin", + "id": "Commemoratio Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-17; 70:18*\nDómine, memorábor justítiæ tuæ solíus: Deus, docuísti me a juventúte mea: et usque in senéctam et s", + "id": "Communio" + }, + { + "body": "Purífica, quǽsumus, Dómine, mentes nostras benígnus, et rénova cœléstibus sacraméntis: ut consequénter et córporum præse", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Nativitate Beatæ Mariæ Virginis*\nSúmpsimus, Dómine, celebritátis ánnuæ votíva sacraménta: præsta, quǽsumus", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-09": [ + { + "body": "*Ps 85:3; 85:5*\nMiserére mihi, Dómine, quóniam ad te clamávi tota die: quia tu, Dómine, suávis ac mitis es, et copiósus ", + "id": "Introitus" + }, + { + "body": "Tua nos, quǽsumus, Dómine, grátia semper et prævéniat et sequátur: ac bonis opéribus júgiter præstet esse inténtos.\nPer ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Gorgonii Martyris*\nSanctus tuus, Dómine, Gorgónius sua nos intercessióne lætíficet: et pia fáciat solle", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 3:13-21*\nFratres: Obsecro vos, ne deficiátis in tribulatiónibus ", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:1-11*\nIn illo témpore: Cum intráret Jesus in domum cujúsdam príncip", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14; 39:15*\nDómine, in auxílium meum réspice: confundántur et revereántur, qui quærunt ánimam meam, ut áuferant ea", + "id": "Offertorium" + }, + { + "body": "Munda nos, quǽsumus, Dómine, sacrifícii præséntis efféctu: et pérfice miserátus in nobis; ut ejus mereámur esse partícip", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Gorgonii Martyris*\nGrata tibi sit, Dómine, nostræ servitútis oblátio: pro qua sanctus Gorgónius Martyr ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-17; 70:18*\nDómine, memorábor justítiæ tuæ solíus: Deus, docuísti me a juventúte mea: et usque in senéctam et s", + "id": "Communio" + }, + { + "body": "Purífica, quǽsumus, Dómine, mentes nostras benígnus, et rénova cœléstibus sacraméntis: ut consequénter et córporum præse", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Gorgonii Martyris*\nFamíliam tuam, Deus, suávitas ætérna contíngat et végetet: quæ in Mártyre tuo Gorgón", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-10": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Adésto Dómine supplicatiónibus nostris quas in beáti Nicolái Confessóris tui solemnitáte deférimus: ut qui nostræ justít", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto N. Confessóre tuo, per hæc contra óm", + "id": "Postcommunio" + } + ], + "2024-09-11": [ + { + "body": "*Ps 85:3; 85:5*\nMiserére mihi, Dómine, quóniam ad te clamávi tota die: quia tu, Dómine, suávis ac mitis es, et copiósus ", + "id": "Introitus" + }, + { + "body": "Tua nos, quǽsumus, Dómine, grátia semper et prævéniat et sequátur: ac bonis opéribus júgiter præstet esse inténtos.\nPer ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Proti et Hyacinthi Martyrum*\nBeatórum Mártyrum tuórum Proti et Hyacínthi nos, Dómine, fóveat pretiósa ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 3:13-21*\nFratres: Obsecro vos, ne deficiátis in tribulatiónibus ", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:1-11*\nIn illo témpore: Cum intráret Jesus in domum cujúsdam príncip", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14; 39:15*\nDómine, in auxílium meum réspice: confundántur et revereántur, qui quærunt ánimam meam, ut áuferant ea", + "id": "Offertorium" + }, + { + "body": "Munda nos, quǽsumus, Dómine, sacrifícii præséntis efféctu: et pérfice miserátus in nobis; ut ejus mereámur esse partícip", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Proti et Hyacinthi Martyrum*\nPro sanctórum Mártyrum tuórum Proti et Hyacínthi commemoratióne, múnera t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-17; 70:18*\nDómine, memorábor justítiæ tuæ solíus: Deus, docuísti me a juventúte mea: et usque in senéctam et s", + "id": "Communio" + }, + { + "body": "Purífica, quǽsumus, Dómine, mentes nostras benígnus, et rénova cœléstibus sacraméntis: ut consequénter et córporum præse", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Proti et Hyacinthi Martyrum*\nUt percépta nos, Dómine, tua sancta puríficent: beatórum Mártyrum tuórum ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-12": [ + { + "body": "*Ps 44:13; 44:15-16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus add", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut fidéles tui, qui sub sanctíssimæ Vírginis Maríæ Nómine et protectióne lætántur; e", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:23-31*\nEgo quasi vitis fructificávi suavitátem odóris: et flores mei fructus honóris e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:26-38*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitáte", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28; 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos úbique protegi; in ", + "id": "Postcommunio" + } + ], + "2024-09-13": [ + { + "body": "*Ps 85:3; 85:5*\nMiserére mihi, Dómine, quóniam ad te clamávi tota die: quia tu, Dómine, suávis ac mitis es, et copiósus ", + "id": "Introitus" + }, + { + "body": "Tua nos, quǽsumus, Dómine, grátia semper et prævéniat et sequátur: ac bonis opéribus júgiter præstet esse inténtos.\nPer ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 3:13-21*\nFratres: Obsecro vos, ne deficiátis in tribulatiónibus ", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:1-11*\nIn illo témpore: Cum intráret Jesus in domum cujúsdam príncip", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14; 39:15*\nDómine, in auxílium meum réspice: confundántur et revereántur, qui quærunt ánimam meam, ut áuferant ea", + "id": "Offertorium" + }, + { + "body": "Munda nos, quǽsumus, Dómine, sacrifícii præséntis efféctu: et pérfice miserátus in nobis; ut ejus mereámur esse partícip", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-17; 70:18*\nDómine, memorábor justítiæ tuæ solíus: Deus, docuísti me a juventúte mea: et usque in senéctam et s", + "id": "Communio" + }, + { + "body": "Purífica, quǽsumus, Dómine, mentes nostras benígnus, et rénova cœléstibus sacraméntis: ut consequénter et córporum præse", + "id": "Postcommunio" + } + ], + "2024-09-14": [ + { + "body": "*Gal 6:14*\nNos autem gloriári opórtet in Cruce Dómini nostri Jesu Christi: in quo est salus, vita et resurréctio nostra:", + "id": "Introitus" + }, + { + "body": "Deus, qui nos hodiérna die Exaltatiónis sanctæ Crucis ánnua sollemnitáte lætíficas: præsta, quǽsumus; ut, cujus mystériu", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 2:5-11*\nFratres: Hoc enim sentíte in vobis, quod et in Chr", + "id": "Lectio" + }, + { + "body": "*Phil 2:8-9*\nChristus factus est pro nobis obœ́diens usque ad mortem, mortem autem crucis.\n℣. Propter quod et Deus exalt", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 12:31-36*\nIn illo témpore: Dixit Jesus turbis Judæórum: Nunc judíci", + "id": "Evangelium" + }, + { + "body": "Prótege, Dómine, plebem tuam per signum sanctæ Crucis ab ómnibus insídiis inimicórum ómnium: ut tibi gratam exhibeámus s", + "id": "Offertorium" + }, + { + "body": "Jesu Christi, Dómini nostri, Córpore et Sánguine saginándi, per quem Crucis est sanctificátum vexíllum: quǽsumus, Dómine", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "Per signum Crucis de inimícis nostris líbera nos, Deus noster.", + "id": "Communio" + }, + { + "body": "Adésto nobis, Dómine, Deus noster: et, quos sanctæ Crucis lætári facis honóre, ejus quoque perpétuis defénde subsídiis.\n", + "id": "Postcommunio" + } + ], + "2024-09-15": [ + { + "body": "*Ps 118:137; 118:124*\nJustus es, Dómine, et rectum judícium tuum: fac cum servo tuo secúndum misericórdiam tuam.\n*Ps 118", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, Dómine, pópulo tuo diabólica vitáre contágia: et te solum Deum pura mente sectári.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "*Commemoratio Septem Dolorum Beatæ Mariæ Virginis*\nDeus, in cujus passióne, secúndum Simeónis prophetíam, dulcíssimam án", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 4:1-6*\nFratres: Obsecro vos ego vinctus in Dómino, ut digne ambu", + "id": "Lectio" + }, + { + "body": "*Ps 32:12; 32:6*\nBeáta gens, cujus est Dóminus Deus eórum: pópulus, quem elégit Dóminus in hereditátem sibi.\n℣. Verbo Dó", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:34-46*\nIn illo témpore: Accessérunt ad Jesum pharisǽi: et interr", + "id": "Evangelium" + }, + { + "body": "*Dan 9:17; 9:18; 9:19*\nOrávi Deum meum ego Dániel, dicens: Exáudi, Dómine, preces servi tui: illúmina fáciem tuam super ", + "id": "Offertorium" + }, + { + "body": "Majestátem tuam, Dómine, supplíciter deprecámur: ut hæc sancta, quæ gérimus, et a prætéritis nos delictis éxuant et futú", + "id": "Secreta" + }, + { + "body": "*Commemoratio Septem Dolorum Beatæ Mariæ Virginis*\nOfférimus tibi preces et hóstias, Dómine Jesu Christe, humiliter supp", + "id": "Commemoratio Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 75:12-13*\nVovéte et réddite Dómino, Deo vestro, omnes, qui in circúitu ejus affértis múnera: terríbili, et ei qui au", + "id": "Communio" + }, + { + "body": "Sanctificatiónibus tuis, omnípotens Deus, et vítia nostra curéntur, et remédia nobis ætérna provéniant.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Septem Dolorum Beatæ Mariæ Virginis*\nSacrifícia, quæ súmpsimus, Dómine Jesu Christe, Transfixiónem Matris ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-16": [ + { + "body": "*Ps 78:11-12; 78:10*\nIntret in conspéctu tuo, Dómine, gémitus compeditórum: redde vicínis nostris séptuplum in sinu eóru", + "id": "Introitus" + }, + { + "body": "Beatórum Mártyrum, paritérque Pontíficum Cornélii et Cypriáni nos quǽsumus Dómine festa tueántur: et eórum comméndet orá", + "id": "Oratio" + }, + { + "body": "*Pro S. Euphemia*\nPræsta, Dómine, précibus nostris cum exsultatióne provéntum: ut sanctórum Mártyrum Euphémiæ, Lúciæ et ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 3:1-8*\nJustorum ánimæ in manu Dei sunt, et non tanget illos torméntum mortis. Visi sunt ocul", + "id": "Lectio" + }, + { + "body": "*Exod 15:11*\nGloriósus Deus in Sanctis suis: mirábilis in majestáte, fáciens prodígia.\n*Exod 15:6*\n℣. Déxtera tua, Dómin", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 21:9-19*\nIn illo témpore: Dixit Jesus discípulis suis: Cum audieritis ", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nMirábilis Deus in Sanctis suis: Deus Israël, ipse dabit virtútem et fortitúdinem plebi suæ: benedíctus Deus, ", + "id": "Offertorium" + }, + { + "body": "Adésto, Dómine, supplicatiónibus nostris, quas in Sanctórum tuórum commemoratióne deférimus: ut, qui nostræ justítiæ fid", + "id": "Secreta" + }, + { + "body": "*Pro S. Euphemia*\nVota pópuli tui, quǽsumus, Dómine, propítius inténde: et, quorum nos tríbuis sollémnia celebráre, fac ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentávit eos: tamquam aurum in fornáce probávit eos, et quas", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, salutáribus repléti mystériis: ut, quorum sollémnia celebrámus, eórum oratiónibus adjuvémur.\nPer Domin", + "id": "Postcommunio" + }, + { + "body": "Exáudi, Dómine, preces nostras: et sanctórum Mártyrum tuórum Euphémiæ, Lúciæ et Geminiáni, quorum festa sollémniter cele", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-17": [ + { + "body": "*Ps 118:137; 118:124*\nJustus es, Dómine, et rectum judícium tuum: fac cum servo tuo secúndum misericórdiam tuam.\n*Ps 118", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, Dómine, pópulo tuo diabólica vitáre contágia: et te solum Deum pura mente sectári.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "*Commemoratio Impressionis Stigmatum S. Francisci*\nDómine Jesu Christe, qui, frigescénte mundo, ad inflammándum corda no", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 4:1-6*\nFratres: Obsecro vos ego vinctus in Dómino, ut digne ambu", + "id": "Lectio" + }, + { + "body": "*Ps 32:12; 32:6*\nBeáta gens, cujus est Dóminus Deus eórum: pópulus, quem elégit Dóminus in hereditátem sibi.\n℣. Verbo Dó", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:34-46*\nIn illo témpore: Accessérunt ad Jesum pharisǽi: et interr", + "id": "Evangelium" + }, + { + "body": "*Dan 9:17; 9:18; 9:19*\nOrávi Deum meum ego Dániel, dicens: Exáudi, Dómine, preces servi tui: illúmina fáciem tuam super ", + "id": "Offertorium" + }, + { + "body": "Majestátem tuam, Dómine, supplíciter deprecámur: ut hæc sancta, quæ gérimus, et a prætéritis nos delictis éxuant et futú", + "id": "Secreta" + }, + { + "body": "*Commemoratio Impressionis Stigmatum S. Francisci*\nMúnera tibi, Dómine, dicata sanctífica: et, intercedénte beáto Francí", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 75:12-13*\nVovéte et réddite Dómino, Deo vestro, omnes, qui in circúitu ejus affértis múnera: terríbili, et ei qui au", + "id": "Communio" + }, + { + "body": "Sanctificatiónibus tuis, omnípotens Deus, et vítia nostra curéntur, et remédia nobis ætérna provéniant.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Impressionis Stigmatum S. Francisci*\nDeus, qui mira Crucis mystéria in beáto Francísco Confessóre tuo mult", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-18": [ + { + "body": "*Ps 80:2; 80:3; 80:4; 80:5*\nExsultáte Deo, adjutóri nostro: jubiláte Deo Jacob: súmite psalmum jucúndum cum cíthara: cán", + "id": "Introitus" + }, + { + "body": "Misericórdiæ tuæ remédiis, quǽsumus, Dómine, fragílitas nostra subsístat: ut, quæ sua conditióne attéritur, tua cleménti", + "id": "Oratio" + }, + { + "body": "Léctio Amos Prophétæ.\n*Amos 9:13-15*\nHæc dicit Dóminus Deus: Ecce, dies véniunt: et comprehéndet arátor messórem, et cal", + "id": "LectioL1" + }, + { + "body": "*Ps 112,5-7*\nQuis sicut Dóminus, Deus noster, qui in altis hábitat, et humilia réspicit in cœlo et in terra?\n℣. Súscitan", + "id": "GradualeL1" + }, + { + "body": "Præsta, quǽsumus, Dómine, famíliæ tuæ supplicánti: ut, dum a cibis corporálibus se ábstinet, a vítiis quoque mente jejún", + "id": "OratioL1" + }, + { + "body": "*Commemoratio S. Josephi de Cupertino Confessoris*\nDeus, qui ad unigénitum Fílium tuum exaltátum a terra ómnia tráhere d", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Esdræ.\n*Neh 8:1-10*\nIn diébus illis: Congregátus est omnis pópulus quasi vir unus ad platéam, quæ est ante ", + "id": "Lectio" + }, + { + "body": "*Ps 32:12 ; 32:6*\nBeáta gens, cujus est Dóminus Deus eórum: pópulus, quem elégit Dóminus in hereditátem sibi.\n℣. Verbo D", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 9:16-28*\nIn illo témpore: Respóndens unus de turba, dixit ad Jesum: ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 18:48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi.", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et ad sacrifícium celebrándum, subditórum tibi córpora mentésque s", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Josephi de Cupertino Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanct", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Neh 8:10*\nComédite pínguia et bíbite mulsum, et míttite partes his, qui non præparavérunt sibi: sanctus enim dies Dómin", + "id": "Communio" + }, + { + "body": "Suméntes, Dómine, dona cœléstia, supplíciter deprecámur: ut, quæ sédula servitúte, donánte te, gérimus, dignis sénsibus ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Josephi de Cupertino Confessoris*\nRefécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-19": [ + { + "body": "*Ps 36:39*\nSalus autem justórum a Dómino: et protéctor eórum est in témpore tribulatiónis.\n*Ps 36:1*\nNoli æmulári in mal", + "id": "Introitus" + }, + { + "body": "Deus, qui nos ánnua sanctórum Mártyrum tuórum Januárii et Sociórum ejus sollemnitáte lætíficas: concéde propítius; ut, q", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebraeos.\n*Hebr 10:32-38*\nFratres: Rememorámini prístinos dies, in quibus illumi", + "id": "Lectio" + }, + { + "body": "*Ps 33:18-19*\nClamavérunt justi, et Dóminus exaudívit eos: et ex ómnibus tribulatiónibus eórum liberávit eos.\n℣. Juxta e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:3-13*\nIn illo témpore: Sedénte Jesu super montem Olivéti, access", + "id": "Evangelium" + }, + { + "body": "*Sap 3:1-3*\nJustórum ánimæ in manu Dei sunt, et non tanget illos torméntum malítiae: visi sunt óculis insipiéntium mori:", + "id": "Offertorium" + }, + { + "body": "Oblátis, quǽsumus, Dómine, placáre munéribus: et, intercedéntibus sanctis Martýribus tuis Januário et Sóciis ejus, a cun", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 10:27*\nQuod dico vobis in ténebris, dícite in lúmine, dicit Dóminus: et quod in aure audítis, prædicáte super tect", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedéntibus sanctis Martýribus tuis Januário et Sóciis ejus, coelést", + "id": "Postcommunio" + } + ], + "2024-09-20": [ + { + "body": "*Ps 104:3-4*\nLætétur cor quæréntium Dóminum: quǽrite Dóminum, et confirmámini: quǽrite fáciem ejus semper.\n*Ps 104:1*\nCo", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, observatiónes sacras ánnua devotióne recoléntes, et córpore tibi placeámus et men", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Eustachii et Sociorum Martyrum*\nDeus, qui nos concédis sanctórum Mártyrum tuórum Eustáchii et Sociórum ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Osee Prophétæ.\n*Osee 14:2-10*\nHæc dicit Dóminus Deus: Convértere, Israël, ad Dóminum, Deum tuum: quóniam corruíst", + "id": "Lectio" + }, + { + "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:36-50*\nIn illo témpore: Rogábat Jesum quidam de pharisǽis, ut manduc", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2; 102:5*\nBénedic, ánima mea, Dómino, et noli oblivísci omnes retributiónes ejus: et renovábitur, sicut áquilæ, ", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sint, Dómine, quǽsumus, nostri dona jejúnii: quæ et expiándo nos tua grátia dignos effíciant, et ad sempité", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Eustachii et Sociorum Martyrum*\nMúnera tibi, Dómine, nostra devotiónis offérimus: quæ et pro tuórum tib", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:22; 118:24*\nAufer a me oppróbrium et contémptum, quia mandáta tua exquisívi, Dómine: nam et testimónia tua medit", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, benefícia potióra sumámus.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Eustachii et Sociorum Martyrum*\nPræsta nobis, quǽsumus, Dómine: intercedéntibus sanctis Martýribus tuis", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-21": [ + { + "body": "*Ps 36:30-31.*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1", + "id": "Introitus" + }, + { + "body": "Beáti Apóstoli et Evangelístæ Matthæi, Dómine, précibus adjuvémur: ut, quod possibílitas nostra non óbtinet, ejus nobis ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Sabbato Quattuor Temporum Septembris*\nOmnípotens sempitérne Deus, qui per continéntiam salutárem corpóribu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Ezechiélis Prophétæ.\n*Ezech 1:10-14*\nSimilitúdo vultus quátuor animálium: fácies hóminis, et fácies leónis a dext", + "id": "Lectio" + }, + { + "body": "*Ps 111:1-2*\nBeátus vir, qui timet Dóminum: in mandátis ejus cupit nimis.\n℣. Potens in terra erit semen ejus: generátio ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 9:9-13*\nIn illo témpore: Vidit Jesus hóminem sedéntem in telónio, ", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5.*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso: vitam pétiit a te, et tribuísti ei, allelúja.", + "id": "Offertorium" + }, + { + "body": "Supplicatiónibus beáti Matthæi Apóstoli et Evangelístæ, quǽsumus, Dómine, Ecclésiæ tuæ commendétur oblátio: cujus magníf", + "id": "Secreta" + }, + { + "body": "*Commemoratio Sabbato Quattuor Temporum Septembris*\nConcéde, quǽsumus, omnípotens Deus: ut oculis tuæ majestátis munus o", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Ps 20:6*\nMagna est glória ejus in salutári tuo: glóriam et magnum deI córem ímpones super eum, Dómine.", + "id": "Communio" + }, + { + "body": "Percéptis, Dómine, sacraméntis, beáto Matthæo Apóstolo tuo et Evangelísta interveniénte, deprecámur: ut, quæ pro ejus ce", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Sabbato Quattuor Temporum Septembris*\nPerfíciant in nobis, Dómine, quǽsumus, tua sacraménta quod cóntinent", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-22": [ + { + "body": "*Eccli 36:18*\nDa pacem, Dómine, sustinéntibus te, ut prophétæ tui fidéles inveniántur: exáudi preces servi tui et plebis", + "id": "Introitus" + }, + { + "body": "Dírigat corda nostra, quǽsumus, Dómine, tuæ miseratiónis operátio: quia tibi sine te placére non póssumus.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 1:4-8*\nFratres: Grátias ago Deo meo semper pro vobis in grátia", + "id": "Lectio" + }, + { + "body": "*Ps 121:1; 121:7*\nLætátus sum in his, quæ dicta sunt mihi: in domum Dómini íbimus.\n℣. Fiat pax in virtúte tua: et abundá", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 9:1-8*\nIn illo témpore: Ascéndens Jesus in navículam, transfretávit", + "id": "Evangelium" + }, + { + "body": "*Exodi 24:4; 24:5*\nSanctificávit Móyses altáre Dómino, ófferens super illud holocáusta et ímmolans víctimas: fecit sacri", + "id": "Offertorium" + }, + { + "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes éfficis: præsta, quǽsumus; u", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nTóllite hóstias, et introíte in átria ejus: adoráte Dóminum in aula sancta ejus.", + "id": "Communio" + }, + { + "body": "Grátias tibi reférimus, Dómine, sacro múnere vegetáti: tuam misericórdiam deprecántes; ut dignos nos ejus participatióne", + "id": "Postcommunio" + } + ], + "2024-09-23": [ + { + "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", + "id": "Introitus" + }, + { + "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum atque) Summum Pontíficem, perpétua protec", + "id": "Oratio" + }, + { + "body": "*Pro S. Thecla Virg. et Mart.*\nDa, quǽsumus, omnípotens Deus: ut, qui beátæ Theclæ Vírginis et Mártyris tuæ natalítia có", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", + "id": "Secreta" + }, + { + "body": "*Pro S. Thecla Virg. et Mart.*\nSúscipe, Dómine, múnera, quæ in beátæ Theclæ Vírginis et Mártyris tuæ sollemnitáte deféri", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Thecla Virg. et Mart.*\nAuxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta Thecla Vírgine et Márt", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-24": [ + { + "body": "*Eccli 36:18*\nDa pacem, Dómine, sustinéntibus te, ut prophétæ tui fidéles inveniántur: exáudi preces servi tui et plebis", + "id": "Introitus" + }, + { + "body": "Dírigat corda nostra, quǽsumus, Dómine, tuæ miseratiónis operátio: quia tibi sine te placére non póssumus.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "*Commemoratio Beatæ Mariæ Virginis de Mercede*\nDeus, qui per gloriosíssimam Fílii tui Matrem, ad liberandos Christi fidé", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 1:4-8*\nFratres: Grátias ago Deo meo semper pro vobis in grátia", + "id": "Lectio" + }, + { + "body": "*Ps 121:1; 121:7*\nLætátus sum in his, quæ dicta sunt mihi: in domum Dómini íbimus.\n℣. Fiat pax in virtúte tua: et abundá", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 9:1-8*\nIn illo témpore: Ascéndens Jesus in navículam, transfretávit", + "id": "Evangelium" + }, + { + "body": "*Exodi 24:4; 24:5*\nSanctificávit Móyses altáre Dómino, ófferens super illud holocáusta et ímmolans víctimas: fecit sacri", + "id": "Offertorium" + }, + { + "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes éfficis: præsta, quǽsumus; u", + "id": "Secreta" + }, + { + "body": "*Commemoratio Beatæ Mariæ Virginis de Mercede*\nTua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nTóllite hóstias, et introíte in átria ejus: adoráte Dóminum in aula sancta ejus.", + "id": "Communio" + }, + { + "body": "Grátias tibi reférimus, Dómine, sacro múnere vegetáti: tuam misericórdiam deprecántes; ut dignos nos ejus participatióne", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Beatæ Mariæ Virginis de Mercede*\nSumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semp", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-25": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui beatum Ladislaum religiosa perfectione voluisti omnibus prælucere: concede propitius; ut eius exemplo in virtu", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Hostias ad altare tuum offerentibus, Domine, da nobis illum pietatis affectum, quem beato Ladislao Confessori tuo infudi", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Tribuat nobis, omnipotens Deus, suffragantibus beati Ladislai Confessoris tui precibus, refectio sacra subsidium: ut et ", + "id": "Postcommunio" + } + ], + "2024-09-26": [ + { + "body": "*Eccli 36:18*\nDa pacem, Dómine, sustinéntibus te, ut prophétæ tui fidéles inveniántur: exáudi preces servi tui et plebis", + "id": "Introitus" + }, + { + "body": "Dírigat corda nostra, quǽsumus, Dómine, tuæ miseratiónis operátio: quia tibi sine te placére non póssumus.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Cypriani et Justinæ Martyrum*\nBeatórum Mártyrum Cypriáni et Justínæ nos, Dómine, fóveant continuáta pæ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 1:4-8*\nFratres: Grátias ago Deo meo semper pro vobis in grátia", + "id": "Lectio" + }, + { + "body": "*Ps 121:1; 121:7*\nLætátus sum in his, quæ dicta sunt mihi: in domum Dómini íbimus.\n℣. Fiat pax in virtúte tua: et abundá", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 9:1-8*\nIn illo témpore: Ascéndens Jesus in navículam, transfretávit", + "id": "Evangelium" + }, + { + "body": "*Exodi 24:4; 24:5*\nSanctificávit Móyses altáre Dómino, ófferens super illud holocáusta et ímmolans víctimas: fecit sacri", + "id": "Offertorium" + }, + { + "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes éfficis: præsta, quǽsumus; u", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Cypriani et Justinæ Martyrum*\nMúnera tibi, Dómine, nostræ devotiónis offérimus: quæ et pro tuórum tibi", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nTóllite hóstias, et introíte in átria ejus: adoráte Dóminum in aula sancta ejus.", + "id": "Communio" + }, + { + "body": "Grátias tibi reférimus, Dómine, sacro múnere vegetáti: tuam misericórdiam deprecántes; ut dignos nos ejus participatióne", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Cypriani et Justinæ Martyrum*\nPræsta nobis, quǽsumus, Dómine: intercedéntibus sanctis Martýribus tuis ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-27": [ + { + "body": "*Eccli 44:15 et 14*\nSapiéntiam Sanctórum narrent pópuli, et laudes eórum núntiet ecclésia: nómina autem eórum vivent in ", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui sanctórum Mártyrum tuórum Cosmæ et Damiáni natalítia cólimus, a cunctis malis", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 5:16-20*\nIusti autem in perpétuum vivent, et apud Dóminum est merces eórum, et cogitátio ill", + "id": "Lectio" + }, + { + "body": "*Ps 33:18-19*\nClamavérunt justi, et Dóminus exaudívit eos: et ex ómnibus tribulatiónibus eórum liberávit eos.\n℣. Juxta e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 6:17-23*\nIn illo témpore: Descéndens Jesus de monte, stetit in loco cam", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nGloriabúntur in te omnes, qui díligunt nomen tuum: quóniam tu, Dómine, benedíces justo: Dómine, ut scuto bo", + "id": "Offertorium" + }, + { + "body": "Sanctórum tuórum nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet, et tuam nobis indulgéntiam semper ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 78:2; 78:11*\nPosuérunt mortália servórum tuórum, Dómine, escas volatilíbus cœli, carnes Sanctórum tuórum béstiis ter", + "id": "Communio" + }, + { + "body": "Prótegat, quǽsumus, Dómine, pópulum tuum et participátio cœléstis indúlta convívii, et deprecátio colláta Sanctórum.\nPer", + "id": "Postcommunio" + } + ], + "2024-09-28": [ + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus: et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Wencesláum per martýrii palmam a terréno principátu ad cœléstem glóriam transtulísti: ejus précibus nos", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 10:10-14*\nJustum dedúxit Dóminus per vias rectas, et ostendit illi regnum Dei, et dedit illi", + "id": "Lectio" + }, + { + "body": "*Ps 111:1-2*\nBeátus vir, qui timet Dóminum: in mandátis ejus cupit nimis.\n℣. Potens in terra erit semen ejus: generátio ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:34-42*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte arbi", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mystériis, et cleménter exáudi.\nPer ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nQui vult veníre post me, ábneget semetípsum, et tollat crucem suam, et sequátur me.", + "id": "Communio" + }, + { + "body": "Da, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur offício; ita perpétuo ", + "id": "Postcommunio" + } + ], + "2024-09-29": [ + { + "body": "*Ps 102:20.*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus, ad audiéndam vocem sermón", + "id": "Introitus" + }, + { + "body": "Deus, qui, miro órdine, Angelórum ministéria hominúmque dispénsas: concéde propítius; ut, a quibus tibi ministrántibus i", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica XIX Post Pentecosten*\nOmnípotens et miséricors Deus, univérsa nobis adversántia propitiátus exclú", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli.\n*Apoc 1:1-5*\nIn diébus illis: Significávit Deus, quæ opórtet fíeri cito", + "id": "Lectio" + }, + { + "body": "*Ps 102:20; 102:1*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus.\n℣. Benedic, ánima m", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-10*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes", + "id": "Evangelium" + }, + { + "body": "*Apoc 8:3; 8:4*\nStetit Angelus juxta aram templi, habens thuríbulum áureum in manu sua, et data sunt ei incénsa multa: e", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, laudis offérimus, supplíciter deprecántes: ut easdem, angélico pro nobis interveniénte suffrágio, ", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica XIX Post Pentecosten*\nHæc múnera, quǽsumus, Dómine, quæ óculis tuæ majestátis offérimus, salutári", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nBenedícite, omnes Angeli Dómini, Dóminum: hymnum dícite et superexaltáte eum in sǽcula.", + "id": "Communio" + }, + { + "body": "Beáti Archángeli tui Michælis intercessióne suffúlti: súpplices te, Dómine, deprecámur; ut, quod ore prosequimur, contin", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica XIX Post Pentecosten*\nTua nos, Dómine, medicinális operátio, et a nostris perversitátibus clemént", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-30": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiæ tuæ in exponéndis sacris Scriptúris beátum Hierónymum, Confessórem tuum, Doctórem máximum providére d", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Donis cœléstibus da nobis, quǽsumus, Dómine, líbera tibi mente servíre: ut múnera, quæ deférimus, interveniénte beáto Hi", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Repleti alimónia cœlésti, quǽsumus, Dómine: ut, interveniénte beáto Hierónymo Confessóre tuo, misericórdiæ tuæ grátiam c", + "id": "Postcommunio" + } + ], + "2024-10-01": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui beatum Ioannem Confessorem tuum eximiæ humilitatis et patientiæ donis decorasti: concede propitius; ut, eiusde", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Remigii Episcopi Confessoris*\nDa, quǽsumus omnípotens Deus: ut beáti Remígii Confessóris tui atque Pont", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Remigii Episcopi Confessoris*\nSancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto N. Confessóre tuo, per hæc contra óm", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Remigii Episcopi Confessoris*\nPræsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exh", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-02": [ + { + "body": "*Ps 102:20.*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus, ad audiéndam vocem sermón", + "id": "Introitus" + }, + { + "body": "Deus, qui ineffábili providéntia sanctos Angelos tuos ad nostram custódiam míttere dignáris: largíre supplícibus tuis; e", + "id": "Oratio" + }, + { + "body": "Léctio libri Exodi.\n*Exod 23:20-23*\nHæc dicit Dóminus Deus: Ecce, ego mittam Angelum meum, qui præcédat te, et custódiat", + "id": "Lectio" + }, + { + "body": "*Ps 90:11-12*\nAngelis suis Deus mandávit de te, ut custódiant te in ómnibus viis tuis.\n℣. In mánibus portábunt te, ne um", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-10*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes", + "id": "Evangelium" + }, + { + "body": "*Ps 102:20-21*\nBenedícite Dóminum, omnes Angeli ejus: minístri ejus, qui fácitis verbum ejus, ad audiéndam vocem sermónu", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ pro sanctórum Angelórum tuórum veneratióne deférimus: et concéde propítius; ut, perpétuis e", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nBenedícite, omnes Angeli Dómini, Dóminum: hymnum dícite et superexaltáte eum in sǽcula.", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, divína mystéria, sanctórum Angelórum tuórum festivitáte lætántes: quǽsumus; ut eórum protectióne ab h", + "id": "Postcommunio" + } + ], + "2024-10-03": [ + { + "body": "*Cant 4:8-9.*\nVeni de Líbano, sponsa mea, veni de Líbano, veni: vulnerásti cor meum, soror mea sponsa, vulnerásti cor me", + "id": "Introitus" + }, + { + "body": "Dómine, qui dixísti: Nisi efficiámini sicut párvuli, non intrábitis in regnum cœlórum: da nobis, quǽsumus: ita sanctæ Te", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Is 66:12-14*\nHæc dicit Dóminus: Ecce, ego declinábo super eam quasi flúvium pacis, et quasi torr", + "id": "Lectio" + }, + { + "body": "*Matt 11:25*\nConfíteor tibi, Pater, Dómine cœli et terræ, quia abscondísti hæc a sapiéntibus, et prudéntibus, et revelás", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-4*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes:", + "id": "Evangelium" + }, + { + "body": "*Luc 1:46-49*\nMagníficat ánima mea Dóminum: et exsultávit spíritus meus in Deo salutári meo: quia respéxit humilitátem a", + "id": "Offertorium" + }, + { + "body": "Sacrifícium nostrum tibi, Dómine, quǽsumus, sanctæ Terésiæ Vírginis tuæ precátio sancta concíliet: ut, in cujus honóre s", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Deut 32:10-12*\nCircumdúxit eam, et dócuit: et custodívit quasi pupíllam óculi sui. Sicut aquila expándit alas suas, et ", + "id": "Communio" + }, + { + "body": "Illo nos, Dómine amóris igne cœléste mystérium inflámmet: quo sancta Teresia Virgo tua se tibi pro homínibus caritátis v", + "id": "Postcommunio" + } + ], + "2024-10-04": [ + { + "body": "*Gal 6:14.*\nMihi autem absit gloriári, nisi in Cruce Dómini nostri Jesu Christi: per quem mihi mundus crucifíxus est, et", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiam tuam, beáti Francisci méritis fœtu novæ prolis amplíficas: tríbue nobis; ex ejus imitatióne, terréna", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 6:14-18.*\nFratres: Mihi autem absit gloriári, nisi in Cruce Dómini", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 11:25-30*\nIn illo témpore: Respóndens Jesus, dixit: Confíteor tibi", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, dicata sanctífica: et, intercedénte beáto Francísco, ab omni nos culpárum labe purífica.\nPer Dominu", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ecclésiam tuam, quǽsumus, Dómine, grátia cœléstis amplíficet: quam beáti Francísci Confessóris tui illumináre voluísti g", + "id": "Postcommunio" + } + ], + "2024-10-05": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Placidi et Sociorum Martyrum*\nDeus, qui nos concédis sanctórum Mártyrum tuórum N. et N. natalítia cóle", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Placidi et Sociorum Martyrum*\nAdésto, Dómine, supplicatiónibus nostris, quas in Sanctórum tuórum comme", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Placidi et Sociorum Martyrum*\nPræsta nobis, quǽsumus, Dómine: intercedéntibus sanctis Martýribus tuis ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-06": [ + { + "body": "*Dan 3:31; 31:29; 31:35*\nOmnia, quæ fecísti nobis, Dómine, in vero judício fecísti, quia peccávimus tibi et mandátis tui", + "id": "Introitus" + }, + { + "body": "Largíre, quǽsumus, Dómine, fidélibus tuis indulgéntiam placátus et pacem: ut páriter ab ómnibus mundéntur offénsis, et s", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 5:15-21*\nFratres: Vidéte, quómodo caute ambulétis: non quasi ins", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno. ℣. Aperis tu manum tuam: ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 4:46-53*\nIn illo témpore: Erat quidam régulus, cujus fílius infir", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nSuper flúmina Babylónis illic sédimus et flévimus: dum recordarémur tui, Sion.", + "id": "Offertorium" + }, + { + "body": "Cœléstem nobis prǽbeant hæc mystéria, quǽsumus, Dómine, medicínam: et vítia nostri cordis expúrgent.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nMeménto verbi tui servo tuo, Dómine, in quo mihi spem dedísti: hæc me consoláta est in humilitáte mea.", + "id": "Communio" + }, + { + "body": "Ut sacris, Dómine, reddámur digni munéribus: fac nos, quǽsumus, tuis semper obœdíre mandátis.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-10-07": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Maríæ Vírginis: de cujus sollemnitáte gaudent Angeli", + "id": "Introitus" + }, + { + "body": "Deus, cujus Unigénitus per vitam, mortem et resurrectiónem suam nobis salútis ætérnæ præmia comparávit: concéde, quǽsumu", + "id": "Oratio" + }, + { + "body": "*Pro S. Marco Papa et Conf.*\nExáudi, Dómine, preces nostras: et, interveniénte beáto Marco Confessóre tuo atque Pontífic", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Prov 8:22-24; 8:32-35*\nDóminus possédit me in inítio viárum suárum, ántequam quidquam fáceret a", + "id": "Lectio" + }, + { + "body": "*Ps 44:5; 44:11; 44:12*\nPropter veritátem et mansuetúdinem et justítiam, et dedúcet te mirabíliter déxtera tua.\n℣. Audi,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:26-38*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitáte", + "id": "Evangelium" + }, + { + "body": "*Eccli 24:25; Eccli 39:17*\nIn me grátia omnis viæ et veritátis, in me omnis spes vitæ et virtútis: ego quasi rosa plantá", + "id": "Offertorium" + }, + { + "body": "Fac nos, quǽsumus, Dómine, his munéribus offeréndis conveniénter aptári: et per sacratíssimi Rosárii mystéria sic vitam,", + "id": "Secreta" + }, + { + "body": "*Pro S. Marco Papa et Conf.*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se mér", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "*Eccli 39:19*\nFloréte, flores, quasi lílium, et date odórem, et frondéte in grátiam, collaudáte cánticum, et benedícite ", + "id": "Communio" + }, + { + "body": "Sacratíssimæ Genetrícis tuæ, cujus Rosárium celebrámus, quǽsumus, Dómine, précibus adjuvémur: ut et mysteriórum, quæ cól", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Marco Papa et Conf.*\nDa, quǽsumus, Dómine, fidélibus pópulis Sanctórum tuórum semper veneratióne lætari: et eóru", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-08": [ + { + "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", + "id": "Introitus" + }, + { + "body": "Dómine, Deus noster, qui beátæ Birgíttæ per Fílium tuum unigénitum secreta cœléstia revelásti: ipsíus pia intercessióne ", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Sergio, Baccho, Marcello et Apulejo Martyribus*\nSanctórum Martyrum tuórum nos, Dómine, Sérgii, Bacchi, Marcélli", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*1 Tim 5:3-10.*\nCaríssime: Víduas honóra, quæ vere víduæ sunt. Si qua ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Sergio, Baccho, Marcello et Apulejo Martyribus*\nMajestátem tuam nobis, Dómine, quǽsumus, hæc hóstia reddat immo", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Sergio, Baccho, Marcello et Apulejo Martyribus*\nSacraméntis, Dómine, muniámur accéptis: et sanctórum Mártyrum t", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-09": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui beatum Vincentium Confessorem tuum atque Pontificem, spretis saeculi pompis humilitatis gloria decorasti: prae", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Joannis Leonardi Confessoris*\nDeus, qui beátum Joánnem Confessórem tuum ad fidem in géntibus propagánda", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Joannis Leonardi Confessoris*\nSúscipe, Dómine, oblatiónem mundam salutáris hóstiæ: et præsta; ut, inter", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto N. Confessóre tuo a", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Joannis Leonardi Confessoris*\nPretiósi córporis, et sánguinis tui sacris refécti mystériis, Dómine, adp", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-10": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Dómine Jesu Christe, veræ humilitátis et exémplar et præmium: quǽsumus; ut, sicut beátum Francíscum in terréni honóris c", + "id": "Oratio" + }, + { + "body": "*Commemoratio Victoriae Chocimensis*\nDeus, qui in summis regni nostri periculis, antiqua bracchii tui miracula renovasti", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus Francíscus, quǽsumus, in salútem nobis proveníre depóscat.\nPer Do", + "id": "Secreta" + }, + { + "body": "*Commemoratio Victoriae Chocimensis*\nOdorem, Domine, sacrificii huius cum gratiarum actionibus suscipe: et praesta; ut, ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus Francíscus, pro nobis intercedéndo: ut et conversatiónis eju", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Victoriae Chocimensis*\nDeus, qui neminem in te sperantem, nimium affligi permittis, sed pium precibus prae", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-11": [ + { + "body": "*Isa 7:14.*\nEcce Virgo concípiet, et páriet fílium, et vocábitur nomen ejus Emmánuel.\n*Ps 97:1.*\nCantáte Dómino cánticum", + "id": "Introitus" + }, + { + "body": "Deus, qui de beátæ Maríæ Vírginis útero Verbum tuum, Angelo nuntiánte, carnem suscípere voluísti: præsta supplícibus tui", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:23-31*\nEgo quasi vitis fructificávi suavitátem odóris: et flores mei, fructus honóris ", + "id": "Lectio" + }, + { + "body": "*Isa 11:1-2.*\nEgrediétur virga de rádice Jesse, et flos de rádice ejus ascéndet.\n℣. Et requiéscet super eum Spíritus Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:43-51*\nIn illo témpore: Cum redírent, remánsit puer Jesus in Jerúsal", + "id": "Evangelium" + }, + { + "body": "*Matt 1:18*\nCum esset desponsáta mater ejus María Joseph, invénta est in útero habens de Spíritu Sancto.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis, Unigéniti tui matris intercessióne, ad perpétuam atque præsé", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genitríce María, cœléstis remédii fáciat ", + "id": "Postcommunio" + } + ], + "2024-10-12": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2024-10-13": [ + { + "body": "*Esth 13:9; 13:10-11*\nIn voluntáte tua, Dómine, univérsa sunt pósita, et non est, qui possit resístere voluntáti tuæ: tu", + "id": "Introitus" + }, + { + "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut a cunctis adversitátibus, te protegénte, sit líbera, et in", + "id": "Oratio" + }, + { + "body": "Lectio Epistolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 6:10-17*\nFratres: Confortámini in Dómino et in poténtia virtútis", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nDómine, refúgium factus es nobis, a generatióne et progénie.\n℣. Priúsquam montes fíerent aut formarétur terr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 18:23-35*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Job 1.1*\nVir erat in terra Hus, nómine Job: simplex et rectus ac timens Deum: quem Satan pétiit ut tentáret: et data es", + "id": "Offertorium" + }, + { + "body": "Suscipe, Dómine, propítius hóstias: quibus et te placári voluísti, et nobis salútem poténti pietáte restítui.\nPer Dominu", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nIn salutári tuo ánima mea, et in verbum tuum sperávi: quando fácies de persequéntibus me jud", + "id": "Communio" + }, + { + "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, quod ore percépimus, pura mente sectémur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-10-14": [ + { + "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", + "id": "Introitus" + }, + { + "body": "Deus, qui nos cónspicis ex nostra infirmitáte defícere: ad amórem tuum nos misericórditer per Sanctórum tuórum exémpla r", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Mýstica nobis, Dómine, prosit oblátio: quæ nos et a reátibus nostris expédiat, et perpétua salvatióne confírmet.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut reátus nostros múnera sacráta puríficent, et recte vivéndi nobis operéntur efféctum.\nPer D", + "id": "Postcommunio" + } + ], + "2024-10-15": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ Terésiæ Vírginis tuæ festivitáte gaudémus; ita cœléstis ejus doct", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2024-10-16": [ + { + "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", + "id": "Introitus" + }, + { + "body": "Deus, qui beátam Hedwígem a sǽculi pompa ad húmilem tuæ Crucis sequélam toto corde transíre docuísti: concéde; ut ejus m", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2024-10-17": [ + { + "body": "*Cant 2:3.*\nSub umbra illíus, quem desideráveram, sedi: et fructus ejus dulcis gútturi meo.\n*Ps 83:2-3*\nQuam dilécta tab", + "id": "Introitus" + }, + { + "body": "Dómine Jesu Christe, qui investigábiles divítias Cordis tui beátæ Margarítæ Maríæ Vírgini mirabíliter revelásti: da nobi", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Ephes 3:8-9; 14-19.*\nFratres: Mihi ómnium sanctórum mínimo data est g", + "id": "Lectio" + }, + { + "body": "*Cant 8:7.*\nAquæ multæ non potuérunt exstínguere caritátem, nec flúmina óbruent illam.\n*Ps 72:26*\nDefécit caro mea et co", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 11:25-30*\nIn illo témpore: Respóndens Jesus, dixit: Confíteor tibi", + "id": "Evangelium" + }, + { + "body": "*Zach 9:17*\nQuid bonum ejus est et quid pulchrum ejus, nisi fruméntum electórum et vinum gérminans vírgines?", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sint, Dómine, plebis tuæ múnera: et concéde; ut ignis ille divínus nos inflámmet, quo de Corde Fílii tui em", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Cant 6:2*\nEgo dilécto meo, et diléctus meus mihi, qui páscitur inter lília.", + "id": "Communio" + }, + { + "body": "Córporis et Sánguinis tui, Dómine Jesu, sumptis mystériis: concéde nobis, quǽsumus, beáta Margaríta María Vírgine interc", + "id": "Postcommunio" + } + ], + "2024-10-18": [ + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2*\nDómine", + "id": "Introitus" + }, + { + "body": "Intervéniat pro nobis, quǽsumus, Dómine, sanctus tuus Lucas Evangélista: qui crucis mortificatiónem júgiter in suo córpo", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 8:16-24.*\nFratres: Grátias ago Deo, qui dedit eandem sollicitú", + "id": "Lectio" + }, + { + "body": "*Ps 18:5; 18:2*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.\n℣. Cœli enárrant glóriam Dei: e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et álios septuagínta duos: ", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", + "id": "Offertorium" + }, + { + "body": "Donis cœléstibus da nobis, quǽsumus, Dómine, líbera tibi mente servíre: ut múnera quæ deférimus, interveniénte beáto Eva", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quod de sancto altári tuo accépimus, précibus beáti Evangelístæ tui Lucæ, sanctíf", + "id": "Postcommunio" + } + ], + "2024-10-19": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Petrum Confessórem tuum admirábilis pœniténtiæ et altíssimæ contemplatiónis múnere illustráre dignátus ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses.\n*Phil 3:7-12*\nFratres: Quæ mihi fuérunt lucra, hæc arbitrátus sum ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28; 19:29*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cælestia aliménta percépimus, intercedénte beáto Petro Confessóre tuo, per hæc contra", + "id": "Postcommunio" + } + ], + "2024-10-20": [ + { + "body": "*Ps 129:3-4*\nSi iniquitátes observáveris, Dómine: Dómine, quis sustinébit? quia apud te propitiátio est, Deus Israël.\n*P", + "id": "Introitus" + }, + { + "body": "Deus, refúgium nostrum et virtus: adésto piis Ecclésiæ tuæ précibus, auctor ipse pietátis, et præsta; ut, quod fidéliter", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 1:6-11*\nFratres: Confídimus in Dómino Jesu, quia, qui cœpit i", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:15-21*\nIn illo témpore: Abeúntes pharisǽi consílium iniérunt, ut", + "id": "Evangelium" + }, + { + "body": "*Esth 14:12; 14:13*\nRecordáre mei, Dómine, omni potentátui dóminans: et da sermónem rectum in os meum, ut pláceant verba", + "id": "Offertorium" + }, + { + "body": "Da, miséricors Deus: ut hæc salutáris oblátio et a própriis nos reátibus indesinénter expédiat, et ab ómnibus tueátur ad", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nEgo clamávi, quóniam exaudísti me, Deus: inclína aurem tuam et exáudi verba mea.", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, sacri dona mystérii, humíliter deprecántes: ut, quæ in tui commemoratiónem nos fácere præcepísti, in ", + "id": "Postcommunio" + } + ], + "2024-10-21": [ + { + "body": "*Is 61:1*\nSpíritus Dómini super me, eo quod únxerit Dóminus me: ad annuntiándum mansuétis misit me.\n*Ps 131:1*\nMeménto, ", + "id": "Introitus" + }, + { + "body": "Deus, qui in beáto Iacóbo, Confessóre tuo atque Pontífice, apostólicum evangelizándi spíritum mirabíliter renovásti: præ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Hilarionis Abbatis*\nIntercéssio nos, quǽsumus, Dómine, beáti N. Abbátis comméndet: ut, quod nostris mér", + "id": "Commemoratio Oratio" + }, + { + "body": "*Philipp 1:3-11*\nGrátias ago Deo meo in omni memória vestri, semper in cunctis oratiónibus meis pro ómnibus vobis, cum g", + "id": "Lectio" + }, + { + "body": "*Sir 44:16-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n℣. Non est invéntus símilis illi, qui conserváret l", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "Elégit eum Dóminus sacerdótem sibi, ad sacrificándum ei hóstiam laudis.", + "id": "Offertorium" + }, + { + "body": "Tua, quǽsumus, Dómine, múnera illas in nobis puríssimi amóris flammas éxcitent, quibus beátus Iacóbus éadem offeréndo ta", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Hilarionis Abbatis*\nSacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salút", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Mt 10:27*\nQuod dico vobis in ténebris, dícite in lúmine: et quod in aure audítis, prædicáte super tecta.", + "id": "Communio" + }, + { + "body": "Persevéret in córdibus nostris, piíssime Deus, percépti grátia sacraménti: ut ea roboráti, beáti Iacóbi exémplo, et host", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Hilarionis Abbatis*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus N. Abbas, pro nobis int", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-22": [ + { + "body": "*Ps 129:3-4*\nSi iniquitátes observáveris, Dómine: Dómine, quis sustinébit? quia apud te propitiátio est, Deus Israël.\n*P", + "id": "Introitus" + }, + { + "body": "Deus, refúgium nostrum et virtus: adésto piis Ecclésiæ tuæ précibus, auctor ipse pietátis, et præsta; ut, quod fidéliter", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 1:6-11*\nFratres: Confídimus in Dómino Jesu, quia, qui cœpit i", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:15-21*\nIn illo témpore: Abeúntes pharisǽi consílium iniérunt, ut", + "id": "Evangelium" + }, + { + "body": "*Esth 14:12; 14:13*\nRecordáre mei, Dómine, omni potentátui dóminans: et da sermónem rectum in os meum, ut pláceant verba", + "id": "Offertorium" + }, + { + "body": "Da, miséricors Deus: ut hæc salutáris oblátio et a própriis nos reátibus indesinénter expédiat, et ab ómnibus tueátur ad", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nEgo clamávi, quóniam exaudísti me, Deus: inclína aurem tuam et exáudi verba mea.", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, sacri dona mystérii, humíliter deprecántes: ut, quæ in tui commemoratiónem nos fácere præcepísti, in ", + "id": "Postcommunio" + } + ], + "2024-10-23": [ + { + "body": "*Ps 131:9-10.*\nSacerdótes tui, Dómine, induántur justítiam, et sancti tui exsúltent. Propter David servum tuum non avért", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Antónium Maríam Confessórem tuum atque Pontíficem, apostólicis virtútibus sublimásti, et per eum novas ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos\n*Heb 7:23-27.*\nFratres : Plures facti sunt sacerdótes, idcírco quod mort", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\n℣. Sacerdótes ejus índuam salutári, et sancti ejus exsultatióne exsultábunt.\n℣. Illuc prodúcam cornu Davi", + "id": "Graduale" + }, + { + "body": "Lectio sancti Evangelii secundum Matthǽum\n*Matt 24:42-47.*\nIn illo témpore: Dixit Jesus discípulis suis: Vigiláte ergo, ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso, et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Sancti Antónii Maríæ Confessóris tui atque Pontíficis, quǽsumus, Dómine, ánnua solémnitas pietáti tuæ nos reddat accépto", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46 - 47.*\nBeátus ille servus, quem cum vénerit dóminus ejus, invénerit sic faciéntem.", + "id": "Communio" + }, + { + "body": "Deus, fidélium remunerátor animárum: præsta; ut beáti Antónii Maríæ Confessóris tui atque Pontíficis, cuius venerándam c", + "id": "Postcommunio" + } + ], + "2024-10-24": [ + { + "body": "*Ps 102:20*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus, ad audiéndam vocem sermónu", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Raphaélem Archángelum Tobíæ fámulo tuo cómitem dedísti in via: concéde nobis fámulis tuis; ut ejúsdem s", + "id": "Oratio" + }, + { + "body": "Léctio libri Tobíæ\n*Tob 12:7-15*\nIn diébus illis: Dixit Angelus Ráphaël ad Tobíam: Sacraméntum regis abscóndere bonum es", + "id": "Lectio" + }, + { + "body": "*Tob 8:3*\nAngelus Dómini Raphaël apprehéndit et ligávit dæmonem.\n*Ps 146:5.*\n℣. Magnus Dóminus noster, et magna virtus e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 5:1-4*\nIn illo témpore: Erat dies festus Judæórum, et ascéndit Jesu", + "id": "Evangelium" + }, + { + "body": "*Apoc 8:3; 8:4*\nStetit Angelus juxta aram templi, habens thuríbulum áureum in manu sua, et data sunt ei incénsa multa: e", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, laudis offérimus, supplíciter deprecántes: ut eásdem, angélico pro nobis interveniénte suffrágio, ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nBenedícite, omnes Angeli Dómini, Dóminum: hymnum dícite et superexaltáte eum in sǽcula.", + "id": "Communio" + }, + { + "body": "Dirigere dignáre, Dómine Deus, in adjutórium nostrum sanctum Raphaélem Archángelum: et, quem tuæ majestáti semper assíst", + "id": "Postcommunio" + } + ], + "2024-10-25": [ + { + "body": "*Ps 129:3-4*\nSi iniquitátes observáveris, Dómine: Dómine, quis sustinébit? quia apud te propitiátio est, Deus Israël.\n*P", + "id": "Introitus" + }, + { + "body": "Deus, refúgium nostrum et virtus: adésto piis Ecclésiæ tuæ précibus, auctor ipse pietátis, et præsta; ut, quod fidéliter", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Chrysanthi et Dariæ Martyrum*\nBeatórum Mártyrum tuórum, Dómine, Chrysánthi et Dáriæ, quǽsumus, adsit n", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 1:6-11*\nFratres: Confídimus in Dómino Jesu, quia, qui cœpit i", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:15-21*\nIn illo témpore: Abeúntes pharisǽi consílium iniérunt, ut", + "id": "Evangelium" + }, + { + "body": "*Esth 14:12; 14:13*\nRecordáre mei, Dómine, omni potentátui dóminans: et da sermónem rectum in os meum, ut pláceant verba", + "id": "Offertorium" + }, + { + "body": "Da, miséricors Deus: ut hæc salutáris oblátio et a própriis nos reátibus indesinénter expédiat, et ab ómnibus tueátur ad", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Chrysanthi et Dariæ Martyrum*\nPópuli tui, quǽsumus, Dómine, tibi grata sit hóstia, quæ in natalítiis s", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nEgo clamávi, quóniam exaudísti me, Deus: inclína aurem tuam et exáudi verba mea.", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, sacri dona mystérii, humíliter deprecántes: ut, quæ in tui commemoratiónem nos fácere præcepísti, in ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Chrysanthi et Dariæ Martyrum*\nMýsticis, Dómine, repléti sumus votis et gáudiis: præsta, quǽsumus; ut, ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-26": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2024-10-27": [ + { + "body": "*Apoc 5:12; 1:6*\nDignus est Agnus, qui occísus est, accípere virtútem, et divinitátem, et sapiéntiam, et fortitúdinem, e", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui in dilécto Fílio tuo, universórum Rege, ómnia instauráre voluísti: concéde propítius; ut", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses.\n*Col 1:12-20*\nFratres: Grátias ágimus Deo Patri, qui dignos nos fec", + "id": "Lectio" + }, + { + "body": "*Ps 71:8; 78:11*\nDominábitur a mari usque ad mare, et a flúmine usque ad términos orbis terrárum.\n℣. Et adorábunt eum om", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 18:33-37*\nIn illo témpore: Dixit Pilátus ad Jesum: Tu es Rex Judæó", + "id": "Evangelium" + }, + { + "body": "*Ps 2:8.*\nPóstula a me, et dabo tibi gentes hereditátem tuam, et possessiónem tuam términos terræ.", + "id": "Offertorium" + }, + { + "body": "Hóstiam tibi, Dómine, humánæ reconciliatiónis offérimus: præsta, quǽsumus; ut, quem sacrifíciis præséntibus immolámus, i", + "id": "Secreta" + }, + { + "body": "*de D.N. Jesu Christi Rege*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómin", + "id": "Prefatio" + }, + { + "body": "*Ps 28:10; 28:11*\nSedébit Dóminus Rex in ætérnum: Dóminus benedícet pópulo suo in pace.", + "id": "Communio" + }, + { + "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, qui sub Christi Regis vexíllis militáre gloriámur, cum ipso, i", + "id": "Postcommunio" + } + ], + "2024-10-28": [ + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2*\nDómine", + "id": "Introitus" + }, + { + "body": "Deus, qui nos per beátos Apóstolos tuos Simónem et Judam ad agnitiónem tui nóminis veníre tribuísti: da nobis eórum glór", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Eph 4:7-13*\nFratres: Unicuíque nostrum data est grátia secúndum mensúr", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro pátribus tuis nati ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 15:17-25*\nIn illo témpore: Dixit Jesus discípulis suis: Hæc mando v", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.", + "id": "Offertorium" + }, + { + "body": "Glóriam, Dómine, sanctórum Apostolórum tuórum Simónis et Judæ perpétuam venerántes: quǽsumus; ut eam, sacris mystériis e", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël.", + "id": "Communio" + }, + { + "body": "Percéptis, Dómine, sacraméntis, supplíciter exorámus: ut, intercedéntibus beátis Apóstolis tuis Simóne et Juda, quæ pro ", + "id": "Postcommunio" + } + ], + "2024-10-29": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Absólve, quǽsumus, Dómine, tuórum delícta populórum: ut a peccatórum néxibus, quæ pro nostra fraglitáte contráximus, tua", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 3:17-21; 4:1-3*\nFratres: Imitatóres mei estóte, et observáte ", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 9:18-26*\nIn illo témpore: Loquénte Jesu ad turbas, ecce, princeps u", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Pro nostræ servitútis augménto sacrifícium tibi, Dómine, laudis offérimus: ut, quod imméritis contulísti, propítius exse", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, quos divína tríbuis participatióne gaudére, humánis non sinas subjacére perículis.\nPer Do", + "id": "Postcommunio" + } + ], + "2024-10-30": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Absólve, quǽsumus, Dómine, tuórum delícta populórum: ut a peccatórum néxibus, quæ pro nostra fraglitáte contráximus, tua", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 3:17-21; 4:1-3*\nFratres: Imitatóres mei estóte, et observáte ", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 9:18-26*\nIn illo témpore: Loquénte Jesu ad turbas, ecce, princeps u", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Pro nostræ servitútis augménto sacrifícium tibi, Dómine, laudis offérimus: ut, quod imméritis contulísti, propítius exse", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, quos divína tríbuis participatióne gaudére, humánis non sinas subjacére perículis.\nPer Do", + "id": "Postcommunio" + } + ], + "2024-10-31": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Absólve, quǽsumus, Dómine, tuórum delícta populórum: ut a peccatórum néxibus, quæ pro nostra fraglitáte contráximus, tua", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 3:17-21; 4:1-3*\nFratres: Imitatóres mei estóte, et observáte ", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 9:18-26*\nIn illo témpore: Loquénte Jesu ad turbas, ecce, princeps u", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Pro nostræ servitútis augménto sacrifícium tibi, Dómine, laudis offérimus: ut, quod imméritis contulísti, propítius exse", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, quos divína tríbuis participatióne gaudére, humánis non sinas subjacére perículis.\nPer Do", + "id": "Postcommunio" + } + ], + "2024-11-01": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre Sanctórum ómnium: de quorum sollemnitáte gaudent Angeli et", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui nos ómnium Sanctórum tuórum mérita sub una tribuísti celebritáte venerári: quǽsumus; ut ", + "id": "Oratio" + }, + { + "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli.\n*Apoc 7:2-12*\nIn diébus illis: Ecce, ego Joánnes vidi álterum Angelum a", + "id": "Lectio" + }, + { + "body": "*Ps 33:10; 33:11*\nTiméte Dóminum, omnes Sancti ejus: quóniam nihil deest timéntibus eum.\n℣. Inquiréntes autem Dóminum, n", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:1-12*\nIn illo témpore: Videns Jesus turbas, ascéndit in montem, ", + "id": "Evangelium" + }, + { + "body": "*Sap 3:1; 3:2; 3:3*\nJustórum ánimæ in manu Dei sunt, et non tanget illos torméntum malítiæ: visi sunt óculis insipiéntiu", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, nostræ devotiónis offérimus: quæ et pro cunctórum tibi grata sint honóre Justórum, et nobis salutár", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 5:8-10*\nBeáti mundo corde, quóniam ipsi Deum vidébunt; beáti pacífici, quóniam filii Dei vocabúntur: beáti, qui pe", + "id": "Communio" + }, + { + "body": "Da, quǽsumus, Dómine, fidélibus pópulis ómnium Sanctórum semper veneratióne lætári: et eórum perpétua supplicatióne muní", + "id": "Postcommunio" + } + ], + "2024-11-02": [ + { + "body": "*4 Esdr 2:34; 2:35*\nRéquiem ætérnam dona eis, Dómine: et lux perpétua lúceat eis.\n*Ps 64:2-3*\nTe decet hymnus, Deus, in ", + "id": "Introitus" + }, + { + "body": "Fidélium, Deus, ómnium Cónditor et Redémptor: animábus famulórum famularúmque tuárum remissiónem cunctórum tríbue peccat", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 15:51-57*\nFratres: Ecce, mystérium vobis dico: Omnes quidem re", + "id": "Lectio" + }, + { + "body": "*4 Esdr 2:34 et 35.*\nRéquiem ætérnam dona eis, Dómine: et lux perpétua lúceat eis.\n*Ps 111:7.*\n℣. In memória ætérna erit", + "id": "Graduale" + }, + { + "body": "Dies iræ, dies illa\nSolvet sæclum in favílla:\nTeste David cum Sibýlla.\n\nQuantus tremor est futúrus,\nQuando judex est ven", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 5:25-29*\nIn illo témpore: Dixit Jesus turbis Judæórum: Amen, amen, ", + "id": "Evangelium" + }, + { + "body": "Dómine Jesu Christe, Rex glóriæ, líbera ánimas ómnium fidélium defunctórum de pœnis inférni et de profúndo lacu: líbera ", + "id": "Offertorium" + }, + { + "body": "Hóstias, quǽsumus, Dómine, quas tibi pro animábus famulórum famularúmque tuárum offérimus, propitiátus inténde: ut, quib", + "id": "Secreta" + }, + { + "body": "*Defunctorum*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pate", + "id": "Prefatio" + }, + { + "body": "*4 Esdr 2:35; 2:34*\nLux ætérna lúceat eis, Dómine:\n* Cum Sanctis tuis in ætérnum: quia pius es.\n℣. Requiem ætérnam dona ", + "id": "Communio" + }, + { + "body": "Animábus, quǽsumus, Dómine, famulórum famularúmque tuárum orátio profíciat supplicántium: ut eas et a peccátis ómnibus é", + "id": "Postcommunio" + } + ], + "2024-11-03": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Deus, qui nos, in tantis perículis constitútos, pro humána scis fragilitáte non posse subsístere: da nobis salútem menti", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 13:8-10*\nFratres: Némini quidquam debeátis, nisi ut ínvicem diligá", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:23-27*\nIn illo témpore: Ascendénte Jesu in navículam, secúti sun", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut hujus sacrifícii munus oblátum fragilitátem nostram ab omni malo purget semper et", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Múnera tua nos, Deus, a delectatiónibus terrenis expédiant: et cœléstibus semper instáurent aliméntis.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-11-04": [ + { + "body": "*Eccli 45:30*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.\n", + "id": "Introitus" + }, + { + "body": "Ecclésiam tuam, Dómine, sancti Caróli Confessóris tui atque Pontíficis contínua protectióne custódi: ut, sicut illum pas", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Vitale et Agrícola Martyribus*\nPræsta, quǽsumus, omnípotens Deus: ut, qui sanctórum Mártyrum tuórum Vitális et ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45:3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est j", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\n℣. Non est invéntus símilis illi, qui ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos ubique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Vitale et Agrícola Martyribus*\nOblátis, quǽsumus, Dómine, placáre munéribus: et, intercedéntibus sanctis Martýr", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Cárolo Confessóre t", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Vitale et Agrícola Martyribus*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedéntibus sanctis Martýrib", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-05": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Deus, qui nos, in tantis perículis constitútos, pro humána scis fragilitáte non posse subsístere: da nobis salútem menti", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 13:8-10*\nFratres: Némini quidquam debeátis, nisi ut ínvicem diligá", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:23-27*\nIn illo témpore: Ascendénte Jesu in navículam, secúti sun", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut hujus sacrifícii munus oblátum fragilitátem nostram ab omni malo purget semper et", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Múnera tua nos, Deus, a delectatiónibus terrenis expédiant: et cœléstibus semper instáurent aliméntis.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-11-06": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Deus, qui nos, in tantis perículis constitútos, pro humána scis fragilitáte non posse subsístere: da nobis salútem menti", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 13:8-10*\nFratres: Némini quidquam debeátis, nisi ut ínvicem diligá", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:23-27*\nIn illo témpore: Ascendénte Jesu in navículam, secúti sun", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut hujus sacrifícii munus oblátum fragilitátem nostram ab omni malo purget semper et", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Múnera tua nos, Deus, a delectatiónibus terrenis expédiant: et cœléstibus semper instáurent aliméntis.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-11-07": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Deus, qui nos, in tantis perículis constitútos, pro humána scis fragilitáte non posse subsístere: da nobis salútem menti", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 13:8-10*\nFratres: Némini quidquam debeátis, nisi ut ínvicem diligá", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:23-27*\nIn illo témpore: Ascendénte Jesu in navículam, secúti sun", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut hujus sacrifícii munus oblátum fragilitátem nostram ab omni malo purget semper et", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Múnera tua nos, Deus, a delectatiónibus terrenis expédiant: et cœléstibus semper instáurent aliméntis.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-11-08": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Deus, qui nos, in tantis perículis constitútos, pro humána scis fragilitáte non posse subsístere: da nobis salútem menti", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Quatuor Coronatorum Martyrum*\nPræsta, quǽsumus, omnípotens Deus: ut, qui gloriósos Mártyres fortes in ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 13:8-10*\nFratres: Némini quidquam debeátis, nisi ut ínvicem diligá", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:23-27*\nIn illo témpore: Ascendénte Jesu in navículam, secúti sun", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut hujus sacrifícii munus oblátum fragilitátem nostram ab omni malo purget semper et", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Quatuor Coronatorum Martyrum*\nBenedíctio tua. Dómine, larga descéndat: quæ et múnera nostra, deprecánt", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Múnera tua nos, Deus, a delectatiónibus terrenis expédiant: et cœléstibus semper instáurent aliméntis.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Quatuor Coronatorum Martyrum*\nCœléstibus refécti sacraméntis et gáudiis: súpplices te, Dómine, deprecá", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-09": [ + { + "body": "*Gen 28:17*\nTerríbilis est locus iste: hic domus Dei est et porta cœli: et vocábitur aula Dei. (T.P. Allelúja, allelúja.", + "id": "Introitus" + }, + { + "body": "Deus, qui nobis per síngulos annos hujus sancti templi tui consecratiónis réparas diem, et sacris semper mystériis repæs", + "id": "Oratio" + }, + { + "body": "*Pro S. Theodoro Mart.*\nDeus, qui nos beáti Theodóri Mártyris tui confessióne gloriósa circúmdas et prótegis: præsta nob", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli\n*Apoc 21:2-5*\nIn diébus illis: Vidi sanctam civitátem Jerúsalem novam de", + "id": "Lectio" + }, + { + "body": "Locus iste a Deo factus est, inæstimábile sacraméntum, irreprehensíbilis est.\n℣. Deus, cui astat Angelórum chorus, exáud", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:1-10*\nIn illo témpore: Ingréssus Jesus perambulábat Jéricho. Et ecce", + "id": "Evangelium" + }, + { + "body": "*1 Par 29:17-18*\nDómine Deus, in simplicitáte cordis mei lætus óbtuli univérsa; et pópulum tuum, qui repértus est, vidi ", + "id": "Offertorium" + }, + { + "body": "Annue, quǽsumus, Dómine, précibus nostris: ut, dum hæc vota præséntia réddimus, ad ætérna præmia, te adjuvánte, pervenír", + "id": "Secreta" + }, + { + "body": "*Pro S. Theodoro Mart.*\nSúscipe, Dómine, fidélium preces cum oblatiónibus hostiárum: et, intercedénte beáto Theodóro Már", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 21:13*\nDomus mea domus oratiónis vocábitur, dicit Dóminus: in ea omnis, qui petit, áccipit; et qui quærit, invénit", + "id": "Communio" + }, + { + "body": "Deus, qui de vivis et electis lapídibus ætérnum majestáti tuæ prǽparas habitáculum: auxiliáre pópulo tuo supplicánti; ut", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Theodoro Mart.*\nPræsta nobis, quǽsumus, Dómine: intercedénte beáto Theodóro Mártyre tuo; ut, quod ore contíngimu", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-10": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut, quæ in sola spe grátiæ cœléstis innítitur, tua semper pro", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 3:12-17*\nFratres: Indúite vos sicut electi Dei, sancti et dilec", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 13:24-30*\nIn illo témpore: Dixit Jesus turbis parábolam hanc: Sími", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, placatiónis offérimus: ut et delícta nostra miserátus absólvas, et nutántia corda tu dírigas.\nPer ", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut illíus salutáris capiámus efféctum, cujus per hæc mystéria pignus accépimus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-11-11": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui cónspicis, quia ex nulla nostra virtúte subsístimus: concéde propítius; ut, intercessióne beáti Martíni Confes", + "id": "Oratio" + }, + { + "body": "*Pro S. Menna Martyre*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti Mennæ Martyris tui natalítia cólimus, intercessi", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:16-27; 45:3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 11:33-36*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo lucérnam ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Sanctífica, quǽsumus, Dómine Deus, hæc múnera, quæ in sollemnitáte sancti Antístitis tui Martíni offérimus: ut per ea vi", + "id": "Secreta" + }, + { + "body": "*Pro S. Menna Martyre*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mystériis, et", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, Dómine, Deus noster: ut, quorum festivitáte votíva sunt sacraménta, eórum intercessióne salutária nobi", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Menna Martyre*\nDa, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-12": [ + { + "body": "*Ps 33:20-21*\nMultæ tribulatiónes justórum, et de his ómnibus liberávit eos Dóminus: Dóminus custódit ómnia ossa eórum: ", + "id": "Introitus" + }, + { + "body": "Deus, qui primítias fídei apud Polonórum gentem sanctórum Mártyrum tuórum Benedícti, Ioánnis, Matthǽi, Isáaci atque Chri", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:10-15*\nHi viri misericórdiæ sunt, quorum pietátes non defuérunt: cum semine eórum pérm", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:1-8*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ferm", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nGloriabúntur in te omnes, qui díligunt nomen tuum, quóniam tu, Dómine, benedíces justo: Dómine, ut scuto bo", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, sanctórum Mártyrum tuórum dicátas méritis, benígnus assúme: et ad perpétuum nobis tríbue proveníre", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentavit eos: tamquam aurum in fornáce probávit eos, et quas", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, sanctórum Mártyrum tuórum Benedícti, Ioánnis, Matthǽi, Isáaci atque Christíni solémnia celebrántes, s", + "id": "Postcommunio" + } + ], + "2024-11-13": [ + { + "body": "*Sap 4:13-14*\nConsummatus in brevi explevit tempora multa: placita enim erat Deo anima illius: propter hoc properavit ed", + "id": "Introitus" + }, + { + "body": "Deus, qui inter cetera sapientiæ tuæ miracula, etiam in tenera ætate maturæ sanctitatis gratiam contulisti: da, quǽsumus", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Sap 4:7-18*\nIustus autem si morte præoccupatus fuerit in refrigerio erit. Senectus enim venerab", + "id": "Lectio" + }, + { + "body": "*Ps 20:3-4*\nDesiderium cordis eius tribuisti ei: et voluntate labiorum eius non fraudasti eum.\n℣. Quoniam prævenisti eum", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 19:13-21*\nTunc oblati sunt ei parvuli ut manus eis inponeret et or", + "id": "Evangelium" + }, + { + "body": "*Ps 42:4*\nIntroibo ad altare Dei: ad Deum, qui lætificat iuventutem meam.", + "id": "Offertorium" + }, + { + "body": "Angelorum pane, quǽsumus, Domine, beati Stanislai nos intercessio dignos efficiat, qui eo meruit angelica manu recreari.", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Eccli 15:3*\nCibavit illum Dominus pane vitæ et intellectus, et aqua sapientæ salutaris potavit illum.", + "id": "Communio" + }, + { + "body": "Ut nobis, Domine, cælestis, quem sumpsimus, panis sit vitæ: beato Stanislao Confessore tuo intercedente, quǽsumus; ut pa", + "id": "Postcommunio" + } + ], + "2024-11-14": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beáti Jósaphat Mártyris: de cujus passióne gaudent Angeli ", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, in Ecclésia tua Spíritum, quo replétus beátus Jósaphat Martyr et Póntifex tuus ánimam suam pro", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebræos.\n*Hebr 5:1-6*\nFratres: Omnis póntifex ex homínibus assúmptus, pro homíni", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisæis: Ego sum pastor b", + "id": "Evangelium" + }, + { + "body": "*Joann 15:13*\nMajórem caritátem nemo habet, ut ánimam suam ponat quis pro amícis suis.", + "id": "Offertorium" + }, + { + "body": "Clementíssime Deus, múnera hæc tua benedictióne perfunde, et nos in fide confírma: quam sanctus Jósaphat Martyr et Pónti", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ.", + "id": "Communio" + }, + { + "body": "Spíritum, Dómine, fortitúdinis hæc nobis tríbuat mensa cœléstis: quæ sancti Jósaphat Mártyris tui atque Pontíficis vitam", + "id": "Postcommunio" + } + ], + "2024-11-15": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Albértum Pontíficem tuum atque Doctórem in humána sapiéntia divínæ fídei subjiciénda magnum effecísti: ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, Dómine, quǽsumus, inténde placátus: ut quod Passiónis Fílii tui Dómini nostri mystério gérimus,", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Per hæc sancta quæ súmpsimus, ab hóstium nos, Dómine, impugnatióne defénde: et intercedénte beáto Albérto Confessóre tuo", + "id": "Postcommunio" + } + ], + "2024-11-16": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Deus, qui in corde beátæ Gertrudis Vírginis jucúndam tibi mansionem præparásti: ipsíus méritis et intercessióne; cordis ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos refóve, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2024-11-17": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, semper rationabília meditántes, quæ tibi sunt plácita, et dictis exsequámur et fa", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses\n*1 Thess 1:2-10*\nFratres: Grátias ágimus Deo semper pro ómnibus", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 13:31-35*\nIn illo témpore: Dixit Jesus turbis parábolam hanc: Sími", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Hæc nos oblátio, Deus, mundet, quǽsumus, et rénovet, gubérnet et prótegat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Cœléstibus, Dómine, pasti delíciis: quǽsumus; ut semper éadem, per quæ veráciter vívimus, appétimus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-11-18": [ + { + "body": "*Gen 28:17*\nTerríbilis est locus iste: hic domus Dei est et porta cœli: et vocábitur aula Dei. (T.P. Allelúja, allelúja.", + "id": "Introitus" + }, + { + "body": "Deus, qui nobis per síngulos annos hujus sancti templi tui consecratiónis réparas diem, et sacris semper mystériis repæs", + "id": "Oratio" + }, + { + "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli\n*Apoc 21:2-5*\nIn diébus illis: Vidi sanctam civitátem Jerúsalem novam de", + "id": "Lectio" + }, + { + "body": "Locus iste a Deo factus est, inæstimábile sacraméntum, irreprehensíbilis est.\n℣. Deus, cui astat Angelórum chorus, exáud", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:1-10*\nIn illo témpore: Ingréssus Jesus perambulábat Jéricho. Et ecce", + "id": "Evangelium" + }, + { + "body": "*1 Par 29:17-18*\nDómine Deus, in simplicitáte cordis mei lætus óbtuli univérsa; et pópulum tuum, qui repértus est, vidi ", + "id": "Offertorium" + }, + { + "body": "*Extra Ecclesiam dedicatam*\nAnnue, quǽsumus, Dómine, précibus nostris: ut, dum hæc vota præséntia réddimus, ad ætérna pr", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 21:13*\nDomus mea domus oratiónis vocábitur, dicit Dóminus: in ea omnis, qui petit, áccipit; et qui quærit, invénit", + "id": "Communio" + }, + { + "body": "Deus, qui de vivis et electis lapídibus ætérnum majestáti tuæ prǽparas habitáculum: auxiliáre pópulo tuo supplicánti; ut", + "id": "Postcommunio" + } + ], + "2024-11-19": [ + { + "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", + "id": "Introitus" + }, + { + "body": "Tuórum corda fidélium, Deus miserátor, illústra: et, beátæ Elisabeth précibus gloriósis; fac nos próspera mundi despícer", + "id": "Oratio" + }, + { + "body": "*Pro S. Pontiano Papa et Martyre*\nInfirmitátem nostram réspice, omnípotens Deus: et, quia pondus própriæ actiónis gravat", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Pro S. Pontiano Papa et Martyre*\nHóstias tibi, Dómine, beáti N. Mártyris tui atque Pontíficis dicátas méritis, benígnus", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Pontiano Papa et Martyre*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséqui", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-20": [ + { + "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", + "id": "Introitus" + }, + { + "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum atque) Summum Pontíficem, perpétua protec", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Felicis de Valois Confessoris*\nDeus, qui beátum Felícem Confessórem tuum ex erémo ad munus rediméndi ca", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Felicis de Valois Confessoris*\nPræsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio e", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Felicis de Valois Confessoris*\nQuǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, interce", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-21": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum. (Allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Deus, qui beátam Maríam semper Vírginem, Spíritus Sancti habitáculum, hodiérna die in templo præsentári voluísti: præsta", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16.*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, ", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28; 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium. (Allelúja.)", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2024-11-22": [ + { + "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", + "id": "Introitus" + }, + { + "body": "Deus, qui nos ánnua beátæ Cæcíliæ Vírginis et Mártyris tuæ sollemnitáte lætíficas: da, ut, quam venerámur offício, étiam", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 51:13-17*\nDómine, Deus meus, exaltásti super terram habitatiónem meam, et pro morte deflu", + "id": "Lectio" + }, + { + "body": "*Ps 44:11; 44:12*\nAudi, fília, et vide, et inclína aurem tuam: quia concupívit Rex spéciem tuam. ℣.Ps 44:5\nSpécie tua et", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, placatiónis et laudis, quǽsumus: ut, intercedénte beáta Cæcília Vírgine et Mártyre tua, nos propitia", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nConfundántur supérbi, quia injúste iniquitátem fecérunt in me: ego autem in mandátis tuis exercébor,", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2024-11-23": [ + { + "body": "*Is 59:21; 56:7*\nDicit Dóminus: Sermónes mei, quos dedi in os tuum, non defícient de ore tuo: et múnera tua accépta erun", + "id": "Introitus" + }, + { + "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum atque) Summum Pontíficem, perpétua protec", + "id": "Oratio" + }, + { + "body": "*Pro S. Felicitate*\nPræsta, quǽsumus, omnípotens Deus: ut, beátæ Felicitátis Martyris tuæ sollémnia recenséntes, méritis", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses.\n*Phil 3:17-21; 4:1-3*\nFratres: Imitatóres mei estóte, et observáte", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", + "id": "Secreta" + }, + { + "body": "*Pro S. Felicitate*\nVota pópuli tui, Dómine, propitiátus inténde: et, cujus nos tríbuis sollémnia celebráre, fac gaudére", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Felicitate*\nSúpplices te rogámus, omnípotens Deus: ut, intercedéntibus Sanctis tuis, et tua in nobis dona multíp", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-24": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, tuórum fidélium voluntátes: ut, divíni óperis fructum propénsius exsequéntes; pietátis tuæ rem", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 1:9-14*\nFratres: Non cessámus pro vobis orántes et postulántes,", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:15-35*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vidérit", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Propítius esto, Dómine, supplicatiónibus nostris: et, pópuli tui oblatiónibus precibúsque suscéptis, ómnium nostrum ad t", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine: ut per hæc sacraménta quæ súmpsimus, quidquid in nostra mente vitiósum est, ipsorum med", + "id": "Postcommunio" + } + ], + "2024-11-25": [ + { + "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", + "id": "Introitus" + }, + { + "body": "Deus, qui dedísti legem Móysi in summitáte montis Sínai, et in eódem loco per sanctos Angelos tuos corpus beátæ Catharín", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ in beátæ Catharínæ Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus pa", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nConfundántur supérbi, quia injúste iniquitátem fecérunt in me: ego autem in mandátis tuis exercébor,", + "id": "Communio" + }, + { + "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta Catharína Vírgine et Mártyre tua, sempitérna fáciant ", + "id": "Postcommunio" + } + ], + "2024-11-26": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Clementíssime Deus, qui sanctum Silvéstrum Abbátem, sǽculi hujus vanitátem in apérto túmulo pie meditántem, ad erémum vo", + "id": "Oratio" + }, + { + "body": "*Pro S. Petro Alexandrino Episcopo et Martyre*\nInfirmitátem nostram réspice, omnípotens Deus: et, quia pondus própria; a", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Quǽsumus, Dómine: ut, dum hæc múnera divínæ majestáti tuæ reverénter offérimus; pia mentis præparatióne et cordis puritá", + "id": "Secreta" + }, + { + "body": "*Pro S. Petro Alexandrino Episcopo et Martyre*\nHóstias tibi, Dómine, beáti Petri Mártyris tui atque Pontíficis dicátas m", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Divína dape reféctis tríbue, quǽsumus, Dómine: sancti Silvéstri Abbátis vestígiis ita inhærére; ut copiósam mercédem in ", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Petro Alexandrino Episcopo et Martyre*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-27": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, tuórum fidélium voluntátes: ut, divíni óperis fructum propénsius exsequéntes; pietátis tuæ rem", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 1:9-14*\nFratres: Non cessámus pro vobis orántes et postulántes,", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:15-35*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vidérit", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Propítius esto, Dómine, supplicatiónibus nostris: et, pópuli tui oblatiónibus precibúsque suscéptis, ómnium nostrum ad t", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine: ut per hæc sacraménta quæ súmpsimus, quidquid in nostra mente vitiósum est, ipsorum med", + "id": "Postcommunio" + } + ], + "2024-11-28": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, tuórum fidélium voluntátes: ut, divíni óperis fructum propénsius exsequéntes; pietátis tuæ rem", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 1:9-14*\nFratres: Non cessámus pro vobis orántes et postulántes,", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:15-35*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vidérit", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Propítius esto, Dómine, supplicatiónibus nostris: et, pópuli tui oblatiónibus precibúsque suscéptis, ómnium nostrum ad t", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine: ut per hæc sacraménta quæ súmpsimus, quidquid in nostra mente vitiósum est, ipsorum med", + "id": "Postcommunio" + } + ], + "2024-11-29": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, tuórum fidélium voluntátes: ut, divíni óperis fructum propénsius exsequéntes; pietátis tuæ rem", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Saturnini Martyris*\nDeus, qui nos beáti Saturníni Mártyris tui concédis natalítia pérfrui: ejus nos trí", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 1:9-14*\nFratres: Non cessámus pro vobis orántes et postulántes,", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:15-35*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vidérit", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Propítius esto, Dómine, supplicatiónibus nostris: et, pópuli tui oblatiónibus precibúsque suscéptis, ómnium nostrum ad t", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Saturnini Martyris*\nMúnera, Dómine, tibi dicáta sanctífica: et, intercedénte beáto Saturníno Mártyre tu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine: ut per hæc sacraménta quæ súmpsimus, quidquid in nostra mente vitiósum est, ipsorum med", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Saturnini Martyris*\nSanctíficet nos, quǽsumus, Dómine, tui percéptio sacraménti: et intercessióne Sanct", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-30": [ + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principatus eórum.\n*Ps 138:1-2*\nDómine", + "id": "Introitus" + }, + { + "body": "Majestátem tuam, Dómine, supplíciter exorámus: ut, sicut Ecclésiæ tuæ beátus Andréas Apóstolus éxstitit prædicátor et re", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 10:10-18*\nFratres: Corde enim créditur ad justítiam: ore autem conf", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro pátribus tuis nati ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 4:18-22*\nIn illo témpore: Ambulans Jesus juxta mare Galilǽæ, vidit ", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", + "id": "Offertorium" + }, + { + "body": "Sacrificium nostrum tibi, Dómine, quǽsumus, beáti Andréæ Apóstoli precátio sancta concíliet: ut, in cujus honóre sollémn", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 4:19-20*\nVeníte post me: fáciam vos fíeri piscatóres hóminum; at illi contínuo, relíctis rétibus, secúti sunt Dómi", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, divína mystéria, beáti Andréæ Apóstoli festivitáte lætántes: quæ, sicut tuis Sanctis ad glóriam, ita ", + "id": "Postcommunio" + } + ], + "2024-12-01": [ + { + "body": "*Ps 24:1-3*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim un", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nostrórum perículis, te mereámur proteg", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 13:11-14.*\nFratres: Sciéntes, quia hora est jam nos de somno súrger", + "id": "Lectio" + }, + { + "body": "*Ps 24:3; 24:4*\nUnivérsi, qui te exspéctant, non confundéntur, Dómine.\n℣. Vias tuas, Dómine, notas fac mihi: et sémitas ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 21:25-33.*\nIn illo témpore: Dixit Jesus discípulis suis: Erunt signa in", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3.*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim u", + "id": "Offertorium" + }, + { + "body": "Hæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princípium.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13.*\nDóminus dabit benignitátem: et terra nostra dabit fructum suum.", + "id": "Communio" + }, + { + "body": "Suscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ ventúra sollémnia cóngruis honóribus", + "id": "Postcommunio" + } + ], + "2024-12-02": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Petrum Chrysólogum Doctórem egrégium, divínitus præmonstrátum, ad regéndam et instruéndam Ecclésiam tua", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", + "id": "Offertorium" + }, + { + "body": "Sancti Petri Chrysólogi Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concílie", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:20; 25:21*\nDómine, quinque talénta tradidísti mihi: ecce, ália quinque superlucrátus sum. Euge, serve bone et f", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Petrus Chrysólogus Póntifex tuus et Doctor egrégius, quǽsumus, pre", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-03": [ + { + "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", + "id": "Introitus" + }, + { + "body": "Deus, qui Indiárum gentes beáti Francísci prædicatióne et miráculis Ecclésiæ tuæ aggregáre voluísti: concéde propítius; ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 10:10-18*\nFratres: Corde enim créditur ad justítiam: ore autem conf", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiándu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum\n*Marc 16:15-18*\nIn illo témpore: Dixit Jesus discípulis suis: Eúntes in mun", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio, et pro tuórum tibi grata sit honóre Sanctórum, e", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto Francísco Confessóre tuo, per hæc co", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-04": [ + { + "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", + "id": "Introitus" + }, + { + "body": "Intercessio, quaesumus, Domine, beatae Barbarae Virginis et Martyris tuae ab omni nos adversitate protegat: ut per eius ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ in beátæ N. Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus patrocíni", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nConfundántur supérbi, quia injúste iniquitátem fecérunt in me: ego autem in mandátis tuis exercébor,", + "id": "Communio" + }, + { + "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta N. Vírgine et Mártyre tua, sempitérna fáciant protect", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-05": [ + { + "body": "*Ps 24:1-3*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim un", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nostrórum perículis, te mereámur proteg", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Sabbæ Abbatis*\nIntercéssio nos, quǽsumus. Dómine, beáti Sabbæ Abbátis comméndet: ut, quod nostris mérit", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 13:11-14.*\nFratres: Sciéntes, quia hora est jam nos de somno súrger", + "id": "Lectio" + }, + { + "body": "*Ps 24:3; 24:4*\nUnivérsi, qui te exspéctant, non confundéntur, Dómine.\n℣. Vias tuas, Dómine, notas fac mihi: et sémitas ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 21:25-33.*\nIn illo témpore: Dixit Jesus discípulis suis: Erunt signa in", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3.*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim u", + "id": "Offertorium" + }, + { + "body": "Hæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princípium.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Sabbæ Abbatis*\nSacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salútem no", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13.*\nDóminus dabit benignitátem: et terra nostra dabit fructum suum.", + "id": "Communio" + }, + { + "body": "Suscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ ventúra sollémnia cóngruis honóribus", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Sabbæ Abbatis*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus Sabbas, pro nobis intercedén", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-06": [ + { + "body": "*Eccli 45:30*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dignitas in ætérnum.\n", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Nicoláum Pontíficem innúmeris decorásti miráculis: tríbue, quǽsumus; ut ejus méritis et précibus a gehé", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos\n*Hebr 13:7-17*\nFratres: Mementóte præpositórum vestrórum, qui vobis locú", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23.*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum conf", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Sanctífica, quǽsumus, Dómine Deus, hæc múnera, quæ in sollemnitáte sancti Antístitis tui Nicolái offérimus: ut per ea vi", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36-38*\nSemel jurávi in sancto meo: Semen ejus in ætérnum manebit, et sedes ejus sicut sol in conspéctu meo, et si", + "id": "Communio" + }, + { + "body": "Sacrifícia, quæ súmpsimus, Dómine, pro sollemnitáte sancti Pontíficis tui Nicolái, sempitérna nos protectióne consérvent", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-07": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Ambrósium minístrum tribuísti: præsta, quǽsumus; ut, quem Doctórem vitæ habúi", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est inventus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Omnípotens sempitérne Deus, múnera tuæ majestáti obláta, per intercessiónem beáti Ambrósii Confessóris tui atque Pontífi", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36-38*\nSemel jurávi in sancto meo: Semen ejus in ætérnum manébit, et sedes ejus sicut sol in conspéctu meo, et si", + "id": "Communio" + }, + { + "body": "Sacraménta salútis nostræ suscipiéntes, concéde, quǽsumus, omnípotens Deus: ut beáti Ambrósii Confessóris tui atque Pont", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-08": [ + { + "body": "*Is 61:10*\nGaudens gaudébo in Dómino, et exsultábit ánima mea in Deo meo: quia índuit me vestiméntis salútis: et indumén", + "id": "Introitus" + }, + { + "body": "Deus, qui per immaculátam Vírginis Conceptiónem dignum Fílio tuo habitáculum præparásti: quǽsumus; ut, qui ex morte ejús", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nExcita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 8:22-35*\nDóminus possedit me in inítio viárum suárum, ántequam quidquam fáceret a princípio", + "id": "Lectio" + }, + { + "body": "*Judith 13:23*\nBenedícta es tu. Virgo María, a Dómino, Deo excélso, præ ómnibus muliéribus super terram.\n*Judith 15:10*\n", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:26-28*\nIn illo témpore: Missus est Angelus Gábriël a Deo in civitátem", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, allelúja.", + "id": "Offertorium" + }, + { + "body": "Salutárem hóstiam, quam in sollemnitáte immaculátæ Conceptiónis beátæ Vírginis Maríæ tibi, Dómine, offérimus, súscipe et", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nPlacáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla sup", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "*Ps 86:3, Luc 1:49*\nGloriósa dicta sunt de te, María: quia fecit tibi magna qui potens est.", + "id": "Communio" + }, + { + "body": "Sacraménta quæ súmpsimus, Dómine, Deus noster: illíus in nobis culpæ vúlnera réparent; a qua immaculátam beátæ Maríæ Con", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nRepléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus parti", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-09": [ + { + "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", + "id": "Introitus" + }, + { + "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", + "id": "Offertorium" + }, + { + "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", + "id": "Communio" + }, + { + "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", + "id": "Postcommunio" + } + ], + "2024-12-10": [ + { + "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", + "id": "Introitus" + }, + { + "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Melchiadis Papæ et Mart*\nDeus, qui per immaculátam Vírginis Conceptiónem dignum Fílio tuo habitáculum p", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", + "id": "Offertorium" + }, + { + "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Melchiadis Papæ et Mart*\nSalutárem hóstiam, quam in sollemnitáte immaculátæ Conceptiónis beátæ Vírginis", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", + "id": "Communio" + }, + { + "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Melchiadis Papæ et Mart*\nSacraménta quæ súmpsimus, Dómine, Deus noster: illíus in nobis culpæ vúlnera r", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-11": [ + { + "body": "*Joann 21:15; 21:16; 21:17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine", + "id": "Introitus" + }, + { + "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum Damásum Summum Pontíficem, perpétua protectióne custódi; qu", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nExcita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior e", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi,", + "id": "Evangelium" + }, + { + "body": "*Jerem 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, ", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nPlacáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla sup", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nRepléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus parti", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-12": [ + { + "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", + "id": "Introitus" + }, + { + "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", + "id": "Offertorium" + }, + { + "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", + "id": "Communio" + }, + { + "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", + "id": "Postcommunio" + } + ], + "2024-12-13": [ + { + "body": "*Ps 44:8.*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus ", + "id": "Introitus" + }, + { + "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ Luciæ Vírginis tuæ festivitáte gaudémus; ita piæ devotiónis erudi", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nExcita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam h", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15-16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur in ", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuorum honore Sanctórum: quorum se meritis de tribulatione percepís", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nPlacáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla sup", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:161-162*\nPríncipes persecúti sunt me gratis, et a verbis tuis formidávit cor meum: lætábor ego super elóquia tua", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nRepléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus parti", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-14": [ + { + "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", + "id": "Introitus" + }, + { + "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", + "id": "Offertorium" + }, + { + "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", + "id": "Communio" + }, + { + "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", + "id": "Postcommunio" + } + ], + "2024-12-15": [ + { + "body": "*Phil 4:4-6*\nGaudéte in Dómino semper: íterum dico, gaudéte. Modéstia vestra nota sit ómnibus homínibus: Dóminus enim pr", + "id": "Introitus" + }, + { + "body": "Aurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras, grátia tuæ visitatiónis illústra:\nQ", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 4:4-7*\nFratres: Gaudéte in Dómino semper: íterum dico, gau", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nQui sedes, Dómine, super Chérubim, éxcita poténtiam tuam, et veni.\n℣. Qui regis Israël, inténde: q", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 1:19-28*\nIn illo tempore: Misérunt Judǽi ab Jerosólymis sacerdótes ", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nBenedixísti, Dómine, terram tuam: avertísti captivitátem Jacob: remisísti iniquitatem plebis tuæ.", + "id": "Offertorium" + }, + { + "body": "Devotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri péragat institúta mystérii, et salutáre", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Is 35:4.*\nDícite: pusillánimes, confortámini et nolíte timére: ecce, Deus noster véniet et salvábit nos.", + "id": "Communio" + }, + { + "body": "Implorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad festa ventúra nos prǽparent.\nPer Domi", + "id": "Postcommunio" + } + ], + "2024-12-16": [ + { + "body": "*Dan 3:84; 3:87*\nSacerdótes Dei, benedícite Dóminum: sancti et húmiles corde, laudáte Deum.\n*Dan 3:57*\nBenedícite, ómnia", + "id": "Introitus" + }, + { + "body": "Deus, qui nos beáti N. Mártyris tui atque Pontíficis ánnua sollemnitáte lætíficas: concéde propítius; ut, cujus natalíti", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica III Adventus*\nAurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*2 Cor 1:3-7*\nFratres: Benedíctus Deus et Pater Dómini nostri Jesu C", + "id": "Lectio" + }, + { + "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum.\n℣. Et constituísti eum super ópera mánuum tuárum, Dómine. Allelúja, allelúja.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:24-27*\nIn illo témpore: Dixit Jesus discípulis suis: Si quis vu", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto N. Mártyre tuo atque Pontífice, per éadem nos placátus in", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica III Adventus*\nDevotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri pé", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto N. Mártyre tuo atque Pontífice, coeléstis remédii fác", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica III Adventus*\nImplorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-17": [ + { + "body": "*Phil 4:4-6*\nGaudéte in Dómino semper: íterum dico, gaudéte. Modéstia vestra nota sit ómnibus homínibus: Dóminus enim pr", + "id": "Introitus" + }, + { + "body": "Aurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras, grátia tuæ visitatiónis illústra:\nQ", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 4:4-7*\nFratres: Gaudéte in Dómino semper: íterum dico, gau", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nQui sedes, Dómine, super Chérubim, éxcita poténtiam tuam, et veni.\n℣. Qui regis Israël, inténde: q", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 1:19-28*\nIn illo tempore: Misérunt Judǽi ab Jerosólymis sacerdótes ", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nBenedixísti, Dómine, terram tuam: avertísti captivitátem Jacob: remisísti iniquitatem plebis tuæ.", + "id": "Offertorium" + }, + { + "body": "Devotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri péragat institúta mystérii, et salutáre", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Is 35:4.*\nDícite: pusillánimes, confortámini et nolíte timére: ecce, Deus noster véniet et salvábit nos.", + "id": "Communio" + }, + { + "body": "Implorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad festa ventúra nos prǽparent.\nPer Domi", + "id": "Postcommunio" + } + ], + "2024-12-18": [ + { + "body": "*Is 45:8*\nRoráte, cœli, désuper, et nubes pluant justum: aperiátur terra, et gérminet Salvatórem\n*Ps 18:2.*\nCœli enárran", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut redemptiónis nostræ ventúra sollémnitas et præséntis nobis vitæ subsídia cónferat,", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 2:2-5.*\nIn diébus illis: Dixit Isaias Prophéta: Erit in novíssimis diébus præparátus mons domu", + "id": "LectioL1" + }, + { + "body": "*Ps 23:7; 23:3; 23:4*\nTóllite portas, principes, vestras: et elevámini, portæ æternáles: et introíbit Rex glóriæ.\n℣. Qui", + "id": "GradualeL1" + }, + { + "body": "Festína, quǽsumus, Dómine, ne tardáveris, et auxílium nobis supérnæ virtútis impénde: ut advéntus tui consolatiónibus su", + "id": "OratioL1" + }, + { + "body": "Lectio Isaíæ Prophétæ\n*Is 7:10-15*\nIn diébus illis: Locútus est Dóminus ad Achaz, dicens: Pete tibi signum a Dómino, Deo", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPrope est Dóminus ómnibus invocántibus eum: ómnibus qui ínvocant eum in veritáte.\n℣. Laudem Dómini l", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 1:26-38*\nIn illo tempore: Missus est Angelus Gábriel a Deo in civitatem", + "id": "Evangelium" + }, + { + "body": "*Is 35:4.*\nConfortámini, et jam nolite timére: ecce enim, Deus noster retríbuet judícium: ipse véniet, et salvos nos fác", + "id": "Offertorium" + }, + { + "body": "Acépta tibi sint, quǽsumus, Dómine, nostra jejúnia: quæ et expiándo nos tua grátia dignos effíciant, et ad sempiterna pr", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel.", + "id": "Communio" + }, + { + "body": "Salutáris tui, Dómine, munere satiáti, súpplices deprecámur: ut, cujus lætámur gustu, renovémur efféctu.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-12-19": [ + { + "body": "*Phil 4:4-6*\nGaudéte in Dómino semper: íterum dico, gaudéte. Modéstia vestra nota sit ómnibus homínibus: Dóminus enim pr", + "id": "Introitus" + }, + { + "body": "Aurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras, grátia tuæ visitatiónis illústra:\nQ", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 4:4-7*\nFratres: Gaudéte in Dómino semper: íterum dico, gau", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nQui sedes, Dómine, super Chérubim, éxcita poténtiam tuam, et veni.\n℣. Qui regis Israël, inténde: q", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 1:19-28*\nIn illo tempore: Misérunt Judǽi ab Jerosólymis sacerdótes ", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nBenedixísti, Dómine, terram tuam: avertísti captivitátem Jacob: remisísti iniquitatem plebis tuæ.", + "id": "Offertorium" + }, + { + "body": "Devotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri péragat institúta mystérii, et salutáre", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Is 35:4.*\nDícite: pusillánimes, confortámini et nolíte timére: ecce, Deus noster véniet et salvábit nos.", + "id": "Communio" + }, + { + "body": "Implorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad festa ventúra nos prǽparent.\nPer Domi", + "id": "Postcommunio" + } + ], + "2024-12-20": [ + { + "body": "*Ps 118:151-152*\nPrope es tu, Dómine, et omnes viæ tuæ véritas: inítio cognóvi de testimóniis tuis, quia in ætérnum tu e", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: ut hi, qui in tua pietáte confídunt, ab omni cítius adversitáte liber", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 11:1-5*\nHæc dicit Dóminus Deus: Egrediátur virga de radíce Jesse, et flos de radíce ejus ascén", + "id": "Lectio" + }, + { + "body": "*Ps 84:8; 84:2*\nOsténde nobis, Dómine, misericórdiam tuam: et salutáre tuum da nobis.\n℣. Benedixísti, Dómine, terram tua", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:39-47*\nIn illo tempore: Exsúrgens María ábiit in montána cum festinat", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Zach 14:5*\nEcce, Dóminus véniet et omnes Sancti ejus cum eo: et erit in die illa lux magna.", + "id": "Communio" + }, + { + "body": "Tui nos, Dómine, sacraménti libátio sancta restáuret: et a vetustáte purgátos, in mystérii salutáris fáciat transíre con", + "id": "Postcommunio" + } + ], + "2024-12-21": [ + { + "body": "*Ps 138:17.*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2*\nDómin", + "id": "Introitus" + }, + { + "body": "Da nobis, quǽsumus, Dómine, beáti Apóstoli tui Thomæ sollemnitátibus gloriári: ut ejus semper et patrocíniis sublevémur;", + "id": "Oratio" + }, + { + "body": "*Commemoratio Sabbato Temporum Adventus*\nDeus, qui cónspicis, quia ex nostra pravitáte afflígimur: concéde propítius; ut", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Ephes 2:19-22*\nFratres: Jam non estis hóspites et ádvenæ: sed estis c", + "id": "Lectio" + }, + { + "body": "*Ps 138:17-18.*\nNimis honorati sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n℣. Dinumerábo eos, et supe", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 20:24-29*\nIn illo témpore: Thomas, unus ex duódecim, qui dícitur D", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.", + "id": "Offertorium" + }, + { + "body": "Débitum tibi, Dómine, nostræ réddimus servitútis, supplíciter exorántes: ut, suffrágiis beáti Thomæ Apóstoli, in nobis t", + "id": "Secreta" + }, + { + "body": "*Commemoratio Sabbato Temporum Adventus*\nSacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni no", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Joann 20:27*\nMitte manum tuam, et cognósce loca clavórum: et noli esse incrédulus, sed fidélis.", + "id": "Communio" + }, + { + "body": "Adésto nobis, miséricors Deus: et, intercedénte pro nobis beáto Thoma Apóstolo, tua circa nos propitiátus dona custódi.\n", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Sabbato Temporum Adventus*\nQuǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis no", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-22": [ + { + "body": "*Isa 45:8*\nRoráte, cœli, désuper, et nubes pluant justum: aperiátur terra, et gérminet Salvatórem\n*Ps 18:2*\nCœli enárran", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: et magna nobis virtúte succúrre; ut per auxílium grátiæ tuæ, quod nos", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:1-5*\nFratres: Sic nos exístimet homo ut minístros Christi, e", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPrope est Dóminus ómnibus invocántibus eum: ómnibus, qui ínvocant eum in veritáte.\n℣. Laudem Dómini ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 3:1-6*\nAnno quintodécimo impérii Tibérii Cǽsaris, procuránte Póntio Pil", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28*\nAve, María, gratia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel.", + "id": "Communio" + }, + { + "body": "Sumptis munéribus, quǽsumus, Dómine: ut, cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-12-23": [ + { + "body": "*Isa 45:8*\nRoráte, cœli, désuper, et nubes pluant justum: aperiátur terra, et gérminet Salvatórem\n*Ps 18:2*\nCœli enárran", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: et magna nobis virtúte succúrre; ut per auxílium grátiæ tuæ, quod nos", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:1-5*\nFratres: Sic nos exístimet homo ut minístros Christi, e", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPrope est Dóminus ómnibus invocántibus eum: ómnibus, qui ínvocant eum in veritáte.\n℣. Laudem Dómini ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 3:1-6*\nAnno quintodécimo impérii Tibérii Cǽsaris, procuránte Póntio Pil", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28*\nAve, María, gratia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel.", + "id": "Communio" + }, + { + "body": "Sumptis munéribus, quǽsumus, Dómine: ut, cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2024-12-24": [ + { + "body": "*Exod 16:6; 16:7*\nHódie sciétis, quia véniet Dóminus et salvábit nos: et mane vidébitis glóriam ejus.\n*Ps 23:1*\nDómini e", + "id": "Introitus" + }, + { + "body": "Deus, qui nos redemptiónis nostræ ánnua exspectatióne lætíficas: præsta; ut Unigénitum tuum, quem Redemptórem læti suscí", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beati Pauli Apostoli ad Romános\n*Rom 1:1-6*\nPaulus, servus Jesu Christi, vocátus Apóstolus, segregátus i", + "id": "Lectio" + }, + { + "body": "*Exod 16:6; 16:7*\nHódie sciétis, quia véniet Dóminus et salvábit nos: et mane vidébitis glóriam ejus.\n*Ps 79:2-3*\nQui re", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Matthǽum.\n*Matt 1:18-21*\nCum esset desponsáta Mater Jesu Maria Joseph, ántequam co", + "id": "Evangelium" + }, + { + "body": "*Ps 23:7*\nTóllite portas, principes, vestras: et elevámini, portæ æternáles, et introíbit Rex glóriæ.", + "id": "Offertorium" + }, + { + "body": "Da nobis, quǽsumus, omnípotens Deus: ut, sicut adoránda Fílii tui natalítia prævenímus, sic ejus múnera capiámus sempité", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Isa 40:5*\nRevelábitur glória Dómini: et vidébit omnis caro salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Da nobis, quǽsumus, Dómine: unigéniti Fílii tui recensíta nativitáte respiráre; cujus cœlésti mystério páscimur et potám", + "id": "Postcommunio" + } + ], + "2024-12-25": [ + { + "body": "*Ps 2:7.*\nDóminus dixit ad me: Fílius meus es tu, ego hódie génui te.\n*Ps 2:1*\nQuare fremuérunt gentes: et pópuli meditá", + "id": "Introitus" + }, + { + "body": "Deus, qui hanc sacratíssimam noctem veri lúminis fecísti illustratióne claréscere: da, quǽsumus; ut, cujus lucis mystéri", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", + "id": "Lectio" + }, + { + "body": "*Ps 109:3; 109:1*\nTecum princípium in die virtútis tuæ: in splendóribus Sanctórum, ex útero ante lucíferum génui te.\n℣. ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 2:1-14*\nIn illo témpore: Exiit edíctum a Cæsare Augústo, ut describerét", + "id": "Evangelium" + }, + { + "body": "*Ps 95:11; 95:13*\nLæténtur cœli et exsúltet terra ante fáciem Dómini: quóniam venit.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, quǽsumus, hodiérnæ festivitátis oblátio: ut, tua gratia largiénte, per hæc sacrosáncta commérc", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 109:3*\nIn splendóribus Sanctórum, ex útero ante lucíferum génui te.", + "id": "Communio" + }, + { + "body": "Da nobis, quǽsumus, Dómine, Deus noster: ut, qui Nativitátem Dómini nostri Jesu Christi mystériis nos frequentáre gaudém", + "id": "Postcommunio" + } + ], + "2024-12-26": [ + { + "body": "*Ps 118:23; 118:86; 118:23*\nSedérunt príncipes, et advérsum me loquebántur: et iníqui persecúti sunt me: ádjuva me, Dómi", + "id": "Introitus" + }, + { + "body": "Da nobis, quǽsumus, Dómine, imitári quod cólimus: ut discámus et inimícos dilígere; quia ejus natalícia celebrámus, qui ", + "id": "Oratio" + }, + { + "body": "*Pro Octava Nativitatis*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; quo", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio Actuum Apostolorum\n*Act 6:8-10; 7:54-59*\nIn diebus illis: Stéphanus, plenus grátia et fortitúdine, faciébat prodí", + "id": "Lectio" + }, + { + "body": "*Ps 118:23; 118:86*\nSedérunt príncipes, et advérsum me loquebántur: et iníqui persecúti sunt me.\n*Ps 6:5*\nAdjuva me, Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Matthǽum\n*Matt 23:34-39*\nIn illo témpore: Dicébat Jesus scribis et pharisæis: Ecce", + "id": "Evangelium" + }, + { + "body": "*Act 6:5; 7:59*\nElegérunt Apóstoli Stéphanum Levítam, plenum fide et Spíritu Sancto: quem lapidavérunt Judæi orántem, et", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera pro tuórum commemoratióne Sanctórum: ut, sicut illos pássio gloriósos effécit; ita nos devótio r", + "id": "Secreta" + }, + { + "body": "*Pro Octava Nativitatis*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrorum", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Act 7:56; 7:59; 7:60*\nVídeo cælos apértos, et Jesum stantem a dextris virtútis Dei: Dómine Jesu, accipe spíritum meum, ", + "id": "Communio" + }, + { + "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáto Stéphano Mártyre tuo, sempitérna protectióne confírme", + "id": "Postcommunio" + }, + { + "body": "*Pro Octava Nativitatis*\nPræsta, quǽsumus, omnípotens Deus: ut natus hodie Salvátor mundi, sicut divínæ nobis generatión", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-27": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Ecclésiam tuam, Dómine, benígnus illústra: ut, beáti Joánnis Apóstoli tui et Evangelístæ illumináta doctrínis, ad dona p", + "id": "Oratio" + }, + { + "body": "*Pro Octava Nativitatis:*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapiéntiæ.\n*Eccli 15:1-6*\nQui timet Deum, fáciet bona: et qui cóntinens est justítiæ, apprehéndet illam, et", + "id": "Lectio" + }, + { + "body": "*Joann 21:23; 21:19*\nExiit sermo inter fratres, quod discípulus ille non móritur: et non dixit Jesus: Non móritur,\n℣. Se", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Joánnem.\n*Joann 21:19-24*\nIn illo témpore: Dixit Jesus Petro: Séquere me. Convérsu", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, mulliplicábitur.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ in ejus tibi sollemnitáte deférimus, cujus nos confídimus patrocínio liberári.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro Octava Nativitatis:*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostróru", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Joann 21:23*\nExiit sermo inter fratres, quod discípulus ille non móritur: et non dixit Jesus: Non móritur; sed: Sic eum", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices deprecámur: ut, in cujus hæc commemoratióne percépimus, ejus mun", + "id": "Postcommunio" + }, + { + "body": "*Pro Octava Nativitatis:*\nPræsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatió", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-28": [ + { + "body": "*Ps 8:3.*\nEx ore infántium, Deus, et lacténtium perfecísti laudem propter inimicos tuos.\n*Ps 8:2*\nDómine, Dóminus noster", + "id": "Introitus" + }, + { + "body": "Deus, cujus hodierna die præcónium Innocéntes Mártyres non loquéndo, sed moriéndo conféssi sunt: ómnia in nobis vitiórum", + "id": "Oratio" + }, + { + "body": "*Pro Octava Nativitatis:*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli.\n*Apoc 14:1-5*\nIn diébus illis: Vidi supra montem Sion Agnum stantem, et", + "id": "Lectio" + }, + { + "body": "*Ps 123:7-8*\nAnima nostra, sicut passer, erépta est de láqueo venántium.\n℣. Láqueus contrítus est, et nos liberáti sumus", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Matthǽum\n*Matt 2:13-18*\nIn illo témpore: Angelus Dómini appáruit in somnis Joseph,", + "id": "Evangelium" + }, + { + "body": "*Ps 123:7*\nAnima nostra, sicut passer, erépta est de láqueo venántium: láqueus contrítus est, et nos liberáti sumus.", + "id": "Offertorium" + }, + { + "body": "Sanctórum tuórum, Dómine, nobis pia non desit orátio: quæ et múnera nostra concíliet, et tuam nobis indulgéntiam semper ", + "id": "Secreta" + }, + { + "body": "*Pro Octava Nativitatis:*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostróru", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Matt 2:18.*\nVox in Rama audíta est, plorátus, et ululátus: Rachel plorans fílios suos, et nóluit consolári, quia non su", + "id": "Communio" + }, + { + "body": "Votíva, Dómine, dona percépimus: quæ Sanctórum nobis précibus, et præséntis, quǽsumus, vitæ páriter et ætérnæ tríbue con", + "id": "Postcommunio" + }, + { + "body": "*Pro Octava Nativitatis:*\nPræsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatió", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-29": [ + { + "body": "*Sap 18:14-15.*\nDum médium siléntium tenérent ómnia, et nox in suo cursu médium iter háberet, omnípotens Sermo tuus, Dóm", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, dírige actus nostros in beneplácito tuo: ut in nómine dilécti Fílii tui mereámur bonis opéri", + "id": "Oratio" + }, + { + "body": "*Pro Octava Nativitatis:*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio Epístolæ beati Pauli Apóstoli ad Gálatas.\n*Gal 4:1-7*\nFratres: Quanto témpore heres párvulus est, nihil differt a", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nSpeciósus forma præ filiis hóminum: diffúsa est gratia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam.\n*Luc 2:33-40*\nIn illo témpore: Erat Joseph et María Mater Jesu, mirántes su", + "id": "Evangelium" + }, + { + "body": "*Ps 92:1-2*\nDeus firmávit orbem terræ, qui non commovébitur: paráta sedes tua, Deus, ex tunc, a sǽculo tu es.", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut óculis tuæ majestátis munus oblátum, et grátiam nobis piæ devotiónis obtineat, et", + "id": "Secreta" + }, + { + "body": "*Pro Octava Nativitatis:*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostróru", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Matt 2:20*\nTolle Púerum et Matrem ejus, et vade in terram Israël: defúncti sunt enim, qui quærébant ánimam Púeri.", + "id": "Communio" + }, + { + "body": "Per hujus, Dómine, operatiónem mystérii, et vitia nostra purgéntur, et justa desidéria compleántur.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Pro Octava Nativitatis:*\nPræsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatió", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-30": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; quos sub peccáti jugo vetúst", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beati Pauli Apostoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt cœli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium ", + "id": "Offertorium" + }, + { + "body": "Obláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer eúnd", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatiónis est auctor; ita et imm", + "id": "Postcommunio" + } + ], + "2024-12-31": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; quos sub peccáti jugo vetúst", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Silvestri*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio Epístolæ beati Pauli Apostoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt cœli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium ", + "id": "Offertorium" + }, + { + "body": "Obláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer eúnd", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Silvestri*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostró", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatiónis est auctor; ita et imm", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Silvestri*\nPræsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generat", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-01": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fecúnda, humáno géneri præmia præstitísti: tríbue, quǽsumus; ut ipsam ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt coeli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cæléstis remédii fáciat ", + "id": "Postcommunio" + } + ], + "2025-01-02": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fecúnda, humáno géneri præmia præstitísti: tríbue, quǽsumus; ut ipsam ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt coeli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cæléstis remédii fáciat ", + "id": "Postcommunio" + } + ], + "2025-01-03": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fecúnda, humáno géneri præmia præstitísti: tríbue, quǽsumus; ut ipsam ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt coeli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cæléstis remédii fáciat ", + "id": "Postcommunio" + } + ], + "2025-01-04": [ + { + "body": "*Ps 44:13; 44:15; 44:16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus", + "id": "Introitus" + }, + { + "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fœcúnda, humáno generi præmia præstitísti: tríbue, quǽsumus; ut ipsam ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nSpeciósus forma præ fíliis hóminum: diffúsa est grátia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", + "id": "Evangelium" + }, + { + "body": "Felix namque es, sacra Virgo María, et omni laude digníssima: quia ex te ortus est sol justítiæ, Christus, Deus noster.", + "id": "Offertorium" + }, + { + "body": "Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis prof", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cœléstis remédii fáciat ", + "id": "Postcommunio" + } + ], + "2025-01-05": [ + { + "body": "*Phil 2:10-11*\nIn nómine Jesu omne genu flectátur, cœléstium, terréstrium et infernórum: et omnis lingua confiteátur, qu", + "id": "Introitus" + }, + { + "body": "Deus, qui unigénitum Fílium tuum constituísti humáni géneris Salvatórem, et Jesum vocári jussísti: concéde propítius; ut", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolorum\n*Act 4:8-12*\nIn diébus illis: Petrus, replétus Spíritu Sancto, dixit: Príncipes pópuli et seni", + "id": "Lectio" + }, + { + "body": "*Ps 105:47*\nSalvos fac nos, Dómine, Deus noster, et cóngrega nos de natiónibus: ut confiteámur nómini sancto tuo, et glo", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", + "id": "Evangelium" + }, + { + "body": "*Ps 85:12; 85:5*\nConfitébor tibi, Dómine, Deus meus, in toto corde meo, et glorificábo nomen tuum in ætérnum: quóniam tu", + "id": "Offertorium" + }, + { + "body": "Benedíctio tua, clementíssime Deus, qua omnis viget creatúra, sanctíficet, quǽsumus, hoc sacrifícium nostrum, quod ad gl", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 85:9-10*\nOmnes gentes, quascúmque fecísti, vénient et adorábunt coram te, Dómine, et glorificábunt nomen tuum: quóni", + "id": "Communio" + }, + { + "body": "Omnípotens ætérne Deus, qui creásti et redemísti nos, réspice propítius vota nostra: et sacrifícium salutáris hóstiæ, qu", + "id": "Postcommunio" + } + ], + "2025-01-06": [ + { + "body": "*Malach 3:1; 1 Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium.\n*Ps 71:1*\nDeu", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qui jam te ex fide cognóvi", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta es", + "id": "Lectio" + }, + { + "body": "*Isa 60:6; 60:1*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 2:1-12*\nCum natus esset Jesus in Béthlehem Juda in diébus Heródis r", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", + "id": "Offertorium" + }, + { + "body": "Ecclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha profertur; sed quod eisdem ", + "id": "Secreta" + }, + { + "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intellegéntia consequámur.\nPer", + "id": "Postcommunio" + } + ], + "2025-01-07": [ + { + "body": "*Malach 3:1; 1 Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium.\n*Ps 71:1*\nDeu", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qui jam te ex fide cognóvi", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta es", + "id": "Lectio" + }, + { + "body": "*Isa 60:6; 60:1*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 2:1-12*\nCum natus esset Jesus in Béthlehem Juda in diébus Heródis r", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", + "id": "Offertorium" + }, + { + "body": "Ecclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha profertur; sed quod eisdem ", + "id": "Secreta" + }, + { + "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intellegéntia consequámur.\nPer", + "id": "Postcommunio" + } + ], + "2025-01-08": [ + { + "body": "*Malach 3:1; 1 Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium.\n*Ps 71:1*\nDeu", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qui jam te ex fide cognóvi", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta es", + "id": "Lectio" + }, + { + "body": "*Isa 60:6; 60:1*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 2:1-12*\nCum natus esset Jesus in Béthlehem Juda in diébus Heródis r", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", + "id": "Offertorium" + }, + { + "body": "Ecclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha profertur; sed quod eisdem ", + "id": "Secreta" + }, + { + "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intellegéntia consequámur.\nPer", + "id": "Postcommunio" + } + ], + "2025-01-09": [ + { + "body": "*Malach 3:1; 1 Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium.\n*Ps 71:1*\nDeu", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qui jam te ex fide cognóvi", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta es", + "id": "Lectio" + }, + { + "body": "*Isa 60:6; 60:1*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 2:1-12*\nCum natus esset Jesus in Béthlehem Juda in diébus Heródis r", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", + "id": "Offertorium" + }, + { + "body": "Ecclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha profertur; sed quod eisdem ", + "id": "Secreta" + }, + { + "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intellegéntia consequámur.\nPer", + "id": "Postcommunio" + } + ], + "2025-01-10": [ + { + "body": "*Malach 3:1; 1 Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium.\n*Ps 71:1*\nDeu", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qui jam te ex fide cognóvi", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta es", + "id": "Lectio" + }, + { + "body": "*Isa 60:6; 60:1*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 2:1-12*\nCum natus esset Jesus in Béthlehem Juda in diébus Heródis r", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", + "id": "Offertorium" + }, + { + "body": "Ecclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha profertur; sed quod eisdem ", + "id": "Secreta" + }, + { + "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intellegéntia consequámur.\nPer", + "id": "Postcommunio" + } + ], + "2025-01-11": [ + { + "body": "*Ps 44:13; 44:15; 44:16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus", + "id": "Introitus" + }, + { + "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fœcúnda, humáno generi præmia præstitísti: tríbue, quǽsumus; ut ipsam ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Hyginus Papæ et Mart.*\nGregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum a", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nSpeciósus forma præ fíliis hóminum: diffúsa est grátia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", + "id": "Evangelium" + }, + { + "body": "Felix namque es, sacra Virgo María, et omni laude digníssima: quia ex te ortus est sol justítiæ, Christus, Deus noster.", + "id": "Offertorium" + }, + { + "body": "Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis prof", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Hyginus Papæ et Mart.*\nOblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gr", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cœléstis remédii fáciat ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Hyginus Papæ et Mart.*\nRefectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-12": [ + { + "body": "*Prov 23:24; 23:25*\nExsúltat gáudio pater Justi, gáudeat Pater tuus et Mater tua, et exsúltet quæ génuit te.\n*Ps 83:2-3*", + "id": "Introitus" + }, + { + "body": "Dómine Jesu Christe, qui, Maríæ et Joseph súbditus, domésticam vitam ineffabílibus virtútibus consecrásti: fac nos, utri", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses.\n*Col 3:12-17*\nFratres: Indúite vos sicut elécti Dei, sancti et dilé", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram: ut inhábitem in domo Dómini ómnibus diébus vitæ meæ.\n*Ps 83:5.*\nBeáti, qui", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:42-52*\nCum factus esset Jesus annórum duódecim, ascendéntibus illis ", + "id": "Evangelium" + }, + { + "body": "*Luc 2:22*\nTulérunt Jesum paréntes ejus in Jerúsalem, ut sísterent eum Dómino.", + "id": "Offertorium" + }, + { + "body": "Placatiónis hostiam offérimus tibi, Dómine, supplíciter ut, per intercessiónem Deíparæ Vírginis cum beáto Joseph, famíli", + "id": "Secreta" + }, + { + "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", + "id": "Prefatio" + }, + { + "body": "*Luc 2:51*\nDescéndit Jesus cum eis, et venit Názareth, et erat súbditus illis.", + "id": "Communio" + }, + { + "body": "Quos cœléstibus réficis sacraméntis, fac, Dómine Jesu, sanctæ Famíliæ tuæ exémpla júgiter imitári: ut in hora mortis nos", + "id": "Postcommunio" + } + ], + "2025-01-13": [ + { + "body": "*Malach 3:1; 3:1; Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium\n*Ps 71:1*\nD", + "id": "Introitus" + }, + { + "body": "Deus, cujus Unigénitus in substántia nostræ carnis appáruit: præsta, quǽsumus; ut per eum, quem símilem nobis foris agnó", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta e", + "id": "Lectio" + }, + { + "body": "*Isa 60:6; 60:11*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 1:29-34*\nIn illo témpore: Vidit Joánnes Jesum veniéntem ad se, et ", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, pro nati Fílii tui apparitióne deférimus, supplíciter exorántes: ut, sicut ipse nostrórum auctor e", + "id": "Secreta" + }, + { + "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", + "id": "Prefatio" + }, + { + "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", + "id": "Communio" + }, + { + "body": "Cœlésti lúmine, quǽsumus, Dómine, semper et ubíque nos præveni: ut mystérium, cujus nos partícipes esse voluísti, et pur", + "id": "Postcommunio" + } + ], + "2025-01-14": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Hilárium minístrum tribuísti: præsta quǽsumus; ut, quem Doctórem vitæ habúimu", + "id": "Oratio" + }, + { + "body": "*Pro S. Felicis Mart.*\nConcéde, quǽsumus, omnípotens Deus: ut ad meliórem vitam Sanctórum tuórum exémpla nos próvocent; ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "*Pro Doctore Pontifice*\nSancti N. Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostr", + "id": "Secreta" + }, + { + "body": "*Pro S. Felicis Mart.*\nHóstias tibi, Dómine, beáti Félicis Mártyris tui dicátas méritis, benígnus assúme: et ad perpétuu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "*Pro Doctore Pontifice*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus N. Póntifex tuus et Doctor egrégius, quǽsu", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Felicis Mart.*\nQuǽsumus, Dómine, salutáribus repléti mystériis: ut, beáti Félicis Mártyris tui, cujus sollémnia ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-15": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui nos beáti Pauli Confessóris tui ánnua sollemnitáte lætíficas: concéde propítius; ut, cujus natalítia cólimus, ", + "id": "Oratio" + }, + { + "body": "*Pro S. Mauro Abbate*\nIntercéssio nos, quǽsumus, Dómine, beáti Mauri Abbátis comméndet: ut, quod nostris méritis non val", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 3:7-12*\nFratres: Quæ mihi fuérunt lucra, hæc arbitrátus su", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAnnuntiándum m", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:25-30*\nIn illo témpore: Respóndens Jesus, dixit: Confíteor tibi,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Pro S. Mauro Abbate*\nSacris altáribus, Dómine, hóstias superpósitas sanctus Maurus Abbas, quǽsumus, in salútem nobis pr", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde.", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muni", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Mauro Abbate*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus Maurus Abbas, pro nobis intercedéndo: ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-16": [ + { + "body": "*Joann 21:15; 21:16; 21:17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine", + "id": "Introitus" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut beáti Marcélli Mártyris tui atque Pontíficis méritis adjuvémur", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior e", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi,", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et déstruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubíque succéssus, et ", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18.*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + } + ], + "2025-01-17": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Intercéssio nos, quǽsumus Dómine, beáti Antónii Abbátis comméndet: ut, quod nostris méritis non valémus, ejus patrocínio", + "id": "Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salútem nobis proveníre depóscat.\nPer Domi", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus N. Abbas, pro nobis intercedéndo: ut et conversatiónis ejus ", + "id": "Postcommunio" + } + ], + "2025-01-18": [ + { + "body": "*Ps 44:13; 44:15; 44:16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus", + "id": "Introitus" + }, + { + "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fœcúnda, humáno generi præmia præstitísti: tríbue, quǽsumus; ut ipsam ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Priscæ Virginis*\nDa, quǽsumus, omnípotens Deus: ut, qui beátæ Priscæ Vírginis et Mártyris tuæ natalítia", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nSpeciósus forma præ fíliis hóminum: diffúsa est grátia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", + "id": "Evangelium" + }, + { + "body": "Felix namque es, sacra Virgo María, et omni laude digníssima: quia ex te ortus est sol justítiæ, Christus, Deus noster.", + "id": "Offertorium" + }, + { + "body": "Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis prof", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Priscæ Virginis*\nHæc hóstia, quǽsumus, Dómine, quam Sanctórum tuórum natalítia recenséntes offérimus, e", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cœléstis remédii fáciat ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Priscæ Virginis*\nQuǽsumus, Dómine, salutáribus repléti mystériis: ut, cujus sollémnia celebrámus, ejus ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-19": [ + { + "body": "*Ps 65:4*\nOmnis terra adóret te, Deus, et psallat tibi: psalmum dicat nómini tuo, Altíssime.\n*Ps 65:1-2*\nJubiláte Deo, o", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui cœléstia simul et terréna moderáris: supplicatiónes pópuli tui cleménter exáudi; et pace", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:6-16*\nFratres: Habéntes donatiónes secúndum grátiam, quæ data e", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nMisit Dóminus verbum suum, et sanávit eos: et erípuit eos de intéritu eórum.\n℣. Confiteántur Dómino miser", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 2:1-11*\nIn illo témpore: Núptiæ factæ sunt in Cana Galilǽæ: et era", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nJubiláte Deo, univérsa terra: psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", + "id": "Offertorium" + }, + { + "body": "Oblata, Dómine, múnera sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 2:7; 2:8; 2:9; 2:10-11*\nDicit Dóminus: Implete hýdrias aqua et ferte architriclíno. Cum gustásset architriclínus ", + "id": "Communio" + }, + { + "body": "Augeátur in nobis, quǽsumus, Dómine, tuæ virtútis operatio: ut divínis vegetáti sacraméntis, ad eórum promíssa capiénda,", + "id": "Postcommunio" + } + ], + "2025-01-20": [ + { + "body": "*Ps 78:11-12; 78:10*\nIntret in conspéctu tuo, Dómine, gémitus compeditórum: redde vicínis nostris séptuplum in sinu eóru", + "id": "Introitus" + }, + { + "body": "Infirmitátem nostram réspice, omnípotens Deus: et, quia pondus própriæ actiónis gravat, beatórum Mártyrum tuórum Fabiáni", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos\n*Hebr 11:33-39*\nFratres: Sancti per fidem vicérunt regna, operáti sunt j", + "id": "Lectio" + }, + { + "body": "*Exod 15:11*\nGloriósus Deus in Sanctis suis: mirábilis in majestáte, fáciens prodígia.\n*Exod 15:6*\nDéxtera tua, Dómine, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 6:17-23*\nIn illo témpore: descéndens Jesus de monte, stetit in loco ca", + "id": "Evangelium" + }, + { + "body": "*Ps 31:11*\nLætámini in Dómino et exsultáte, justi: et gloriámini, omnes recti corde.", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, beatórum Mártyrum tuórum Fabiáni et Sebastiáni dicátas méritis, benígnus assúme: et ad perpétuum n", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 6:18; 6:19*\nMultitúdo languéntium, et qui vexabántur a spirítibus immúndis, veniébant ad eum: quia virtus de illo e", + "id": "Communio" + }, + { + "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedéntibus sancti", + "id": "Postcommunio" + } + ], + "2025-01-21": [ + { + "body": "*Ps 118:95-96*\nMe exspectavérunt peccatóres, ut pérderent me: testimónia tua, Dómine, intelléxi: omnis consummatiónis vi", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui infírma mundi éligis, ut fórtia quæque confúndas: concéde propítius; ut, qui beátæ Agnét", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", + "id": "Lectio" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum,\n*Ps 44:5*\nPropter veritátem et mans", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducántur", + "id": "Offertorium" + }, + { + "body": "Hóstias, Dómine, quas tibi offérimus, propítius súscipe: et, intercedénte beáta Agnéte Vírgine et Mártyre tua, víncula p", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti. Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + } + ], + "2025-01-22": [ + { + "body": "*Ps 78:11-12; 78:10*\nIntret in conspéctu tuo, Dómine, gémitus compeditórum: redde vicínis nostris séptuplum in sinu eóru", + "id": "Introitus" + }, + { + "body": "Adésto, Dómine, supplicatiónibus nostris: ut, qui ex iniquitáte nostra reos nos esse cognóscimus, beatórum Mártyrum tuór", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 3:1-8*\nJustorum ánimæ in manu Dei sunt, et non tanget illos torméntum mortis. Visi sunt ocul", + "id": "Lectio" + }, + { + "body": "*Exod 15:11*\nGloriósus Deus in Sanctis suis: mirábilis in majestáte, fáciens prodígia.\n*Exod 15:6*\n℣. Déxtera tua, Dómin", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 21:9-19*\nIn illo témpore: Dixit Jesus discípulis suis: Cum audieritis ", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nMirábilis Deus in Sanctis suis: Deus Israël, ipse dabit virtútem et fortitúdinem plebi suæ: benedíctus Deus, ", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, nostræ devotiónis offérimus: quæ et pro tuórum tibi grata sint honóre Justórum, et nobis salutária,", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentávit eos: tamquam aurum in fornáce probávit eos, et quas", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedéntibus beátis Martýribus tuis Vincéntio et Ana", + "id": "Postcommunio" + } + ], + "2025-01-23": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Raymúndum pœniténtiæ sacraménti insígnem minístrum elegísti, et per maris undas mirabíliter traduxísti:", + "id": "Oratio" + }, + { + "body": "*Pro S. Emerentiana Virg. et Mart.*\nIndulgéntiam nobis, quǽsumus, Dómine, beáta Emerentiána Virgo et Martyr implóret: qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Pro S. Emerentianæ Virg. et Mart.*\nHóstias tibi, Dómine, beátæ Emerentiánæ Vírginis et Mártyris tuæ dicátas méritis, be", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Emerentianæ Virg. et Mart.*\nDivíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut, intercedénte be", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-24": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum\n", + "id": "Introitus" + }, + { + "body": "Infirmitátem nostram réspice, omnípotens Deus: et, quia pondus própriæ actiónis gravat, beáti N. Mártyris tui atque Pont", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*1 Tim 6:11-16*\nCaríssime: Sectáre justítiam, pietátem, fidem, caritá", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23.*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum conf", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:26-33.*\nIn illo témpore: Dixit Jesus turbis: Si quis venit ad me, e", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25.*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, beáti N. Mártyris tui atque Pontíficis dicátas méritis, benígnus assúme: et ad perpétuum nobis trí", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36; 88:37-38.*\nSemel jurávi in sancto meo: Semen ejus in ætérnum manébit: et sedes ejus sicut sol in conspéctu me", + "id": "Communio" + }, + { + "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedénte beáto N. ", + "id": "Postcommunio" + } + ], + "2025-01-25": [ + { + "body": "*2 Tim 1:12*\nScio, cui crédidi, et certus sum, quia potens est depósitum meum serváre in illum diem, justus judex.\n*Ps 1", + "id": "Introitus" + }, + { + "body": "Deus, qui univérsum mundum beáti Pauli Apóstoli prædicatióne docuísti: da nobis, quǽsumus; ut, qui ejus hódie Conversión", + "id": "Oratio" + }, + { + "body": "*Pro S. Petro*\nDeus, qui beáto Petro Apóstolo tuo, collátis clávibus regni cœléstis, ligándi atque solvéndi pontifícium ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Act 9:1-22*\nIn diébus illis: Saulus adhuc spirans minárum et cædis in discípulos Dómini, accé", + "id": "Lectio" + }, + { + "body": "*Gal 2:8; 2:9*\nQui operátus est Petro in apostolátum, operátus est ei mihi inter gentes: et cognovérunt grátiam Dei, quæ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", + "id": "Offertorium" + }, + { + "body": "Apóstoli tui Pauli précibus, Dómine, plebis tuæ dona sanctífica: ut, quæ tibi tuo grata sunt institúto, gratióra fiant p", + "id": "Secreta" + }, + { + "body": "*Pro S. Petro*\nEcclésiæ tuæ, quǽsumus, Dómine, preces et hóstias beáti Petri Apóstoli comméndet orátio: ut, quod pro ill", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28; 19:29*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Sanctificáti, Dómine, salutári mystério: quǽsumus; ut nobis ejus non desit orátio, cujus nos donásti patrocínio gubernár", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Petro*\nLætíficet nos, Dómine, munus oblátum: ut, sicut in Apóstolo tuo Petro te mirábilem prædicámus; sic per il", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-26": [ + { + "body": "*Ps 96:7-8*\nAdoráte Deum, omnes Angeli ejus: audívit, et lætáta est Sion: et exsultavérunt fíliæ Judæ.\n*Ps 96:1*\nDóminus", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, infirmitatem nostram propítius réspice: atque, ad protegéndum nos, déxteram tuæ majestátis e", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:16-21*\nFratres: Nolíte esse prudéntes apud vosmetípsos: nulli m", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:1-13*\nIn illo témpore: Cum descendísset Jesus de monte, secútæ s", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nDéxtera Dómini fecit virtutem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera ", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Luc 4:22*\nMirabántur omnes de his, quæ procedébant de ore Dei.", + "id": "Communio" + }, + { + "body": "Quos tantis, Dómine, largíris uti mystériis: quǽsumus; ut efféctibus nos eórum veráciter aptáre dignéris.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-01-27": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Ecclésiam tuam, quǽsumus, Dómine, grátia cœléstis amplíficet: quam beáti Joánnis Chrysóstomi Confessóris tui atque Pontí", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui j", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est inventus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", + "id": "Offertorium" + }, + { + "body": "Sancti Joánnis Chrysóstomi Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concí", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Joánnes Chrysóstomus Póntifex tuus et Doctor egrégius, quǽsumus, p", + "id": "Postcommunio" + } + ], + "2025-01-28": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui in tuæ caritátis exémplum ad fidélium redemptiónem sanctum Petrum Ecclésiam tuam nova prole fœcundáre divínitu", + "id": "Oratio" + }, + { + "body": "*Pro S. Agneti secundo*\nDeus, qui nos ánnua beátæ Agnetis Vírginis et Martyris tuæ sollemnitáte lætíficas: da, quǽsumus;", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Laudis tibi. Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum quibus nos et præséntibus éxui malis confídimu", + "id": "Secreta" + }, + { + "body": "*Pro S. Agneti secundo*\nSuper has, quǽsumus, Dómine, hóstias benedíctio copiósa descéndat: quæ et sanctificatiónem nobis", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Agneti secundo*\nSúmpsimus, Dómine, celebritátis ánnuæ votiva sacraménta: præsta, quǽsumus; ut et temporális vitæ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-29": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui ad animárum salútem beátum Francíscum Confessórem tuum atque Pontíficem ómnibus ómnia factum esse voluísti: co", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "*Pro Doctore Pontifice*\nSancti N. Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostr", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "*Pro Doctore Pontifice*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus N. Póntifex tuus et Doctor egrégius, quǽsu", + "id": "Postcommunio" + } + ], + "2025-01-30": [ + { + "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", + "id": "Introitus" + }, + { + "body": "Deus, qui inter cétera poténtiæ tuæ mirácula, étiam in sexu frágili victóriam martýrii contulísti: concéde propítius; ut", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ in beátæ N. Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus patrocíni", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nConfundántur supérbi, quia injúste iniquitátem fecérunt in me: ego autem in mandátis tuis exercébor,", + "id": "Communio" + }, + { + "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta N. Vírgine et Mártyre tua, sempitérna fáciant protect", + "id": "Postcommunio" + } + ], + "2025-01-31": [ + { + "body": "*3 Reg 4:29*\nDedit illi Deus sapiéntiam, et prudéntiam multam nimis, et latitúdinem cordis, quasi arénam quæ est in lítt", + "id": "Introitus" + }, + { + "body": "Deus, qui sanctum Joánnem Confessórem tuum adolescentium patrem et magístrum excitásti, ac per eum, auxiliatríce Vírgine", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses.\n*Philipp 4:4-9*\nFratres: Gaudéte in Dómino semper: íterum dico, ga", + "id": "Lectio" + }, + { + "body": "*Ps 36:3-5*\nSpera in Dómino, et fac bonitátem, et inhábita terram, et pascéris in divítiis ejus.\n℣. Delectáre in Dómino,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-5*\nIn illo témpore: Accessérunt discípuli ad Jesum dicéntes: ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, oblatiónem mundam salutáris Hóstiæ, et præsta: ut, te in ómnibus et super ómnia diligéntes, in glóriæ t", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Rom 4:18*\nContra spem in spem crédidit, ut fíeret pater multárum géntium, secúndum quod dictum est ei.", + "id": "Communio" + }, + { + "body": "Córporis et Sánguinis tui, Dómine, mystério satiátis, concéde, quǽsumus; ut, intercedénte sancto Joánne Confessóre tuo, ", + "id": "Postcommunio" + } + ], + "2025-02-01": [ + { + "body": "*Gal 6:14.*\nMihi autem absit gloriári, nisi in Cruce Dómini nostri Jesu Christi: per quem mihi mundus crucifíxus est, et", + "id": "Introitus" + }, + { + "body": "Infirmitátem nostram respice, omnípotens Deus: et, quia pondus própriæ actionis gravat, beáti Ignátii Martyris tui atque", + "id": "Oratio" + }, + { + "body": "Léctio Epistolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:35-39.*\nFratres: Quis nos separábit a caritáte Christi: tribuláti", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16.*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20.*\n℣. Non est invéntus símilis illi, qu", + "id": "Graduale" + }, + { + "body": "Sequentia sancti Evangelii secundum Joánnem\n*Joann 12:24-26.*\nIn illo témpore: Dixit Jesus discípulis suis: Amen, amen, ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7.*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Domine.", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, beáti Ignátii Martyris tui atque Pontíficis dicatas méritis, benígnus assúme: et ad perpétuum nobi", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "Fruméntum Christi sum: déntibus bestiárum molar, ut panis mundus invéniar.", + "id": "Communio" + }, + { + "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedénte beáto Ign", + "id": "Postcommunio" + } + ], + "2025-02-02": [ + { + "body": "*Si candelarum benedictio et processio, ob defectum ministrorum sacrorum, forma solemni fieri nequeat, licet formam simp", + "id": "De Benedictione Candelarum" + }, + { + "body": "*Tum dignior ex Clero accedit ad Altare, et ab eo Celebrans accipit Candelam, non genuflectens nec osculans manum illius", + "id": "De Distributione Candelarum" + }, + { + "body": "*Primo Celebrans ponit incensum in thuribulum: postea Diaconus vertens se ad populum, dicit:*\n℣. Procedámus in pace.\n℟. ", + "id": "De Processione" + }, + { + "body": "*Ps 47:10-11.*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tua in f", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, majestátem tuam súpplices exorámus: ut, sicut unigénitus Fílius tuus hodiérna die cum nostræ", + "id": "Oratio" + }, + { + "body": "Léctio Malachíæ Prophétæ.\n*Malach 3:1-4.*\nHæc dicit Dóminus Deus: Ecce, ego mitto Angelum meum, et præparábit viam ante ", + "id": "Lectio" + }, + { + "body": "*Ps 47:10-11; 47:9.*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:22-32.*\nIn illo témpore: Postquam impleti sunt dies purgatiónis Marí", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3.*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi.", + "id": "Offertorium" + }, + { + "body": "Exáudi, Dómine, preces nostras: et, ut digna sint múnera, quæ óculis tuæ majestátis offérimus, subsídium nobis tuæ pietá", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Luc 2:26.*\nRespónsum accépit Símeon a Spíritu Sancto, non visúrum se mortem, nisi vidéret Christum Dómini.", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti, intercedénte be", + "id": "Postcommunio" + } + ], + "2025-02-03": [ + { + "body": "*Ps 96:7-8*\nAdoráte Deum, omnes Angeli ejus: audívit, et lætáta est Sion: et exsultavérunt fíliæ Judæ.\n*Ps 96:1*\nDóminus", + "id": "Introitus" + }, + { + "body": "Deus, qui nos, in tantis perículis constitútos, pro humána scis fragilitáte non posse subsístere: da nobis salútem menti", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Blasii Episcopi*\nDeus, qui nos beáti Blásii Mártyris tui atque Pontíficis ánnua solemnitáte lætíficas: ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 13:8-10*\nFratres: Némini quidquam debeátis, nisi ut ínvicem diligá", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:23-27*\nIn illo témpore: Ascendénte Jesu in navículam, secúti sun", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nDéxtera Dómini fecit virtutem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera ", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut hujus sacrifícii munus oblátum fragilitátem nostram ab omni malo purget semper et", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Blasii Episcopi*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto Blásio Mártyre tuo atqu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 4:22*\nMirabántur omnes de his, quæ procedébant de ore Dei.", + "id": "Communio" + }, + { + "body": "Múnera tua nos, Deus, a delectatiónibus terrenis expédiant: et cœléstibus semper instáurent aliméntis.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Blasii Episcopi*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto Blásio Mártyre tuo ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-04": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui in Ecclésia tua nova semper instáuras exémpla virtútum: da pópulo tuo beáti Andréæ Confessóris tui atque Pontí", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos úbique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Andréa Confessóre t", + "id": "Postcommunio" + } + ], + "2025-02-05": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Agathæ Vírginis et Martyris: de cujus passióne gaude", + "id": "Introitus" + }, + { + "body": "Deus, qui inter cétera poténtiæ tuæ mirácula étiam in sexu frágili victóriam martýrii contulísti: concéde propítius; ut,", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 1:26-31.*\nFratres: Vidéte vocatiónem vestram: quia non multi s", + "id": "Lectio" + }, + { + "body": "*Ps 45:6 et 5.*\nAdjuvábit eam Deus vultu suo: Deus in médio ejus, non commovébitur.\n℣. Flúminis impetus lætíficat civitá", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 19:3-12.*\nIn illo témpore: Accessérunt ad Jesum pharisǽi, tentánte", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15.*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ in beátæ Agathæ Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus patro", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "Qui me dignátus est ab omni plaga curáre et mamíllam meam meo péctori restitúere, ipsum ínvoco Deum vivum.", + "id": "Communio" + }, + { + "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta Agatha Vírgine et Mártyre tua, sempitérna protectióne", + "id": "Postcommunio" + } + ], + "2025-02-06": [ + { + "body": "*Eccli 45:30*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.\n", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Titum Confessórem tuum atque Pontíficem apostólicis virtútibus decorásti: ejus méritis et intercessióne", + "id": "Oratio" + }, + { + "body": "*Pro S. Dorotheæ Virg. et Mart.*\nIndulgéntiam nobis, quǽsumus, Dómine, beáta Dorothéa Virgo et Martyr implóret: quæ tibi", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16.*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20.*\n℣. Non est inventus símilis illi, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et álios septuagínta duos: ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos ubique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro S. Dorothea*\nHóstias tibi, Dómine, beátæ Dorótheæ Vírginis et Mártyris tuæ dicatas méritis, benígnus assúme: et ad ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Tito Confessóre tuo", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Dorothea*\nDivíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut, intercedénte beáta Dorothéa Vírgi", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-07": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Intercéssio nos, quǽsumus Dómine, beáti Romuáldi Abbátis comméndet: ut quod nostris méritis non valémus, ejus patrocínio", + "id": "Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salútem nobis proveníre depóscat.\nPer Domi", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus N. Abbas, pro nobis intercedéndo: ut et conversatiónis ejus ", + "id": "Postcommunio" + } + ], + "2025-02-08": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui per sanctum Joánnem órdinem sanctíssimæ Trinitátis ad rediméndum de potestáte Saracenórum captívos cǽlitus ins", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muni", + "id": "Postcommunio" + } + ], + "2025-02-09": [ + { + "body": "*Ps 96:7-8.*\nAdoráte Deum, omnes Angeli ejus: audívit, et lætáta est Sion: et exsultavérunt fíliæ Judæ.\n*Ps 96:1*\nDóminu", + "id": "Introitus" + }, + { + "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut, quæ in sola spe grátiæ cœléstis innítitur, tua semper pro", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 3:12-17*\nFratres: Indúite vos sicut electi Dei, sancti et dilec", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 13:24-30*\nIn illo témpore: Dixit Jesus turbis parábolam hanc: Sími", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nDéxtera Dómini fecit virtutem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera ", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, placatiónis offérimus: ut et delícta nostra miserátus absólvas, et nutántia corda tu dírigas.\nPer ", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Luc 4:22*\nMirabántur omnes de his, quæ procedébant de ore Dei.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut illíus salutáris capiámus efféctum, cujus per hæc mystéria pignus accépimus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-02-10": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Deus, qui ánimam beátæ Vírginis tuæ Scholásticæ ad ostendéndam innocéntiæ viam in colúmbæ spécie cœlum penetráre fecísti", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2025-02-11": [ + { + "body": "*Apoc 21:2*\nVidi civitátem sanctam, Jerúsalem novam, descendéntem de cœlo a Deo, parátam sicut sponsam ornátam viro suo.", + "id": "Introitus" + }, + { + "body": "Deus, qui per immaculátam Vírginis Conceptiónem dignum Filio tuo habitáculum præparásti: súpplices a te quǽsumus; ut, ej", + "id": "Oratio" + }, + { + "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli\n*Apoc 11:19; 12:1, 10*\nApértum est templum Dei in cœlo: et visa est arca", + "id": "Lectio" + }, + { + "body": "*Cant 2:12*\nFlores apparuérunt in terra nostra, tempus putatiónis advénit, vox túrturis audíta est in terra nostra.\n*Can", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:26-31*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitátem", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28*\nAve, grátia plena; Dóminus tecum: benedícta tu in muliéribus.", + "id": "Offertorium" + }, + { + "body": "Hóstia laudis, quam tibi, Dómine, per mérita gloriósæ et immaculátæ Vírginis offérimus, sit tibi in odórem suavitátis, e", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "*Ps 64:10*\nVisitásti terram et inebriásti eam, multiplicásti locupletáre eam.", + "id": "Communio" + }, + { + "body": "Quos cœlésti, Dómine, aliménto satiásti, súblevet dextera Genetrícis tuæ immaculátæ: ut ad ætérnam pátriam, ipsa adjuván", + "id": "Postcommunio" + } + ], + "2025-02-12": [ + { + "body": "*Sap 10:20-21.*\nJusti decantavérunt, Dómine, nomen sanctum tuum, et victrícem manum tuam laudavérunt páriter: quóniam sa", + "id": "Introitus" + }, + { + "body": "Dómine Jesu Christe, qui, ad recoléndam memóriam dolórum sanctíssimæ Genetrícis tuæ, per septem beátos Patres nova Servo", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:1-15*\nLaudémus viros gloriósos et paréntes nostros in generatióne sua. Multam glóriam f", + "id": "Lectio" + }, + { + "body": "*Is 65:23*\nElécti mei non laborábunt frustra, neque germinábunt in conturbatióne: quia semen benedictórum Dómini est, et", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 19:27-29.*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíq", + "id": "Evangelium" + }, + { + "body": "*Is 56:7.*\nAddúcam eos in montem sanctum meum, et lætificábo eos in domo oratiónis meæ: holocáusta eórum et víctimæ eóru", + "id": "Offertorium" + }, + { + "body": "Accipe, quǽsumus, Dómine, hóstias quas tibi offérimus: et præsta; ut, intercedéntibus Sanctis tuis, libera tibi mente se", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 15:16.*\nEgo vos elégi de mundo, ut eátis et fructum afferátis: et fructus vester máneat.", + "id": "Communio" + }, + { + "body": "Cœléstibus refécti mystériis te, Dómine, deprecámur: ut, quorum festa percólimus imitántes exémpla; juxta Crucem Jesu cu", + "id": "Postcommunio" + } + ], + "2025-02-13": [ + { + "body": "*Ps 96:7-8.*\nAdoráte Deum, omnes Angeli ejus: audívit, et lætáta est Sion: et exsultavérunt fíliæ Judæ.\n*Ps 96:1*\nDóminu", + "id": "Introitus" + }, + { + "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut, quæ in sola spe grátiæ cœléstis innítitur, tua semper pro", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 3:12-17*\nFratres: Indúite vos sicut electi Dei, sancti et dilec", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 13:24-30*\nIn illo témpore: Dixit Jesus turbis parábolam hanc: Sími", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nDéxtera Dómini fecit virtutem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera ", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, placatiónis offérimus: ut et delícta nostra miserátus absólvas, et nutántia corda tu dírigas.\nPer ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 4:22*\nMirabántur omnes de his, quæ procedébant de ore Dei.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut illíus salutáris capiámus efféctum, cujus per hæc mystéria pignus accépimus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-02-14": [ + { + "body": "*Ps 96:7-8.*\nAdoráte Deum, omnes Angeli ejus: audívit, et lætáta est Sion: et exsultavérunt fíliæ Judæ.\n*Ps 96:1*\nDóminu", + "id": "Introitus" + }, + { + "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut, quæ in sola spe grátiæ cœléstis innítitur, tua semper pro", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Valentini*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti Valentíni Mártyris tui natalítia cólimus, a", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 3:12-17*\nFratres: Indúite vos sicut electi Dei, sancti et dilec", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 13:24-30*\nIn illo témpore: Dixit Jesus turbis parábolam hanc: Sími", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nDéxtera Dómini fecit virtutem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera ", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, placatiónis offérimus: ut et delícta nostra miserátus absólvas, et nutántia corda tu dírigas.\nPer ", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Valentini*\nSúscipe, quǽsumus, Dómine, múnera dignánter obláta: et, beáti Valentini Mártyris tui suffrag", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 4:22*\nMirabántur omnes de his, quæ procedébant de ore Dei.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut illíus salutáris capiámus efféctum, cujus per hæc mystéria pignus accépimus.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Valentini*\nSit nobis, Dómine, reparátio mentis et córporis cœléste mystérium: ut, cujus exséquimur acti", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-15": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "*Commemoratio SS. Faustini et Jovitæ*\nDeus, qui nos ánnua sanctórum Mártyrum tuórum Faustíni et Jovítæ sollemnitáte lætí", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "Felix namque es, sacra Virgo María, et omni laude digníssima: quia ex te ortus est sol justítiæ, Christus, Deus noster.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*Commemoratio SS. Faustini et Jovitæ*\nAdésto, Dómine, supplicatiónibus nostris, quas in Sanctórum tuórum commemoratióne ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio SS. Faustini et Jovitæ*\nQuǽsumus, Dómine, salutáribus repléti mystériis: ut, quorum sollémnia celebrámus, ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-16": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nCircumdedérunt me gémitus mortis, dolóres inférni circumdedérunt me: et in tribulatióne mea invocá", + "id": "Introitus" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 9:24-27; 10:1-5*\nFratres: Nescítis, quod ii, qui in stádio cur", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nAdjútor in opportunitátibus, in tribulatióne: sperent in te, qui novérunt te: quóniam non derelínq", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 20:1-16*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nBonum est confitéri Dómino, et psállere nómini tuo, Altíssime.", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nIllúmina fáciem tuam super servum tuum, et salvum me fac in tua misericórdia: Dómine, non confúndar, quóni", + "id": "Communio" + }, + { + "body": "Fidéles tui, Deus, per tua dona firméntur: ut eadem et percipiéndo requírant, et quæréndo sine fine percípiant.\nPer Domi", + "id": "Postcommunio" + } + ], + "2025-02-17": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nCircumdedérunt me gémitus mortis, dolóres inférni circumdedérunt me: et in tribulatióne mea invocá", + "id": "Introitus" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 9:24-27; 10:1-5*\nFratres: Nescítis, quod ii, qui in stádio cur", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nAdjútor in opportunitátibus, in tribulatióne: sperent in te, qui novérunt te: quóniam non derelínq", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 20:1-16*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nBonum est confitéri Dómino, et psállere nómini tuo, Altíssime.", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nIllúmina fáciem tuam super servum tuum, et salvum me fac in tua misericórdia: Dómine, non confúndar, quóni", + "id": "Communio" + }, + { + "body": "Fidéles tui, Deus, per tua dona firméntur: ut eadem et percipiéndo requírant, et quæréndo sine fine percípiant.\nPer Domi", + "id": "Postcommunio" + } + ], + "2025-02-18": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nCircumdedérunt me gémitus mortis, dolóres inférni circumdedérunt me: et in tribulatióne mea invocá", + "id": "Introitus" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Simeonis Faustini Episcopi et Martyris*\nInfirmitátem nostram réspice, omnípotens Deus: et quia pondus p", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 9:24-27; 10:1-5*\nFratres: Nescítis, quod ii, qui in stádio cur", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nAdjútor in opportunitátibus, in tribulatióne: sperent in te, qui novérunt te: quóniam non derelínq", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 20:1-16*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nBonum est confitéri Dómino, et psállere nómini tuo, Altíssime.", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Simeonis Faustini Episcopi et Martyris*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nIllúmina fáciem tuam super servum tuum, et salvum me fac in tua misericórdia: Dómine, non confúndar, quóni", + "id": "Communio" + }, + { + "body": "Fidéles tui, Deus, per tua dona firméntur: ut eadem et percipiéndo requírant, et quæréndo sine fine percípiant.\nPer Domi", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Simeonis Faustini Episcopi et Martyris*\nDa, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemorati", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-19": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nCircumdedérunt me gémitus mortis, dolóres inférni circumdedérunt me: et in tribulatióne mea invocá", + "id": "Introitus" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 9:24-27; 10:1-5*\nFratres: Nescítis, quod ii, qui in stádio cur", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nAdjútor in opportunitátibus, in tribulatióne: sperent in te, qui novérunt te: quóniam non derelínq", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 20:1-16*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nBonum est confitéri Dómino, et psállere nómini tuo, Altíssime.", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nIllúmina fáciem tuam super servum tuum, et salvum me fac in tua misericórdia: Dómine, non confúndar, quóni", + "id": "Communio" + }, + { + "body": "Fidéles tui, Deus, per tua dona firméntur: ut eadem et percipiéndo requírant, et quæréndo sine fine percípiant.\nPer Domi", + "id": "Postcommunio" + } + ], + "2025-02-20": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nCircumdedérunt me gémitus mortis, dolóres inférni circumdedérunt me: et in tribulatióne mea invocá", + "id": "Introitus" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 9:24-27; 10:1-5*\nFratres: Nescítis, quod ii, qui in stádio cur", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nAdjútor in opportunitátibus, in tribulatióne: sperent in te, qui novérunt te: quóniam non derelínq", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 20:1-16*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nBonum est confitéri Dómino, et psállere nómini tuo, Altíssime.", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nIllúmina fáciem tuam super servum tuum, et salvum me fac in tua misericórdia: Dómine, non confúndar, quóni", + "id": "Communio" + }, + { + "body": "Fidéles tui, Deus, per tua dona firméntur: ut eadem et percipiéndo requírant, et quæréndo sine fine percípiant.\nPer Domi", + "id": "Postcommunio" + } + ], + "2025-02-21": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nCircumdedérunt me gémitus mortis, dolóres inférni circumdedérunt me: et in tribulatióne mea invocá", + "id": "Introitus" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 9:24-27; 10:1-5*\nFratres: Nescítis, quod ii, qui in stádio cur", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nAdjútor in opportunitátibus, in tribulatióne: sperent in te, qui novérunt te: quóniam non derelínq", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 20:1-16*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nBonum est confitéri Dómino, et psállere nómini tuo, Altíssime.", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nIllúmina fáciem tuam super servum tuum, et salvum me fac in tua misericórdia: Dómine, non confúndar, quóni", + "id": "Communio" + }, + { + "body": "Fidéles tui, Deus, per tua dona firméntur: ut eadem et percipiéndo requírant, et quæréndo sine fine percípiant.\nPer Domi", + "id": "Postcommunio" + } + ], + "2025-02-22": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui beáto Petro Apóstolo tuo, collátis clávibus regni cœléstis, ligándi atque solvéndi pontifícium tradidísti: con", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1. Pet 1:1-7*\nPetrus, Apóstolus Jesu Christi, eléctis ádvenis dispersiónis Ponti,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi,", + "id": "Evangelium" + }, + { + "body": "*Matt 16:18-19*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam: et portæ inferi non prævalébunt advérsus ea", + "id": "Offertorium" + }, + { + "body": "Ecclésiæ tuæ, quǽsumus, Dómine, preces et hóstias beáti Petri Apóstoli comméndet orátio: ut, quod pro illíus glória cele", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Lætíficet nos, Dómine, munus oblátum: ut, sicut in Apóstolo tuo Petro te mirábilem prædicámus; sic per illum tuæ sumámus", + "id": "Postcommunio" + } + ], + "2025-02-23": [ + { + "body": "*Ps 43:23-26*\nExsúrge, quare obdórmis, Dómine? exsúrge, et ne repéllas in finem: quare fáciem tuam avértis, oblivísceris", + "id": "Introitus" + }, + { + "body": "Deus, qui cónspicis, quia ex nulla nostra actióne confídimus: concéde propítius; ut, contra advérsa ómnia, Doctóris gént", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 11:19-33; 12:1-9*\nFratres: Libénter suffértis insipiéntes: cum", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nSciant gentes, quóniam nomen tibi Deus: tu solus Altíssimus super omnem terram,\n℣. Deus meus, pone ill", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 8:4-15*\nIn illo témpore: Cum turba plúrima convenírent, et de civitátib", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium, vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nIntroíbo ad altáre Dei, ad Deum, qui lætíficat juventútem meam.", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", + "id": "Postcommunio" + } + ], + "2025-02-24": [ + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2.*\nDómin", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Matthíam Apostolórum tuórum collégio sociásti: tríbue, quǽsumus; ut, ejus interventióne, tuæ circa nos ", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Act 1, 15-26.*\nIn diébus illis exsúrgens Petrus in médio fratrum, dixit - erat autem turba hó", + "id": "Lectio" + }, + { + "body": "*Ps 138:17-18*\nNimis honoráti sunt amíci tui, Deus: nimis confortátus est principatus eórum.\n℣. Dinumerábo eos, et super", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:25-30*\nIn illo témpore: Respóndens Jesus, dixit: Confíteor tibi,", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18.*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine, in omni progénie et gener", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, quas nómini tuo sacrándas offérimus, sancti Matthíæ Apóstoli tui prosequátur orátio: per quam nos ", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28.*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut per hæc sancta, quæ súmpsimus, interveniénte beáto Matthía Apóstolo tuo, véniam co", + "id": "Postcommunio" + } + ], + "2025-02-25": [ + { + "body": "*Ps 43:23-26*\nExsúrge, quare obdórmis, Dómine? exsúrge, et ne repéllas in finem: quare fáciem tuam avértis, oblivísceris", + "id": "Introitus" + }, + { + "body": "Deus, qui cónspicis, quia ex nulla nostra actióne confídimus: concéde propítius; ut, contra advérsa ómnia, Doctóris gént", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 11:19-33; 12:1-9*\nFratres: Libénter suffértis insipiéntes: cum", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nSciant gentes, quóniam nomen tibi Deus: tu solus Altíssimus super omnem terram,\n℣. Deus meus, pone ill", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 8:4-15*\nIn illo témpore: Cum turba plúrima convenírent, et de civitátib", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium, vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nIntroíbo ad altáre Dei, ad Deum, qui lætíficat juventútem meam.", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", + "id": "Postcommunio" + } + ], + "2025-02-26": [ + { + "body": "*Ps 43:23-26*\nExsúrge, quare obdórmis, Dómine? exsúrge, et ne repéllas in finem: quare fáciem tuam avértis, oblivísceris", + "id": "Introitus" + }, + { + "body": "Deus, qui cónspicis, quia ex nulla nostra actióne confídimus: concéde propítius; ut, contra advérsa ómnia, Doctóris gént", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 11:19-33; 12:1-9*\nFratres: Libénter suffértis insipiéntes: cum", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nSciant gentes, quóniam nomen tibi Deus: tu solus Altíssimus super omnem terram,\n℣. Deus meus, pone ill", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 8:4-15*\nIn illo témpore: Cum turba plúrima convenírent, et de civitátib", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium, vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nIntroíbo ad altáre Dei, ad Deum, qui lætíficat juventútem meam.", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", + "id": "Postcommunio" + } + ], + "2025-02-27": [ + { + "body": "*Eccli 11:13.*\nOculus Dei respéxit illum in bono, et eréxit eum ab humilitáte ipsíus, et exaltávit caput ejus: et miráti", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Gabriélem dulcíssimæ Matris tuæ dolóres assídue recólere docuísti, ac per illam sanctitátis et miraculó", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joannis Apóstoli.\n*1 Joann 2, 14-17.*\nCaríssimi: Scribo vobis, júvenes, quóniam fortes estis, et v", + "id": "Lectio" + }, + { + "body": "*Ps 30:20.*\nQuam magna multitúdo dulcédinis tuæ, Dómine, quam abscondísti timéntibus te!\n℣. Perfecísti eis, qui sperant ", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 10:13-21.*\nIn illo témpore: Offerébant Jesu parvulos, ut tángeret il", + "id": "Evangelium" + }, + { + "body": "*Ps 115:16-17.*\nO Dómine, quia ego servus tuus, et fílius ancíllæ tuæ: dirupísti víncula mea, tibi sacrificábo hóstiam l", + "id": "Offertorium" + }, + { + "body": "Salutárem hóstiam in memóriam sancti Gabriélis tibi, Dómine, offeréntes, fac nos sacrifícium mortis tuæ rite recólere: a", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Apoc, 3, 20.*\nEcce, sto ad óstium et pulso: si quis audiérit vocem meam, et aperúerit mihi jánuam, intrábo ad illum, et", + "id": "Communio" + }, + { + "body": "Quas tibi, Dómine, in festivitáte sancti Gabriélis Confessóris tui, pro collátis donis grátias ágimus: súscipe propítius", + "id": "Postcommunio" + } + ], + "2025-02-28": [ + { + "body": "*Ps 43:23-26*\nExsúrge, quare obdórmis, Dómine? exsúrge, et ne repéllas in finem: quare fáciem tuam avértis, oblivísceris", + "id": "Introitus" + }, + { + "body": "Deus, qui cónspicis, quia ex nulla nostra actióne confídimus: concéde propítius; ut, contra advérsa ómnia, Doctóris gént", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 11:19-33; 12:1-9*\nFratres: Libénter suffértis insipiéntes: cum", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nSciant gentes, quóniam nomen tibi Deus: tu solus Altíssimus super omnem terram,\n℣. Deus meus, pone ill", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 8:4-15*\nIn illo témpore: Cum turba plúrima convenírent, et de civitátib", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium, vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nIntroíbo ad altáre Dei, ad Deum, qui lætíficat juventútem meam.", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", + "id": "Postcommunio" + } + ], + "2025-03-01": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "Felix namque es, sacra Virgo María, et omni laude digníssima: quia ex te ortus est sol justítiæ, Christus, Deus noster.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2025-03-02": [ + { + "body": "*Ps 30:3-4*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias: quóniam firmaméntum meum et refúgiu", + "id": "Introitus" + }, + { + "body": "Preces nostras, quǽsumus, Dómine, cleménter exáudi: atque, a peccatórum vínculis absolútos, ab omni nos adversitáte cust", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 13:1-13*\nFratres: Si linguis hóminum loquar et Angelórum, cari", + "id": "Lectio" + }, + { + "body": "*Ps 76:15; 76:16*\nTu es Deus qui facis mirabília solus: notam fecísti in géntibus virtútem tuam.\n℣. Liberásti in bráchio", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:31-43*\nIn illo témpore: Assúmpsit Jesus duódecim, et ait illis: Ecce", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBenedíctus es, Dómine, doce me justificatiónes tuas: in lábiis meis pronuntiávi ómnia judícia oris tui.", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nManducavérunt, et saturári sunt nimis, et desidérium eórum áttulit eis Dóminus: non sunt fraudáti a desidé", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui coeléstia aliménta percépimus, per hæc contra ómnia adversa muniámur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-03-03": [ + { + "body": "*Ps 30:3-4*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias: quóniam firmaméntum meum et refúgiu", + "id": "Introitus" + }, + { + "body": "Preces nostras, quǽsumus, Dómine, cleménter exáudi: atque, a peccatórum vínculis absolútos, ab omni nos adversitáte cust", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 13:1-13*\nFratres: Si linguis hóminum loquar et Angelórum, cari", + "id": "Lectio" + }, + { + "body": "*Ps 76:15; 76:16*\nTu es Deus qui facis mirabília solus: notam fecísti in géntibus virtútem tuam.\n℣. Liberásti in bráchio", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:31-43*\nIn illo témpore: Assúmpsit Jesus duódecim, et ait illis: Ecce", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBenedíctus es, Dómine, doce me justificatiónes tuas: in lábiis meis pronuntiávi ómnia judícia oris tui.", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nManducavérunt, et saturári sunt nimis, et desidérium eórum áttulit eis Dóminus: non sunt fraudáti a desidé", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui coeléstia aliménta percépimus, per hæc contra ómnia adversa muniámur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-03-04": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui inter regáles delícias et mundi illécebras sanctum Casimírum virtúte constántiæ roborásti: quǽsumus; ut ejus i", + "id": "Oratio" + }, + { + "body": "*Pro S. Lucio I*\nDeus, qui nos beáti N. Mártyris tui atque Pontíficis ánnua sollemnitáte lætíficas: concéde propítius; u", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Pro S. Lucio I*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto N. Mártyre tuo atque Pontífice, per éade", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muni", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Lucio I*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto N. Mártyre tuo atque Pontífice, coel", + "id": "Commemoratio Postcommunio" + } + ], + "2025-03-05": [ + { + "body": "*Antiphona.*\n*Ps 68:17*\nExáudi nos, Dómine, quóniam benígna est misericórdia tua: secúndum multitúdinem miseratiónum tuá", + "id": "Benedictio cinerum" + }, + { + "body": "*Sap 11:24 11:25; 11:27*\nMiseréris ómnium, Dómine, et nihil odísti eórum quæ fecísti, dissímulans peccáta hóminum propte", + "id": "Introitus" + }, + { + "body": "Præsta, Dómine, fidélibus tuis: ut jejuniórum veneránda sollémnia, et cóngrua pietáte suscípiant, et secúra devotióne pe", + "id": "Oratio" + }, + { + "body": "Léctio Joélis Prophétæ.\n*Joel 2:12-19*\nHæc dicit Dóminus: Convertímini ad me in toto corde vestro, in jejúnio, et in fle", + "id": "Lectio" + }, + { + "body": "*Ps 56:2; 56:4*\nMiserére mei, Deus, miserére mei: quóniam in te confídit ánima mea.\n℣. Misit de coelo, et liberávit me, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthaeum.\n*Matt 6:16-21*\nIn illo témpore: Dixit Jesus discípulis suis: Cum jejuná", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nExaltábo te, Dómine, quóniam suscepísti me, nec delectásti inimícos meos super me: Dómine, clamávi ad te, et", + "id": "Offertorium" + }, + { + "body": "Fac nos, quǽsumus, Dómine, his munéribus offeréndis conveniénter aptári: quibus ipsíus venerábilis sacraménti celebrámus", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 1:2 et 3.*\nQui meditábitur in lege Dómini die ac nocte, dabit fructum suum in témpore suo.", + "id": "Communio" + }, + { + "body": "Percépta nobis, Dómine, praebeant sacraménta subsídium: ut tibi grata sint nostra jejúnia, et nobis profíciant ad medéla", + "id": "Postcommunio" + }, + { + "body": "*Deinde Sacerdos absolute dicit:*\n*Oratio super populum*\nOrémus.\n*Et Diaconus, si in officio Diaconatus serviat versus a", + "id": "Super populum" + } + ], + "2025-03-06": [ + { + "body": "*Ps 54:17-23*\nDum clamárem ad Dóminum, exaudívit vocem meam ab his, qui appropínquant mihi, et humiliávit eos, qui est a", + "id": "Introitus" + }, + { + "body": "Deus, qui culpa offénderis, pæniténtia placáris: preces pópuli tui supplicántis propítius réspice; et flagélla tuæ iracú", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Perpetuæ et Felicitatis Martyrum*\nDa nobis, quǽsumus, Dómine, Deus noster, sanctarum Mártyrum tuárum P", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Is 38:1-6*\nIn diébus illis: Ægrotávit Ezechías usque ad mortem: et introívit ad eum Isaías fíliu", + "id": "Lectio" + }, + { + "body": "*Ps 54:23, 17, 18 et 19.*\nJacta cogitátum tuum in Dómino, et ipse te enútriet.\n℣. Dum clamárem ad Dóminum, exaudívit voc", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:5-13*\nIn illo témpore: Cum introísset Jesus Caphárnaum, accéssit", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, Dómine, quǽsumus, inténde placátus: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Perpetuæ et Felicitatis Martyrum*\nInténde, quǽsumus, Dómine, múnera altáribus tuis pro sanctárum Márty", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nAcceptábis sacrifícium justítiæ, oblatiónes et holocáusta, super altáre tuum, Dómine.", + "id": "Communio" + }, + { + "body": "Cœléstis doni benedictióne percépta: súpplices te, Deus omnípotens, deprecámur; ut hoc idem nobis et sacraménti causa si", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Perpetuæ et Felicitatis Martyrum*\nMýsticis, Dómine, repléti sumus votis et gáudiis: præsta, quǽsumus; ", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nParce, Dómine, parce populo tuo: ut, dignis flagellatiónibus", + "id": "Super populum" + } + ], + "2025-03-07": [ + { + "body": "*Ps 29:11.*\nAudívit Dóminus, et misértus est mihi: Dóminus factus est adjútor meus.\n*Ps 29:2*\nExaltábo te, Dómine, quóni", + "id": "Introitus" + }, + { + "body": "Inchoáta jejúnia, quǽsumus, Dómine, benígno favore proséquere: ut observántiam, quam corporáliter exhibémus, méntibus ét", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Thomæ de Aquino Confessoris Ecclesiæ Doctoris*\nDeus, qui Ecclésiam tuam beáti Thomæ Confessóris tui mir", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Isa 58:1-9*\nHæc dicit Dóminus Deus: Clama, ne cesses: quasi tuba exálta vocem tuam: et annúntia ", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram, ut inhábitem in domo Dómini,\n℣. Ut vídeam voluptátem Dómini, et prótegar a", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:43-48; 6:1-4*\nIn illo témpore: Dixit Jesus discípulis suis: Audí", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154; 118:125*\nDómine, vivífica me secúndum elóquium tuum: ut sciam testimónia tua.", + "id": "Offertorium" + }, + { + "body": "Sacrifícium, Dómine, observántiæ quadragesimális, quod offérimus, præsta, quǽsumus: ut tibi et mentes nostras reddat acc", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Thomæ de Aquino Confessoris Ecclesiæ Doctoris*\nSancti N. Confessóris tui atque Doctóris nobis, Dómine, ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nServite Dómino in timóre, et exsultáte ei cum tremóre: apprehéndite disciplínam, ne pereátis de via justa.", + "id": "Communio" + }, + { + "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos uno pane cœlésti satiásti, tua fácias pietáte concórdes.\nPer Dom", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Thomæ de Aquino Confessoris Ecclesiæ Doctoris*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus N.", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nTuére, Dómine, pópulum tuum et ab ómnibus peccátis cleménter", + "id": "Super populum" + } + ], + "2025-03-08": [ + { + "body": "*Ps 29:11*\nAudívit Dóminus, et misértus est mihi: Dóminus factus est adjútor meus.\n*Ps 29:2*\nExaltábo te, Dómine, quónia", + "id": "Introitus" + }, + { + "body": "Adésto, Dómine, supplicatiónibus nostris: et concéde; ut hoc sollémne jejúnium, quod animábus corporibúsque curándis sal", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Joannis de Deo Confessoris*\nDeus, qui beátum Joánnem, tuo amóre succénsum, inter flammas innóxium incéd", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Isa 58:9-14*\nHæc dicit Dóminus Deus: Si abstúleris de médio tui caténam, et desíeris exténdere d", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram, ut inhábitem in domo Dómini,\n℣. Ut vídeam voluptátem Dómini, et prótegar a", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 6:47-56*\nIn illo témpore: Cum sero esset, erat navis in médio mari, ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154 ; 118:125*\nDómine, vivífica me secúndum elóquium tuum: ut sciam testimónia tua.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, sacrifícium, cujus te voluísti dignánter immolatióne placári: præsta, quǽsumus; ut, hujus operatióne mu", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Joannis de Deo Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nServite Dómino in timóre, et exsultáte ei cum tremóre: apprehéndite disciplínam, ne pereátis de via justa.", + "id": "Communio" + }, + { + "body": "Cœléstis vitæ múnere vegetáti, quǽsumus, Dómine: ut, quod est nobis in præsénti vita mystérium, fiat æternitátis auxíliu", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Joannis de Deo Confessoris*\nRefécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in c", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nFidéles tui, Deus, per tua dona firméntur: ut éadem et perci", + "id": "Super populum" + } + ], + "2025-03-09": [ + { + "body": "*Ps 90:15; 90:16*\nInvocábit me, et ego exáudiam eum: erípiam eum, et glorificábo eum: longitúdine diérum adimplébo eum.\n", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiam tuam ánnua quadragesimáli observatióne puríficas: præsta famíliæ tuæ; ut, quod a te obtinére abstiné", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 6:1-10.*\nFratres: Exhortámur vos, ne in vácuum grátiam Dei rec", + "id": "Lectio" + }, + { + "body": "*Ps 90,11-12*\nAngelis suis Deus mandávit de te, ut custódiant te in ómnibus viis tuis.\n℣. In mánibus portábunt te, ne um", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 4:1-11*\nIn illo témpore: Ductus est Jesus in desértum a Spíritu, ut", + "id": "Evangelium" + }, + { + "body": "*Ps 90:4-5*\nScápulis suis obumbrábit tibi Dóminus, et sub pennis ejus sperábis: scuto circúmdabit te véritas ejus.", + "id": "Offertorium" + }, + { + "body": "Sacrifícium quadragesimális inítii sollémniter immolámus, te, Dómine, deprecántes: ut, cum epulárum restrictióne carnáli", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 90:4-5*\nScápulis suis obumbrábit tibi Dóminus, et sub pennis ejus sperábis: scuto circúmdabit te véritas ejus.", + "id": "Communio" + }, + { + "body": "Tuis nos, Dómine, sacraménti libátio sancta restáuret: et a vetustáte purgátos, in mystérii salutáris fáciat transíre co", + "id": "Postcommunio" + } + ], + "2025-03-10": [ + { + "body": "*Ps 122:2*\nSicut óculi servórum in mánibus dominórum suórum: ita óculi nostri ad Dóminum, Deum nostrum, donec misereátur", + "id": "Introitus" + }, + { + "body": "Convérte nos, Deus, salutáris noster: et, ut nobis jejúnium quadragesimále profíciat, mentes nostras cœléstibus ínstrue ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Quadraginta Martyrum*\nPræsta, quǽsumus, omnípotens Deus: ut, qui gloriósos Mártyres fortes in sua conf", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Ezechiélis Prophétæ\n*Ezech 34:11-16*\nHæc dicit Dóminus Deus: Ecce, ego ipse requíram oves meas, et visitábo eas. ", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Matthǽum\n*Matt 25:31-46*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vénerit", + "id": "Evangelium" + }, + { + "body": "*Ps 118:18; 118:26; 118:73*\nLevábo óculos meos, et considerábo mirabília tua, Dómine, ut dóceas me justítias tuas: da mi", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, obláta sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Quadraginta Martyrum*\nPreces, Dómine, tuórum réspice oblationésque fidélium: ut et tibi gratæ sint pro", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Matt 25:40; 25:34*\nAmen, dico vobis: quod uni ex mínimis meis fecístis, mihi fecístis: veníte, benedícti Patris mei, po", + "id": "Communio" + }, + { + "body": "Salutáris tui, Dómine, múnere satiáti, súpplices exorámus: ut, cujus lætámur gustu, renovémur efféctu.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Quadraginta Martyrum*\nSanctórum tuórum, Dómine, intercessióne placátus: præsta, quǽsumus; ut, quæ temp", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAbsólve, quǽsumus, Dómine, nostrórum víncula peccatórum: et,", + "id": "Super populum" + } + ], + "2025-03-11": [ + { + "body": "*Ps 89:1; 89:2*\nDómine, refúgium factus es nobis a generatióne et progénie: a sǽculo et in sǽculum tu es.\n*Ps 89:2*\nPriú", + "id": "Introitus" + }, + { + "body": "Réspice, Dómine, famíliam tuam: et præsta; ut apud te mens nostra tuo desidério fúlgeat, quæ se carnis maceratióne castí", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 55:6-11*\nIn diébus illis: Locútus est Isaías Prophéta, dicens: Quǽrite Dóminum, dum inveníri p", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nDirigátur orátio mea sicut incénsum in conspéctu tuo, Dómine,\n℣. Elevátio mánuum meárum sacrifícium vespertín", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 21:10-17*\nIn illo témpore: Cum intrásset Jesus Jerosólymam, commóta", + "id": "Evangelium" + }, + { + "body": "*Ps 30:15-16*\nIn te sperávi, Dómine; dixi: Tu es Deus meus, in mánibus tuis témpora mea.", + "id": "Offertorium" + }, + { + "body": "Oblátis, quǽsumus, Dómine, placáre munéribus: et a cunctis nos defénde perículis.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 4:2*\nCum invocárem te, exaudísti me, Deus justítiæ meæ: in tribulatióne dilatásti me: miserére mihi, Dómine, et exáu", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut illíus salutáris capiámus efféctum, cujus per hæc mystéria pignus accépimus.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super Populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAscéndant ad te, Dómine, preces nostræ: et ab Ecclésia tua c", + "id": "Super populum" + } + ], + "2025-03-12": [ + { + "body": "*Ps 24:6; 24:3; 24:22*\nReminíscere miseratiónum tuárum, Dómine, et misericórdiæ tuæ, quæ a sǽculo sunt: ne umquam dominé", + "id": "Introitus" + }, + { + "body": "Preces nostras, quǽsumus, Dómine, cleménter exáudi: et contra cuncta nobis adversántia, déxteram tuæ majestátis exténde.", + "id": "Oratio" + }, + { + "body": "Léctio libri Exodi\n*Exod 24:12-18*\nIn diébus illis: Dixit Dóminus ad Móysen: Ascénde ad me in montem, et esto ibi: dabóq", + "id": "LectioL1" + }, + { + "body": "*Ps 24:17-18*\nTribulatiónes cordis mei dilatátæ sunt: de necessitátibus meis éripe me, Dómine.\n℣. Vide humilitátem meam,", + "id": "GradualeL1" + }, + { + "body": "Devotiónem pópuli tui, quǽsumus, Dómine, benígnus inténde: ut, qui per abstinéntiam macerántur in córpore, per fructum b", + "id": "OratioL1" + }, + { + "body": "*Commemoratio S. Gregorii Papæ Confessoris et Ecclesiæ Doctoris*\nDeus, qui ánimæ fámuli tui Gregórii ætérnæ beatitúdinis", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Regum\n*3 Reg 19:3-8*\nIn diébus illis: Venit Elías in Bersabée Juda, et dimísit ibi púerum suum, et perréxit", + "id": "Lectio" + }, + { + "body": "*Ps 24:17; 24:18; 24:1-4*\nDe necessitátibus meis éripe me, Dómine: vide humilitátem meam et labórem meum: et dimítte ómn", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 12:38-50*\nIn illo témpore: Respondérunt Jesu quidam de scribis et p", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 118:48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi.", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, placatiónis offérimus: ut et delícta nostra miserátus absólvas, et nutántia corda tu dírigas.\nPer ", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Gregorii Papæ Confessoris et Ecclesiæ Doctoris*\nAnnue nobis, quǽsumus, Dómine: ut intercessióne beáti G", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nIntéllege clamórem meum: inténde voci oratiónis meæ, Rex meus et Deus meus: quóniam ad te orábo, Dómine.", + "id": "Communio" + }, + { + "body": "Tui, Dómine, perceptióne sacraménti, et a nostris mundémur occúltis, et ab hóstium liberémur insídiis.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Gregorii Papæ Confessoris et Ecclesiæ Doctoris*\nDeus, qui beátum Gregórium Pontíficem Sanctórum tuórum ", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\n℣. Mentes nostras, quǽsumus, Dómine, lúmine tuæ claritátis i", + "id": "Super populum" + } + ], + "2025-03-13": [ + { + "body": "*Ps 95:6*\nConféssio et pulchritúdo in conspéctu ejus: sánctitas et magnificéntia in sanctificatióne eius.\n*Ps 95:1*\nCant", + "id": "Introitus" + }, + { + "body": "Devotiónem pópuli tui, quǽsumus, Dómine, benígnus inténde: ut, qui per abstinéntiam macerántur in córpore, per fructum b", + "id": "Oratio" + }, + { + "body": "Léctio Ezechiélis Prophétæ\n*Ezech 18:1-9*\nIn diébus illis: Factus est sermo Dómini ad me, dicens: Quid est, quod inter v", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nCustódi me, Dómine, ut pupíllam óculi: sub umbra alárum tuárum prótege me.\n℣. De vultu tuo judícium meum", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 15:21-28*\nIn illo témpore: Egréssus Jesus secéssit in partes Tyri e", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nImmíttet Angelus Dómini in circúitu timéntium eum, et erípiet eos: gustáte, et vidéte, quóniam suávis est Dó", + "id": "Offertorium" + }, + { + "body": "Sacrifícia, Dómine, quǽsumus, propénsius ista nos salvent, quæ medicinálibus sunt institúta jejúniis.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Joann 6:52*\nPanis, quem ego dédero, caro mea est pro sǽculi vita.", + "id": "Communio" + }, + { + "body": "Tuórum nos, Dómine, largitáte donórum, et temporálibus attólle præsídiis, et rénova sempitérnis.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\n℣. Orémus.\nHumiliáte cápita vestra Deo.\nDa, quǽsumus, Dómine, pópulis christiánis: et, quæ profit", + "id": "Super populum" + } + ], + "2025-03-14": [ + { + "body": "*Ps 24:17; 24:18*\nDe necessitátibus meis éripe me, Dómine: vide humilitátem meam et labórem meum, et dimítte ómnia peccá", + "id": "Introitus" + }, + { + "body": "Esto, Dómine, propítius plebi tuæ: et, quam tibi facis esse devótam, benígno réfove miserátus auxílio.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "Léctio Ezechiélis Prophétæ\n*Ezech 18:20-28*\nHæc dicit Dóminus Deus: Anima, quæ peccáverit, ipsa moriétur: fílius non por", + "id": "Lectio" + }, + { + "body": "*Ps 85:2; 85:6*\nSalvum fac servum tuum. Deus meus, sperántem in te.\n℣. Auribus pércipe, Dómine, oratiónem meam.\n\n*Tractu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 5:1-15*\nIn illo témpore: Erat dies festus Judæórum, et ascéndit Jes", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2; 102:5*\nBénedic, ánima mea, Dómino, et noli oblivísci omnes retributiónes ejus: et renovábitur, sicut áquilæ, ", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, múnera nostris obláta servítiis: et tua propítius dona sanctífica.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 6:11*\nErubéscant et conturbéntur omnes inimíci mei: avertántur retrórsum, et erubéscant valde velóciter.", + "id": "Communio" + }, + { + "body": "Per hujus, Dómine, operatiónem mystérii, et vítia nostra purgéntur, et justa desidéria compleántur.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nExáudi nos, miséricors Deus: et méntibus nostris grátiæ tuæ ", + "id": "Super populum" + } + ], + "2025-03-15": [ + { + "body": "*Ps 87:3*\nIntret orátio mea in conspéctu tuo: inclína aurem tuam ad precem meam, Dómine.\n*Ps 87:2*\nDómine, Deus salútis ", + "id": "Introitus" + }, + { + "body": "Pópulum tuum, quǽsumus, Dómine, propítius réspice: atque ab eo flagélla tuæ iracúndiæ cleménter avérte.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "Léctio libri Deuteronómii\n*Deut 26:12-19*\nIn diébus illis: Locútus est Móyses ad pópulum, dicens: Quando compléveris déc", + "id": "LectioL1" + }, + { + "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", + "id": "GradualeL1" + }, + { + "body": "Protéctor noster, áspice, Deus: ut, qui malórum nostrórum póndere prémimur, percépta misericórdia, líbera tibi mente fam", + "id": "OratioL1" + }, + { + "body": "Léctio libri Deuteronómii\n*Deut 11:22-25*\nIn diébus illis: Dixit Móyses fíliis Israël: Si custodiéritis mandáta, quæ ego", + "id": "LectioL2" + }, + { + "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", + "id": "GradualeL2" + }, + { + "body": "Adésto, quǽsumus, Dómine, supplicatiónibus nostris: ut esse, te largiénte, mereámur et inter próspera húmiles, et inter ", + "id": "OratioL2" + }, + { + "body": "Léctio libri Machabæórum\n*2 Mach 1:23-26; 1:27*\nIn diébus illis: Oratiónem faciébant omnes sacerdótes, dum consummarétur", + "id": "LectioL3" + }, + { + "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", + "id": "GradualeL3" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", + "id": "OratioL3" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 36:1-10*\nMiserére nostri, Deus ómnium, et réspice nos, et osténde nobis lucem miseratiónum", + "id": "LectioL4" + }, + { + "body": "*Ps 140:2*\nDirigátur orátio mea sicut incénsum in conspéctu tuo, Dómine.\n℣. Elevátio mánuum meárum sacrifícium vespertín", + "id": "GradualeL4" + }, + { + "body": "Actiónes nostras, quǽsumus, Dómine, aspirándo prǽveni, et adjuvándo proséquere: ut cuncta nostra orátio et operátio a te", + "id": "OratioL4" + }, + { + "body": "Léctio Daniélis Prophétæ\n*Dan 3:47-51*\nIn diébus illis: Angelus Dómini descéndit cum Azaría et sóciis ejus in fornácem: ", + "id": "LectioL5" + }, + { + "body": "Deus, qui tribus púeris mitigásti flammas ígnium: concéde propítius; ut nos fámulos tuos non exúrat flamma vitiórum.\nPer", + "id": "OratioL5" + }, + { + "body": "*Commemoratio S. Clementis Hofbauer*\nDeus, qui beátum Cleméntem Maríam miro fídei róbore et invíctæ constántiæ virtúte d", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses\n*1 Thess 5:14-23*\nFratres: Rogámus vos, corrípite inquiétos, co", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nLaudáte Dóminum, omnes gentes: et collaudáte eum, omnes pópuli.\n℣. Quóniam confirmáta est super nos miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 17:1-9*\nIn illo témpore: Assúmpsit Jesus Petrum, et Jacóbum, et Joá", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nDómine, Deus salútis meæ, in die clamávi et nocte coram te: intret orátio mea in conspéctu tuo, Dómine.", + "id": "Offertorium" + }, + { + "body": "Præséntibus sacrifíciis, quǽsumus, Dómine, jejúnia nostra sanctífica: ut, quod observántia nostra profitétur extrínsecus", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Clementis Hofbauer*\nIlle nos, quǽsumus, Dómine, devotiónis ignis accéndat: quo beátus Clemens María, du", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 7:2*\nDómine, Deus meus, in te sperávi: líbera me ab ómnibus persequéntibus me, et éripe me.", + "id": "Communio" + }, + { + "body": "Sanctificatiónibus tuis, omnípotens Deus, et vítia nostra curéntur, et remédia nobis ætérna provéniant.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Clementis Hofbauer*\nCælésti pane reféctis; concéde nobis, omnípotens Deus: ut beáti Cleméntis exémplo i", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nFidéles tuos, Deus, benedíctio desideráta confírmet: quæ eos", + "id": "Super populum" + } + ], + "2025-03-16": [ + { + "body": "*Ps 24:6; 24:3; 24:22*\nReminíscere miseratiónum tuarum, Dómine, et misericórdiæ tuæ, quæ a sǽculo sunt: ne umquam dominé", + "id": "Introitus" + }, + { + "body": "Deus, qui cónspicis omni nos virtúte destítui: intérius exteriúsque custódi; ut ab ómnibus adversitátibus muniámur in có", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses\n*1 Thess 4:1-7.*\nFratres: Rogámus vos et obsecrámus in Dómino J", + "id": "Lectio" + }, + { + "body": "*Ps 24:17-18*\nTribulatiónes cordis mei dilatátæ sunt: de necessitátibus meis éripe me, Dómine,\n℣. Vide humilitátem meam ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 17:1-9*\nIn illo témpore: Assúmpsit Jesus Petrum, et Jacóbum, et Joá", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 118:48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, Dómine, quǽsumus, inténde placátus: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nIntéllege clamórem meum: inténde voci oratiónis meæ, Rex meus et Deus meus: quóniam ad te orábo, Dómine.", + "id": "Communio" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservíre", + "id": "Postcommunio" + } + ], + "2025-03-17": [ + { + "body": "*Ps 25:11-12.*\nRédime me, Dómine, et miserére mei: pes enim meus stetit in via recta: in ecclésiis benedícam Dóminum.\n*P", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut família tua, quæ se, affligéndo carnem, ab aliméntis ábstinet: sectándo justítiam,", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Patricii Episcopi et Conf.*\nDeus, qui ad prædicándam géntibus glóriam tuam beátum Patrícium Confessórem", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Daniélis Prophétæ.\n*Dan 9:15-19*\nIn diébus illis: Orávit Dániel Dóminum, dicens: Dómine, Deus noster, qui eduxíst", + "id": "Lectio" + }, + { + "body": "*Ps 69:6; 69:3*\nAdjútor meus et liberátor meus esto: Dómine, ne tardáveris.\n℣. Confundántur et revereántur inimíci mei, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joh 8:21-29*\nIn illo témpore: Dixit Jesus turbis Judæórum: Ego vado, et ", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7; 15:8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Dóminum in conspéctu meo semper: quóniam a d", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, placatiónis et laudis, tua nos protectióne dignos effíciat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Patricii Episcopi et Conf.*\nSancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita r", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 8:2*\nDómine, Dóminus noster, quam admirábile est nomen tuum in univérsa terra!", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et cœléstis remédii fáciat esse consórtes.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Patricii Episcopi et Conf.*\nPræsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhib", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAdésto supplicatiónibus nostris, omnípotens Deus: et, quibus", + "id": "Super populum" + } + ], + "2025-03-18": [ + { + "body": "*Ps 26:8; 26:9*\nTibi dixit cor meum, quæsívi vultum tuum. vultum tuum, Dómine, requíram: ne avértas fáciem tuam a me.\n*P", + "id": "Introitus" + }, + { + "body": "Pérfice, quǽsumus, Dómine, benígnus in nobis observántiæ sanctæ subsídium: ut, quæ te auctóre faciénda cognóvimus, te op", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Cyrilli Episcopi Hierosolymitani Ecclesiæ Doctoris*\nDa nobis, quǽsumus, omnípotens Deus, beáto Cyríllo ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Regum.\n*3 Reg 17:8-16*\nIn diébus illis: Factus est sermo Dómini ad Elíam Thesbíten, dicens: Surge et vade i", + "id": "Lectio" + }, + { + "body": "*Ps 54:23; 54:17; 54:18; 54:19*\nJacta cogitátum tuum in Dómino, et ipse te enútriet.\n℣. Dum clamárem ad Dóminum, exaudív", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 23:1-12*\nIn illo témpore: Locútus est Jesus ad turbas et ad discíp", + "id": "Evangelium" + }, + { + "body": "*Ps 50:3.*\nMiserére mei, Dómine, secúndum magnam misericórdiam tuam: dele, Dómine, iniquitátem meam.", + "id": "Offertorium" + }, + { + "body": "Sanctificatiónem tuam nobis, Dómine, his mystériis operáre placátus: quæ nos et a terrénis purget vítiis, et ad cœléstia", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Cyrilli Episcopi Hierosolymitani Ecclesiæ Doctoris*\nRéspice, Dómine, immaculátam hóstiam, quam tibi off", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nNarrábo ómnia mirabília tua: lætábor, et exsultábo in te: psallam nómini tuo, Altíssime.", + "id": "Communio" + }, + { + "body": "Ut sacris, Dómine, reddámur digni munéribus: fac nos tuis, quǽsumus, semper obœdíre mandátis.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Cyrilli Episcopi Hierosolymitani Ecclesiæ Doctoris*\nSacraménta Córporis et Sánguinis tui, quæ súmpsimus", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPropitiáre, Dómine, supplicatiónibus nostris, et animárum no", + "id": "Super populum" + } + ], + "2025-03-19": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Sanctíssimæ Genetrícis tuæ Sponsi, quǽsumus, Dómine, méritis adjuvémur: ut, quod possibílitas nostra non óbtinet, ejus n", + "id": "Oratio" + }, + { + "body": "*Commemoratio Feria IV infra Hebd II Quadragesimæ*\nPópulum tuum, quǽsumus, Dómine, propítius réspice: et, quos ab escis ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 1:18-21*\nCum esset desponsáta Mater Jesu María Joseph, ántequam con", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Débitum tibi, Dómine, nostræ réddimus servitútis, supplíciter exorántes: ut, suffrágiis beáti Joseph, Sponsi Genetrícis ", + "id": "Secreta" + }, + { + "body": "*Commemoratio Feria IV infra Hebd II Quadragesimæ*\nHóstias, Dómine, quas tibi offérimus, propítius réspice: et, per hæc ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de S. Joseph*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pat", + "id": "Prefatio" + }, + { + "body": "*Matt 1:20*\nJoseph, fili David, noli timére accípere Maríam cónjugem tuam: quod enim in ea natum est, de Spíritu Sancto ", + "id": "Communio" + }, + { + "body": "Adésto nobis, quǽsumus, miséricors Deus: et, intercedénte pro nobis beáto Joseph Confessóre, tua circa nos propitiátus d", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Feria IV infra Hebd II Quadragesimæ*\nSumptis, Dómine, sacraméntis: ad redemptiónis ætérnæ, quǽsumus, profi", + "id": "Commemoratio Postcommunio" + } + ], + "2025-03-20": [ + { + "body": "*Ps 69:2; 69:3*\nDeus, in adjutórium meum inténde: Dómine, ad adjuvándum me festína: confundántur et revereántur inimíci ", + "id": "Introitus" + }, + { + "body": "Præsta nobis, quǽsumus, Dómine, auxílium grátiæ tuæ: ut, jejúniis et oratiónibus conveniénter inténti, liberémur ab hóst", + "id": "Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ.\n*Jer 17:5-10*\nHæc dicit Dóminus Deus: Maledíctus homo, qui confídit in hómine, et ponit carnem ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 16:19-31*\nIn illo témpore: Dixit Jesus pharisǽis: Homo quidam erat div", + "id": "Evangelium" + }, + { + "body": "*Exod 32:11; 32:13; 32:14*\nPrecátus est Móyses in conspéctu Dómini, Dei sui, et dixit: Quare, Dómine, irásceris in pópul", + "id": "Offertorium" + }, + { + "body": "Præsénti sacrifício, nómini tuo nos, Dómine, jejúnia dicáta sanctíficent: ut, quod observántia nostra profitétur extériu", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Joann 6:57*\nQui mandúcat meam carnem, et bibit meum sánguinem, in me manet, et ego in eo, dicit Dóminus.", + "id": "Communio" + }, + { + "body": "Grátia tua nos, quǽsumus, Dómine, non derelínquat: quæ et sacræ nos déditos fáciat servitúti, et tuam nobis opem semper ", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAdésto, Dómine, fámulis tuis, et perpétuam benignitátem larg", + "id": "Super populum" + } + ], + "2025-03-21": [ + { + "body": "*Ps 16:15*\nEgo autem cum justítia apparébo in conspéctu tuo: satiábor, dum manifestábitur glória tua.\n*Ps 16:1*\nExáudi, ", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, omnípotens Deus: ut, sacro nos purificánte jejúnio, sincéris méntibus ad sancta ventúra fácias perveníre.\n", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Benedicti Abbatis*\nIntercéssio nos, quǽsumus, Dómine, beáti Benedícti Abbátis comméndet: ut quod nostri", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Génesis.\n*Gen 37:6-22*\nIn diébus illis: Dixit Joseph frátribus suis: Audíte sómnium meum, quod vidi: Putába", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nAd Dóminum, cum tribulárer, clamávi, et exaudívit me.\n℣. Dómine, líbera ánimam meam a lábiis iníquis et a l", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 21:33-46*\nIn illo témpore: Dixit Jesus turbis Judæórum et princípib", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14; 39:15*\nDómine, in auxílium meum réspice: confundántur et revereántur, qui quærunt ánimam meam, ut áuferant ea", + "id": "Offertorium" + }, + { + "body": "Hæc in nobis sacrifícia, Deus, et actióne permáneant, et operatióne firméntur.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Benedicti Abbatis*\nSacris altáribus, Dómine, hóstias superpósitas sanctus Benedíctus Abbas, quǽsumus, i", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 11:8*\nTu, Dómine, servábis nos, et custódies nos a generatióne hac in ætérnum.", + "id": "Communio" + }, + { + "body": "Fac nos, quǽsumus, Dómine: accépto pígnore salútis ætérnæ, sic téndere congruénter; ut ad eam perveníre possímus.\nPer Do", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Benedicti Abbatis*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus Benedíctus Abbas, pro no", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDa, quǽsumus, Dómine, pópulo tuo salútem mentis et córporis:", + "id": "Super populum" + } + ], + "2025-03-22": [ + { + "body": "*Ps 18:8.*\nLex Dómini irreprehensíbilis, convértens ánimas: testimónium Dómini fidéle, sapiéntiam præstans párvulis.\n*Ps", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, Dómine, nostris efféctum jejúniis salutárem: ut castigátio carnis assúmpta, ad nostrárum vegetatiónem trán", + "id": "Oratio" + }, + { + "body": "Léctio libri Genesis\n*Gen 27:6-40*\nIn diébus illis: Dixit Rebécca fílio suo Jacob: Audívi patrem tuum loquéntem cum Esau", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nBonum est confitéri Dómino: et psállere nómini tuo, Altíssime.\n℣. Ad annuntiándum mane misericórdiam tuam, e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 15:11-32*\nIn illo témpore: Dixit Jesus pharisǽis et scribis parábolam i", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nIllúmina óculos meos, ne umquam obdórmiam in morte: ne quando dicat inimícus meus: Præválui advérsus eum.", + "id": "Offertorium" + }, + { + "body": "His sacrifíciis, Dómine, concéde placátus: ut, qui própriis orámus absólvi delíctis, non gravémur extérnis.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Luc 15:32*\nOpórtet te, fili, gaudére, quia frater tuus mórtuus fúerat, et revíxit: períerat, et invéntus est.", + "id": "Communio" + }, + { + "body": "Sacraménti tui, Dómine, divína libátio, penetrália nostri cordis infúndat: et sui nos partícipes poténter effíciat.\nPer ", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nFamíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: u", + "id": "Super populum" + } + ], + "2025-03-23": [ + { + "body": "*Ps 24:15-16.*\nOculi mei semper ad Dóminum, quia ipse evéllet de láqueo pedes meos: réspice in me, et miserére mei, quón", + "id": "Introitus" + }, + { + "body": "Quǽsumus, omnípotens Deus, vota humílium réspice: atque, ad defensiónem nostram, déxteram tuæ majestátis exténde.\nPer Do", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Ephes 5:1-9*\nFratres: Estóte imitatóres Dei, sicut fílii caríssimi: e", + "id": "Lectio" + }, + { + "body": "*Ps 9:20; 9:4*\nExsúrge, Dómine, non præváleat homo: judicéntur gentes in conspéctu tuo.\n℣. In converténdo inimícum meum ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 11:14-28*\nIn illo témpore: Erat Jesus ejíciens dæmónium, et illud erat", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9, 10, 11, 12*\nJustítiæ Dómini rectæ, lætificántes corda, et judícia ejus dulcióra super mel et favum: nam et ser", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 83:4-5*\nPasser invénit sibi domum, et turtur nidum, ubi repónat pullos suos: altária tua, Dómine virtútum, Rex meus,", + "id": "Communio" + }, + { + "body": "A cunctis nos, quǽsumus, Dómine, reátibus et perículis propitiátus absólve: quos tanti mystérii tríbuis esse partícipes.", + "id": "Postcommunio" + } + ], + "2025-03-24": [ + { + "body": "*Ps 55:5.*\nIn Deo laudábo verbum, in Dómino laudábo sermónem: in Deo sperábo, non timebo, quid fáciat mihi homo.\n*Ps 55:", + "id": "Introitus" + }, + { + "body": "Córdibus nostris, quǽsumus, Dómine, grátiam tuam benígnus infúnde: ut, sicut ab escis carnálibus abstinémus; ita sensus ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Gabrielis Archangeli*\nDeus, qui inter céteros Angelos, ad annuntiándum incarnatiónis tuæ mystérium, Gab", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Regum.\n*4 Reg 5:1-15*\nIn diébus illis: Náaman, princeps milítiæ regis Sýriæ, erat vir magnus apud dóminum s", + "id": "Lectio" + }, + { + "body": "*Ps 55:9, 2*\nDeus, vitam meam annuntiávi tibi: posuísti lácrimas meas in conspéctu tuo.\n℣. Miserére mei, Dómine, quóniam", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 4:23-30.*\nIn illo témpore: Dixit Jesus pharisǽis: Utique dicétis mihi ", + "id": "Evangelium" + }, + { + "body": "*Ps 54:2-3*\nExáudi, Deus, oratiónem meam, et ne despéxeris deprecatiónem meam: inténde in me, et exáudi me.", + "id": "Offertorium" + }, + { + "body": "Munus, quod tibi, Dómine, nostræ servitútis offérimus, tu salutáre nobis pérfice sacraméntum.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Gabrielis Archangeli*\nAccéptum fiat in conspéctu tuo, Dómine, nostræ servitútis munus, et beáti Archáng", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 13:7*\nQuis dabit ex Sion salutáre Israël? cum avérterit Dóminus captivitátem plebis suæ, exsultábit Jacob, et lætábi", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens et miséricors Deus: ut, quod ore contíngimus, pura mente capiámus.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Gabrielis Archangeli*\nCórporis tui et Sánguinis sumptis mystériis, tuam, Dómine, Deus noster, deprecámu", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nSubvéniat nobis, Dómine, misericórdia tua: ut ab imminéntibu", + "id": "Super populum" + } + ], + "2025-03-25": [ + { + "body": "*Ps 44:13, 15 et 16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus add", + "id": "Introitus" + }, + { + "body": "Deus, qui de beátæ Maríæ Vírginis útero Verbum tuum, Angelo nuntiánte, carnem suscípere voluísti: præsta supplícibus tui", + "id": "Oratio" + }, + { + "body": "*Commemoratio Feria III infra Hebd III Quadragesimæ*\nExáudi nos, omnípotens et miséricors Deus: et continéntiæ salutáris", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 7:10-15*\nIn diébus illis: Locútus est Dóminus ad Achaz, dicens: Pete tibi signum a Dómino, Deo", + "id": "Lectio" + }, + { + "body": "*Ps 44:3 et 5*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansue", + "id": "Tractus" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:26-38*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitátem", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 et 42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "In méntibus nostris, quǽsumus, Dómine, veræ fídei sacraménta confírma: ut, qui concéptum de Vírgine Deum verum et hómine", + "id": "Secreta" + }, + { + "body": "*Commemoratio Feria III infra Hebd III Quadragesimæ*\nPer hæc véniat, quǽsumus, Dómine, sacraménta nostræ redemptiónis ef", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel. (Allelúja.)", + "id": "Communio" + }, + { + "body": "Grátiam tuam, quǽsumus, Dómine, méntibus nostris infúnde: ut qui, Angelo nuntiánte, Christi Fílii tui incarnatiónem cogn", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Feria III infra Hebd III Quadragesimæ*\nSacris, Dómine, mystériis expiáti: et véniam, quǽsumus, consequámur", + "id": "Commemoratio Postcommunio" + } + ], + "2025-03-26": [ + { + "body": "*Ps 30:7-8.*\nEgo autem in Dómino sperábo: exsultábo et lætábor in tua misericórdia: quia respexísti humilitátem meam.\n*P", + "id": "Introitus" + }, + { + "body": "Præsta nobis, quǽsumus, Dómine: ut salutáribus jejúniis erudíti, a nóxiis quoque vítiis abstinéntes, propitiatiónem tuam", + "id": "Oratio" + }, + { + "body": "Léctio libri Exodi\n*Exod 20:12-24*\nHæc dicit Dóminus Deus: Honóra patrem tuum et matrem tuam, ut sis longǽvus super terr", + "id": "Lectio" + }, + { + "body": "*Ps 6:3-4*\nMiserére mei, Dómine, quóniam infírmus sum: sana me, Dómine,\n℣. Conturbáta sunt ómnia ossa mea: et ánima mea ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangéliim secúndum Matthǽum.\n*Matt 15:1-20*\nIn illo témpore: Accessérunt ad Jesum ab Jerosólymis scr", + "id": "Evangelium" + }, + { + "body": "*Ps 108:21*\nDómine, fac mecum misericórdiam tuam, propter nomen tuum: quia suávis est misericórdia tua.", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, preces pópuli tui cum oblatiónibus hostiárum: et tua mystéria celebrántes, ab ómnibus nos def", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 15:10*\nNotas mihi fecísti vias vitæ: adimplébis me lætítia cum vultu tuo, Dómine.", + "id": "Communio" + }, + { + "body": "Sanctíficet nos, Dómine, qua pasti sumus, mensa cœléstis: et a cunctis erróribus expiátos, supérnis promissiónibus redda", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nConcéde, quǽsumus, omnípotens Deus: ut, qui protectiónis tuæ", + "id": "Super populum" + } + ], + "2025-03-27": [ + { + "body": "Salus pópuli ego sum, dicit Dóminus: de quacúmque tribulatióne clamáverint ad me, exáudiam eos: et ero illórum Dóminus i", + "id": "Introitus" + }, + { + "body": "Magníficet te, Dómine, sanctórum tuórum Cosmæ et Damiáni beáta solémnitas: qua et illis glóriam sempitérnam, et opem nob", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Joannis Damasceni Confessoris*\nOmnípotens sempitérne Deus, qui, ad cultum sacrárum imáginum asseréndum,", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ.\n*Jer 7:1-7*\nIn diébus illis: Factum est verbum Dómini ad me, dicens: Sta in porta domus Dómini:", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno,\n℣. Aperis tu manum tuam: ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 4:38-44*\nIn illo témpore: Surgens Jesus de synagóga, introívit in domu", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nSi ambulávero in médio tribulatiónis, vivificábis me, Dómine: et super iram inimicórum meorum exténdes manum ", + "id": "Offertorium" + }, + { + "body": "In tuorum, Dómine, pretiósa morte justórum sacrifícium illud offérimus, de quo martýrium sumpsit omne princípium.\nPer Do", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Joannis Damasceni Confessoris*\nUt, quæ tibi, Dómine, offérimus, dona tuo sint digna conspéctu: beáti Jo", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nTu mandásti, mandáta tua custodíri nimis: útinam dirigántur viæ meæ, ad custodiéndas justificatiónes tuas.", + "id": "Communio" + }, + { + "body": "Sit nobis, Dómine, sacraménti tui certa salvátio: quæ cum beatórum Mártyrum tuórum Cosmæ et Damiáni méritis implorátur.\n", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Joannis Damasceni Confessoris*\nSumpta nos, quǽsumus, Dómine, dona cœléstibus armis tueántur: et beáti J", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nSubjéctum tibi pópulum, quǽsumus, Dómine, propitiátio cœlést", + "id": "Super populum" + } + ], + "2025-03-28": [ + { + "body": "*Ps 85:17.*\nFac mecum, Dómine, signum in bonum: ut vídeant, qui me oderunt, et confundántur: quóniam tu, Dómine, adjuvís", + "id": "Introitus" + }, + { + "body": "Jejúnia nostra, quǽsumus, Dómine, benígno favóre proséquere: ut, sicut ab aliméntis abstinémus in córpore; ita a vítiis ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Joannis a Capistrano Confessoris*\nDeus, qui per beátum Joánnem fidéles tuos in virtúte sanctíssimi nómi", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Numeri.\n*Num 20:1, 3, 6-13*\nIn diébus illis: Convenérunt fílii Israël adversum Móysen et Aaron: et versi in", + "id": "Lectio" + }, + { + "body": "*Ps 27:7, 1*\nIn Deo sperávit cor meum, et adjútus sum: et reflóruit caro mea, et ex voluntáte mea confitébor illi.\n℣. Ad", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 4:5-42*\nIn illo témpore: Venit Jesus in civitátem Samaríæ, quæ díc", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4*\nInténde voci oratiónis meæ, Rex meus, et Deus meus: quóniam ad te orábo, Dómine.", + "id": "Offertorium" + }, + { + "body": "Réspice, quǽsumus, Dómine, propítius ad múnera, quæ sacrámus: ut tibi grata sint, et nobis salutária semper exsístant.\nP", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Joannis a Capistrano Confessoris*\nSacrifícium, Dómine, quod immolámus, placátus inténde: ut, intercedén", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Joann 4:13, 14*\nQui bíberit aquam, quam ego dabo ei, dicit Dóminus, fiet in eo fons aquæ saliéntis in vitam ætérnam.", + "id": "Communio" + }, + { + "body": "Hujus nos, Dómine, percéptio sacraménti mundet a crimine: et ad cœléstia regna perdúcat.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Joannis a Capistrano Confessoris*\nRepléti alimónia cœlésti et spirituáli pópulo recreáti, quǽsumus, omn", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPræsta, quǽsumus, omnípotens Deus: ut, qui in tua protectión", + "id": "Super populum" + } + ], + "2025-03-29": [ + { + "body": "*Ps 5:2-3.*\nVerba mea áuribus pércipe, Dómine, intéllege clamórem meum: inténde voci oratiónis meæ, Rex meus et Deus meu", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui se, affligéndo carnem, ab aliméntis ábstinent; sectándo justítiam, a culpa je", + "id": "Oratio" + }, + { + "body": "Léctio Daniélis Prophétæ.\n*Dan 13:1-9, 15-17, 19-30, 33-62*\nIn diébus illis: Erat vir hábitans in Babylóne, et nomen eju", + "id": "Lectio" + }, + { + "body": "*Ps 22:4*\nSi ámbulem in médio umbræ mortis, non timébo mala: quóniam tu mecum es, Dómine.\n℣. Virga tua et báculus tuus, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 8:1-11*\nIn illo témpore: Perréxit Jesus in montem Olivéti: et dilú", + "id": "Evangelium" + }, + { + "body": "*Ps 118:133.*\nGressus meos dírige secúndum elóquium tuum: ut non dominétur mei omnis injustítia, Dómine.", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut hujus sacrifícii munus oblátum, fragilitátem nostram ab omni malo purget semper e", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Joann 8:10, 11*\nNemo te condemnávit, mulier? Nemo, Dómine. Nec ego te condemnábo: jam ámplius noli peccáre.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut inter ejus membra numerémur, cujus córpori communicámus et sánguini:\nQui tecum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPræténde, Dómine, fidélibus tuis déxteram cœléstis auxílii: ", + "id": "Super populum" + } + ], + "2025-03-30": [ + { + "body": "*Is 66:10 et 11*\nLætáre, Jerúsalem: et convéntum fácite, omnes qui dilígitis eam: gaudéte cum lætítia, qui in tristítia ", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui ex mérito nostræ actiónis afflígimur, tuæ grátiæ consolatióne respirémus.\nPe", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas\n*Gal 4:22-31*\nFratres: Scriptum est: Quóniam Abraham duos fílios hábuit:", + "id": "Lectio" + }, + { + "body": "*Ps 121:1, 7*\nLætátus sum in his, quæ dicta sunt mihi: in domum Dómini íbimus.\n℣. Fiat pax in virtúte tua: et abundántia", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 6:1-15*\nIn illo témpore: Abiit Jesus trans mare Galilǽæ, quod est T", + "id": "Evangelium" + }, + { + "body": "*Ps 134:3, 6*\nLaudáte Dóminum, quia benígnus est: psállite nómini ejus, quóniam suávis est: ómnia, quæcúmque vóluit, fec", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, Dómine, quǽsumus, inténde placátus: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 121:3-4*\nJerúsalem, quæ ædificátur ut cívitas, cujus participátio ejus in idípsum: illuc enim ascendérunt tribus, tr", + "id": "Communio" + }, + { + "body": "Da nobis, quǽsumus, miséricors Deus: ut sancta tua, quibus incessánter explémur, sincéris tractémus obséquiis, et fidéli", + "id": "Postcommunio" + } + ], + "2025-03-31": [ + { + "body": "*Ps 53:3-4*\nDeus, in nómine tuo salvum me fac, et in virtúte tua líbera me: Deus, exáudi oratiónem meam: áuribus pércipe", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, observatiónes sacras ánnua devotióne recoléntes, et córpore tibi placeámus et men", + "id": "Oratio" + }, + { + "body": "Léctio libri Regum\n*3 Reg 3:16-28.*\nIn diébus illis: Venérunt duæ mulíeres meretríces ad regem Salomónem, steterúntque c", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nEsto mihi in Deum protectórem et in locum refúgii, ut salvum me fácias.\n*Ps 70:1.*\n℣. Deus, in te sperávi: Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 2:13-25*\nIn illo témpore: Prope erat Pascha Judæórum, et ascéndit J", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1-2*\nJubiláte Deo, omnis terra, servíte Dómino in lætítia: intráte in conspéctu ejus in exsultatióne: quia Dóminu", + "id": "Offertorium" + }, + { + "body": "Oblátum tibi, Dómine, sacrifícium vivíficet nos semper et múniat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 18:13, 14*\nAb occúltis meis munda me, Dómine: et ab aliénis parce servo tuo.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salutáribus sacraméntis: ad redemptiónis ætérnæ, quǽsumus, proficiámus augméntum.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDeprecatiónem nostram, quǽsumus. Dómine, benígnus exáudi: et", + "id": "Super populum" + } + ], + "2025-04-01": [ + { + "body": "*Ps 54:2-3*\nExáudi, Deus, oratiónem meam, et ne despéxeris deprecatiónem meam: inténde in me et exáudi me.\n*Ps 54:3-4*\nC", + "id": "Introitus" + }, + { + "body": "Sacræ nobis, quǽsumus, Dómine, observatiónis jejúnia: et piæ conversatiónis augméntum, et tuæ propitiatiónis contínuum p", + "id": "Oratio" + }, + { + "body": "Léctio libri Exodi.\n*Exod 32:7-14*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: Descénde de monte: peccávit p", + "id": "Lectio" + }, + { + "body": "*Ps 43:26, 2*\nExsúrge, Dómine, fer opem nobis: et líbera nos propter nomen tuum.\n℣. Deus, áuribus nostris audívimus: et ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 7:14-31*\nIn illo témpore: Jam die festo mediánte, ascéndit Jesus i", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2, 3, 4*\nExspéctans exspectávi Dóminum, et respéxit me: et exaudívit deprecatiónem meam: et immísit in os meum cá", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 19:6*\nLætábimur in salutári tuo: et in nómine Dómini, Dei nostri, magnificábimur.", + "id": "Communio" + }, + { + "body": "Hujus nos, Dómine, percéptio sacraménti mundet a crímine: et ad cæléstia regna perdúcat.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nMiserére, Dómine, pópulo tuo: et contínuis tribulatiónibus l", + "id": "Super populum" + } + ], + "2025-04-02": [ + { + "body": "*Ezech 36:23-26*\nCum sanctificátus fúero in vobis, congregábo vos de univérsis terris: et effúndam super vos aquam munda", + "id": "Introitus" + }, + { + "body": "Deus, qui et justis prǽmia meritórum et peccatóribus per jejúnium véniam præbes: miserére supplícibus tuis; ut reátus no", + "id": "Oratio" + }, + { + "body": "Léctio Ezechiélis Prophétæ.\n*Ezech 36:23-28*\nHæc dicit Dóminus Deus: Sanctificábo nomen meum magnum, quod pollútum est i", + "id": "LectioL1" + }, + { + "body": "*Ps 38:12, 6*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.\n℣. Accédite ad eum, et illuminámini: et fácies vestræ", + "id": "GradualeL1" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quos jejúnia votíva castígant, ipsa quoque devótio sancta lætíficet; ut, terrénis", + "id": "OratioL1" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Is 1:16-19*\nHæc dicit Dóminus Deus: Lavámini, mundi estóte, auférte malum cogitatiónum vestrárum", + "id": "Lectio" + }, + { + "body": "*Ps 32:12, 6*\nBeáta gens, cujus est Dóminus Deus eórum: pópulus, quem elégit Dóminus in hereditátem sibi.\n℣. Verbo Dómin", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 9:1-38*\nIn illo témpore: Prætériens Jesus vidit hóminem cæcum a na", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9, 20*\nBenedícite, gentes, Dóminum, Deum nostrum, et obaudíte vocem laudis ejus: qui pósuit ánimam meam ad vita", + "id": "Offertorium" + }, + { + "body": "Súpplices te rogámus, omnípotens Deus: ut his sacrifíciis peccáta nostra mundéntur; quia tunc veram nobis tríbuis et men", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Joann 9:11*\nLutum fecit ex sputo Dóminus, et linívit óculos meos: et ábii, et lavi, et vidi, et crédidi Deo.", + "id": "Communio" + }, + { + "body": "Sacraménta, quæ súmpsimus, Dómine, Deus noster: et spirituálibus nos répleant aliméntis, et corporálibus tueántur auxíli", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPáteant aures misericórdiæ tuæ. Dómine, précibus supplicánti", + "id": "Super populum" + } + ], + "2025-04-03": [ + { + "body": "*Ps 104:3-4.*\nLætétur cor quæréntium Dóminum: quǽrite Dóminum, et confirmámini: quǽrite fáciem ejus semper.\n*Ps 104:1*\nC", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quos jejúnia votíva castígant, ipsa quoque devótio sancta lætíficet; ut, terrénis", + "id": "Oratio" + }, + { + "body": "Léctio libri Regum\n*4 Reg 4:25-38*\nIn diébus illis: Venit múlier Sunamítis ad Eliséum in montem Carméli: cumque vidísset", + "id": "Lectio" + }, + { + "body": "*Ps 73:20, 19, 22*\nRéspice, Dómine, in testaméntum tuum: et ánimas páuperum tuórum ne obliviscáris in finem.\n℣. Exsúrge,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 7:11-16*\nIn illo témpore: Ibat Jesus in civitátem, quæ vocátur Naim: et", + "id": "Evangelium" + }, + { + "body": "*Ps 69:2, 3, 4*\nDómine, ad adjuvándum me festína: confundántur omnes, qui cógitant servis tuis mala.", + "id": "Offertorium" + }, + { + "body": "Purífica nos, miséricors Deus: ut Ecclésiæ tuæ preces, quæ tibi gratæ sunt, pia múnera deferéntes, fiant expiátis méntib", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-17, 18*\nDómine, memorábor justítiæ tuæ solíus: Deus, docuísti me a juventúte mea: et usque in senéctam et séni", + "id": "Communio" + }, + { + "body": "Cœléstia dona capiéntibus, quǽsumus, Dómine: non ad judícium proveníre patiáris, quæ fidélibus tuis ad remédium providís", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPópuli tui, Deus, institútor et rector, peccáta, quibus impu", + "id": "Super populum" + } + ], + "2025-04-04": [ + { + "body": "*Ps 18:15*\nMeditátio cordis mei in conspéctu tuo semper: Dómine, adjútor meus, et redémptor meus.\n*Ps 18:2*\nCœli enárran", + "id": "Introitus" + }, + { + "body": "Deus, qui ineffabílibus mundum rénovas sacraméntis: præsta, quǽsumus; ut Ecclésia tua et ætérnis profíciat institútis, e", + "id": "Oratio" + }, + { + "body": "Léctio libri Regum.\n*3 Reg 17:17-24*\nIn diébus illis: Ægrotávit fílius mulíeris matris famílias, et erat languor fortíss", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nBonum est confídere in Dómino, quam confídere in hómine.\n℣. Bonum est speráre in Dómino, quam speráre in pr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 11:1-45*\nIn illo témpore: Erat quidam languens Lázarus a Bethánia,", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28, 32*\nPópulum húmilem salvum fácies, Dómine, et óculos superbórum humiliábis: quóniam quis Deus præter te, Dómi", + "id": "Offertorium" + }, + { + "body": "Múnera nos, Dómine, quǽsumus, obláta puríficent: et te nobis jugiter fáciant esse placátum.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Joann 11:33, 35, 43, 44, 39*\nVidens Dóminus flentes soróres Lázari ad monuméntum, lacrimátus est coram Judǽis, et excla", + "id": "Communio" + }, + { + "body": "Hæc nos, quǽsumus, Dómine, participátio sacraménti: et a propriis reátibus indesinénter expédiat, et ab ómnibus tueátur ", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDa nobis, quǽsumus, omnípotens Deus: ut, qui infirmitátis no", + "id": "Super populum" + } + ], + "2025-04-05": [ + { + "body": "*Isa 55:1*\nSitiéntes, veníte ad aquas, dicit Dóminus: et qui non habétis prétium, veníte et bíbite cum lætítia.\n*Ps 77:1", + "id": "Introitus" + }, + { + "body": "Fiat, Dómine, quǽsumus, per grátiam tuam fructuósus nostræ devotiónis afféctus: quia tunc nobis próderunt suscépta jejún", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Isa 49:8-15*\nHæc dicit Dóminus: In témpore plácito exaudívi te, et in die salútis auxiliátus sum", + "id": "Lectio" + }, + { + "body": "*Ps 9:14, 1-2*\nTibi, Dómine, derelíctus est pauper: pupíllo tu eris adjútor.\n℣. Ut quid, Dómine, recessísti longe, déspi", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 8:12-20*\nIn illo témpore: Locútus est Jesus turbis Judæórum, dicen", + "id": "Evangelium" + }, + { + "body": "*Ps 17:3*\nFactus est Dóminus firmaméntum meum, et refúgium meum, et liberátor meus: et sperábo in eum.", + "id": "Offertorium" + }, + { + "body": "Oblatiónibus nostris, quǽsumus, Dómine, placáre suscéptis: et ad te nostras étiam rebélles compélle propítius voluntátes", + "id": "Secreta" + }, + { + "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", + "id": "Prefatio" + }, + { + "body": "*Ps 22:1-2*\nDóminus regit me, et nihil mihi déerit: in loco páscuæ ibi me collocávit: super aquam refectiónis educávit m", + "id": "Communio" + }, + { + "body": "Tua nos, quǽsumus, Dómine, sancta puríficent: et operatióne sua tibi plácitos esse perfíciant.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDeus, qui sperántibus in te miseréri pótius éligis quam irás", + "id": "Super populum" + } + ], + "2025-04-06": [ + { + "body": "*Ps 42:1-2.*\nJúdica me, Deus, et discérne causam meam de gente non sancta: ab hómine iníquo et dolóso éripe me: quia tu ", + "id": "Introitus" + }, + { + "body": "Quǽsumus, omnípotens Deus, famíliam tuam propítius réspice: ut, te largiénte, regátur in córpore; et, te servánte, custo", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos.\n*Hebr 9:11-15*\nFratres: Christus assístens Póntifex futurórum bonórum, ", + "id": "Lectio" + }, + { + "body": "*Ps 142:9, 10*\nEripe me, Dómine, de inimícis meis: doce me fácere voluntátem tuam\n*Ps 17:48-49*\nLiberátor meus, Dómine, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 8:46-59*\nIn illo témpore: Dicébat Jesus turbis Judæórum: Quis ex v", + "id": "Evangelium" + }, + { + "body": "*Ps 9:1, 118:17, 107*\nConfitébor tibi, Dómine, in toto corde meo: retríbue servo tuo: vivam, et custódiam sermónes tuos:", + "id": "Offertorium" + }, + { + "body": "Hæc múnera, quǽsumus Dómine, et víncula nostræ pravitátis absólvant, et tuæ nobis misericórdiæ dona concílient.\nPer Domi", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*1 Cor 11:24, 25*\nHoc corpus, quod pro vobis tradétur: hic calix novi Testaménti est in meo sánguine, dicit Dóminus: hoc", + "id": "Communio" + }, + { + "body": "Adésto nobis, Dómine, Deus noster: et, quos tuis mystériis recreásti, perpétuis defénde subsídiis.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-04-07": [ + { + "body": "*Ps 55:2*\nMiserére mihi, Dómine, quóniam conculcávit me homo: tota die bellans tribulávit me.\n*Ps 55:3*\nConculcavérunt m", + "id": "Introitus" + }, + { + "body": "Sanctífica, quǽsumus, Dómine, nostra jejúnia: et cunctárum nobis indulgéntiam propítius largíre culpárum.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "Léctio Jonæ Prophétæ.\n*Jonæ 3:1-10*\nIn diébus illis: Factum est verbum Dómini ad Jonam Prophétam secúndo, dicens: Surge,", + "id": "Lectio" + }, + { + "body": "*Ps 53:4, 3*\nDeus, exáudi oratiónem meam: áuribus pércipe verba oris mei.\n℣. Deus, in nómine tuo salvum me fac, et in vi", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 7:32-39*\nIn illo témpore: Misérunt príncipes et pharisǽi minístros", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nDómine, convértere, et éripe ánimam meam: salvum me fac propter misericórdiam tuam.", + "id": "Offertorium" + }, + { + "body": "Concéde nobis, Dómine, Deus noster: ut hæc hóstia salutáris et nostrórum fiat purgátio delictórum, et tuæ propitiátio ma", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 23:10*\nDóminus virtútum ipse est Rex glóriæ.", + "id": "Communio" + }, + { + "body": "Sacraménti tui, quǽsumus, Dómine, participátio salutáris, et purificatiónem nobis tríbuat, et medélam.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDa, quǽsumus, Dómine, pópulo tuo salútem mentis et córporis:", + "id": "Super populum" + } + ], + "2025-04-08": [ + { + "body": "*Ps 26:14*\nExspécta Dóminum, viríliter age: et confortétur cor tuum, et sústine Dóminum.\n*Ps 26:1*\nDóminus illuminátio m", + "id": "Introitus" + }, + { + "body": "Nostra tibi, Dómine, quǽsumus, sint accépta jejúnia: quæ nos et expiándo grátia tua dignos effíciant; et ad remédia perd", + "id": "Oratio" + }, + { + "body": "Léctio Daniélis Prophétæ\n*Dan 14:27, 28-42*\nIn diébus illis: Congregáti sunt Babylónii ad regem, et dixérunt ei: Trade n", + "id": "Lectio" + }, + { + "body": "*Ps 42:1, 3*\nDiscérne causam meam, Dómine: ab hómine iníquo et dolóso éripe me.\n℣. Emítte lucem tuam et veritátem tuam: ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 7:1-13*\nIn illo témpore: Ambulábat Jesus in Galilǽam, non enim volé", + "id": "Evangelium" + }, + { + "body": "*Ps 9:11-12, 13*\nSperent in te omnes, qui novérunt nomen tuum, Dómine: quóniam non derelínquis quæréntes te: psállite Dó", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, deférimus immolándas: quæ temporálem consolatiónem signíficent; ut promíssa non desperémus ætérna.", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 24:22*\nRédime me, Deus Israël, ex ómnibus angústiis meis.", + "id": "Communio" + }, + { + "body": "Da, quǽsumus, omnípotens Deus: ut, quæ divína sunt, júgiter exsequéntes, donis mereámur cœléstibus propinquáre.\nPer Domi", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDa nobis, quǽsumus, Dómine: perseverántem in tua voluntáte f", + "id": "Super populum" + } + ], + "2025-04-09": [ + { + "body": "*Ps 17:48-49*\nLiberátor meus de géntibus iracúndis: ab insurgéntibus in me exaltábis me: a viro iníquo erípies me, Dómin", + "id": "Introitus" + }, + { + "body": "Sanctificáto hoc jejúnio, Deus, tuórum corda fidélium miserátor illústra: et quibus devotiónis præstas afféctum, præbe s", + "id": "Oratio" + }, + { + "body": "Léctio libri Levítici.\n*Lev 19:1-2, 11-19, 25*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: Lóquere ad omnem ", + "id": "Lectio" + }, + { + "body": "*Ps 29:2-4*\nExaltábo te, Dómine, quóniam suscepísti me: nec delectásti inimícos meos super me.\n℣. Dómine, Deus meus, cla", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 10:22-38*\nIn illo témpore: Facta sunt encǽnia in Jerosólymis: et h", + "id": "Evangelium" + }, + { + "body": "*Ps 58:2*\nEripe me de inimícis meis, Deus meus: et ab insurgéntibus in me líbera me, Dómine.", + "id": "Offertorium" + }, + { + "body": "Annue, miséricors Deus: ut hóstias placatiónis et laudis sincéro tibi deferámus obséquio.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 25:6-7*\nLavábo inter innocéntes manus meas, et circuíbo altáre tuum, Dómine: ut áudiam vocem laudis tuæ, et enárrem ", + "id": "Communio" + }, + { + "body": "Cœléstis doni benedictióne percépta: súpplices te, Deus omnípotens, deprecámur; ut hoc idem nobis et sacraménti causa si", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\n℣. Humiliáte cápita vestra Deo.\nAdésto supplicatiónibus nostris, omnípotens Deus: et, qui", + "id": "Super populum" + } + ], + "2025-04-10": [ + { + "body": "*Dan 3:31*\nOmnia, quæ fecísti nobis, Dómine, in vero judício fecísti: quia peccávimus tibi, et mandátis tuis non obedívi", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut dígnitas condiciónis humánæ, per immoderántiam sauciáta, medicinális parsimóniæ st", + "id": "Oratio" + }, + { + "body": "Léctio Daniélis Prophétæ\n*Dan 3:25, 34-45*\nIn diébus illis: Orávit Azarías Dóminum, dicens: Dómine, Deus noster: ne, quǽ", + "id": "Lectio" + }, + { + "body": "*Ps 95:8-9*\nTóllite hóstias, et introíte in átria ejus: adoráte Dóminum in aula sancta ejus\n*Ps 28:9*\nRevelávit Dóminus ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:36-50*\nIn illo témpore: Rogábat Jesum quidam de pharisǽis, ut manduc", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nSuper flúmina Babylónis illic sédimus et flévimus: dum recordarémur tui, Sion.", + "id": "Offertorium" + }, + { + "body": "Dómine, Deus noster, qui in his pótius creatúris, quas ad fragilitátis nostræ subsídium condidísti, tuo quoque nómini mú", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nMeménto verbi tui servo tuo, Dómine, in quo mihi spem dedísti: hæc me consoláta est in humilitáte mea.", + "id": "Communio" + }, + { + "body": "Quod ore súmpsimus, Dómine, pura mente capiámus: et de munere temporáli, fiat nobis remédium sempitérnum.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus. Humiliáte cápita vestra Deo.\nEsto, quǽsumus, Dómine, propítius plebi tuæ: ut, quæ tibi no", + "id": "Super populum" + } + ], + "2025-04-11": [ + { + "body": "*Ps 30:10, 16, 18*\nMiserére mihi, Dómine, quóniam tríbulor: líbera me, et éripe me de mánibus inimicórum meórum et a per", + "id": "Introitus" + }, + { + "body": "Córdibus nostris, quǽsumus, Dómine, grátiam tuam benígnus infúnde: ut peccáta nostra castigatióne voluntária cohibéntes,", + "id": "Oratio" + }, + { + "body": "*Commemoratio Septem Dolorum B. M. ℣.*\nDeus, in cujus passióne, secúndum Simeónis prophetíam, dulcíssimam ánimam gloriós", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ\n*Jer 17:13-18*\nIn diébus illis: Dixit Jeremías: Dómine, omnes, qui te derelínquunt, confundéntur", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nPacífice loquebántur mihi inimíci mei: et in ira molésti erant mihi.\n℣. Vidísti, Dómine, ne síleas: ne di", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 11:47-54*\nIn illo témpore: Collegérunt pontífices et pharisǽi concí", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBenedíctus es, Dómine, doce me justificatiónes tuas: et non tradas calumniántibus me supérbis: et r", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, miséricors Deus: ut digne tuis servíre semper altáribus mereámur; et eórum perpétua participatióne salvári", + "id": "Secreta" + }, + { + "body": "*Commemoratio Septem Dolorum B. M. ℣.*\nOfférimus tibi preces et hóstias, Dómine Jesu Christe, humíliter supplicántes: ut", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nNe tradíderis me, Dómine, in animas persequéntium me: quóniam insurrexérunt in me testes iníqui, et mentíta e", + "id": "Communio" + }, + { + "body": "Sumpti sacrifícii, Dómine, perpetua nos tuítio non derelínquat: et nóxia semper a nobis cuncta depéllat.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Septem Dolorum B. M. ℣.*\nSacrifícia, quæ súmpsimus, Dómine Jesu Christe, Transfixiónem Matris tuæ et Vírgi", + "id": "Commemoratio Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nConcéde, quǽsumus, omnípotens Deus: ut, qui protectiónis tuæ", + "id": "Super populum" + } + ], + "2025-04-12": [ + { + "body": "*Ps 30:10,16, 18*\nMiserére mihi, Dómine, quóniam tríbulor: líbera me, et éripe me de mánibus inimicórum meórum et a pers", + "id": "Introitus" + }, + { + "body": "Profíciat, quǽsumus, Dómine, plebs tibi dicáta piæ devotiónis afféctu: ut sacris actiónibus erudíta, quanto majestáti tu", + "id": "Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ\n*Jer 18:18-23*\nIn diébus illis: Dixérunt ímpii Judǽi ad ínvicem: Veníte, et cogitémus contra jus", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nPacífice loquebántur mihi inimíci mei: et in ira molésti erant mihi.\n℣. Vidísti, Dómine, ne síleas: ne di", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 12:10-36*\nIn illo témpore: Cogitavérunt príncipes sacerdótum, ut et", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBenedíctus es, Dómine, doce me justificatiónes tuas: et non tradas calumniántibus me supérbis: et r", + "id": "Offertorium" + }, + { + "body": "A cunctis nos, quǽsumus, Dómine, reátibus et perículis propitiátus absólve: quos tanti mystérii tríbuis esse consórtes.\n", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nNe tradíderis me, Dómine, in ánimas persequéntium me: quóniam insurrexérunt in me testes iníqui, et mentíta e", + "id": "Communio" + }, + { + "body": "Divíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut hujus semper participatióne vivámus.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nTueátur, quǽsumus, Dómine, déxtera tua pópulum deprecántem: ", + "id": "Super populum" + } + ], + "2025-04-13": [ + { + "body": "*Celebrans, omissa aspersione aquae, proceditur ad benedicendum ramos palmarum seu olivarum, sive aliarum arborum. Color", + "id": "Benedictio Palmorum" + }, + { + "body": "*Celebrans dat ramos benedictos primum omnibus clericis, deinde ministrantibus, denique, ad cancellos, fidelibus. Et cum", + "id": "De distributione ramorum" + }, + { + "body": "*Ramorum distributione peracta, diaconus defert librum Evangeliorum ad altare. Celebrans ponit incensum in thuribulo. Di", + "id": "De lectione Evangelica" + }, + { + "body": "*His peractis, celebrans ponit incensum in thuribulo, more solito. Deinde diaconus, vertens se ad populum, dicit:*\n\n℣. P", + "id": "De processione cum ramis benedictis" + }, + { + "body": "\n*Chorus:*\nGlória, laus et honor tibi sit, Rex Christe, Redémptor: Cui pueríle decus prompsit Hosánna pium.\n*Omnes:*\nGló", + "id": "Hymnus ad Christum Regem" + }, + { + "body": "*Ps 21:20 et 22.*\nDómine, ne longe fácias auxílium tuum a me, ad defensiónem meam áspice: líbera me de ore leonis, et a ", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui humáno generi, ad imitandum humilitátis exémplum, Salvatórem nostrum carnem súmere et cr", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses.\n*Phil 2:5-11*\nFratres: Hoc enim sentíte in vobis, quod et in Chris", + "id": "Lectio" + }, + { + "body": "*Ps 72:24 et 1-3*\nTenuísti manum déxteram meam: et in voluntáte tua deduxísti me: et cum glória assumpsísti me.\n℣. Quam ", + "id": "Graduale" + }, + { + "body": "Pássio Dómini nostri Jesu Christi secúndum Matthǽum.\n*Matt 26:36-75; 27:1-60.*\nTunc venit Jesus cum illis in villam, quæ", + "id": "Evangelium" + }, + { + "body": "*Ps 68:21-22.*\nImpropérium exspectávit cor meum et misériam: et sustínui, qui simul mecum contristarétur, et non fuit: c", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, Dómine: ut oculis tuæ majestátis munus oblátum, et grátiam nobis devotionis obtineat, et efféctum beá", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Matt 26:42.*\nPater, si non potest hic calix transíre, nisi bibam illum: fiat volúntas tua.", + "id": "Communio" + }, + { + "body": "Per hujus, Dómine, operatiónem mystérii: et vitia nostra purgéntur, et justa desidéria compleántur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-04-14": [ + { + "body": "*Ps 34:1-2.*\nJúdica, Dómine, nocéntes me, expúgna impugnántes me: apprehénde arma et scutum, et exsúrge in adjutórium me", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, omnípotens Deus: ut, qui in tot advérsis ex nostra infirmitáte defícimus; intercedénte unigéniti Fílii tui", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Isa 50:5-10*\nIn diébus illis: Dixit Isaías: Dóminus Deus apéruit mihi aurem, ego autem non contr", + "id": "Lectio" + }, + { + "body": "*Ps 34:23 et 3.*\nExsúrge, Dómine, et inténde judício meo, Deus meus et Dóminus meus, in causam meam.\n℣. Effúnde frámeam,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 12:1-9*\nAnte sex dies Paschæ venit Jesus Bethániam, ubi Lázarus fú", + "id": "Evangelium" + }, + { + "body": "*Ps 142:9-10*\nEripe me de inimícis meis, Dómine: ad te confúgi, doce me fácere voluntátem tuam: quia Deus meus es tu.", + "id": "Offertorium" + }, + { + "body": "Hæc sacrifícia nos, omnípotens Deus, poténti virtúte mundátos, ad suum fáciant purióres veníre princípium.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 34:26*\nErubéscant et revereántur simul, qui gratulántur malis meis: induántur pudóre et reveréntia, qui malígna loqu", + "id": "Communio" + }, + { + "body": "Prǽbeant nobis, Dómine, divínum tua sancta fervórem: quo eórum páriter et actu delectémur et fructu.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAdjuva nos, Deus, salutáris noster: et ad benefícia recolénd", + "id": "Super populum" + } + ], + "2025-04-15": [ + { + "body": "*Gal 6:14*\nNos autem gloriári opórtet in Cruce Dómini nostri Jesu Christi: in quo est salus, vita et resurréctio nostra:", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus: da nobis ita Domínicæ passiónis sacraménta perágere; ut indulgéntiam percípere mereámur.\nPer", + "id": "Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ\n*Jer 11:18-20*\nIn diébus illis: Dixit Jeremías: Dómine, demonstrásti mihi, et cognóvi: tunc oste", + "id": "Lectio" + }, + { + "body": "*Ps 34:13 et 1-2*\nEgo autem, dum mihi molésti essent, induébam me cilício, et humiliábam in jejúnio ánimam meam: et orát", + "id": "Graduale" + }, + { + "body": "\n\n \nPássio Dómini nostri Jesu Christi secúndum Marcum\n\n*Marc 14:32-72; 15, 1-46*\n\nEt véniunt in prǽdium, cui nomen Geths", + "id": "Evangelium" + }, + { + "body": "*Ps 139:5*\nCustódi me, Dómine, de manu peccatóris: et ab homínibus iníquis éripe me.", + "id": "Offertorium" + }, + { + "body": "Sacrifícia nos, quǽsumus, Dómine, propénsius ista restáurent: quæ medicinálibus sunt institúta jejúniis.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 68:13-14*\nAdvérsum me exercebántur, qui sedébant in porta: et in me psallébant, qui bibébant vinum: ego vero oratión", + "id": "Communio" + }, + { + "body": "Sanctificatiónibus tuis, omnípotens Deus: et vítia nostra curéntur, et remédia nobis sempitérna provéniant.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nTua nos misericórdia, Deus, et ab omni subreptióne vetustáti", + "id": "Super populum" + } + ], + "2025-04-16": [ + { + "body": "*Phil 2:10, 8 et 11*\nIn nómine Jesu omne genu flectátur, cœléstium, terréstrium et infernórum: quia Dóminus factus est o", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui nostris excéssibus incessánter afflígimur, per unigéniti Fílii tui passiónem ", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Isa 63:1-7*\nHæc dicit Dóminus Deus: Dícite fíliæ Sion: Ecce Salvátor tuus venit: ecce,\nmerces eju", + "id": "LectioL1" + }, + { + "body": "*Ps 68:18 et 2-3*\nNe avértas fáciem tuam a púero tuo, quóniam tríbulor: velóciter exáudi me.\n℣. Salvum me fac, Deus, quó", + "id": "GradualeL1" + }, + { + "body": "Deus, qui pro nobis Fílium tuum Crucis patíbulum subire voluísti, ut inimíci a nobis expélleres potestatem: concéde nobi", + "id": "OratioL1" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 53:1-12.*\nIn diébus illis: Dixit Isaías: Dómine, quis crédidit audítui nostro? et bráchium Dóm", + "id": "Lectio" + }, + { + "body": "*Ps. 101:2-5, 14*\nDómine, exáudi oratiónem meam, et clamor meus ad te véniat.\n℣. Ne avértas fáciem tuam a me: in quacúmq", + "id": "Graduale" + }, + { + "body": "\n\n \nPássio Dómini nostri Jesu Christi secúndum Lucam.\n\n*Luc 22:39-71; 23:1-53*\n\n\nIn illo témpore: Egréssus Jesus ibat se", + "id": "Evangelium" + }, + { + "body": "*Ps 101:2-3*\nDómine, exáudi oratiónem meam, et clamor meus ad te pervéniat: ne avértas fáciem tuam a me.", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, munus oblátum, et dignánter operáre: ut, quod passiónis Fílii tui, Dómini nostri, mystério gé", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Ps 101:13 et 14.*\nPotum meum cum fletu temperábam: quia élevans allisísti me: et ego sicut fænum árui: tu autem, Dómine", + "id": "Communio" + }, + { + "body": "Largíre sénsibus nostris, omnípotens Deus: ut, per temporálem Fílii tui mortem, quam mystéria veneránda testántur, vitam", + "id": "Postcommunio" + }, + { + "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nRéspice, quǽsumus, Dómine, super hanc famíliam tuam, pro qua", + "id": "Super populum" + } + ], + "2025-04-17": [ + { + "body": "*Gal 6:14.*\nNos autem gloriári opórtet in Cruce Dómini nostri Jesu Christi: in quo est salus, vita et resurréctio nostra", + "id": "Introitus" + }, + { + "body": "Deus, a quo et Judas reatus sui poenam, et confessiónis suæ latro praemium sumpsit, concéde nobis tuæ propitiatiónis eff", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 11:20-32.*\nFratres: Conveniéntibus vobis in unum, jam non est", + "id": "Lectio" + }, + { + "body": "*Phil 2:8-9*\nChristus factus est pro nobis oboediens usque ad mortem, mortem autem crucis\n℣. Propter quod et Deus exaltá", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 13:1-15*\nAnte diem festum Paschae, sciens Jesus, quia venit hora e", + "id": "Evangelium" + }, + { + "body": "*Post homiliam proceditur, ad lotionem pedum. In medio presbyterii, vel in ipsa aula ecclesiæ, parata sint sedilia hinc ", + "id": "Maundi" + }, + { + "body": "*Ps 117:16 et 17.*\nDéxtera Dómini fecit virtútem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera D", + "id": "Offertorium" + }, + { + "body": "Ipse tibi, quǽsumus, Dómine sancte, Pater omnípotens, ætérne Deus, sacrifícium nostrum reddat accéptum, qui discípulis s", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "Communicántes et diem sacratíssimum celebrántes, quo Dóminus noster Jesus Christus pro nobis est tráditus: sed et memóri", + "id": "Communicantes" + }, + { + "body": "*Joann 13:12, 13 et 15.*\nDóminus Jesus, postquam coenávit cum discípulis suis, lavit pedes eórum, et ait illis: Scitis, ", + "id": "Communio" + }, + { + "body": "Refécti vitálibus aliméntis, quǽsumus, Dómine, Deus noster: ut, quod témpore nostræ mortalitátis exséquimur, immortalitá", + "id": "Postcommunio" + }, + { + "body": "*Missa expleta, statim proceditur ad solemnem translationem et repositionem Sacramenti. Dum fit processio, cantatur hymn", + "id": "Post Missam" + }, + { + "body": "\n*Deinde celebrans et ministri, seu *\n*ministrantes, exeunt ante altare maius; facta *\n*eidem reverentia, stantes, incip", + "id": "Denudatione altaris" + } + ], + "2025-04-18": [ + { + "body": "\n\n\n\n\n\n\n\nDeus, qui peccati veteris hereditariam mortem, in qua posteritatis genus omne successerat, Christi tui, Domini n", + "id": "Lectiones" + }, + { + "body": "*Proceditur ad cantum vel lectionem historiae Passionis Domini secundum Ioannem.*\n\n\nS. Dominus sit in cordibus vestris e", + "id": "Passio" + }, + { + "body": "*Dicuntur autem hoc ordine: Praecedit celebrantis praefatio, qua intentio specialis indicatur, et cantatur tono peculiar", + "id": "Oratio Fidelium" + }, + { + "body": "\n*Orationibus solemnibus completis, celebrans et ministri redeunt ad sedilia, ubi celebrans deponit pluviale, ministri d", + "id": "Crucis Adoratione" + }, + { + "body": "*Cum ad altare maius pervenerint, illud ascendunt, diaconus sacram pyxidem super corporale, acolythi autem candelabra su", + "id": "CommunioQ" + } + ], + "2025-04-19": [ + { + "body": "*Hora competenti tobaleis cooperiuntur *\n*altaria, sed candelæ exstinctæ manent usque *\n*ad principium Missæ. Interim ex", + "id": "Benedictio ignis" + }, + { + "body": "*Unus ministrantium portat cereum paschalem ante celebrantem, qui facit super earn crux, litteram græcam Alpha, subtus v", + "id": "De benedictione cerei Paschalis" + }, + { + "body": "*Tum celebrans iterum ponit incensum *\n*in thuribulo; postea diaconus, depositis *\n*paramentis violaceis, et indutus sto", + "id": "De solemni processione" + }, + { + "body": "*Diaconus accipiens librum, petit benedictionem, dicens:*\n\nIube, domne, benedícere.\n\n*Et celebrans subiungit:*\n\nDóminus ", + "id": "De praeconio paschali" + }, + { + "body": "*Post præconium paschale, diaconus, *\n*depositis paramentis albis, assumit violacea, *\n*et vadit ad celebrantem.*\n*In fi", + "id": "De lectionibus" + }, + { + "body": "*His expletis, a duobus cantoribus, in medio chori genuflexis, cantantur Litaniæ Sanctorum.*\n\n\n\n℣. Kýrie eléison.\n℟. Kýr", + "id": "De prima parte Litaniarum" + }, + { + "body": "℣. Dóminus vobíscum. \n\r℟. Et cum spíritu tuo.\nOrémus.\nOmnípotens sempitérne Deus, adésto magnæ pietátis tuæ mystériis", + "id": "De benedictione aquae baptismalis" + }, + { + "body": "*Celebrans assumit stolam et pluviale albi coloris; deinde, imposito thure, et facta incensatione cerei, stans iuxta ill", + "id": "De renovatione promissionum baptismatis" + }, + { + "body": "*Renovatione promissionum Baptismatis peracta, cantores, seu ipse sacerdos, incipiunt alteram partem Litaniarum. Propiti", + "id": "De altera parte Litaniarum" + }, + { + "body": "*Celebratio solius Missæ Vigiliæ paschalis sine cæremoniis præcedentibus interdicitur.*\n\n*Sacra Communio fidelibus dari ", + "id": "De Missa solemni Vigiliae paschalis" + }, + { + "body": "℣. Dóminus vobíscum. \n\r℟. Et cum spíritu tuo.\nOrémus.\nDeus, qui hanc sacratíssimum noctem gloria domínicæ Resurrectió", + "id": "Oratio" + }, + { + "body": "Lectio Epistolæ beati Pauli apostoli ad Colossenses.\n*Col 3:1-4*\nFratres: si consurrexístis cum Christo, quæ sursum sunt", + "id": "Lectio" + }, + { + "body": "*Ps. 116*\n℣. Laudáte Dominum omnes gentes: et collaudáte eum, omnes pópuli.\n℣. Quóniam confirmáta est super nos misericó", + "id": "Tractus" + }, + { + "body": "*Ad Evangelium non portantur luminaria*\n\nSequéntia ☩ sancti Evangélii secúndum Matthǽum.\n℟. Glória tibi, Dómine.\n*Matt. ", + "id": "Evangelium" + }, + { + "body": "Suscipe, quǽsumus, Domine, preces populi tui, cum oblationibus hostiarum: ut paschalibus initiata mysteriis, ad æternita", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Post sumptionem Sacramenti, distributio Communionis, purificatio et ablutio fiunt more solito; deinde pro LAUDIBUS domi", + "id": "Pro Laudibus" + }, + { + "body": "℣. Dóminus vobíscum. \n\r℟. Et cum spíritu tuo.\nOrémus.\nSpíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos sacramé", + "id": "Postcommunio" + }, + { + "body": "℣. Ite, Missa est, allelúia, allelúia.\n℟. Deo grátias, allelúia, allelúia.", + "id": "Conclusio" + } + ], + "2025-04-20": [ + { + "body": "*Ps 138:18; 138:5-6.*\nResurréxi, et adhuc tecum sum, allelúja: posuísti super me manum tuam, allelúja: mirábilis facta e", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die per Unigénitum tuum æternitátis nobis áditum, devícta morte, reserásti: vota nostra, quæ prævenié", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios.\n*1 Cor 5:7-8*\nFratres: Expurgáte vetus ferméntum, ut sitis nova cons", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps. 117:24; 117:1*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Confitémini Dómino", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 16:1-7.*\nIn illo témpore: María Magdaléne et María Jacóbi et Salóme ", + "id": "Evangelium" + }, + { + "body": "*Ps. 75:9-10.*\nTerra trémuit, et quiévit, dum resúrgeret in judício Deus, allelúja.", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, preces pópuli tui cum oblatiónibus hostiárum: ut, Paschálibus initiáta mystériis, ad æternitá", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*1 Cor 5:7-8*\nPascha nostrum immolátus est Christus, allelúja: itaque epulémur in ázymis sinceritátis et veritátis, alle", + "id": "Communio" + }, + { + "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos sacraméntis paschálibus satiásti, tua fácias pietáte concordes.\n", + "id": "Postcommunio" + } + ], + "2025-04-21": [ + { + "body": "*Exod 13:5; 13:9*\nIntrodúxit vos Dóminus in terram fluéntem lac et mel, allelúja: et ut lex Dómini semper sit in ore ves", + "id": "Introitus" + }, + { + "body": "Deus, qui sollemnitáte pascháli, mundo remédia contulísti: pópulum tuum, quǽsumus, cœlésti dono proséquere; ut et perféc", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostólorum\n*Act. 10, 37-43.*\nIn diébus illis: Stans Petrus in médio plebis, dixit: Viri fratres, vos scit", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:2*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Dicat nunc Israël, quóniam bonus: quóni", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc. 24:13-35*\nIn illo témpore: Duo ex discípulis Jesu ibant ipsa die in ca", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAngelus Dómini descéndit de cœlo, et dixit muliéribus: Quem quǽritis, surréxit, sicut dixit, allelúj", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, preces pópuli tui cum oblatiónibus hostiárum: ut, paschálibus initiáta mystériis, ad æternitá", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Luc 24:34*\nSurréxit Dóminus, et appáruit Petro, allelúja.", + "id": "Communio" + }, + { + "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos sacraméntis paschálibus satiásti, tua fácias pietáte concórdes.\n", + "id": "Postcommunio" + } + ], + "2025-04-22": [ + { + "body": "*Eccli 15:3-4*\nAqua sapiéntiæ potávit eos, allelúja: firmábitur in illis et non flectétur, allelúja: et exaltábit eos in", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiam tuam novo semper fœtu multíplicas: concéde fámulis tuis; ut sacraméntum vivéndo téneant, quod fide p", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 13:16; 13:26-33*\nIn diébus illis: Surgens Paulus et manu siléntium índicens, ait: Viri f", + "id": "Lectio" + }, + { + "body": "*Ps 117:24;106:2*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n*Ps 106:2*\n℣. Dicant nunc, qui redémpti sun", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc. 24, 36-47*\nIn illo témpore: Stetit Jesus in médio discipulórum suórum ", + "id": "Evangelium" + }, + { + "body": "*Ps. 17:14; 17:16*\nIntónuit de cœlo Dóminus, et Altíssimus dedit vocem suam: et apparuérunt fontes aquárum, allelúja.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, fidélium preces cum oblatiónibus hostiárum: ut, per hæc piæ devotiónis offícia, ad cœléstem glóriam tra", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Col 3:1-2*\nSi consurrexístis cum Christo, quæ sursum sunt quǽrite, ubi Christus est in déxtera Dei sedens, allelúja: qu", + "id": "Communio" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut paschális percéptio sacraménti, contínua in nostris méntibus persevéret.\nPer Domi", + "id": "Postcommunio" + } + ], + "2025-04-23": [ + { + "body": "*Matt 25:34*\nVeníte, benedícti Patris mei, percípite regnum, allelúja: quod vobis parátum est ab orígine mundi, allelúja", + "id": "Introitus" + }, + { + "body": "Deus, qui nos Resurrectiónis Domínicæ ánnua solemnitáte lætíficas: concéde propítius; ut per temporália festa, quæ ágimu", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 3:13-15; 3:17-19*\nIn diébus illis: Apériens Petrus os suum, dixit: Viri Israëlítæ, et qu", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:16*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Déxtera Dómini fecit virtútem, déxtera", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 21:1-14*\nIn illo témpore: Manifestávit se íterum Jesus discípulis", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nPortas cœli apéruit Dóminus: et pluit illis manna, ut éderent: panem cœli dedit eis: panem Angelórum mandu", + "id": "Offertorium" + }, + { + "body": "Sacrifícia, Dómine, paschálibus gáudiis immolámus: quibus Ecclésia tua mirabíliter et páscitur et nutrítur.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Rom 6:9*\nChristus resúrgens ex mórtuis jam non móritur, allelúja: mors illi ultra non dominábitur, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Ab omni nos, quǽsumus, Dómine, vetustáte purgátos: sacraménti tui veneránda percéptio in novam tránsferat creatúram:\nQui", + "id": "Postcommunio" + } + ], + "2025-04-24": [ + { + "body": "*Sap 10:20-21*\nVictrícem manum tuam, Dómine, laudavérunt páriter, allelúja: quia sapiéntia apéruit os mutum, et linguas ", + "id": "Introitus" + }, + { + "body": "Deus, qui diversitátem géntium in confessióne tui nóminis adunásti: da, ut renátis fonte baptísmatis una sit fides ménti", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolorum\n*Act 8:26-40*\nIn diébus illis: Angelus Dómini locútus est ad Philíppum, dicens: Surge et vade ", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:22-23.*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Lápidem, quem reprobavérunt ædific", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 20:11-18*\nIn illo témpore: María stabat ad monuméntum foris, plor", + "id": "Evangelium" + }, + { + "body": "*Exod 13:5*\nIn die solemnitátis vestræ, dicit Dóminus, indúcam vos in terram fluéntem lac et mel, allelúja.", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, múnera populórum tuórum propítius: ut, confessióne tui nóminis et baptísmate renováti, sempit", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*1 Pet 2:9*\nPópulus acquisitiónis, annuntiáte virtútes ejus, allelúja: qui vos de ténebris vocávit in admirábile lumen s", + "id": "Communio" + }, + { + "body": "Exáudi, Dómine, preces nostras: ut redemptiónis nostræ sacrosáncta commércia, et vitæ nobis cónferant præséntis auxílium", + "id": "Postcommunio" + } + ], + "2025-04-25": [ + { + "body": "*Ps 77:53*\nEdúxit eos Dóminus in spe, allelúja: et inimícos eórum opéruit mare, allelúja, allelúja, allelúja.\n*Ps 77:1*\n", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui paschále sacraméntum in reconciliatiónis humánæ fœ́dere contulísti: da méntibus nostris;", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 3:18-22*\nCaríssimi: Christus semel pro peccátis nostris mórtuus est, justu", + "id": "Lectio" + }, + { + "body": "*Ps 117:24; 117:26-27*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Benedíctus, qui venit in nómine Dóm", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 28:16-20*\nIn illo témpore: Undecim discípuli abiérunt in Galilǽam, ", + "id": "Evangelium" + }, + { + "body": "*Exod 12:14*\nErit vobis hæc dies memoriális, allelúja: et diem festum celebrábitis solémnem Dómino in progénies vestras:", + "id": "Offertorium" + }, + { + "body": "Hóstias, quǽsumus, Dómine, placátus assúme: quas et pro renatórum expiatióne peccáti deférimus, et pro acceleratióne cœl", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 28:18-19*\nData est mihi omnis potéstas in cœlo et in terra, allelúja: eúntes, docéte omnes gentes, baptizántes eos", + "id": "Communio" + }, + { + "body": "Réspice, quǽsumus, Dómine, pópulum tuum: et, quem ætérnis dignátus es renováre mystériis, a temporálibus culpis dignánte", + "id": "Postcommunio" + } + ], + "2025-04-26": [ + { + "body": "*Ps 104:43.*\nEdúxit Dóminus pópulum suum in exsultatióne, allelúja: et eléctos suos in lætítia, allelúja, allelúja.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui festa paschália venerándo égimus, per hæc contíngere ad gáudia ætérna mereám", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 2:1-10*\nCaríssimi: Deponéntes ígitur omnem malítiam, et omnem dolum, et simu", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 117:24*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea. Allelúja.\n*Ps 112:1*\nLaudáte,", + "id": "Graduale" + }, + { + "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 20:1-9*\nIn illo témpore: Una sábbati, María Magdaléne venit mane", + "id": "Evangelium" + }, + { + "body": "*Ps 7:26-27*\nBenedíctus, qui venit in nómine Dómini: benedíximus vobis de domo Dómini: Deus Dóminus, et illúxit nobis, a", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, Dómine, semper nos per hæc mystéria paschália gratulári: ut contínua nostræ reparatiónis operátio per", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Gal 3:27*\nOmnes, qui in Christo baptizáti estis, Christum induístis, allelúja.", + "id": "Communio" + }, + { + "body": "Redemptiónis nostræ múnere vegetáti, quǽsumus, Dómine: ut, hoc perpétuæ salútis auxílio, fides semper vera profíciat.\nPe", + "id": "Postcommunio" + } + ], + "2025-04-27": [ + { + "body": "*1 Pet 2:2*\nQuasi modo géniti infántes, allelúja: rationábiles, sine dolo lac concupíscite, allelúja, allelúja, allelúja", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui paschália festa perégimus, hæc, te largiénte, móribus et vita teneámus.\nPer D", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 Joannes 5:4-10*\nCaríssimi: Omne, quod natum est ex Deo, vincit mundum: et hæc ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Matt 28:7*\nIn die resurrectiónis meæ, dicit Dóminus, præcédam vos in Galilǽam. Allelúja.\n*Joannes 2", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 20:19-31*\nIn illo témpore: Cum sero esset die illo, una sabbatóru", + "id": "Evangelium" + }, + { + "body": "*Matt 28:2; 28:5-6*\nAngelus Dómini descéndit de cœlo, et dixit muliéribus: Quem quǽritis, surréxit, sicut dixit, allelúj", + "id": "Offertorium" + }, + { + "body": "Súscipe múnera, Dómine, quǽsumus, exsultántis Ecclésiæ: et, cui causam tanti gáudii præstitísti, perpétuæ fructum concéd", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 20:27*\nMitte manum tuam, et cognósce loca clavórum, allelúja: et noli esse incrédulus, sed fidélis, allelúja, a", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti; et præsens nobi", + "id": "Postcommunio" + } + ], + "2025-04-28": [ + { + "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Tuam nobis indulgéntiam, quǽsumus, Dómine, beátus Adalbértus Epíscopus et Martyr implóret: ut et delícta nobis cleménter", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebræos.\n*Hebr 5:1-6*\nFratres: Omnis póntifex ex homínibus assúmptus, pro homíni", + "id": "Lectio" + }, + { + "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ. Alleluia.\n*Ps 109:4*\n℣. Tu es sacerdos i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso: vitam pétiit a te, et tribuísti ei, allelúja.", + "id": "Offertorium" + }, + { + "body": "Sacrifícium exhíbitum, quǽsumus, Dómine, benígnus assúme: ut, quod nómini tuo in solemnitáte beáti Adalbérti Mártyris tu", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Refécti, Dómine, munéribus sacris, súpplices te deprecámur: ut indulgéntiam tuam nobis intercéssio beáti Adalbérti Márty", + "id": "Postcommunio" + } + ], + "2025-04-29": [ + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus: et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut beáti Petri Mártyris tui fidem cóngrua devotióne sectémur; qui, pro ejúsdem fídei ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*2 Tim 2:8-10; 3:10-12*\nCaríssime: Memor esto, Dóminum Jesum Christum", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:34-42*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte arbi", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", + "id": "Offertorium" + }, + { + "body": "Preces, quas tibi, Dómine, offérimus, intercedénte beáto Petro Mártyre tuo, cleménter inténde: et propugnatóres fídei su", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nQui vult veníre post me, ábneget semetípsum, et tollat crucem suam, et sequátur me.", + "id": "Communio" + }, + { + "body": "Fidéles tuos, Dómine, custódiant sacraménta, quæ súmpsimus: et, intercedénte beáto Petro Mártyre tuo, contra omnes advér", + "id": "Postcommunio" + } + ], + "2025-04-30": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ N. Vírginis tuæ festivitáte gaudémus; ita piæ devotiónis erudiámu", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "Allelúia, allelúja\n*Ps 44:15-16*\nAdducéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia. Allelúja.\n*", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2025-05-01": [ + { + "body": "*Sap. 10:17*\nSapiéntia réddidit justis mercédem labórum suórum, et dedúxit illos in via mirábili, et fuit illis in velam", + "id": "Introitus" + }, + { + "body": "Rerum cónditor Deus, qui legem labóris humáno géneri statuísti: concéde propítius; ut, sancti Joseph exémplo et patrocín", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses.\n*Col. 3:14-15, 17, 23-24*\nFratres: Caritátem habéte, quod est víncu", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. De quacúmque tribulatióne clamáverint ad me, exáudiam eos, et ero protéctor eórum semper. Allelúj", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 13:54-58*\nIn illo témpore: Véniens Jesus in pátriam suam, docébat ", + "id": "Evangelium" + }, + { + "body": "*Ps 89:17*\nBónitas Dómini Dei nostri sit super nos, et opus mánuum nostrárum secúnda nobis, et opus mánuum nostrárum sec", + "id": "Offertorium" + }, + { + "body": "Quas tibi, Dómine, de opéribus mánuum nostrárum offérimus hóstias, sancti Joseph interpósito suffrágio, pignus fácias no", + "id": "Secreta" + }, + { + "body": "*de S. Joseph*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pat", + "id": "Prefatio" + }, + { + "body": "*Matt 13:54-55*\nUnde huic sapiéntia hæc et virtútes? Nonne hic est fabri fílius? Nonne mater ejus dícitur María? Allelúj", + "id": "Communio" + }, + { + "body": "Hæc sancta quæ súmpsimus, Dómine, per intercessiónem beáti Joseph; et operatiónem nostram cómpleant, et prǽmia confírmen", + "id": "Postcommunio" + } + ], + "2025-05-02": [ + { + "body": "*Eccli 15:5.*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ", + "id": "Introitus" + }, + { + "body": "Exáudi, quǽsumus, Dómine, preces nostras, quas in beáti Athanásii Confessóris tui atque Pontíficis solemnitáte deférimus", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*2 Cor 4:5-14.*\nFratres: Non nosmetípsos prædicámus, sed Jesum Chris", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 109:4*\nTu es sacérdos in ætérnum, secúndum órdinem Melchísedech. Allelúja\n*Jas 1:12*\nBeátus vir,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 10:23-28*\nIn illo témpore: Dixit Jesus discípulis suis: Cum perseq", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti Athanásii Confessóris tui atque Pontíficis, quǽsumus, Dómine, ánnua solémnitas pietáti tuæ nos reddat accéptos: u", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 10:27*\nQuod dico vobis in ténebris, dícite in lúmine, dicit Dóminus: et quod in aure audítis, prædicáte super tect", + "id": "Communio" + }, + { + "body": "Deus, fidélium remunerátor animárum: præsta; ut beáti Athanásii Confessóris tui atque Pontíficis, cujus venerándam celeb", + "id": "Postcommunio" + } + ], + "2025-05-03": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Maríæ Vírginis: de cujus sollemnitáte gaudent Angeli", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, qui ad defensiónem pópuli nostri, in beatíssima Vírgine María mirábile nobis auxílium con", + "id": "Oratio" + }, + { + "body": "Léctio libri Judith.\n*Judith 13:22; 13:23-25*\nBenedíxit te Dóminus in virtúte sua, quia per te ad níhilum redégit inimíc", + "id": "Lectio" + }, + { + "body": "Allelúia, allelúia.\n*Cant 6:3; 6:9*\n℣. Tota formósa et suávis es, fília Sion, pulchra ut luna, elécta ut sol, terríbilis", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 19:25-27*\nIn illo témpore: Stabant juxta crucem Jesu mater ejus, e", + "id": "Evangelium" + }, + { + "body": "*Jer 18:20*\nRecordáre, Virgo, Mater Dei, dum stéteris in conspéctu Dómini, ut loquáris pro nobis bona, et ut avértat ind", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, munus quod tibi offérimus, memóriam recoléntes piíssimæ Vírginis Maríæ, quæ consolátur nos in omni trib", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Regína mundi digníssima, María Virgo perpétua intercéde pro nostra pace et salúte, quæ genuísti Christum Dóminum, Salvat", + "id": "Communio" + }, + { + "body": "Deus, qui nobis beátam Vírginem Maríam singulárem Patrónam dedísti: concéde propítius; ut, sacris donis tuis satiáti, pr", + "id": "Postcommunio" + } + ], + "2025-05-04": [ + { + "body": "*Ps 32:5-6*\nMisericórdia Dómini plena est terra, allelúja: verbo Dómini cœli firmáti sunt, allelúja, allelúja.\n*Ps 32:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui in Fílii tui humilitáte jacéntem mundum erexísti: fidélibus tuis perpétuam concéde lætítiam; ut, quos perpétuæ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 2:21-25*\nCaríssimi: Christus passus est pro nobis, vobis relínquens exémpl", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Luc 24:35*\nCognovérunt discípuli Dóminum Jesum in fractióne panis. Allelúja\n*Joannes 10:14*\nEgo sum", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nDeus, Deus meus, ad te de luce vígilo: et in nómine tuo levábo manus meas, allelúja.", + "id": "Offertorium" + }, + { + "body": "Benedictiónem nobis, Dómine, cónferat salutárem sacra semper oblátio: ut, quod agit mystério, virtúte perfíciat.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 10:14*\nEgo sum pastor bonus, allelúja: et cognósco oves meas, et cognóscunt me meæ, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut, vivificatiónis tuæ grátiam consequéntes, in tuo semper múnere gloriémur.\nPe", + "id": "Postcommunio" + } + ], + "2025-05-05": [ + { + "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", + "id": "Introitus" + }, + { + "body": "Deus, qui, ad conteréndos Ecclésiæ tuæ hostes et ad divínum cultum reparándum, beátum Pium Pontíficem Máximum elígere di", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam\n*Ps 44:17-18.*\nConstítues eo", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut et gregis tui profíciat úbique succéssus, et g", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + } + ], + "2025-05-06": [ + { + "body": "*Ps 32:5-6*\nMisericórdia Dómini plena est terra, allelúja: verbo Dómini cœli firmáti sunt, allelúja, allelúja.\n*Ps 32:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui in Fílii tui humilitáte jacéntem mundum erexísti: fidélibus tuis perpétuam concéde lætítiam; ut, quos perpétuæ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 2:21-25*\nCaríssimi: Christus passus est pro nobis, vobis relínquens exémpl", + "id": "Lectio" + }, + { + "body": "\n*Luc 24:35*\nCognovérunt discípuli Dóminum Jesum in fractióne panis. \n*Joannes 10:14*\nEgo sum pastor bonus: et cognósco ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nDeus, Deus meus, ad te de luce vígilo: et in nómine tuo levábo manus meas, allelúja.", + "id": "Offertorium" + }, + { + "body": "Benedictiónem nobis, Dómine, cónferat salutárem sacra semper oblátio: ut, quod agit mystério, virtúte perfíciat.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 10:14*\nEgo sum pastor bonus, allelúja: et cognósco oves meas, et cognóscunt me meæ, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut, vivificatiónis tuæ grátiam consequéntes, in tuo semper múnere gloriémur.\nPe", + "id": "Postcommunio" + } + ], + "2025-05-07": [ + { + "body": "*Ps 32:5-6*\nMisericórdia Dómini plena est terra, allelúja: verbo Dómini cœli firmáti sunt, allelúja, allelúja.\n*Ps 32:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui in Fílii tui humilitáte jacéntem mundum erexísti: fidélibus tuis perpétuam concéde lætítiam; ut, quos perpétuæ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 2:21-25*\nCaríssimi: Christus passus est pro nobis, vobis relínquens exémpl", + "id": "Lectio" + }, + { + "body": "\n*Luc 24:35*\nCognovérunt discípuli Dóminum Jesum in fractióne panis. \n*Joannes 10:14*\nEgo sum pastor bonus: et cognósco ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nDeus, Deus meus, ad te de luce vígilo: et in nómine tuo levábo manus meas, allelúja.", + "id": "Offertorium" + }, + { + "body": "Benedictiónem nobis, Dómine, cónferat salutárem sacra semper oblátio: ut, quod agit mystério, virtúte perfíciat.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 10:14*\nEgo sum pastor bonus, allelúja: et cognósco oves meas, et cognóscunt me meæ, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut, vivificatiónis tuæ grátiam consequéntes, in tuo semper múnere gloriémur.\nPe", + "id": "Postcommunio" + } + ], + "2025-05-08": [ + { + "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Deus, pro cuius honóre gloriósus Póntifex Stanisláus gládiis impiórum occúbuit: præsta, quǽsumus; ut omnes, qui eius imp", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebræos.\n*Hebr 5:1-6*\nFratres: Omnis póntifex ex homínibus assúmptus, pro homíni", + "id": "Lectio" + }, + { + "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ. Alleluia.\n*Ps 109:4*\n℣. Tu es sacerdos i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso: vitam pétiit a te, et tribuísti ei, allelúja.", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto Stanisláo Mártyre tuo atque Pontífice, per éadem nos plac", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ, alleluia, alleluia.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto Stanisláo Mártyre tuo atque Pontífice, cæléstis reméd", + "id": "Postcommunio" + } + ], + "2025-05-09": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Gregórium minístrum tribuísti: præsta, quǽsumus; ut quem Doctórem vitæ habúim", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 39:6-14*\nJustus cor suum tradet ad vigilándum dilúculo ad Dóminum, qui fecit illum, et in ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Eccli 45:9*\nAmávit eum Dóminus, et ornávit eum: stolam glóriæ índuit eum.\n*Osee 14:6*\nJustus germin", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "*Pro Doctore Pontifice*\nSancti N. Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostr", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "*Pro Doctore Pontifice*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus N. Póntifex tuus et Doctor egrégius, quǽsu", + "id": "Postcommunio" + } + ], + "2025-05-10": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Sancti Antoníni, Dómine, Confessóris tui atque Pontíficis méritis adjuvémur: ut, sicut te in illo mirábilem prædicámus, ", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Gordiano et Epimacho Martyribus*\nDa, quǽsumus, omnípotens Deus: ut, qui beatórum Mártyrum tuórum Gordiáni et Ep", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Ps 109:4*\nTu es sacérdos in ætérnum, secúndum órdinem Melchísedech. Allelúja.\n℣. Hic est sacérdos, q", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos úbique lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Gordiano et Epimacho Martyribus*\nHóstias tibi, Dómine, beatórum Martyrum tuórum Gordiáni et Epímachi dicátas mé", + "id": "Commemoratio Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Antoníno Confessóre", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Gordiano et Epimacho Martyribus*\nQuǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedéntib", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-11": [ + { + "body": "*Ps 65:1-2.*\nJubiláte Deo, omnis terra, allelúja: psalmum dícite nómini ejus, allelúja: date glóriam laudi ejus, allelúj", + "id": "Introitus" + }, + { + "body": "Deus, qui errántibus, ut in viam possint redíre justítiæ, veritátis tuæ lumen osténdis: da cunctis, qui christiána profe", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Philippi et Jacobi Apostolorum*\nDeus, qui nos ánnua Apostolórum tuórum Philíppi et Jacóbi sollemnitáte", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 2:11-19*\nCaríssimi: Obsecro vos tamquam ádvenas et peregrínos abstinére vos ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 110:9*\nRedemptiónem misit Dóminus pópulo suo. Allelúja.\n*Luc 24:46*\nOportébat pati Christum, et ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:16-22*\nIn illo témpore: Dixit Jesus discípulis suis: Módicum, ", + "id": "Evangelium" + }, + { + "body": "*Ps 145:2*\nLauda, ánima mea, Dóminum: laudábo Dóminum in vita mea: psallam Deo meo, quámdiu ero, allelúja.", + "id": "Offertorium" + }, + { + "body": "His nobis, Dómine, mystériis conferátur, quo, terréna desidéria mitigántes, discámus amáre cœléstia.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Philippi et Jacobi Apostolorum*\nMúnera, Dómine, quæ pro Apostolórum tuórum Philippi et Jacóbi sollemni", + "id": "Commemoratio Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 16:16*\nMódicum, et non vidébitis me, allelúja: íterum módicum, et vidébitis me, quia vado ad Patrem, allelúja, ", + "id": "Communio" + }, + { + "body": "Sacraménta quæ súmpsimus, quǽsumus, Dómine: et spirituálibus nos instáurent aliméntis, et corporálibus tueántur auxíliis", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Philippi et Jacobi Apostolorum*\nQuǽsumus, Dómine, salutáribus repléti mystériis: ut, quorum sollémnia ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-12": [ + { + "body": "*Ps 32:18; 32:19; 32:20*\nEcce, óculi Dómini super timéntes eum, sperántes in misericórdia ejus, allelúja: ut erípiat a m", + "id": "Introitus" + }, + { + "body": "Semper nos, Dómine, Mártyrum tuórum Nérei, Achíllei, Domitíllæ atque Pancrátii fóveat, quǽsumus, beáta solémnitas: et tu", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 5:1-5.*\nStabunt justi in magna constántia advérsus eos, qui se angustiavérunt et qui abstulé", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. Hæc est vera fratérnitas, quæ vicit mundi crímina: Christum secúta est, ínclita tenens regna cœlé", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 4:46-53*\nIn illo témpore: Erat quidam régulus, cujus fílius infi", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: et veritátem tuam in ecclésia sanctórum, allelúja, allelúja.", + "id": "Offertorium" + }, + { + "body": "Sanctórum Martyrum tuórum, quǽsumus. Dómine, Nérei, Achíllei, Domitíllæ atque Pancrátii sit tibi grata conféssio: quæ et", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Ps 32:1*\nGaudéte, justi, in Dómino, allelúja: rectos decet collaudátio, allelúja.", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine: ut beatórum Mártyrum tuórum Nérei, Achíllei, Domitíllæ atque Pancrátii deprecatiónibus, sacraménta san", + "id": "Postcommunio" + } + ], + "2025-05-13": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui ad errórum insídias repelléndas et apostólicæ Sedis jura propugnánda, beátum Robértum Pontíficem tuum atque Do", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 7:7-14*\nOptávi, et datus est mihi sensus: et invocávi, et venit in me spíritus sapiéntiæ: et", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. Qui docti fúerint fulgébunt quasi splendor firmaménti. Allelúja.\n℣. Qui ad justítiam erúdiunt mul", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 72:28*\nMihi autem adhærére Deo bonum est, pónere in Dómino Deo spem meam: ut annúntiem omnes prædicatiónes tuas in p", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, in odórem suavitátis offérimus: et præsta; ut, beáti Robérti mónitis et exémplis edócti, per sémit", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 5:14; 5:16*\nVos estis lux mundi: sic lúceat lux vestra coram homínibus, ut vídeant ópera vestra bona, et glorífice", + "id": "Communio" + }, + { + "body": "Sacraménta, quæ súmpsimus, Dómine Deus noster, in nobis fóveant caritátis ardórem: quo beátus Robértus veheménter accéns", + "id": "Postcommunio" + } + ], + "2025-05-14": [ + { + "body": "*Ps 65:1-2.*\nJubiláte Deo, omnis terra, allelúja: psalmum dícite nómini ejus, allelúja: date glóriam laudi ejus, allelúj", + "id": "Introitus" + }, + { + "body": "Deus, qui errántibus, ut in viam possint redíre justítiæ, veritátis tuæ lumen osténdis: da cunctis, qui christiána profe", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Bonifacii Martyris*\nDa, quǽsumus, omnípotens Deus: ut, qui beáti Bonifátii Mártyris tui sollémnia cólim", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 2:11-19*\nCaríssimi: Obsecro vos tamquam ádvenas et peregrínos abstinére vos ", + "id": "Lectio" + }, + { + "body": "\n*Ps 110:9*\nRedemptiónem misit Dóminus pópulo suo. \n*Luc 24:46*\nOportébat pati Christum, et resúrgere a mórtuis: et ita ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:16-22*\nIn illo témpore: Dixit Jesus discípulis suis: Módicum, ", + "id": "Evangelium" + }, + { + "body": "*Ps 145:2*\nLauda, ánima mea, Dóminum: laudábo Dóminum in vita mea: psallam Deo meo, quámdiu ero, allelúja.", + "id": "Offertorium" + }, + { + "body": "His nobis, Dómine, mystériis conferátur, quo, terréna desidéria mitigántes, discámus amáre cœléstia.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Bonifacii Martyris*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda", + "id": "Commemoratio Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joannes 16:16*\nMódicum, et non vidébitis me, allelúja: íterum módicum, et vidébitis me, quia vado ad Patrem, allelúja, ", + "id": "Communio" + }, + { + "body": "Sacraménta quæ súmpsimus, quǽsumus, Dómine: et spirituálibus nos instáurent aliméntis, et corporálibus tueántur auxíliis", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Bonifacii Martyris*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exsé", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-15": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus, allelúja,", + "id": "Introitus" + }, + { + "body": "Deus, qui, ad christiánam páuperum eruditiónem et ad juvéntam in via veritátis firmándam, sanctum Joánnem Baptístam Conf", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11*\nBeátus vir, qui inventus est sine mácula, et qui post aurum non ábiit, nec speráv", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia\n*Jas 1:12.*\nBeátus vir, qui suffert tentatiónem: quóniam, cum probátus fúerit, accípiet corónam vitæ.", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-5*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes:", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVeritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus, allelúja.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cælésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + } + ], + "2025-05-16": [ + { + "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Deus, qui in confessióne veræ fídei beátum Andréam, multíplici suppliciórum génere excruciátum, illústri martýrio coroná", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Ubaldi Episcopi Confessoris*\nAuxílium tuum nobis, Dómine, quǽsumus, placátus impénde: et, intercessióne", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timotheum\n*2 Tim 2:8-10; 3:10-12.*\nCaríssime: Memor esto, Dóminum Jesum Christum", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 15:1-7*\nIn illo témpore: Dixit Jesus discípulis suis: Ego sum vi", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: et veritátem tuam in ecclésia sanctórum, allelúja, allelúja.", + "id": "Offertorium" + }, + { + "body": "Offérimus tibi, Dómine, hóstiam immaculátam unigéniti Fílii tui, eníxe deprecántes, ut, quæ pro salúte nostra humíliter ", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Ubaldi Episcopi Confessoris*\nSancti tui, quǽsumus, Dómine, nos ubíque lætíficent: ut, dum eórum mérita ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11.*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Deam, hæc sancta, Dómine, in honórem beáti Andréæ Mártyris tui de altári libávimus: concéde propítius; ut, cuius exémpli", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Ubaldi Episcopi Confessoris*\nPræsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhi", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-17": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Paschálem Confessórem tuum mirífica erga Córporis et Sánguinis tui sacra mystéria dilectióne decorásti:", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia\n*Jas 1:12.*\nBeátus vir, qui suffert tentatiónem: quóniam, cum probátus fúerit, accípiet corónam vitæ.", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi. Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + } + ], + "2025-05-18": [ + { + "body": "*Ps 97:1; 97:2*\nCantáte Dómino cánticum novum, allelúja: quia mirabília fecit Dóminus, allelúja: ante conspéctum géntium", + "id": "Introitus" + }, + { + "body": "Deus, qui fidélium mentes uníus éfficis voluntátis: da pópulis tuis id amáre quod prǽcipis, id desideráre quod promíttis", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jas 1:17-21*\nCaríssimi: Omne datum óptimum, et omne donum perféctum desúrsum est,", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 117:16.*\nDéxtera Dómini fecit virtútem: déxtera Dómini exaltávit me. Allelúja.\n*Rom 6:9*\nChristu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:5-14*\nIn illo témpore: Dixit Jesus discípulis suis: Vado ad eu", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nJubiláte Deo, univérsa terra, psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", + "id": "Offertorium" + }, + { + "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes effecísti: præsta, quǽsumus;", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joann 16:8*\nCum vénerit Paráclitus Spíritus veritátis, ille árguet mundum de peccáto et de justítia et de judício, alle", + "id": "Communio" + }, + { + "body": "Adésto nobis, Dómine, Deus noster: ut per hæc, quæ fidéliter súmpsimus, et purgémur a vítiis et a perículis ómnibus eruá", + "id": "Postcommunio" + } + ], + "2025-05-19": [ + { + "body": "*Joannes 21:15; 21:16; 21:17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas. Allelúja, allelúja\n*Ps 29:2", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Petrum Cœlestínum ad summi pontificátus ápicem sublimásti, quique illum humilitáti postpónere docuísti:", + "id": "Oratio" + }, + { + "body": "*Pro S. Pudentiana Virgine.*\nExáudi nos, Deus, salutáris noster: ut, sicut de beátæ Pudentiánæ Vírginis tuæ festivitáte ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Matt 16:18*\n℣. Tu es Petrus, et super hanc petram ædificábo Ecclésiam meam.\n*Ps 44:17; 44:18*\nConst", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut et gregis tui profíciat úbique succéssus, et g", + "id": "Secreta" + }, + { + "body": "*Pro S. Pudentiana Virgine.*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se mér", + "id": "Commemoratio Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam. Allelúja.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Pudentiana Virgine.*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-20": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus, allelúja,", + "id": "Introitus" + }, + { + "body": "Dómine Jesu, qui beáto Bernardíno Confessóri tuo exímium sancti nóminis tui amórem tribuísti: ejus, quǽsumus, méritis et", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11*\nBeátus vir, qui inventus est sine mácula, et qui post aurum non ábiit, nec speráv", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Jas 1:1-2*\nBeátus vir, qui suffert tentatiónem: quóniam, cum probátus fúerit, accípiet corónam vitæ.", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + } + ], + "2025-05-21": [ + { + "body": "*Ps 97:1; 97:2*\nCantáte Dómino cánticum novum, allelúja: quia mirabília fecit Dóminus, allelúja: ante conspéctum géntium", + "id": "Introitus" + }, + { + "body": "Deus, qui fidélium mentes uníus éfficis voluntátis: da pópulis tuis id amáre quod prǽcipis, id desideráre quod promíttis", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jas 1:17-21*\nCaríssimi: Omne datum óptimum, et omne donum perféctum desúrsum est,", + "id": "Lectio" + }, + { + "body": "\n*Ps 117:16.*\nDéxtera Dómini fecit virtútem: déxtera Dómini exaltávit me. \n*Rom 6:9*\nChristus resúrgens ex mórtuis jam n", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:5-14*\nIn illo témpore: Dixit Jesus discípulis suis: Vado ad eu", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nJubiláte Deo, univérsa terra, psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", + "id": "Offertorium" + }, + { + "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes effecísti: præsta, quǽsumus;", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joann 16:8*\nCum vénerit Paráclitus Spíritus veritátis, ille árguet mundum de peccáto et de justítia et de judício, alle", + "id": "Communio" + }, + { + "body": "Adésto nobis, Dómine, Deus noster: ut per hæc, quæ fidéliter súmpsimus, et purgémur a vítiis et a perículis ómnibus eruá", + "id": "Postcommunio" + } + ], + "2025-05-22": [ + { + "body": "*Ps 97:1; 97:2*\nCantáte Dómino cánticum novum, allelúja: quia mirabília fecit Dóminus, allelúja: ante conspéctum géntium", + "id": "Introitus" + }, + { + "body": "Deus, qui fidélium mentes uníus éfficis voluntátis: da pópulis tuis id amáre quod prǽcipis, id desideráre quod promíttis", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jas 1:17-21*\nCaríssimi: Omne datum óptimum, et omne donum perféctum desúrsum est,", + "id": "Lectio" + }, + { + "body": "\n*Ps 117:16.*\nDéxtera Dómini fecit virtútem: déxtera Dómini exaltávit me. \n*Rom 6:9*\nChristus resúrgens ex mórtuis jam n", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:5-14*\nIn illo témpore: Dixit Jesus discípulis suis: Vado ad eu", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nJubiláte Deo, univérsa terra, psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", + "id": "Offertorium" + }, + { + "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes effecísti: præsta, quǽsumus;", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joann 16:8*\nCum vénerit Paráclitus Spíritus veritátis, ille árguet mundum de peccáto et de justítia et de judício, alle", + "id": "Communio" + }, + { + "body": "Adésto nobis, Dómine, Deus noster: ut per hæc, quæ fidéliter súmpsimus, et purgémur a vítiis et a perículis ómnibus eruá", + "id": "Postcommunio" + } + ], + "2025-05-23": [ + { + "body": "*Ps 97:1; 97:2*\nCantáte Dómino cánticum novum, allelúja: quia mirabília fecit Dóminus, allelúja: ante conspéctum géntium", + "id": "Introitus" + }, + { + "body": "Deus, qui fidélium mentes uníus éfficis voluntátis: da pópulis tuis id amáre quod prǽcipis, id desideráre quod promíttis", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jas 1:17-21*\nCaríssimi: Omne datum óptimum, et omne donum perféctum desúrsum est,", + "id": "Lectio" + }, + { + "body": "\n*Ps 117:16.*\nDéxtera Dómini fecit virtútem: déxtera Dómini exaltávit me. \n*Rom 6:9*\nChristus resúrgens ex mórtuis jam n", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:5-14*\nIn illo témpore: Dixit Jesus discípulis suis: Vado ad eu", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nJubiláte Deo, univérsa terra, psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", + "id": "Offertorium" + }, + { + "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes effecísti: præsta, quǽsumus;", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Joann 16:8*\nCum vénerit Paráclitus Spíritus veritátis, ille árguet mundum de peccáto et de justítia et de judício, alle", + "id": "Communio" + }, + { + "body": "Adésto nobis, Dómine, Deus noster: ut per hæc, quæ fidéliter súmpsimus, et purgémur a vítiis et a perículis ómnibus eruá", + "id": "Postcommunio" + } + ], + "2025-05-24": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cælum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, qui ad defensiónem pópuli christiáni in beatíssima Vírgine María perpétuum auxílium mirab", + "id": "Oratio" + }, + { + "body": "", + "id": "Lectio" + }, + { + "body": "", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem qu", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28*\nAve, María, gratia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Pro religiónis christiánæ triúmpho hóstias placatiónis tibi, Dómine, immolámus: quæ ut nobis profíciant, opem auxiliátri", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Adésto, Dómine, pópulis, qui participatióne Córporis et Sánguinis tui reficiúntur: ut, sanctíssima tua Genetríce auxiliá", + "id": "Postcommunio" + } + ], + "2025-05-25": [ + { + "body": "*Isa 48:20*\nVocem jucunditátis annuntiáte, et audiátur, allelúja: annuntiáte usque ad extrémum terræ: liberávit Dóminus ", + "id": "Introitus" + }, + { + "body": "Deus, a quo bona cuncta procédunt, largíre supplícibus tuis: ut cogitémus, te inspiránte, quæ recta sunt; et, te guberná", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jas 1:22-27*\nCaríssimi: Estóte factóres verbi, et non auditóres tantum: falléntes", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. Surréxit Christus, et illúxit nobis, quos rédemit sánguine suo. Allelúja.\n*Joannes 16:28*\nExívi a", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 16:23-30*\nIn illo témpore: Dixit Jesus discípulis suis: Amen, amen,", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9; 65:20*\nBenedícite, gentes, Dóminum, Deum nostrum, et obaudíte vocem laudis ejus: qui pósuit ánimam meam ad v", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, fidélium preces cum oblatiónibus hostiárum: ut, per hæc piæ devotiónis offícia, ad cœléstem glóriam tra", + "id": "Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Ps 95:2*\nCantáte Dómino, allelúja: cantáte Dómino et benedícite nomen ejus: bene nuntiáte de die in diem salutáre ejus,", + "id": "Communio" + }, + { + "body": "Tríbue nobis, Dómine, cæléstis mensæ virtúte satiátis: et desideráre, quæ recta sunt, et desideráta percípere.\nPer Domin", + "id": "Postcommunio" + } + ], + "2025-05-26": [ + { + "body": "*Rom 5:5*\nCáritas Dei diffúsa est in córdibus nostris per inhabitántem Spíritum ejus in nobis. (Allelúja, allelúja.)\n*Ps", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Philíppum Confessórem tuum Sanctórum tuórum glória sublimásti: concéde propítius; ut, cujus sollemnitát", + "id": "Oratio" + }, + { + "body": "*Pro S. Eleutherio*\nInfirmitátem nostram réspice, omnípotens Deus: et, quia pondus própriæ actiónis gravat, beáti N. Már", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 7:7-14*\nOptávi, et datus est mihi sensus: et invocávi, et venit in me spíritus sapiéntiæ: et", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Lam 1:13*\nDe excélso misit ignem in óssibus meis, et erudívit me. Allelúja\n*Ps 38:4*\nConcáluit cor ", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 118:32*\nViam mandatórum tuórum cucúrri, cum dilatásti cor meum. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, inténde placatus: et præsta; ut illo nos igne Spíritus Sanctus inflámmet, quo", + "id": "Secreta" + }, + { + "body": "*Pro S. Eleutherio*\nHóstias tibi, Dómine, beáti N. Mártyris tui atque Pontíficis dicátas méritis, benígnus assúme: et ad", + "id": "Commemoratio Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Ps 83:3*\nCor meum et caro mea exsultavérunt in Deum vivum. (Allelúja.)", + "id": "Communio" + }, + { + "body": "Cœléstibus, Dómine, pasti delíciis: quǽsumus; ut beáti Philippi Confessóris tui méritis et imitatióne, semper eadem, per", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Eleutherio*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, in", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-27": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiam tuam beáti Bedæ Confessóris tui atque Doctóris eruditióne claríficas: concéde propítius fámulis tuis", + "id": "Oratio" + }, + { + "body": "*Pro S. Joanne*\nDeus, qui nos beáti N. Mártyris tui atque Pontíficis ánnua sollemnitáte lætíficas: concéde propítius; ut", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Eccli 45:9*\nAmávit eum Dóminus, et ornávit eum: stolam glóriæ índuit eum.\n*Osee 14:6.*\nJustus germi", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Sancti Bedæ Confessóris tui atque Doctoris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et tuam ", + "id": "Secreta" + }, + { + "body": "*Pro S. Joanne*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto N. Mártyre tuo atque Pontífice, per éadem", + "id": "Commemoratio Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Beda Conféssor tuus et egrégius, quǽsumus, precátor accédat.\nPer D", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Joanne*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto N. Mártyre tuo atque Pontífice, coelé", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-28": [ + { + "body": "*Is 48:20*\nVocem jucunditátis annuntiáte, et audiátur, allelúja: annuntiáte usque ad extrémum terræ: liberávit Dóminus p", + "id": "Introitus" + }, + { + "body": "Deus, a quo bona cuncta procédunt, largíre supplícibus tuis: ut cogitémus, te inspiránte, quæ recta sunt; et, te guberná", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Augustini Episcopi Confessoris*\nDeus, qui Anglórum gentes, prædicatióne et miráculis beáti Augustíni Co", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Eph 4:7-13*\nFratres: Unicuíque nostrum data est grátia secúndum mensú", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. Surréxit Christus, et illúxit nobis, quos rédemit sánguine suo. Allelúja.\n*Joannes 16:28*\n℣. Exív", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 17:1-11*\nIn illo témpore: Sublevátis Jesus óculis in cœlum, dixi", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9; 65:20*\nBenedícite, gentes, Dóminum, Deum nostrum, et obaudíte vocem laudis ejus: qui pósuit ánimam meam ad v", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, fidélium preces cum oblatiónibus hostiárum: ut, per hæc piæ devotiónis offícia, ad cœléstem glóriam tra", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Augustini Episcopi Confessoris*\nSacrifícium tibi offérimus. Dómine, in sollemnitáte beáti Augustíni Pon", + "id": "Commemoratio Secreta" + }, + { + "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", + "id": "Prefatio" + }, + { + "body": "*Ps 95:2.*\nCantáte Dómino, allelúja: cantáte Dómino et benedícite nomen ejus: bene nuntiáte de die in diem salutáre ejus", + "id": "Communio" + }, + { + "body": "Tríbue nobis, Dómine, cœléstis mensæ virtúte satiátis: et desideráre, quæ recta sunt, et desideráta percípere.\nPer Domin", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Augustini Episcopi Confessoris*\nHóstia salutári refécti: te, Dómine, súpplices exorámus; ut eadem, beát", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-29": [ + { + "body": "*Acta 1:11*\nViri Galilǽi, quid admirámini aspiciéntes in cœlum? allelúja: quemádmodum vidístis eum ascendéntem in cœlum,", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui hodiérna die Unigénitum tuum, Redemptórem nostrum, ad cœlos ascendísse crédi", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostólorum\n*Act 1:1-11*\nPrimum quidem sermónem feci de ómnibus, o Theóphile, quæ cœpit Jesus facere et do", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ. Allelúja.\n*Ps 67:18-19*\n℣. Dóminus ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 16:14-20*\nIn illo témpore: Recumbéntibus úndecim discípulis, appárui", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ pro Fílii tui gloriósa Ascensióne deférimus: et concéde propítius; ut a præséntibus perícul", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nPsállite Dómino, qui ascéndit super cœlos cœlórum ad Oriéntem, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens et miséricors Deus: ut, quæ visibílibus mystériis suménda percépimus, invisíbili cons", + "id": "Postcommunio" + } + ], + "2025-05-30": [ + { + "body": "*Acta 1:11*\nViri Galilǽi, quid admirámini aspiciéntes in cœlum? allelúja: quemádmodum vidístis eum ascendéntem in cœlum,", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui hodiérna die Unigénitum tuum, Redemptórem nostrum, ad cœlos ascendísse crédi", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Felicis Papæ et Martyris*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti N. Mártyris tui natalícia có", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Actuum Apostólorum\n*Act 1:1-11*\nPrimum quidem sermónem feci de ómnibus, o Theóphile, quæ cœpit Jesus facere et do", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ. \n*Ps 67:18-19*\n℣. Dóminus in Sina in sancto, ascéndens", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 16:14-20*\nIn illo témpore: Recumbéntibus úndecim discípulis, appárui", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ pro Fílii tui gloriósa Ascensióne deférimus: et concéde propítius; ut a præséntibus perícul", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Felicis Papæ et Martyris*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus no", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nPsállite Dómino, qui ascéndit super cœlos cœlórum ad Oriéntem, allelúja.", + "id": "Communio" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens et miséricors Deus: ut, quæ visibílibus mystériis suménda percépimus, invisíbili cons", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Felicis Papæ et Martyris*\nDa, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-31": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Maríæ Vírginis Regínæ: de cuius solemnitáte gaudent ", + "id": "Introitus" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine: ut, qui solemnitátem beátæ Maríæ Vírginis Regínæ nostræ celebrámus; eius muníti præsídi", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Petronilla*\nExáudi nos, Deus, salutáris noster: ut, sicut de beátæ N. Vírginis tuæ festivitáte gaudémus", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapientiæ.\n*Eccli 24:5, 7, 9-11, 30-31*\nEgo ex ore Altíssimi prodívi, primogénita ante omnem creatúram; ego", + "id": "Lectio" + }, + { + "body": "Alleluia, alleluia.\n℣. Beáta es, Virgo María, quæ sub Cruce Dómini sustinuísti. Allelúia.\n℣. Nunc cum eo regnas in ætérn", + "id": "GradualeP" + }, + { + "body": "Sequentia sancti Evangelii secundum Lucam.\n*Luc 1:26-33*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitátem ", + "id": "Evangelium" + }, + { + "body": "Regáli ex progénie María exórta refúlget; cuius præscibus nos adiuvári, mente et spíritu devotíssime póscimus. (Allelúia", + "id": "Offertorium" + }, + { + "body": "Accipe, quǽsumus, Dómine, múnera lætántis Ecclésiæ, et, beátæ Vírginis Maríæ Regínæ suffragántibus méritis, ad nostræ sa", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Petronilla*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se mér", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "Regína mundi digníssima, María Virgo perpétua, intercéde pro nostra pace et salúte, quæ genuísti Christum Dóminum, Salva", + "id": "Communio" + }, + { + "body": "Celebrátis solémniis, Dómine, quæ pro sanctæ Maríæ Regínæ nostræ festivitáte (memória) perégimus: eius, quǽsumus, nobis ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Petronilla*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-01": [ + { + "body": "*Ps 26:7; 26:8; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te, allelúja: tibi dixit cor meum, quæsívi vultum tuum,", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus: fac nos tibi semper et devótam gérere voluntátem; et majestáti tuæ sincéro corde servíre.\nPe", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 4:7-11*\nCaríssimi: Estóte prudéntes et vigiláte in oratiónibus. Ante ómnia a", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 46:9*\n℣. Regnávit Dóminus super omnes gentes: Deus sedet super sedem sanctam suam. Allelúja.\n*Jo", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 15:26-27; 16:1-4*\nIn illo témpore: Dixit Jesus discípulis suis: C", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6.*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", + "id": "Offertorium" + }, + { + "body": "Sacrifícia nos, Dómine, immaculáta puríficent: et méntibus nostris supérnæ grátiæ dent vigórem.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Joannes 17:12-13; 17:15*\nPater, cum essem cum eis, ego servábam eos, quos dedísti mihi, allelúja: nunc autem ad te véni", + "id": "Communio" + }, + { + "body": "Repléti, Dómine, munéribus sacris: da, quǽsumus; ut in gratiárum semper actióne maneámus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-06-02": [ + { + "body": "*Ps 26:7; 26:8; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te, allelúja: tibi dixit cor meum, quæsívi vultum tuum,", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus: fac nos tibi semper et devótam gérere voluntátem; et majestáti tuæ sincéro corde servíre.\nPe", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Marcellini, Petri, atque Erasmi Martyrum*\nDeus, qui nos ánnua beatórum Mártyrum tuórum Marcellíni, Pet", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 4:7-11*\nCaríssimi: Estóte prudéntes et vigiláte in oratiónibus. Ante ómnia a", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:9*\n℣. Regnávit Dóminus super omnes gentes: Deus sedet super sedem sanctam suam. \n*Joannes 14:18*\n℣. Non vos relí", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 15:26-27; 16:1-4*\nIn illo témpore: Dixit Jesus discípulis suis: C", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6.*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", + "id": "Offertorium" + }, + { + "body": "Sacrifícia nos, Dómine, immaculáta puríficent: et méntibus nostris supérnæ grátiæ dent vigórem.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Marcellini, Petri, atque Erasmi Martyrum*\nHæc hóstia, quǽsumus, Dómine, quam sanctórum Martyrum tuórum", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Joannes 17:12-13; 17:15*\nPater, cum essem cum eis, ego servábam eos, quos dedísti mihi, allelúja: nunc autem ad te véni", + "id": "Communio" + }, + { + "body": "Repléti, Dómine, munéribus sacris: da, quǽsumus; ut in gratiárum semper actióne maneámus.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Marcellini, Petri, atque Erasmi Martyrum*\nSacro múnere satiáti, súpplices te, Dómine, deprecámur: ut, ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-03": [ + { + "body": "*Ps 26:7; 26:8; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te, allelúja: tibi dixit cor meum, quæsívi vultum tuum,", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus: fac nos tibi semper et devótam gérere voluntátem; et majestáti tuæ sincéro corde servíre.\nPe", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 4:7-11*\nCaríssimi: Estóte prudéntes et vigiláte in oratiónibus. Ante ómnia a", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:9*\n℣. Regnávit Dóminus super omnes gentes: Deus sedet super sedem sanctam suam. \n*Joannes 14:18*\n℣. Non vos relí", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 15:26-27; 16:1-4*\nIn illo témpore: Dixit Jesus discípulis suis: C", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6.*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", + "id": "Offertorium" + }, + { + "body": "Sacrifícia nos, Dómine, immaculáta puríficent: et méntibus nostris supérnæ grátiæ dent vigórem.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Joannes 17:12-13; 17:15*\nPater, cum essem cum eis, ego servábam eos, quos dedísti mihi, allelúja: nunc autem ad te véni", + "id": "Communio" + }, + { + "body": "Repléti, Dómine, munéribus sacris: da, quǽsumus; ut in gratiárum semper actióne maneámus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-06-04": [ + { + "body": "*Ps 68:10.*\nFactum est cor meum tamquam cera liquéscens in médio ventris mei: quóniam zelus domus tuæ comédit me. (Allel", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Francíscum, novi órdinis institutórem, orándi stúdio et pœniténtiæ amóre decorásti: da fámulis tuis in ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Sap 4:7-14*\nJustus, si morte præoccupátus fúerit, in refrigério erit. Senéctus enim venerábilis", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Ps 64:5*\nBeátus, quem elegísti et assumpsísti: inhabitábit in átriis tuis. Allelúja\n*Ps 111:9*\nDispé", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12: 35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi ve", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Da nobis, clementíssime Jesu: ut præclára beáti Francísci mérita recoléntes, eódem nos, ac ille, caritátis igne succénsi", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 30:20*\nQuam magna multitúdo dulcédinis tuæ, Dómine, quam abscondísti timéntibus te! (Allelúja.)", + "id": "Communio" + }, + { + "body": "Sacrosáncta sacrifícii, quǽsumus, Dómine, quod hódie in sollemnitáte beáti Francísci tuæ obtúlimus majestáti, grata semp", + "id": "Postcommunio" + } + ], + "2025-06-05": [ + { + "body": "*Is 65:19; 65:23*\nExsultábo in Jerúsalem et gaudébo in pópulo meo: et non audiétur in eo ultra vos fletus et vox clamóri", + "id": "Introitus" + }, + { + "body": "Deus, qui multitúdinem populórum, beáti Bonifátii Mártyris tui atque Pontíficis zelo, ad agnitiónem tui nóminis vocáre d", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:1-15*\nLaudémus viros gloriósos et paréntes nostros in generatióne sua. Multam glóriam ", + "id": "Lectio" + }, + { + "body": "Allelúja\n*Is 66:10; 66:14*\nLætámini cum Jerúsalem, et exsultáte in ea, omnes, qui dilígitis Dóminum. Allelúja.\n℣. Vidébi", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:1-12*\nIn illo témpore: Videns Jesus turbas, ascéndit in montem, ", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7; 15:8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Deum in conspéctu meo semper, quóniam a dext", + "id": "Offertorium" + }, + { + "body": "Super has hóstias. Dómine, quǽsumus, benedíctio copiósa descéndat: quæ et sanctificatiónem nostram misericórditer operát", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Apoc 3:21*\nQui vícerit, dabo ei sedére mecum in throno meo: sicut et ego vici et sedi cum Patre meo in throno ejus. (Al", + "id": "Communio" + }, + { + "body": "Sanctificáti, Dómine, salutári mystério: quǽsumus; ut nobis sancti Bonifátii Mártyris tui atque Pontíficis pia non desit", + "id": "Postcommunio" + } + ], + "2025-06-06": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Norbértum Confessórem tuum atque Pontíficem verbi tui præcónem exímium effecísti, et per eum Ecclésiam ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja\n*Ps 109:4*\nTu es sacérdos in ætérnum, secúndum órdinem Melchísedech. Allelúja.\n℣. Hic est sacérdos, q", + "id": "GradualeP" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos úbique lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Norbérto Confessóre", + "id": "Postcommunio" + } + ], + "2025-06-07": [ + { + "body": "*Ezek 36:23; 36:24; 36:25-26*\nCum sanctificátus fúero in vobis, congregábo vos de univérsis terris: et effúndam super vo", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut claritatis tuæ super nos splendor effúlgeat; et lux tuæ lucis corda eórum, qui per", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolorum.\n*Acts 19:1-8*\nIn diébus illis: Factum est, cum Apóllo esset Corínthi, ut Paulus, peragrátis s", + "id": "Lectio" + }, + { + "body": "Allelúja\n*Ps 106:1*\n℣. Confitémini Dómino, quóniam bonus: quóniam in sǽculum misericordia ejus.\n*Ps 116:1-2*\nLaudáte Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 14:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Si dilíg", + "id": "Evangelium" + }, + { + "body": "*Ps 103:30-31*\nEmítte Spíritum tuum, et creabúntur, et renovábis fáciem terræ: sit glória Dómini in sǽcula, allelúja.", + "id": "Offertorium" + }, + { + "body": "Múnera, quǽsumus, Dómine, obláta sanctífica: et corda nostra Sancti Spíritus illustratióne emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 7:37-39*\nUltimo festivitátis die dicébat Jesus: Qui in me credit, flúmina de ventre ejus fluent aquæ vivæ: hoc ", + "id": "Communio" + }, + { + "body": "Sancti Spíritus, Dómine, corda nostra mundet infúsio: et sui roris íntima aspersióne fecúndet.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-06-08": [ + { + "body": "*Sap 1:7.*\nSpíritus Dómini replévit orbem terrárum, allelúja: et hoc quod cóntinet ómnia, sciéntiam habet vocis, allelúj", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die corda fidélium Sancti Spíritus illustratióne docuísti: da nobis in eódem Spíritu recta sápere; et", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 2:1-11*\nCum compleréntur dies Pentecóstes, erant omnes discípuli pariter in eódem loco: ", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 103:30*\nEmítte Spíritum tuum, et creabúntur, et renovábis fáciem terræ. Allelúja. (Hic genuflect", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 14:23-31*\nIn illo témpore: Dixit Jesus discípulis suis: Si quis d", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nConfírma hoc, Deus, quod operátus es in nobis: a templo tuo, quod est in Jerúsalem, tibi ófferent reges mú", + "id": "Offertorium" + }, + { + "body": "Múnera, quǽsumus, Dómine, obláta sanctífica: et corda nostra Sancti Spíritus illustratióne emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Act 2:2; 2:4*\nFactus est repénte de cœlo sonus, tamquam adveniéntis spíritus veheméntis, ubi erant sedéntes, allelúja: ", + "id": "Communio" + }, + { + "body": "Sancti Spíritus, Dómine, corda nostra mundet infúsio: et sui roris íntima aspersióne fecúndet.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-06-09": [ + { + "body": "*Ps 80:17*\nCibávit eos ex ádipe fruménti, allelúja: et de petra, melle saturávit eos, allelúja, allelúja.\n*Ps 80:2*\nExsu", + "id": "Introitus" + }, + { + "body": "Deus, qui Apóstolis tuis Sanctum dedísti Spíritum: concéde plebi tuæ piæ petitiónis efféctum; ut, quibus dedísti fidem, ", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 10:34; 10:42-48*\nIn diébus illis: Apériens Petrus os suum, dixit: Viri fratres, nobis pr", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Acts 2:4*\nLoquebántur váriis linguis Apóstoli magnália Dei. Allelúja. (Hic genuflectitur)\n℣. Veni, ", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 3:16-21*\nIn illo témpore: Dixit Jesus Nicodémo: Sic Deus diléxit ", + "id": "Evangelium" + }, + { + "body": "*Ps 17:14 et 16*\nIntónuit de cœlo Dóminus, et Altíssimus dedit vocem suam: et apparuérunt fontes aquárum, allelúja.", + "id": "Offertorium" + }, + { + "body": "Propítius, Dómine, quǽsumus, hæc dona sanctífica: et, hóstiæ spiritális oblatióne suscépta, nosmetípsos tibi pérfice mun", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 14:26*\nSpíritus Sanctus docébit vos, allelúja: quæcúmque díxero vobis, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Adésto, quǽsumus, Dómine, pópulo tuo: et, quem mystériis cœléstibus imbuísti, ab hóstium furóre defénde.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-06-10": [ + { + "body": "*Esdr 2:36 2:37*\nAccípite jucunditátem glóriæ vestræ, allelúja: grátias agéntes Deo, allelúja: qui vos ad cœléstia regna", + "id": "Introitus" + }, + { + "body": "Adsit nobis, quǽsumus, Dómine, virtus Spíritus Sancti: quæ et corda nostra cleménter expúrget, et ab ómnibus tueátur adv", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 8:14-17*\nIn diébus illis: Cum audíssent Apóstoli, qui erant Jerosólymis, quod recepísset", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 14:26*\nSpíritus Sanctus docébit vos, quæcúmque díxero vobis. Allelúja. (Hic genuflectitur)\n℣. Ve", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 10:1-10*\nIn illo témpore: Dixit Jesus pharisǽis: Amen, amen, dico", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nPortas cœli aperuit Dóminus: et pluit illis manna, ut éderent: panem cœli dedit eis, panem Angelórum mandu", + "id": "Offertorium" + }, + { + "body": "Puríficet nos, quǽsumus. Dómine, múneris præséntis oblátio: et dignos sacra participatióne effíciat.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 15:26; 16:14*\nSpíritus qui a Patre procédit, allelúja: ille me clarificábit, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Mentes nostras, quǽsumus, Dómine, Spíritus Sanctus divínis réparet sacraméntis: quia ipse est remíssio ómnium peccatórum", + "id": "Postcommunio" + } + ], + "2025-06-11": [ + { + "body": "*Ps 67:8 67:9*\nDeus, dum egrederéris coram pópulo tuo, iter fáciens eis, hábitans in illis, allelúja: terra mota est, cœ", + "id": "Introitus" + }, + { + "body": "Mentes nostras, quǽsumus, Dómine, Paráclitus, qui a te procédit, illúminet: et indúcat in omnem, sicut tuus promísit Fíl", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Act 2:14-21.*\nIn diébus illis: Stans Petrus cum úndecim, levávit vocem suam, et locútus est e", + "id": "LectioL1" + }, + { + "body": "Alleluia.\n*Ps 32:6*\nVerbo Dómini cœli firmáti sunt, et Spíritu oris ejus omnis virtus eórum.\n\n##Gloria\nGlória in excélsi", + "id": "GradualeL1" + }, + { + "body": "Præsta, quǽsumus, omnípotens et miséricors Deus: ut Spíritus Sanctus advéniens, templum nos glóriæ suæ dignánter inhabit", + "id": "OratioL1" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 5:12-16*\nIn diébus illis: Per manus autem Apostolórum fiébant signa et prodígia multa in", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n℣. (Hic genuflectitur) Veni, Sancte Spíritus, reple tuórum corda fidélium: et tui amóris in eis igne", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 6:44-52*\nIn illo témpore: Dixit Jesus turbis Judæórum: Nemo potes", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accipe, quǽsumus, Dómine, munus oblátum: et dignánter operáre; ut, quod mystériis ágimus, piis efféctibus celebrámus.\nPe", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 14:27*\nPacem relínquo vobis, allelúja: pacem meam do vobis, allelúja, allelúja.", + "id": "Communio" + }, + { + "body": "Suméntes, Dómine, cœléstia sacraménta, quǽsumus cleméntiam tuam: ut quod temporáliter gérimus ætérnis gáudiis consequámu", + "id": "Postcommunio" + } + ], + "2025-06-12": [ + { + "body": "*Sap 1:7*\nSpíritus Dómini replévit orbem terrárum, allelúja: et hoc quod cóntinet ómnia, sciéntiam habet vocis, allelúja", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérna die corda fidélium Sancti Spíritus illustratióne docuísti: da nobis in eódem Spíritu recta sápere; et", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum\n*Acts 8:5-8*\nIn diébus illis: Philíppus descéndens in civitátem Samaríæ, prædicábat illis Chri", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 103:30*\n℣. Emítte Spíritum tuum, et creabúntur, et renovábis fáciem terræ. Allelúja. (Hic genuf", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 9:1-6*\nIn illo témpore: Convocátis Jesus duódecim Apóstolis, dedit illi", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nConfírma hoc, Deus, quod operátus es in nobis: a templo tuo, quod est in Jerúsalem, tibi ófferent reges mú", + "id": "Offertorium" + }, + { + "body": "Múnera, quǽsumus, Dómine, oblata sanctífica: et corda nostra Sancti Spíritus illustratióne emúnda.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Acts 2:2 2:4*\nFactus est repénte de cœlo sonus tamquam adveniéntis spíritus veheméntis, ubi erant sedéntes, allelúja: e", + "id": "Communio" + }, + { + "body": "Sancti Spíritus, Dómine, corda nostra mundet infúsio: et sui roris íntima aspersióne fecúndet.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-06-13": [ + { + "body": "*Ps 70:8 70:23*\nRepleátur os meum laude tua, allelúja: ut possim cantáre, allelúja: gaudébunt lábia mea, dum cantávero t", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, Ecclésiæ tuæ, miséricors Deus: ut, Sancto Spíritu congregáta, hostíli nullátenus incursióne turbétur.\nPer ", + "id": "Oratio" + }, + { + "body": "Léctio Joélis Prophétæ\n*Joël 2:23-24; 2:26-27*\nHæc dicit Dóminus Deus: Exsultáte, fílii Sion, et lætámini in Dómino, Deo", + "id": "Lectio" + }, + { + "body": "Allelúja, allelúja.\n*Ps 12:1*\nO quam bonus et suávis est, Dómine, Spíritus tuus in nobis! Allelúja. (Hic genuflectitur)\n", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 5:17-26*\nIn illo témpore: Factum est in una diérum, et Jesus sedébat do", + "id": "Evangelium" + }, + { + "body": "*Sap 145:2*\nLauda, ánima mea, Dóminum: laudábo Dóminum in vita mea: psallam Deo meo, quámdiu ero, allelúja.", + "id": "Offertorium" + }, + { + "body": "Sacrifícia, Dómine, tuis obláta conspéctibus, ignis ille divínus absúmat, qui discipulórum Christi, Fílii tui, per Spíri", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 14:18*\nNon vos relínquam órphanos: véniam ad vos íterum, allelúja: et gaudébit cor vestrum, allelúja.", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, sacri dona mystérii: humíliter deprecántes; ut, quæ in tui commemoratiónem nos fácere præcepísti, in ", + "id": "Postcommunio" + } + ], + "2025-06-14": [ + { + "body": "*Rom 5:5.*\nCáritas Dei diffúsa est in córdibus nostris, allelúja: per inhabitántem Spíritum ejus in nobis, allelúja, all", + "id": "Introitus" + }, + { + "body": "Méntibus nostris, quǽsumus, Dómine, Spíritum Sanctum benígnus infúnde: cujus et sapiéntia cónditi sumus, et providéntia ", + "id": "Oratio" + }, + { + "body": "Léctio Joélis Prophétæ\n*Joel 2:28-32*\nHæc dicit Dóminus Deus: Effúndam Spíritum meum super omnem carnem: et prophetábunt", + "id": "LectioL1" + }, + { + "body": "Allelúja.\n*Joannes 6:64*\nSpíritus est, qui vivíficat: caro autem non prodest quidquam.", + "id": "GradualeL1" + }, + { + "body": "Illo nos igne, quǽsumus, Dómine, Spíritus Sanctus inflámmet: quem Dóminus noster Jesus Christus misit in terram, et vólu", + "id": "OratioL1" + }, + { + "body": "Léctio libri Levítici\n*Lev 23:9-11; 23:15-17; 23:21*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: Lóquere fíl", + "id": "LectioL2" + }, + { + "body": "Allelúja.\n*Job 26:13*\nSpíritus ejus ornávit cœlos.", + "id": "GradualeL2" + }, + { + "body": "Deus, qui, ad animárum medélam, jejúnii devotióne castigári córpora præcepísti: concéde nobis propítius; et mente et cór", + "id": "OratioL2" + }, + { + "body": "Léctio libri Deuteronómii\n*Deut 26:1-3; 7-11.*\nIn diébus illis: Dixit Moyses fíliis Israël: Audi, Israël, quæ ego præcíp", + "id": "LectioL3" + }, + { + "body": "Allelúja.\n*Acts 2:1*\nCum compleréntur dies Pentecóstes, erant omnes páriter sedéntes.", + "id": "GradualeL3" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, salutáribus jejúniis erudíti, ab ómnibus étiam vítiis abstinéntes, propitiatiónem", + "id": "OratioL3" + }, + { + "body": "Léctio libri Levítici\n*Lev 26:3-12*\nIn diébus illis: Dixit Dóminus ad Móysen: Lóquere fíliis Israël, et dices ad eos: Si", + "id": "LectioL4" + }, + { + "body": "Allelúja.\n℣. (Hic genuflectitur) Veni, Sancte Spíritus, reple tuórum corda fidélium: et tui amóris in eis ignem accénde.", + "id": "GradualeL4" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: sic nos ab épulis carnálibus abstinére; ut a vítiis irruéntibus páriter jejunémus.\nPe", + "id": "OratioL4" + }, + { + "body": "Léctio Daniélis Prophétæ\n*Dan 3:47-51*\nIn diébus illis: Angelus Dómini descéndit cum Azaría et sóciis ejus in fornácem: ", + "id": "LectioL5" + }, + { + "body": "Allelúja.\n*Dan 3:52*\nBenedíctus es, Dómine, Deus patrum nostrórum, et laudábilis in sǽcula.", + "id": "GradualeL5" + }, + { + "body": "Deus, qui tribus púeris mitigásti flammas ígnium: concéde propítius; ut nos fámulos tuos non exúrat flamma vitiórum.\nPer", + "id": "OratioL5" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 5:1-5.*\nFratres: Justificáti ex fide, pacem habeámus ad Deum per Dó", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nLaudáte Dóminum, omnes gentes: et collaudáte eum, omnes pópuli.\n℣. Quóniam confirmáta est super nos miseric", + "id": "Graduale" + }, + { + "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 4:38-44*\nIn illo témpore: Surgens Jesus de synagóga, introívit in domum", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3.*\nDómine, Deus salútis meæ, in die clamávi et nocte coram te: intret orátio mea in conspéctu tuo, Dómine, all", + "id": "Offertorium" + }, + { + "body": "Ut accépta tibi sint, Dómine, nostra jejúnia: præsta nobis, quǽsumus; hujus múnere sacraménti purificátum tibi pectus of", + "id": "Secreta" + }, + { + "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", + "id": "Prefatio" + }, + { + "body": "*Joannes 3:8*\nSpíritus, ubi vult, spirat: et vocem ejus audis, allelúja, allelúja: sed nescis, unde véniat aut quo vadat", + "id": "Communio" + }, + { + "body": "Prǽbeant nobis, Dómine, divínum tua sancta fervórem: quo eórum páriter et actu delectémur et fructu.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-06-15": [ + { + "body": "*Tob 12:6*\nBenedícta sit sancta Trínitas atque indivísa Unitas: confitébimur ei, quia fecit nobíscum misericórdiam suam.", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui dedísti fámulis tuis in confessióne veræ fídei, ætérnæ Trinitátis glóriam agnóscere, et ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 11:33-36.*\nO altitúdo divitiárum sapiéntiæ et sciéntiæ Dei: quam in", + "id": "Lectio" + }, + { + "body": "*Dan 3:55-56*\nBenedíctus es, Dómine, qui intuéris abýssos, et sedes super Chérubim,\n℣. Benedíctus es, Dómine, in firmamé", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 28:18-20*\nIn illo témpore: Dixit Jesus discípulis suis: Data est mi", + "id": "Evangelium" + }, + { + "body": "*Tob 12:6.*\nBenedíctus sit Deus Pater, unigenitúsque Dei Fílius, Sanctus quoque Spíritus: quia fecit nobíscum misericórd", + "id": "Offertorium" + }, + { + "body": "Sanctífica, quǽsumus, Dómine, Deus noster, per tui sancti nóminis invocatiónem, hujus oblatiónis hóstiam: et per eam nos", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Tob 12:6*\nBenedícimus Deum cœli et coram ómnibus vivéntibus confitébimur ei: quia fecit nobíscum misericórdiam suam.", + "id": "Communio" + }, + { + "body": "Profíciat nobis ad salútem córporis et ánimæ, Dómine, Deus noster, hujus sacraménti suscéptio: et sempitérnæ sanctæ Trin", + "id": "Postcommunio" + } + ], + "2025-06-16": [ + { + "body": "*Ps 12:6*\nDómine, in tua misericórdia sperávi: exsultávit cor meum in salutári tuo: cantábo Dómino, qui bona tríbuit mih", + "id": "Introitus" + }, + { + "body": "Deus, in te sperántium fortitúdo, adésto propítius invocatiónibus nostris: et, quia sine te nihil potest mortális infírm", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joánni Apóstoli\n*1 Joannnes 4:8-21*\nCaríssimi: Deus cáritas est. In hoc appáruit cáritas Dei in no", + "id": "Lectio" + }, + { + "body": "*Ps 40:5; 40:2*\nEgo dixi: Dómine, miserére mei: sana ánimam meam, quia peccávi tibi.\n℣. Beátus, qui intéllegit super egé", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 6:36-42*\nIn illo témpore: Dixit Jesus discípulis suis: Estóte misericór", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4.*\nInténde voci orationis meæ, Rex meus et Deus meus: quóniam ad te orábo, Dómine.", + "id": "Offertorium" + }, + { + "body": "Hóstias nostras, quǽsumus, Dómine, tibi dicátas placátus assúme: et ad perpétuum nobis tríbue proveníre subsídium.\nPer D", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nNarrábo ómnia mirabília tua: lætábor et exsultábo in te: psallam nómini tuo, Altíssime.", + "id": "Communio" + }, + { + "body": "Tantis, Dómine, repléti munéribus: præsta, quǽsumus; ut et salutária dona capiámus, et a tua numquam laude cessémus.\nPer", + "id": "Postcommunio" + } + ], + "2025-06-17": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Gregórium Confessórem tuum atque Pontíficem pastoráli sollicitúdine, et páuperum miseratióne claréscere", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto N. Confessóre tuo a", + "id": "Postcommunio" + } + ], + "2025-06-18": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiam tuam beáti Ephræm Confessóris tui et Doctoris mira eruditióne et præcláris vitæ méritis illustráre v", + "id": "Oratio" + }, + { + "body": "*SS. Marci et Marcelliani Martyrum*\nPræsta, quǽsumus, omnípotens Deus: ut, qui sanctórum Mártyrum tuórum Marci et Marcel", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Sancti Ephræm Confessóris tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et tua", + "id": "Secreta" + }, + { + "body": "*Pro SS. Marco et Marcelliano Martyribus*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedéntibus sanctis Martýribus", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Ephræm Conféssor tuus et Doctor egrégius, quǽsumus, precátor accéd", + "id": "Postcommunio" + }, + { + "body": "*Pro SS. Marco et Marcelliano Martyribus*\nSalutáris tui, Dómine, múnere satiáti, súpplices exorámus: ut, cujus lætámur g", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-19": [ + { + "body": "*Ps 80:17.*\nCibávit eos ex ádipe fruménti, allelúja: et de petra, melle saturávit eos, allelúja, allelúja, allelúja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Deus, qui nobis sub Sacraménto mirábili passiónis tuæ memóriam reliquísti: tríbue, quǽsumus, ita nos Córporis et Sánguin", + "id": "Oratio" + }, + { + "body": "Léctio Epistolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 11:23-29*\nFratres: Ego enim accépi a Dómino quod et trádidi vo", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno,\n℣. Aperis tu manum tuam: ", + "id": "Graduale" + }, + { + "body": "*Thomæ de Aquino. (infra octavam ad libitum Celebrantis omitti potest, juxta Rubricas.)*\nLauda, Sion, Salvatórem,\nlauda ", + "id": "Sequentia" + }, + { + "body": "Sequéntia sancti Evangéli secúndum Joánnem.\n*Joann 6:56-59*\nIn illo témpore: Dixit Jesus turbis Judæórum: Caro mea vere ", + "id": "Evangelium" + }, + { + "body": "*Levit 21:6*\nSacerdótes Dómini incénsum et panes ófferunt Deo: et ideo sancti erunt Deo suo, et non pólluent nomen ejus,", + "id": "Offertorium" + }, + { + "body": "Ecclésiæ tuæ, quǽsumus, Dómine, unitátis et pacis propítius dona concéde: quæ sub oblátis munéribus mýstice designántur.", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*1 Cor 11:26-27*\nQuotiescúmque manducábitis panem hunc et cálicem bibétis, mortem Dómini annuntiábitis, donec véniat: it", + "id": "Communio" + }, + { + "body": "Fac nos, quǽsumus, Dómine, divinitátis tuæ sempitérna fruitióne repléri: quam pretiósi Corporis et Sanguinis tui tempora", + "id": "Postcommunio" + } + ], + "2025-06-20": [ + { + "body": "*Ps 12:6*\nDómine, in tua misericórdia sperávi: exsultávit cor meum in salutári tuo: cantábo Dómino, qui bona tríbuit mih", + "id": "Introitus" + }, + { + "body": "Deus, in te sperántium fortitúdo, adésto propítius invocatiónibus nostris: et, quia sine te nihil potest mortális infírm", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Silverii Papæ et Martyri*\nGregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joánni Apóstoli\n*1 Joannnes 4:8-21*\nCaríssimi: Deus cáritas est. In hoc appáruit cáritas Dei in no", + "id": "Lectio" + }, + { + "body": "*Ps 40:5; 40:2*\nEgo dixi: Dómine, miserére mei: sana ánimam meam, quia peccávi tibi.\n℣. Beátus, qui intéllegit super egé", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 6:36-42*\nIn illo témpore: Dixit Jesus discípulis suis: Estóte misericór", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4.*\nInténde voci orationis meæ, Rex meus et Deus meus: quóniam ad te orábo, Dómine.", + "id": "Offertorium" + }, + { + "body": "Hóstias nostras, quǽsumus, Dómine, tibi dicátas placátus assúme: et ad perpétuum nobis tríbue proveníre subsídium.\nPer D", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Silverii Papæ et Martyri*\nOblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nNarrábo ómnia mirabília tua: lætábor et exsultábo in te: psallam nómini tuo, Altíssime.", + "id": "Communio" + }, + { + "body": "Tantis, Dómine, repléti munéribus: præsta, quǽsumus; ut et salutária dona capiámus, et a tua numquam laude cessémus.\nPer", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Silverii Papæ et Martyri*\nRefectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésia", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-21": [ + { + "body": "*Ps 8:6*\nMinuísti eum paulo minus ab Angelis: glória et honóre coronásti eum.\n*Ps 148:2*\nLaudáte Dóminum, omnes Angeli e", + "id": "Introitus" + }, + { + "body": "Cœléstium donórum distribútor, Deus, qui in angélico júvene Aloísio miram vitæ innocéntiam pari cum pœniténtia sociásti:", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 31:8-11*\nBeátus vir, qui inventus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 70:5-6*\nDómine, spes mea a juventúte mea: in te confirmátus sum ex útero: de ventre matris meæ tu es protéctor meus.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 22:29-40*\nIn illo témpore: Respóndens Jesus, ait sadducæis: Erráti", + "id": "Evangelium" + }, + { + "body": "*Ps 23:3-4*\nQuis ascéndet in montem Dómini, aut quis stabit in loco sancto ejus? Innocens mánibus, et mundo corde.", + "id": "Offertorium" + }, + { + "body": "Cœlésti convívio fac nos, Dómine, nuptiáli veste indútos accúmbere: quam beáti Aloísii pia præparátio et juges lácrimæ i", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 77:24-25*\nPanem cœli dedit eis: panem Angelórum manducávit homo.", + "id": "Communio" + }, + { + "body": "Angelórum esca nutrítos, angélicis étiam, Dómine, da móribus vívere: et ejus, quem hódie cólimus, exémplo in gratiárum s", + "id": "Postcommunio" + } + ], + "2025-06-22": [ + { + "body": "*Ps 17:19-20*\nFactus est Dóminus protéctor meus, et edúxit me in latitúdinem: salvum me fecit, quóniam vóluit me.\n*Ps 17", + "id": "Introitus" + }, + { + "body": "Sancti nóminis tui, Dómine, timórem páriter et amórem fac nos habére perpétuum: quia numquam tua gubernatióne destítuis,", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 John 3:13-18*\nCaríssimi: Nolíte mirári, si odit vos mundus. Nos scimus, quónia", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nAd Dóminum, cum tribulárer, clamávi, et exaudívit me.\n℣. Dómine, libera ánimam meam a lábiis iníquis, et a ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 14:16-24*\nIn illo témpore: Dixit Jesus pharisǽis parábolam hanc: Homo q", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nDómine, convértere, et éripe ánimam meam: salvum me fac propter misericórdiam tuam.", + "id": "Offertorium" + }, + { + "body": "Oblátio nos, Dómine, tuo nómini dicánda puríficet: et de die in diem ad cœléstis vitæ tránsferat actiónem.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 12:6*\nCantábo Dómino, qui bona tríbuit mihi: et psallam nómini Dómini altíssimi.", + "id": "Communio" + }, + { + "body": "Sumptis munéribus sacris, quǽsumus, Dómine: ut cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum", + "id": "Postcommunio" + } + ], + "2025-06-23": [ + { + "body": "*Luc 1:13; 1:15; 1:14*\nNe tímeas, Zacharía, exaudíta est orátio tua: et Elísabeth uxor tua páriet tibi fílium, et vocábi", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut família tua per viam salútis incédat; et, beáti Joánnis Præcursóris hortaménta sec", + "id": "Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ.\n*Jer 1:4-10*\nIn diébus illis: Factum est verbum Dómini ad me, dicens: Priúsquam te formárem in ", + "id": "Lectio" + }, + { + "body": "*Joann 1:6-7*\nFuit homo missus a Deo, cui nomen erat Joánnes.\n℣. Hic venit, ut testimónium perhibéret de lúmine, paráre ", + "id": "Graduale" + }, + { + "body": "Initium ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:5-17*\nFuit in diébus Heródis, regis Judææ, sacérdos quidam nómine Zach", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", + "id": "Offertorium" + }, + { + "body": "Múnera, Dómine, obláta sanctífica: et, intercedénte beáto Joánne Baptista, nos per hæc a peccatórum nostrórum máculis em", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 20:6*\nMagna est glória ejus in salutári tuo: glóriam et magnum decórem ímpones super eum, Dómine.", + "id": "Communio" + }, + { + "body": "Beáti Joánnis Baptístæ nos, Dómine, præclára comitétur orátio: et, quem ventúrum esse prædíxit, poscat nobis fore placát", + "id": "Postcommunio" + } + ], + "2025-06-24": [ + { + "body": "*Isa 49:1; 49:2*\nDe ventre matris meæ vocávit me Dóminus in nómine meo: et pósuit os meum ut gládium acútum: sub tegumén", + "id": "Introitus" + }, + { + "body": "Deus, qui præséntem diem honorábilem nobis in beáti Joánnis nativitáte fecísti: da pópulis tuis spirituálium grátiam gau", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Isa 49:1-3; 49:5-7*\nAudíte, ínsulæ, et atténdite, pópuli, de longe: Dóminus ab útero vocavit me,", + "id": "Lectio" + }, + { + "body": "*Jer 1:5; 1:9*\nPriusquam te formárem in útero, novi te: et ántequam exíres de ventre, santificávi te.\n℣. Misit Dóminus m", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:57-68*\nElísabeth implétum est tempus pariéndi, et péperit fílium. Et ", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, munéribus altária cumulámus: illíus nativitátem honóre débito celebrántes, qui Salvatórem mundi et cécinit ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 1:76*\nTu, puer, Propheta Altíssimi vocaberis: præíbis enim ante fáciem Dómini paráre vias ejus.", + "id": "Communio" + }, + { + "body": "Sumat Ecclésia tua, Deus, beáti Joánnis Baptístæ generatióne lætítiam: per quem suæ regeneratiónis cognóvit auctórem, Dó", + "id": "Postcommunio" + } + ], + "2025-06-25": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui infirmitáti nostræ ad teréndam salútis viam in Sanctis tuis exémplum et præsídium collocásti: da nobis, ita be", + "id": "Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus Guliélmus Abbas, quǽsumus, in salútem nobis proveníre depóscat.\nP", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus Guliélmus Abbas, pro nobis intercedéndo: ut et conversatióni", + "id": "Postcommunio" + } + ], + "2025-06-26": [ + { + "body": "*Ps 33:20-21*\nMultæ tribulatiónes justórum, et de his ómnibus liberávit eos Dóminus: Dóminus custódit ómnia ossa eórum: ", + "id": "Introitus" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut nos gemináta lætítia hodiérnæ festivitátis excípiat, quæ de beatórum Joánnis et Pauli glor", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:10-15*\nHi viri misericórdiæ sunt, quorum pietátes non defuérunt: cum semine eórum pérm", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:1-8*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ferm", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nGloriabúntur in te omnes, qui díligunt nomen tuum, quóniam tu, Dómine, benedíces justo: Dómine, ut scuto bo", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, sanctórum Martyrum tuórum Joánnis et Pauli dicátas méritis, benígnus assúme: et ad perpétuum nobis", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentavit eos: tamquam aurum in fornáce probávit eos, et quas", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, sanctórum Martyrum tuórum Joánnis et Pauli sollémnia celebrántes, sacraménta cœléstia: præsta, quǽsum", + "id": "Postcommunio" + } + ], + "2025-06-27": [ + { + "body": "*Ps 32:11; 32:19*\nCogitatiónes Cordis ejus in generatióne et generatiónem: ut éruat a morte ánimas eórum et alat eos in ", + "id": "Introitus" + }, + { + "body": "Deus, qui nobis in Corde Fílii tui, nostris vulneráto peccátis, infinítos dilectiónis thesáuros misericórditer largíri d", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Eph 3:8-12, 14-19*\nFratres: Mihi, ómnium sanctórum mínimo, data est g", + "id": "Lectio" + }, + { + "body": "*Ps 24:8-9*\nDulcis et rectus Dóminus: propter hoc legem dabit delinquéntibus in via.\n℣. Díriget mansúetos in judício, do", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 19:31-37*\nIn illo témpore: Judǽi - quóniam Parascéve erat, - ut ", + "id": "Evangelium" + }, + { + "body": "*Ps 68:21*\nImpropérium exspectávi Cor meum et misériam: et sustínui, qui simul mecum contristarétur, et non fuit: consol", + "id": "Offertorium" + }, + { + "body": "Réspice, quǽsumus, Dómine, ad ineffábilem Cordis dilécti Fílii tui caritátem: ut quod offérimus sit tibi munus accéptum ", + "id": "Secreta" + }, + { + "body": "*de sacratissimo Cordis Jesu*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dóm", + "id": "Prefatio" + }, + { + "body": "*Joannes 19:34*\nUnus mílitum láncea latus ejus apéruit, et contínuo exívit sanguis et aqua.", + "id": "Communio" + }, + { + "body": "Prǽbeant nobis, Dómine Jesu, divínum tua sancta fervórem: quo dulcíssimi Cordis tui suavitáte percépta; discámus terréna", + "id": "Postcommunio" + } + ], + "2025-06-28": [ + { + "body": "*Joannes 21:18-19*\nDicit Dóminus Petro: Cum esses júnior, cingébas te et ambulábas, ubi volébas: cum autem senúeris, ext", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut nullis nos permíttas perturbatiónibus cóncuti; quos in apostólicæ confessiónis pet", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum.\n*Act 3:1-10.*\nIn diébus illis: Petrus et Joánnes ascendébant in templum ad horam oratiónis no", + "id": "Lectio" + }, + { + "body": "*Ps 18:5; 18:2*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.\n℣. Cœli enárrant glóriam Dei: e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 21:15-10*\nIn illo témpore: Dixit Jesus Simóni Petro: Simon Joánn", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", + "id": "Offertorium" + }, + { + "body": "Munus pópuli tui, quǽsumus, Dómine, apostólica intercessióne sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nP", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joannes 21:15; 21:17*\nSimon Joánnis, díligis me plus his? Dómine, tu ómnia nosti: tu scis, Dómine, quia amo te.", + "id": "Communio" + }, + { + "body": "Quos cœlésti, Dómine, aliménto satiásti: apostólicis intercessiónibus ab omni adversitáte custódi.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-06-29": [ + { + "body": "*Acts 12:11*\nNunc scio vere, quia misit Dóminus Angelum suum: et erípuit me de manu Heródis et de omni exspectatióne ple", + "id": "Introitus" + }, + { + "body": "Deus, qui hodiérnam diem Apostolórum tuórum Petri et Pauli martýrio consecrásti: da Ecclésiæ tuæ, eórum in ómnibus sequi", + "id": "Oratio" + }, + { + "body": "Léctio Actuum Apostolórum.\n*Act 12:1-11*\nIn diébus illis: Misit Heródes rex manus, ut afflígeret quosdam de ecclésia. Oc", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro pátribus tuis nati ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philippi,", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine, in omni progénie et genera", + "id": "Offertorium" + }, + { + "body": "Hóstias, Dómine, quas nómini tuo sacrándas offérimus, apostólica prosequátur orátio: per quam nos expiári tríbuas et def", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, ei super hanc petram ædificabo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Quos cœlésti, Dómine, aliménto satiásti: apostólicis intercessiónibus ab omni adversitáte custódi.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-06-30": [ + { + "body": "*2 Tim 1:12*\nScio, cui crédidi, et certus sum, quia potens est depósitum meum servare in illum diem, justus judex.\n*Ps 1", + "id": "Introitus" + }, + { + "body": "Deus, qui multitúdinem géntium beáti Pauli Apóstoli prædicatióne docuísti: da nobis, quǽsumus; ut, cujus natalícia cólim", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas\n*Gal 1:11-20*\nFratres: Notum vobis facio Evangélium, quod evangelizátum ", + "id": "Lectio" + }, + { + "body": "*Gal 2:8-9*\nQui operátus est Petro in apostolátum, operátus est et mihi inter gentes: et cognovérunt grátiam Dei, quæ da", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:16-22*\nIn illo témpore: Dixit Jesus discípulis suis: Ecce, ego m", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", + "id": "Offertorium" + }, + { + "body": "Apóstoli tui Pauli précibus, Dómine, plebis tuæ dona sanctífica: ut, quæ tibi tuo grata sunt institúto, gratióra fiant p", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28-29*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis et vitam ætér", + "id": "Communio" + }, + { + "body": "Percéptis, Dómine, sacraméntis: beáto Paulo Apóstolo tuo interveniénte, deprecámur; ut, quæ pro illíus celebráta sunt gl", + "id": "Postcommunio" + } + ], + "2025-07-01": [ + { + "body": "*Apoc 5:9-10*\nRedemísti nos, Dómine, in sánguine tuo, ex omni tribu et lingua et pópulo et natióne: et fecísti nos Deo n", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui unigénitum Fílium tuum mundi Redemptórem constituísti, ac ejus Sánguine placári voluísti", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos.\n*Hebr 9:11-15*\nFratres: Christus assístens Póntifex futurórum bonórum, ", + "id": "Lectio" + }, + { + "body": "*1 Joann 5:6; 5:7-8*\nHic est, qui venit per aquam et sánguinem, Jesus Christus: non in aqua solum, sed in aqua et sángui", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 19:30-35*\nIn illo témpore: Cum accepísset Jesus acétum, dixit: Con", + "id": "Evangelium" + }, + { + "body": "*1 Cor 10:16*\nCalix benedictiónis, cui benedícimus, nonne communicátio sánguinis Christi est? et panis, quem frángimus, ", + "id": "Offertorium" + }, + { + "body": "Per hæc divína mystéria, ad novi, quǽsumus, Testaménti mediatórem Jesum accedámus: et super altária tua, Dómine virtútum", + "id": "Secreta" + }, + { + "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", + "id": "Prefatio" + }, + { + "body": "*Hebr 9:28*\nChristus semel oblátus est ad multórum exhauriénda peccáta: secúndo sine peccáto apparébit exspectántibus se", + "id": "Communio" + }, + { + "body": "Ad sacram, Dómine, mensam admíssi, háusimus aquas in gáudio de fóntibus Salvatóris: sanguis ejus fiat nobis, quǽsumus, f", + "id": "Postcommunio" + } + ], + "2025-07-02": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cælum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Fámulis tuis, quǽsumus, Dómine, cœléstis grátiæ munus impertíre: ut, quibus beátæ Vírginis partus éxstitit salútis exórd", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Processi et Martiniani*\nDeus, qui nos sanctórum Mártyrum tuórum Procéssi et Martiniáni gloriósis confe", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Cant 2:8-14*\nEcce, iste venit sáliens in móntibus, transíliens colles; símilis est diléctus meu", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:39-47*\nIn illo témpore: Exsúrgens María ábiit in montána cum festina", + "id": "Evangelium" + }, + { + "body": "Beáta es, Virgo María, quæ ómnium portásti Creatórem: genuísti, qui te fecit, et in ætérnum pérmanes Virgo.", + "id": "Offertorium" + }, + { + "body": "Unigéniti tui, Dómine, nobis succúrrat humánitas: ut, qui, natus de Vírgine, Matris integritátem non mínuit, sed sacrávi", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Processi et Martiniani*\nSúscipe, Dómine, preces et múnera: quæ ut tuo sint digna conspéctu. Sanctórum ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, celebritátis ánnuæ votíva sacraménta: præsta, quǽsumus; ut et temporális vitæ nobis remédia prǽbeant ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Processi et Martiniani*\nCórporis sacri et pretiósi Sánguinis repléti libámine, quǽsumus, Dómine, Deus ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-03": [ + { + "body": "*Malach 2:6*\nLex veritátis fuit in ore ejus, et iníquitas non est invénta in lábiis ejus: in pace et in æquitáte ambuláv", + "id": "Introitus" + }, + { + "body": "Deus, qui beáto Irenǽo Mártyri tuo atque Pontifici tribuísti, ut et veritate doctrínæ expugnáret hæreses, et pacem Ecclé", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 3:14-17; 4:1-5*\nCaríssime: Permane in iis, quæ didicísti et cré", + "id": "Lectio" + }, + { + "body": "*Ps 121:8*\nPropter fratres meos et próximos meos loquébar pacem de te.\n*Ps 36:37*\nCustódi innocéntiam et vide æquitátem:", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:28-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timé", + "id": "Evangelium" + }, + { + "body": "*Eccli 24:44*\nDoctrínam quasi ante lucánum illúmino ómnibus, et enarrábo illam usque ad longínquum.", + "id": "Offertorium" + }, + { + "body": "Deus, qui credéntes in te pópulos nullis sinis cóncuti terróribus: dignáre preces et hóstias dicátæ tibi plebis suscíper", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Eccli 24:47*\nVidéte, quóniam non soli mihi laborávi, sed ómnibus exquiréntibus veritátem.", + "id": "Communio" + }, + { + "body": "Deus, auctor pacis et amátor, quem nosse vívere, cui servíre regnáre est: prótege ab ómnibus impugnatiónibus súpplices t", + "id": "Postcommunio" + } + ], + "2025-07-04": [ + { + "body": "*Ps. 24:16; 24:18*\nRéspice in me et miserére mei, Dómine: quóniam únicus et pauper sum ego: vide humilitátem meam et lab", + "id": "Introitus" + }, + { + "body": "Protéctor in te sperántium, Deus, sine quo nihil est válidum, nihil sanctum: multíplica super nos misericórdiam tuam; ut", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet. 5:6-11*\nCaríssimi: Humiliámini sub poténti manu Dei, ut vos exáltet in témp", + "id": "Lectio" + }, + { + "body": "*Ps. 54:23; 54:17; 54:19*\nJacta cogitátum tuum in Dómino: et ipse te enútriet.\n℣. Dum clamárem ad Dóminum, exaudívit voc", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 15:1-10*\nIn illo témpore: Erant appropinquántes ad Jesum publicáni et p", + "id": "Evangelium" + }, + { + "body": "*Ps. 9:11-12 9:13*\nSperent in te omnes, qui novérunt nomen tuum, Dómine: quóniam non derelínquis quæréntes te: psállite ", + "id": "Offertorium" + }, + { + "body": "Réspice, Dómine, múnera supplicántis Ecclésiæ: et salúti credéntium perpétua sanctificatióne suménda concéde.\nPer Dominu", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 15:10.*\nDico vobis: gáudium est Angelis Dei super uno peccatóre pœniténtiam agénte.", + "id": "Communio" + }, + { + "body": "Sancta tua nos, Dómine, sumpta vivíficent: et misericórdiæ sempitérnæ prǽparent expiátos.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-07-05": [ + { + "body": "*1 Cor 2:4.*\nSermo meus et prædicátio mea non in persuasibílibus humánæ sapiéntiæ verbis, sed in ostensióne spíritus et ", + "id": "Introitus" + }, + { + "body": "Fac nos, Dómine Deus, supereminéntem Jesu Christi sciéntiam, spíritu Pauli Apóstoli, edíscere: qua beátus Antónius María", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*1. Tim 4:8-16.*\nCaríssime: Píetas ad ómnia utilis est: promissiónem ", + "id": "Lectio" + }, + { + "body": "*Philipp 1:8-9*\nTestis mihi est Deus, quo modo cúpiam omnes vos in viscéribus Jesu Christi. Et hoc oro, ut cáritas vestr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 10:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Quisquis non", + "id": "Evangelium" + }, + { + "body": "*Ps 137:1-2*\nIn conspéctu Angelórum psallam tibi: adorábo ad templum sanctum tuum, et confitébor nómini tuo.", + "id": "Offertorium" + }, + { + "body": "Ad mensam cœléstis convívii fac nos, Dómine, eam mentis et córporis puritátem afférre, qua beátus Antónius María, hanc s", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Philipp 3:17*\nImitatóres mei estóte, fratres, et observáte eos, qui ita ámbulant, sicut habétis formam nostram.", + "id": "Communio" + }, + { + "body": "Cœlésti dape, qua pasti sumus, Dómine Jesu Christe, eo corda nostra caritátis igne flamméscant: quo beátus Antónius Marí", + "id": "Postcommunio" + } + ], + "2025-07-06": [ + { + "body": "*Ps 26:1; 26:2*\nDóminus illuminátio mea et salus mea, quem timebo? Dóminus defensor vitæ meæ, a quo trepidábo? qui tríbu", + "id": "Introitus" + }, + { + "body": "Da nobis, quǽsumus, Dómine: ut et mundi cursus pacífice nobis tuo órdine dirigátur; et Ecclésia tua tranquílla devotióne", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:18-23*\nFratres: Exístimo, quod non sunt condígnæ passiónes hujus ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 5:1-11*\nIn illo témpore: Cum turbæ irrúerent in Jesum, ut audírent verb", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nIllúmina óculos meos, ne umquam obdórmiam in morte: ne quando dicat inimícus meus: Præválui advérsus eum.", + "id": "Offertorium" + }, + { + "body": "Oblatiónibus nostris, quǽsumus, Dómine, placáre suscéptis: et ad te nostras étiam rebélles compélle propítius voluntátes", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 17:3*\nDóminus firmaméntum meum, et refúgium meum, et liberátor meus: Deus meus, adjútor meus.", + "id": "Communio" + }, + { + "body": "Mystéria nos, Dómine, quǽsumus, sumpta puríficent: et suo múnere tueántur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-07-07": [ + { + "body": "*Ps 131:9-10*\nSacerdótes tui, Dómine, índuant justítiam, et sancti tui exsúltent: propter David servum tuum, non avértas", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui Slavóniæ gentes per beátos Confessóris tuos atque Pontífices Cyríllum et Methódium ad ag", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos\n*Hebr 7:23-27*\nFratres: Plures facti sunt sacerdótes, idcírco quod morte", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\nSacerdótes ejus índuam salutári: et sancti ejus exsultatióne exsultábunt.\n℣. Illuc prodúcam cornu David: ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et álios septuagínta duos:", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nMirábilis Deus in Sanctis suis: Deus Israël, ipse dabit virtútem et fortitúdinem plebi suæ: benedíctus Deus.", + "id": "Offertorium" + }, + { + "body": "Preces nostras, quǽsumus, Dómine, et tuórum réspice oblatiónes fidélium: ut tibi gratæ sint in tuórum festivitáte commem", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 10:27*\nQuod dico vobis in tenebris, dícite in lúmine, dicit Dóminus: et quod in aure audítis, prædicáte super tect", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui nobis múnera dignáris præbére cœléstia, intercedéntibus sanctis tuis Cyríllo et Methó", + "id": "Postcommunio" + } + ], + "2025-07-08": [ + { + "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", + "id": "Introitus" + }, + { + "body": "Clementíssime Deus, qui beátam Elisabeth regínam, inter céteras egrégias dotes, béllici furóris sedándi prærogatíva deco", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2025-07-09": [ + { + "body": "*Ps 26:1; 26:2*\nDóminus illuminátio mea et salus mea, quem timebo? Dóminus defensor vitæ meæ, a quo trepidábo? qui tríbu", + "id": "Introitus" + }, + { + "body": "Da nobis, quǽsumus, Dómine: ut et mundi cursus pacífice nobis tuo órdine dirigátur; et Ecclésia tua tranquílla devotióne", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:18-23*\nFratres: Exístimo, quod non sunt condígnæ passiónes hujus ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 5:1-11*\nIn illo témpore: Cum turbæ irrúerent in Jesum, ut audírent verb", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nIllúmina óculos meos, ne umquam obdórmiam in morte: ne quando dicat inimícus meus: Præválui advérsus eum.", + "id": "Offertorium" + }, + { + "body": "Oblatiónibus nostris, quǽsumus, Dómine, placáre suscéptis: et ad te nostras étiam rebélles compélle propítius voluntátes", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 17:3*\nDóminus firmaméntum meum, et refúgium meum, et liberátor meus: Deus meus, adjútor meus.", + "id": "Communio" + }, + { + "body": "Mystéria nos, Dómine, quǽsumus, sumpta puríficent: et suo múnere tueántur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-07-10": [ + { + "body": "*Ps 112:1; 112:9*\nLaudáte, púeri, Dóminum, laudáte nomen Dómini: qui habitáre facit stérilem in domo, matrem filiórum læ", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui gloriósos Mártyres fortes in sua confessióne cognóvimus, pios apud te in nost", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Prov 31:10-31.*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confí", + "id": "Lectio" + }, + { + "body": "*Ps 123:7-8.*\nAnima nostra, sicut passer, erépta est de láqueo venántium.\n℣. Láqueus contrítus est, et nos liberáti sumu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 12:46-50.*\nIn illo témpore: Loquente Jesu ad turbas, ecce, Mater e", + "id": "Evangelium" + }, + { + "body": "*Ps 123:7*\nAnima nostra, sicut passer, erépta est de láqueo venántium: láqueus contrítus est, et nos liberáti sumus.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, inténde placátus: et, intercedéntibus Sanctis tuis, devotióni nostræ profícia", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 12:50*\nQuicumque fecerit voluntátem Patris mei, qui in cælis est: ipse meus frater et soror et mater est, dicit Dó", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, intercedéntibus Sanctis tuis, illíus salutáris capiámus efféctum; cujus per heec mystéria", + "id": "Postcommunio" + } + ], + "2025-07-11": [ + { + "body": "*Ps 26:1; 26:2*\nDóminus illuminátio mea et salus mea, quem timebo? Dóminus defensor vitæ meæ, a quo trepidábo? qui tríbu", + "id": "Introitus" + }, + { + "body": "Da nobis, quǽsumus, Dómine: ut et mundi cursus pacífice nobis tuo órdine dirigátur; et Ecclésia tua tranquílla devotióne", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Pii I Papæ et Martyris*\nGregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:18-23*\nFratres: Exístimo, quod non sunt condígnæ passiónes hujus ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 5:1-11*\nIn illo témpore: Cum turbæ irrúerent in Jesum, ut audírent verb", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nIllúmina óculos meos, ne umquam obdórmiam in morte: ne quando dicat inimícus meus: Præválui advérsus eum.", + "id": "Offertorium" + }, + { + "body": "Oblatiónibus nostris, quǽsumus, Dómine, placáre suscéptis: et ad te nostras étiam rebélles compélle propítius voluntátes", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Pii I Papæ et Martyris*\nOblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et g", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 17:3*\nDóminus firmaméntum meum, et refúgium meum, et liberátor meus: Deus meus, adjútor meus.", + "id": "Communio" + }, + { + "body": "Mystéria nos, Dómine, quǽsumus, sumpta puríficent: et suo múnere tueántur.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Pii I Papæ et Martyris*\nRefectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam:", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-12": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Intercéssio nos, quǽsumus, Dómine, beáti Joánnis Abbatis comméndet: ut, quod nostris méritis non valémus, ejus patrocíni", + "id": "Oratio" + }, + { + "body": "*Ss. Naboris et Felicis*\nPræsta, quǽsumus, Dómine: ut, sicut nos sanctórum Martyrum tuórum Nabóris et Felícis natalítia ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:43-48*\nIn illo témpore: Dixit Jesus discípulis suis: Audístis, q", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus Joánnes Abbas, quǽsumus, in salútem nobis proveníre depóscat.\nPer", + "id": "Secreta" + }, + { + "body": "*Ss. Naboris et Felicis*\nMúnera plebis tuæ, quǽsumus, Dómine, sanetórum Mártyrum tuórum Nabóris et Felícis fiant grata s", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus Joánnes Abbas, pro nobis intercedéndo: ut et conversatiónis ", + "id": "Postcommunio" + }, + { + "body": "*Ss. Naboris et Felicis*\nNatalítiis Sanctórum tuórum, quǽsumus, Dómine: ut, sacraménti múnere vegetáti, bonis, quibus pe", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-13": [ + { + "body": "*Ps 26:7; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te: adjútor meus esto, ne derelínquas me neque despícias me, ", + "id": "Introitus" + }, + { + "body": "Deus, qui diligéntibus te bona invisibília præparásti: infúnde córdibus nostris tui amóris afféctum; ut te in ómnibus et", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 3:8-15*\nCaríssimi: Omnes unánimes in oratióne estóte, compatiéntes, fraterni", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:20-24*\nIn illo témpore: Dixit Jesus discípulis suis: Nisi abundáv", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7 et 8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Deum in conspéctu meo semper: quóniam a dextr", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, supplicatiónibus nostris: et has oblatiónes famulórum famularúmque tuárum benígnus assúme; ut, quod ", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram: ut inhábitem in domo Dómini ómnibus diébus vitæ meæ.", + "id": "Communio" + }, + { + "body": "Quos cœlésti, Dómine, dono satiásti: præsta, quǽsumus; ut a nostris mundémur occúltis et ab hóstium liberémur insídiis.\n", + "id": "Postcommunio" + } + ], + "2025-07-14": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Bonaventúram minístrum tribuísti: præsta, quǽsumus; ut, quem Doctórem vitæ ha", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2. Tim 4:1-8*\nCaríssime: Testificor coram Deo, et Jesu Christo, qui j", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Sancti Bonaventúræ Confessóris tui atque Pontíficis, quǽsumus, Dómine, ánnua sollémnitas pietáti tuæ nos reddat accéptos", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Deus, fidélium remunerátor animárum: præsta; ut beáti Bonaventúræ Confessóris tui, atque Pontíficis, cujus venerándam ce", + "id": "Postcommunio" + } + ], + "2025-07-15": [ + { + "body": "*Isa 42:6*\nEgo Dominus vocavi te in iustitia, et apprehendi manum tuam et dedi te in foedus populi, in lucem gentium, ut", + "id": "Introitus" + }, + { + "body": "Misericordissime Deus, pro cuius fidei propagatione beatus Bruno Episcopus et Martyr in his terris sanguinem liberaliter", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Henrici Imperatoris Confessoris*\nDeus, qui hodiérna die beátum Henrícum Confessórem tuum e terréni cúlm", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Sap 6:10-22*\nAd vos ergo, reges, sunt hi sermones mei, ut discatis sapientiam, et non excidatis.", + "id": "Lectio" + }, + { + "body": "*Ps 118:46-47*\nLoquebar de testimoniis tuis in conspectu regum et non confundebar.\n℣. Et meditabar in mandatis tuis, qua", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 15:12-16*\nIn illo tempore: Dixit Jesus discipulis suis: «Hoc est p", + "id": "Evangelium" + }, + { + "body": "*Col 1:24-25*\nGaudeo in passionibus et adimpleo ea quae desunt passionum Christi in carne mea, pro corpore eius quod est", + "id": "Offertorium" + }, + { + "body": "Haec hostia, Domine, vincula nostri reatus absolvat, et intercedente beato Brunone Martyre tuo atque Pontifice, donum no", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Henrici Imperatoris Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctó", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Phil 1:20-21*\nMagnificabitur Christus in corpore meo, sive per vitam sive per mortem; mihi enim vivere Christus est et ", + "id": "Communio" + }, + { + "body": "Caelestibus epulis refecti, te, Domine, supplices deprecamur; ut ignem in nobis spiritus tui clementer accendas, qui bea", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Henrici Imperatoris Confessoris*\nRefécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-16": [ + { + "body": "*Ps 26:7; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te: adjútor meus esto, ne derelínquas me neque despícias me, ", + "id": "Introitus" + }, + { + "body": "Deus, qui diligéntibus te bona invisibília præparásti: infúnde córdibus nostris tui amóris afféctum; ut te in ómnibus et", + "id": "Oratio" + }, + { + "body": "*Commemoratio In Commemoratione Beatæ Mariæ Virgine de Monte Carmelo.*\nDeus, qui beatíssimæ semper Vírginis et Genetríci", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 3:8-15*\nCaríssimi: Omnes unánimes in oratióne estóte, compatiéntes, fraterni", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:20-24*\nIn illo témpore: Dixit Jesus discípulis suis: Nisi abundáv", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7 et 8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Deum in conspéctu meo semper: quóniam a dextr", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, supplicatiónibus nostris: et has oblatiónes famulórum famularúmque tuárum benígnus assúme; ut, quod ", + "id": "Secreta" + }, + { + "body": "*Commemoratio In Commemoratione Beatæ Mariæ Virgine de Monte Carmelo.*\nSanctífica, Dómine, quǽsumus, obláta libámina: et", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram: ut inhábitem in domo Dómini ómnibus diébus vitæ meæ.", + "id": "Communio" + }, + { + "body": "Quos cœlésti, Dómine, dono satiásti: præsta, quǽsumus; ut a nostris mundémur occúltis et ab hóstium liberémur insídiis.\n", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio In Commemoratione Beatæ Mariæ Virgine de Monte Carmelo.*\nAdjuvet nos, quǽsumus, Dómine, gloriósæ tuæ Genet", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-17": [ + { + "body": "*Ps 26:7; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te: adjútor meus esto, ne derelínquas me neque despícias me, ", + "id": "Introitus" + }, + { + "body": "Deus, qui diligéntibus te bona invisibília præparásti: infúnde córdibus nostris tui amóris afféctum; ut te in ómnibus et", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Alexii Confessoris*\nDeus, qui nos beáti N. Confessóris tui ánnua solemnitáte lætíficas: concéde propíti", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 3:8-15*\nCaríssimi: Omnes unánimes in oratióne estóte, compatiéntes, fraterni", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:20-24*\nIn illo témpore: Dixit Jesus discípulis suis: Nisi abundáv", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7 et 8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Deum in conspéctu meo semper: quóniam a dextr", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, supplicatiónibus nostris: et has oblatiónes famulórum famularúmque tuárum benígnus assúme; ut, quod ", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Alexii Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus n", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram: ut inhábitem in domo Dómini ómnibus diébus vitæ meæ.", + "id": "Communio" + }, + { + "body": "Quos cœlésti, Dómine, dono satiásti: præsta, quǽsumus; ut a nostris mundémur occúltis et ab hóstium liberémur insídiis.\n", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Alexii Confessoris*\nRefécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-18": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus: qui beátum Simónem Confessórem tuum evangélicæ prædicatiónis grátiam sublimásti: concéde pro", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Camilli de Lellis Confessoris*\nDeus, qui sanctum Camíllum, ad animárum in extrémo agóne luctántium subs", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Camilli de Lellis Confessoris*\nHóstia immaculáta, qua illud Dómini nostri Jesu Christi imménsæ caritáti", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto N. Confessóre tuo, per hæc contra óm", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Camilli de Lellis Confessoris*\nPer hæc cœléstia aliménta, quæ, sancti Camílli Confessóris tui sollémnia", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-19": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui, ad evangelizándum paupéribus et ecclesiástici órdinis decórem promovéndum, beátum Vincéntium apostólica virtú", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios.\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et alios septuagínta duos:", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus: et super salutáre tuum exsultábit vehementer: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28; 19:29*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto Vincéntio Confessóre tuo, per hæc co", + "id": "Postcommunio" + } + ], + "2025-07-20": [ + { + "body": "*Ps 27:8-9*\nDóminus fortitudo plebis suæ, et protéctor salutárium Christi sui est: salvum fac pópulum tuum, Dómine, et b", + "id": "Introitus" + }, + { + "body": "Deus virtútum, cujus est totum quod est óptimum: ínsere pectóribus nostris amórem tui nóminis, et præsta in nobis religi", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:3-11*\nFratres: Quicúmque baptizáti sumus in Christo Jesu, in mort", + "id": "Lectio" + }, + { + "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum\n*Marc 8:1-9*\nIn illo témpore: Cum turba multa esset cum Jesu, nec habérent,", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, supplicatiónibus nostris, et has pópuli tui oblatiónes benígnus assúme: et, ut nullíus sit írritum v", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 26:6*\nCircuíbo et immolábo in tabernáculo ejus hóstiam jubilatiónis: cantábo et psalmum dicam Dómino.", + "id": "Communio" + }, + { + "body": "Repléti sumus, Dómine, munéribus tuis: tríbue, quǽsumus; ut eórum et mundémur efféctu et muniámur auxílio.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-07-21": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui ad árdua quæque pro nóminis tui glória et animárum salúte beáto Lauréntio, Confessóri tuo atque Doctóri, spíri", + "id": "Oratio" + }, + { + "body": "*S. Praxedis Virginis*\nExáudi nos, Deus, salutáris noster: ut, sicut de beátæ Praxédis Vírginis tuæ festivitáte gaudémus", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Sancti N. Confessóris tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et tuam no", + "id": "Secreta" + }, + { + "body": "*S. Praxedis Virginis*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis d", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus N. Conféssor tuus et Doctor egrégius, quǽsumus, precátor accédat.\n", + "id": "Postcommunio" + }, + { + "body": "*S. Praxedis Virginis*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-22": [ + { + "body": "*Ps 118:95-96*\nMe exspectavérunt peccatóres, ut pérderent me: testimónia tua, Dómine, intelléxi: omnis consummatiónis vi", + "id": "Introitus" + }, + { + "body": "Beátæ Maríæ Magdalénæ, quǽsumus, Dómine, suffrágiis adjuvémur: cujus précibus exorátus, quatriduánum fratrem Lázarum viv", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Cant 3:2-5; 8:6-7*\nSurgam, et circuíbo civitátem: per vicos et pláteas quæram, quem díligit áni", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:36-50*\nIn illo témpore: Rogábat Jesum quidam de pharisæis, ut manduc", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Múnera nostra, quǽsumus. Dómine, beátæ Maríæ Magdalénæ gloriósa mérita tibi reddant accépta: cujus oblatiónis obséquium ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:121; 118:122; 118:128*\nFeci judícium et justítiam, Dómine, non calumniéntur mihi supérbi: ad ómnia mandáta tua d", + "id": "Communio" + }, + { + "body": "Sumpto, quǽsumus, Dómine, único ac salutári remédio, Córpore et Sánguine tuo pretióso: ab ómnibus malis, sanctæ Maríæ Ma", + "id": "Postcommunio" + } + ], + "2025-07-23": [ + { + "body": "*Dan 3:84; 3:87*\nSacerdótes Dei, benedícite Dóminum: sancti et húmiles corde, laudáte Deum.\n*Dan 3:57*\nBenedícite, ómnia", + "id": "Introitus" + }, + { + "body": "Deus, fidélium remunerátor animárum, qui hunc diem beáti Apollináris Sacerdótis tui martýrio consecrásti: tríbue nobis, ", + "id": "Oratio" + }, + { + "body": "*S. Liborii Ep. et Conf.*\nDa, quǽsumus, omnípotens Deus: ut beáti Libórii Confessóris tui atque Pontíficis veneránda sol", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1 Petri 5:1-11*\nCaríssimi: Senióres, qui in vobis sunt, obsecro, consénior et tes", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 22:24-30*\nIn illo témpore: Facta est conténtio inter discípulos, quis ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Réspice, Dómine, propítius super hæc múnera: quæ pro beáti Sacerdótis et Martyris tui Apollináris commemoratióne deférim", + "id": "Secreta" + }, + { + "body": "*Pro S. Liborio*\nSancti tui, quǽsumus, Dómine, nos úbique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiám", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:20; 20:21*\nDómine, quinque talénta tradidísti mihi, ecce, ália quinque superlucrátus sum. Euge, serve bone et f", + "id": "Communio" + }, + { + "body": "Tua sancta suméntes, quǽsumus, Dómine, ut beáti Apollináris nos fóveant continuáta præsídia: quia non désinis propítius ", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Liborio*\nPræsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Li", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-24": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Deus, qui beátam Cunegúndem dulcédinis tuæ benedictiónibus prævenísti, ac vírginem étiam in coniúgio conservásti: præsta", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Christinæ Virginis et Martyris*\nIndulgéntiam nobis, quǽsumus, Dómine, beáta Christína Virgo et Martyr i", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Munéribus tibi, Dómine, pro beáte Vírginis tuæ Cunegúndis honóre dicátis, benedictiónem tuam propitiátus effúnde: ut per", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Christinæ Virginis et Martyris*\nHóstias tibi, Dómine, beátæ Christínæ Vírginis et Mártyris tuæ dicátas ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Sumpta mystéria, quǽsumus, Dómine, suffragántibus beáte Cunegúndis Vírginis tuæ méritis, íncitent nos iúgiter, et illúst", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Christinæ Virginis et Martyris*\nDivíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut, in", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-25": [ + { + "body": "*Ps 138:17*\nMihi autem nimis bonoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2*\nDómine", + "id": "Introitus" + }, + { + "body": "Esto, Dómine, plebi tuæ sanctificátor et custos: ut, Apóstoli tui Jacóbi muníta præsídiis, et conversatióne tibi pláceat", + "id": "Oratio" + }, + { + "body": "*S. Christophori Martyris*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti Christóphori Mártyris tui natalícia cólimus,", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 4:9-15*\nFratres: Puto, quod Deus nos Apóstolos novíssimos ost", + "id": "Lectio" + }, + { + "body": "*Ps 44:17; 44:18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro pátribus tuis n", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 20:20-23*\nIn illo témpore: Accessit ad Jesum mater filiórum Zebedæ", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.", + "id": "Offertorium" + }, + { + "body": "Oblatiónes pópuli tui, quǽsumus, Dómine, beáti Jacóbi Apóstoli pássio beáta concíliet: et, quæ nostris non aptæ sunt mér", + "id": "Secreta" + }, + { + "body": "*Pro S. Christophoro*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mystériis, et ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël.", + "id": "Communio" + }, + { + "body": "Beáti Apóstoli tui Jacóbi, quǽsumus, Dómine, intercessióne nos ádjuva: pro cujus festivitáte percépimus tua sancta lætán", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Christophoro*\nDa, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-26": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Annæ: de cujus sollemnitáte gaudent Angeli et colláu", + "id": "Introitus" + }, + { + "body": "Deus, qui beátæ Annæ grátiam conférre dignatus es, ut Genetrícis unigéniti Fílii tui mater effici mererétur: concéde pro", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placatus inténde: ut per intercessiónem beátæ Annæ, quæ Genetrícis Fílii tui,", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi.", + "id": "Communio" + }, + { + "body": "Cœléstibus sacraméntis vegetáti, quǽsumus, Dómine, Deus noster: ut, intercessióne beátæ Annæ, quam Genetrícis Fílii tui ", + "id": "Postcommunio" + } + ], + "2025-07-27": [ + { + "body": "*Ps 46:2*\nOmnes gentes, pláudite mánibus: jubiláte Deo in voce exsultatiónis.\n*Ps 46:3*\nQuóniam Dóminus excélsus, terríb", + "id": "Introitus" + }, + { + "body": "Deus, cujus providéntia in sui dispositióne non fállitur: te súpplices exorámus; ut nóxia cuncta submóveas, et ómnia nob", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:19-23*\nFratres: Humánum dico, propter infirmitátem carnis vestræ:", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.\n℣. Accédite ad eum, et illuminámini: et fácies ves", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 7:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nSicut in holocáustis aríetum et taurórum, et sicut in mílibus agnórum pínguium: sic fiat sacrifícium nostrum ", + "id": "Offertorium" + }, + { + "body": "Deus, qui legálium differéntiam hostiárum unius sacrifícii perfectione sanxísti: accipe sacrifícium a devótis tibi fámul", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nInclína aurem tuam, accélera, ut erípias me.", + "id": "Communio" + }, + { + "body": "Tua nos, Dómine, medicinális operátio, et a nostris perversitátibus cleménter expédiat, et ad ea, quæ sunt recta, perdúc", + "id": "Postcommunio" + } + ], + "2025-07-28": [ + { + "body": "*Ps 78:11-12; 78:10*\nIntret in conspéctu tuo, Dómine, gémitus compeditórum: redde vicínis nostris séptuplum in sinu eóru", + "id": "Introitus" + }, + { + "body": "Sanctórum tuórum nos, Dómine, Nazárii, Celsi, Victóris et Innocéntii conféssio beáta commúniat: et fragilitáti nostræ su", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Sap 10:17-20*\nRéddidit Deus justis mercédem labórum suorum, et deduxit illos in via mirábili: e", + "id": "Lectio" + }, + { + "body": "*Exodi 15:11*\nGloriósus Deus in Sanctis suis: mirábilis in majestáte, fáciens prodígia.\n*Exodi 15:6*\n℣. Déxtera tua, Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 21:9-19*\nIn illo témpore: Dixit Jesus discípulis suis: Cum audiéritis ", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nMirábilis Deus in Sanctis suis: Deus Israël, ipse dabit virtútem et fortitúdinem plebi suæ: benedíctus Deus, ", + "id": "Offertorium" + }, + { + "body": "Concéde nobis, omnípotens Deus: ut his munéribus, quæ in sanctórum tuórum Nazarii, Celsi, Victóris et Innocéntii honóre ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Sap 3:4; 3:5; 3:6*\nEt si coram homínibus torménta passi sunt. Deus tentavit eos: tamquam aurum in fornáce probávit eos,", + "id": "Communio" + }, + { + "body": "Sanctórum Nazárii, Celsi, Victóris et Innocéntii, Dómine, intercessióne placátus: præsta, quǽsumus; ut, quod temporáli c", + "id": "Postcommunio" + } + ], + "2025-07-29": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ Marthæ Vírginis tuæ festivitáte gaudémus; ita piæ devotiónis erud", + "id": "Oratio" + }, + { + "body": "*Ss. Felicis, Simplicii, Faustini et Beatricis.*\nPræsta, quǽsumus, Dómine: ut, sicut pópulus christiánus Mártyrum tuórum", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11, 1-2.*\nFratres: Qui gloriátur, in Dómino gloriétu", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:38-42*\nIn illo témpore: Intrávit Jesus in quoddam castéllum: et múl", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Ss. Felicis, Simplicii, Faustini et Beatricis.*\nHóstias tibi, Dómine, pro sanctórum Mártyrum tuórum Felícis, Simplícii,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Ss. Felicis, Simplicii, Faustini et Beatricis.*\nPræsta, quǽsumus, omnípotens Deus: ut sanctórum Martyrum tuórum Felícis", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-30": [ + { + "body": "*Ps 46:2*\nOmnes gentes, pláudite mánibus: jubiláte Deo in voce exsultatiónis.\n*Ps 46:3*\nQuóniam Dóminus excélsus, terríb", + "id": "Introitus" + }, + { + "body": "Deus, cujus providéntia in sui dispositióne non fállitur: te súpplices exorámus; ut nóxia cuncta submóveas, et ómnia nob", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Abdon et Sennen Martyrum*\nDeus, qui sanctis tuis Abdon et Sennen ad hanc glóriam veniéndi copiósum munu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:19-23*\nFratres: Humánum dico, propter infirmitátem carnis vestræ:", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.\n℣. Accédite ad eum, et illuminámini: et fácies ves", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 7:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nSicut in holocáustis aríetum et taurórum, et sicut in mílibus agnórum pínguium: sic fiat sacrifícium nostrum ", + "id": "Offertorium" + }, + { + "body": "Deus, qui legálium differéntiam hostiárum unius sacrifícii perfectione sanxísti: accipe sacrifícium a devótis tibi fámul", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Abdon et Sennen Martyrum*\nHæc hóstia, quǽsumus, Dómine, quam sanctórum Mártyrum tuórum natalítia recens", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nInclína aurem tuam, accélera, ut erípias me.", + "id": "Communio" + }, + { + "body": "Tua nos, Dómine, medicinális operátio, et a nostris perversitátibus cleménter expédiat, et ad ea, quæ sunt recta, perdúc", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Abdon et Sennen Martyrum*\nPer hujus, Dómine, operationem mystérii, et vitia nostra purgéntur: et, inter", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-31": [ + { + "body": "*Philipp 2:10-11*\nIn nómine Jesu omne genu flectátur, cœléstium, terréstrium et infernórum: et omnis lingua confiteátur,", + "id": "Introitus" + }, + { + "body": "Deus, qui ad majórem tui nóminis glóriam propagándam, novo per beátum Ignátium subsídio militántem Ecclésiam roborásti: ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 2:8-10; 3:10-12*\nCaríssime: Memor esto, Dóminum Jesum Christum ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annuntiá", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et álios septuagínta duos: ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Adsint, Dómine Deus, oblatiónibus nostris sancti Ignátii benígna suffrágia: ut sacrosáncta mystéria, in quibus omnis san", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:49*\nIgnem veni míttere in terram: et quid volo, nisi ut accendátur?", + "id": "Communio" + }, + { + "body": "Laudis hóstia, Dómine, quam pro sancto Ignátio grátias agentes obtúlimus: ad perpétuam nos majestátis tuæ laudatiónem, e", + "id": "Postcommunio" + } + ], + "2025-08-01": [ + { + "body": "*Ps 46:2*\nOmnes gentes, pláudite mánibus: jubiláte Deo in voce exsultatiónis.\n*Ps 46:3*\nQuóniam Dóminus excélsus, terríb", + "id": "Introitus" + }, + { + "body": "Deus, cujus providéntia in sui dispositióne non fállitur: te súpplices exorámus; ut nóxia cuncta submóveas, et ómnia nob", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Martyrum Machabæorum*\nFratérna nos, Dómine, Mártyrum tuórum coróna lætíficet: quæ et fídei nostræ præb", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:19-23*\nFratres: Humánum dico, propter infirmitátem carnis vestræ:", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.\n℣. Accédite ad eum, et illuminámini: et fácies ves", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 7:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ", + "id": "Evangelium" + }, + { + "body": "*Dan 3:40*\nSicut in holocáustis aríetum et taurórum, et sicut in mílibus agnórum pínguium: sic fiat sacrifícium nostrum ", + "id": "Offertorium" + }, + { + "body": "Deus, qui legálium differéntiam hostiárum unius sacrifícii perfectione sanxísti: accipe sacrifícium a devótis tibi fámul", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Martyrum Machabæorum*\nMystéria tua, Dómine, pro sanctórum Mártyrum tuórum honóre, devóta mente tractém", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nInclína aurem tuam, accélera, ut erípias me.", + "id": "Communio" + }, + { + "body": "Tua nos, Dómine, medicinális operátio, et a nostris perversitátibus cleménter expédiat, et ad ea, quæ sunt recta, perdúc", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Martyrum Machabæorum*\nPræsta, quǽsumus, omnípotens Deus: ut, quorum memóriam sacraménti participatióne", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-02": [ + { + "body": "*Luc 4:18*\nSpíritus Dómini super me: propter quod unxit me: evangelizáre paupéribus misit me, sanáre contrítos corde.\n*P", + "id": "Introitus" + }, + { + "body": "Deus, qui per beátum Alfónsum Maríam Confessórem tuum atque Pontíficem, animárum zelo succénsum, Ecclésiam tuam nova pro", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Stephani Papæ et Martyris*\nDeus, qui nos beáti N. Mártyris tui atque Pontíficis ánnua sollemnitáte lætí", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 2:1-7*\nCaríssime: Confortáre in grátia, quæ est in Christo Jesu", + "id": "Lectio" + }, + { + "body": "*Ps 118:52-53*\nMemor fui judiciórum tuórum a sǽculo, Dómine, et consolátus sum: deféctio ténuit me pro peccatóribus dere", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et alios septuagínta duos: ", + "id": "Evangelium" + }, + { + "body": "*Prov 3:9; 3:27*\nHónora Dóminum de tua substántia, et de primítiis ómnium frugum tuárum da ei. Noli prohibére benefácere", + "id": "Offertorium" + }, + { + "body": "Cœlésti, Dómine Jesu Christe, sacrifícii igne corda nostra in odórem suavitátis exúre: qui beáto Alfónso Maríæ tribuísti", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Stephani Papæ et Martyris*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto N. Mártyre tu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Eccli 50:1; 50:9*\nSacérdos magnus, qui in vita sua suffúlsit domum, et in diébus suis corroborávit templum, quasi ignis", + "id": "Communio" + }, + { + "body": "Deus, qui beátum Alfónsum Maríam Confessórem tuum atque Pontíficem fidelem divíni mystérii dispensatórem et præcónem eff", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Stephani Papæ et Martyris*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto N. Mártyr", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-03": [ + { + "body": "*Ps 47:10-11*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tua in fi", + "id": "Introitus" + }, + { + "body": "Largíre nobis, quǽsumus, Dómine, semper spíritum cogitándi quæ recta sunt, propítius et agéndi: ut, qui sine te esse non", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:12-17*\nFratres: Debitóres sumus non carni, ut secúndum carnem viv", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias.\n*Ps 70:1*\n℣. Deus, in te sperávi: Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 16:1-9*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc: Ho", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28; 17:32*\nPópulum húmilem salvum fácies, Dómine, et óculos superbórum humiliábis: quóniam quis Deus præter te, D", + "id": "Offertorium" + }, + { + "body": "Súscipe, quǽsumus, Dómine, múnera, quæ tibi de tua largitáte deférimus: ut hæc sacrosáncta mystéria, grátiæ tuæ operánte", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nGustáte et vidéte, quóniam suávis est Dóminus: beátus vir, qui sperat in eo.", + "id": "Communio" + }, + { + "body": "Sit nobis, Dómine, reparátio mentis et córporis cæléste mystérium: ut, cujus exséquimur cultum, sentiámus efféctum.\nPer ", + "id": "Postcommunio" + } + ], + "2025-08-04": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiam tuam beáti Domínici Confessóris tui illumináre dignátus es méritis et doctrínis: concéde; ut ejus in", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8.*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui j", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiándu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, dicáta sanctífica: ut, méritis beáti Domínici Confessóris tui, nobis profíciant ad medélam.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui peccatórum nostrórum póndere prémimur, beáti Domínici Confessóris tui patroc", + "id": "Postcommunio" + } + ], + "2025-08-05": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum. (Allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16.*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, ", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28; 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium. (Allelúja.)", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2025-08-06": [ + { + "body": "*Ps 76:19*\nIlluxérunt coruscatiónes tuæ orbi terræ: commóta est et contrémuit terra.\n*Ps 83:2-3*\nQuam dilécta tabernácul", + "id": "Introitus" + }, + { + "body": "Deus, qui fídei sacraménta in Unigéniti tui gloriósa Transfiguratióne patrum testimónio roborásti, et adoptiónem filióru", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Xysti II Papæ, Felicissimi et Agapiti Martyrum*\nDeus, qui nos concédis sane in Mártyrum tuórum Xysti F", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*2 Petri 1:16-19*\nCaríssimi: Non doctas fábulas secúti notam fecimus vobis Dómini n", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nSpeciosus forma præ fíliis hóminum: diffúsa est grátia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 17:1-9*\nIn illo témpore: Assúmpsit Jesus Petrum, et Jacóbum, et Joá", + "id": "Evangelium" + }, + { + "body": "*Ps 111:3*\nGlória et divítiæ in domo ejus: et justítia ejus manet in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Obláta, quǽsumus, Dómine, múnera gloriósa Unigéniti tui Transfiguratióne sanctífica: nosque a peccatórum máculis, splend", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Xysti II Papæ, Felicissimi et Agapiti Martyrum*\nMúnera tibi, Dómine, nostræ devotiónis offérimus: quæ ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Matt 17:9*\nVisiónem, quam vidístis, némini dixéritis, donec a mórtuis resúrgat Fílius hóminis.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut sacrosáncta Fílii tui Transfiguratiónis mystéria, quæ sollemni celebrámus offício,", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Xysti II Papæ, Felicissimi et Agapiti Martyrum*\nPræsta nobis, quǽsumus, Dómine: intercedéntibus sancti", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-07": [ + { + "body": "*Ps 36:30-31.*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1", + "id": "Introitus" + }, + { + "body": "Deus, qui beáto Cajetáno Confessóri tuo apostólicam vivéndi formam imitári tribuísti: da nobis, ejus intercessióne et ex", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Donati, Episcopi et Martyris*\nDeus, tuórum glória sacerdótum: præsta, quǽsumus, ut sancti Martyris tui ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec speráv", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annuntiá", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 6:24-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo potest ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio, et pro tuórum tibi grata sit honóre Sanctórum, e", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Donati, Episcopi et Martyris*\nPræsta, quǽsumus, Dómine: ut sancti Martyris tui et Episcopi Donati inter", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus : ut, qui cæléstia aliménta percépimus, intercedénte beáto Caietáno Confessóre tuo, per hæc co", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Donati, Episcopi et Martyris*\nOmnípotens et miséricors Deus, qui nos sacramentórum tuórum et partícipes", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-08": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, qui sanctum Joánnem Maríam pastoráli stúdio et jugi oratiónis ac pœniténtiæ ardóre mirábi", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Cyriaci, Largi et Smaragdi Martyrum*\nDeus, qui nos ánnua sanctórum Mártyrum tuórum Cyriáci, Largi et S", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Cyriaci, Largi et Smaragdi Martyrum*\nAccépta sit in conspéctu tuo, Dómine, nostra devótio: et eórum no", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Cyriaci, Largi et Smaragdi Martyrum*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus nost", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-09": [ + { + "body": "*Ps 111:9*\nDispérsit, dedit paupéribus: justítia ejus manet in sǽculum sǽculi: cornu ejus exaltábitur in glória.\n*Ps 111", + "id": "Introitus" + }, + { + "body": "Adésto, Dómine, supplicatiónibus nostris: et intercessióne beáti Lauréntii Mártyris tui, cujus prævénimus festivitátem; ", + "id": "Oratio" + }, + { + "body": "*Pro S. Romano Martyre*\nPræsta, quǽsumus, omnípotens Deus: ut, intercedénte beáto Románo Mártyre tuo, et a cunctis adver", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", + "id": "Lectio" + }, + { + "body": "*Ps 111:9; 111:2*\nDispersit, dedit paupéribus: justítia ejus manet in sǽculum sǽculi.\n℣. Potens in terra erit semen ejus", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:24-27*\nIn illo témpore: Dixit Jesus discípulis suis: Si quis vul", + "id": "Evangelium" + }, + { + "body": "*Job 16:20*\nOrátio mea munda est: et ídeo peto, ut detur locus voci meæ in cœlo: quia ibi est judex meus, et cónscius me", + "id": "Offertorium" + }, + { + "body": "Hóstias, Dómine, quas tibi offérimus, propítius súscipe: et, intercedénte beáto Lauréntio Mártyre tuo, víncula peccatóru", + "id": "Secreta" + }, + { + "body": "*Pro S. Romano Martyre*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mysteriis, e", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:24*\nQui vult veníre post me, ábneget semetípsum, et tollat crucem suam, et sequátur me.", + "id": "Communio" + }, + { + "body": "Da, quǽsumus, Dómine, Deus noster: ut, sicut beáti Lauréntii Mártyris tui commemoratióne, temporáli gratulámur offício; ", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Romano Martyre*\nQuǽsumus, omnípotensDeus: ut, qui cœlestia aliménta percépimus, intercedénte beáto Románo Mártyr", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-10": [ + { + "body": "*Ps 53:6-7*\nEcce, Deus adjuvat me, et Dóminus suscéptor est ánimæ meæ: avérte mala inimícis meis, et in veritáte tua dis", + "id": "Introitus" + }, + { + "body": "Páteant aures misericórdiæ tuæ, Dómine, précibus supplicántium: et, ut peténtibus desideráta concédas; fac eos quæ tibi ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Laurentii Martyris*\nDa nobis, quǽsumus, omnípotens Deus: vitiórum nostrorum flammas exstínguere; qui be", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 10:6-13*\nFratres: Non simus concupiscéntes malórum, sicut et i", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nDómine, Dóminus noster, quam admirábile est nomen tuum in universa terra!\n℣. Quóniam eleváta est magnificéntia ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:41-47*\nIn illo témpore: Cum appropinquáret Jesus Jerúsalem, videns c", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nJustítiæ Dómini rectæ, lætificántes corda, et judícia ejus dulcióra super mel et favum: n", + "id": "Offertorium" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine, hæc digne frequentáre mystéria: quia, quóties hujus hóstiæ commemorátio celebrátur, opu", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Laurentii Martyris*\nAccipe, quǽsumus, Dómine, múnera dignánter obláta: et, beáti Lauréntii suffragántib", + "id": "Commemoratio Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Joann 6:57*\nQui mandúcat meam carnem et bibit meum sánguinem, in me manet et ego in eo, dicit Dóminus.", + "id": "Communio" + }, + { + "body": "Tui nobis, quǽsumus, Dómine, commúnio sacraménti, et purificatiónem cónferat, et tríbuat unitátem.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Laurentii Martyris*\nSacro múnere satiáti, súpplices te, Dómine, deprecámur: ut, quod débitæ servitútis ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-11": [ + { + "body": "*Ps 53:6-7*\nEcce, Deus adjuvat me, et Dóminus suscéptor est ánimæ meæ: avérte mala inimícis meis, et in veritáte tua dis", + "id": "Introitus" + }, + { + "body": "Páteant aures misericórdiæ tuæ, Dómine, précibus supplicántium: et, ut peténtibus desideráta concédas; fac eos quæ tibi ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Tiburtii et Susannæ Virginum et Martyrum*\nSanctórum Martyrum tuórum Tiburtii et Susánnæ nos, Dómine, f", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 10:6-13*\nFratres: Non simus concupiscéntes malórum, sicut et i", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nDómine, Dóminus noster, quam admirábile est nomen tuum in universa terra!\n℣. Quóniam eleváta est magnificéntia ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:41-47*\nIn illo témpore: Cum appropinquáret Jesus Jerúsalem, videns c", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nJustítiæ Dómini rectæ, lætificántes corda, et judícia ejus dulcióra super mel et favum: n", + "id": "Offertorium" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine, hæc digne frequentáre mystéria: quia, quóties hujus hóstiæ commemorátio celebrátur, opu", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Tiburtii et Susannæ Virginum et Martyrum*\nAdésto, Dómine, précibus pópuli tui, adésto munéribus: ut, q", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 6:57*\nQui mandúcat meam carnem et bibit meum sánguinem, in me manet et ego in eo, dicit Dóminus.", + "id": "Communio" + }, + { + "body": "Tui nobis, quǽsumus, Dómine, commúnio sacraménti, et purificatiónem cónferat, et tríbuat unitátem.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Tiburtii et Susannæ Virginum et Martyrum*\nSúmpsimus, Dómine, pignus redemptiónis ætérnæ: quod sit nobi", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-12": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ N. Vírginis tuæ festivitáte gaudémus; ita piæ devotiónis erudiámu", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2025-08-13": [ + { + "body": "*Ps 53:6-7*\nEcce, Deus adjuvat me, et Dóminus suscéptor est ánimæ meæ: avérte mala inimícis meis, et in veritáte tua dis", + "id": "Introitus" + }, + { + "body": "Páteant aures misericórdiæ tuæ, Dómine, précibus supplicántium: et, ut peténtibus desideráta concédas; fac eos quæ tibi ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Hippolyti et Cassiani Martyrum*\nDa, quǽsumus, omnípotens Deus: ut beatórum Mártyrum tuórum Hippolýti e", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 10:6-13*\nFratres: Non simus concupiscéntes malórum, sicut et i", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nDómine, Dóminus noster, quam admirábile est nomen tuum in universa terra!\n℣. Quóniam eleváta est magnificéntia ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:41-47*\nIn illo témpore: Cum appropinquáret Jesus Jerúsalem, videns c", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nJustítiæ Dómini rectæ, lætificántes corda, et judícia ejus dulcióra super mel et favum: n", + "id": "Offertorium" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine, hæc digne frequentáre mystéria: quia, quóties hujus hóstiæ commemorátio celebrátur, opu", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Hippolyti et Cassiani Martyrum*\nRéspice, Dómine, múnera pópuli tui, Sanctórum festivitáte votíva: et t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 6:57*\nQui mandúcat meam carnem et bibit meum sánguinem, in me manet et ego in eo, dicit Dóminus.", + "id": "Communio" + }, + { + "body": "Tui nobis, quǽsumus, Dómine, commúnio sacraménti, et purificatiónem cónferat, et tríbuat unitátem.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Hippolyti et Cassiani Martyrum*\nSacramentórum tuórum, Dómine, commúnio sumpta nos salvet: et in tuæ ve", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-14": [ + { + "body": "*Ps 44:13; 44:15; 44:16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus", + "id": "Introitus" + }, + { + "body": "Deus, qui virginálem aulam beátæ Maríæ, in qua habitáres, elígere dignátus es: da, quǽsumus; ut, sua nos defensióne muni", + "id": "Oratio" + }, + { + "body": "*Pro S. Eusebio Confessore*\nDeus, qui nos beáti Eusébii Confessóris tui ánnua sollemnitáte lætíficas: concéde propítius;", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:23-31*\nEgo quasi vitis fructificávi suavitátem odóris: et flores mei fructus honóris e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem qu", + "id": "Evangelium" + }, + { + "body": "Beáta es, Virgo María, quæ ómnium portásti Creatórem: genuísti qui te fecit, et in ætérnum pérmanes Virgo.", + "id": "Offertorium" + }, + { + "body": "Múnera nostra, Dómine, apud cleméntiam tuam Dei Genetrícis comméndet orátio: quam idcírco de præsénti sǽculo transtulíst", + "id": "Secreta" + }, + { + "body": "*Pro S. Eusebio Confessore*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Concéde, miséricors Deus, fragilitáti nostræ præsídium: ut, qui sanctæ Dei Genetrícis festivitátem prævénimus; intercess", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Eusebio Confessore*\nRefécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemora", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-15": [ + { + "body": "*Ap 12:1*\nSignum magnum appáruit in cœlo: múlier amicta sole, et luna sub pédibus ejus, et in cápite ejus coróna stellár", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui Immaculátam Vírginem Maríam, Fílii tui genitrícem, córpore et ánima ad cœléstem glóriam ", + "id": "Oratio" + }, + { + "body": "Léctio libri Judith.\n*Judith 13, 22-25; 15:10*\nBenedíxit te Dóminus in virtúte sua, quia per te ad níhilum redégit inimí", + "id": "Lectio" + }, + { + "body": "*Ps 44:11-12; 44:14*\nAudi, fília, et vide, et inclína aurem tuam, et concupíscit rex decórem tuum.\n℣. Omnis glória ejus ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:41-50*\nIn illo témpore: Repléta est Spíritu Sancto Elisabeth et excl", + "id": "Evangelium" + }, + { + "body": "*Gen 3:15*\nInimicítias ponam inter te et mulíerem, et semen tuum et semen illíus.", + "id": "Offertorium" + }, + { + "body": "Ascéndat ad te, Dómine, nostræ devotiónis oblátio, et, beatíssima Vírgine María in cœlum assumpta intercedénte, corda no", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "*Luc 1:48-49*\nBeátam me dicent omnes generatiónes, quia fecit mihi magna qui potens est.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salutáribus sacraméntis: da, quǽsumus; ut, méritis et intercessióne beátæ Vírginis Maríæ in cœlum assúm", + "id": "Postcommunio" + } + ], + "2025-08-16": [ + { + "body": "*Ps 111:9*\nDispérsit, dedit paupéribus: justítia ejus manet in sǽculum sǽculi: cornu ejus exaltábitur in glória.\n*Ps 111", + "id": "Introitus" + }, + { + "body": "Deus, qui præ ómnibus Sanctis tuis beátum Jóachim Genetrícis Fílii tui patrem esse voluísti: concéde, quǽsumus; ut, cuju", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec speráv", + "id": "Lectio" + }, + { + "body": "*Ps 111:9; 111:2*\nDispérsit, dedit paupéribus: justítia ejus manet in sǽculum sǽculi.\n℣. Potens in terra erit semen ejus", + "id": "Graduale" + }, + { + "body": "Initium ☩ sancti Evangélii secúndum Matthǽum\n*Matt 1:1-16*\nLiber generatiónis Jesu Christi, fílii David, fílii Abraham. ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", + "id": "Offertorium" + }, + { + "body": "Súscipe, clementíssime Deus, sacrifícium in honórem sancti Patriarchæ Jóachim, patris Maríæ Vírginis, majestáti tuæ oblá", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut per hæc sacraménta, quæ súmpsimus, intercedéntibus méritis et précibus beáti Jóachim patri", + "id": "Postcommunio" + } + ], + "2025-08-17": [ + { + "body": "*Ps 54:17-20; 54:23*\nDum clamárem ad Dóminum, exaudívit vocem meam, ab his, qui appropínquant mihi: et humiliávit eos, q", + "id": "Introitus" + }, + { + "body": "Deus, qui omnipoténtiam tuam parcéndo máxime et miserándo maniféstas: multíplica super nos misericórdiam tuam; ut, ad tu", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 12:2-11*\nFratres: Scitis, quóniam, cum gentes essétis, ad simu", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nCustódi me, Dómine, ut pupíllam óculi: sub umbra alárum tuárum prótege me.\n℣. De vultu tuo judícium meum", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:9-14*\nIn illo témpore: Dixit Jesus ad quosdam, qui in se confidébant", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", + "id": "Offertorium" + }, + { + "body": "Tibi, Dómine, sacrifícia dicáta reddántur: quæ sic ad honórem nóminis tui deferénda tribuísti, ut eadem remédia fíeri no", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nAcceptábis sacrificium justítiæ, oblatiónes et holocáusta, super altáre tuum, Dómine.", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut, quos divínis reparáre non désinis sacraméntis, tuis non destítuas benígnus auxíliis.\n", + "id": "Postcommunio" + } + ], + "2025-08-18": [ + { + "body": "*Ps 54:17-20; 54:23*\nDum clamárem ad Dóminum, exaudívit vocem meam, ab his, qui appropínquant mihi: et humiliávit eos, q", + "id": "Introitus" + }, + { + "body": "Deus, qui omnipoténtiam tuam parcéndo máxime et miserándo maniféstas: multíplica super nos misericórdiam tuam; ut, ad tu", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Agapiti Martyris*\nLætétur Ecclésia tua, Deus, beáti Agapíti Mártyris tui confísa suffrágiis: atque, eju", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 12:2-11*\nFratres: Scitis, quóniam, cum gentes essétis, ad simu", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nCustódi me, Dómine, ut pupíllam óculi: sub umbra alárum tuárum prótege me.\n℣. De vultu tuo judícium meum", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:9-14*\nIn illo témpore: Dixit Jesus ad quosdam, qui in se confidébant", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", + "id": "Offertorium" + }, + { + "body": "Tibi, Dómine, sacrifícia dicáta reddántur: quæ sic ad honórem nóminis tui deferénda tribuísti, ut eadem remédia fíeri no", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Agapiti Martyris*\nSúscipe, Dómine, múnera, quæ in ejus tibi sollemnitáte deférimus: cujus nos confídimu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nAcceptábis sacrificium justítiæ, oblatiónes et holocáusta, super altáre tuum, Dómine.", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut, quos divínis reparáre non désinis sacraméntis, tuis non destítuas benígnus auxíliis.\n", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Agapiti Martyris*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventión", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-19": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Joánnem, Confessórem tuum, ad cultum sacrórum Córdium Jesu et Maríæ rite promovéndum, mirabíliter infla", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + } + ], + "2025-08-20": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Bernárdum minístrum tribuísti: præsta, quǽsumus; ut, quem Doctórem vitæ habúi", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 39:6-14*\nJustus cor suum tradet ad vigilándum dilúculo ad Dóminum, qui fecit illum, et in ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", + "id": "Offertorium" + }, + { + "body": "Sancti Bernardi Confessóris tui atque Doctoris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et t", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Bernárdus Conféssor tuus et Doctor egrégius, quǽsumus, precátor ac", + "id": "Postcommunio" + } + ], + "2025-08-21": [ + { + "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, qui beátam Joánnam Francíscam, tuo amóre succénsam, admirábili spíritus fortitúdine per o", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Illo nos amóris igne, quǽsumus. Dómine, hæc hóstia salutáris inflámmet: quo beátæ Joannæ Francíscæ cor veheménter incénd", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Communio" + }, + { + "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos cœléstis panis virtúte satiásti, beáta Joánna Francisca interced", + "id": "Postcommunio" + } + ], + "2025-08-22": [ + { + "body": "*Hebr 4:16.*\nAdeámus cum fidúcia ad thronum grátiæ, ut misericórdiam consequámur, et grátiam inveniámus in auxílio oppor", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui in Corde beátæ Maríæ Vírginis dignum Spíritus Sancti habitáculum præparásti: concéde pro", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Timotheo, Hippolyto et Symphoriano, Martyribus*\nAuxílium tuum nobis, Dómine, quǽsumus, placátus impénde: et, in", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:23-31*\nEgo quasi vitis fructificávi suavitátem odóris: et flores mei, fructus honóris ", + "id": "Lectio" + }, + { + "body": "*Ps 12:6*\nExsultábit cor meum in salutári tuo: cantábo Dómino, qui bona tríbuit mihi: et psallam nómini Dómini altíssimi", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 19:25-27*\nIn illo témpore: Stabant juxta crucem Jesu mater ejus, e", + "id": "Evangelium" + }, + { + "body": "*Luc 1:46; 1:49*\nExsultávit spíritus meus in Deo salutári meo; quia fecit mihi magna qui potens est, et sanctum nomen ej", + "id": "Offertorium" + }, + { + "body": "Majestáti tuæ, Dómine, Agnum immaculátum offeréntes, quǽsumus: ut corda nostra ignis ille divínus accéndat, cui Cor beát", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Timotheo, Hippolyto et Symphoriano, Martyribus*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum hon", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "*Joann 19:27*\nDixit Jesus matri suæ: Múlier, ecce fílius tuus: deinde dixit discípulo: Ecce mater tua. Et ex illa hora a", + "id": "Communio" + }, + { + "body": "Divínis refécti munéribus te, Dómine, supplíciter exorámus: ut beátæ Maríæ Vírginis intercessióne, cujus immaculáti Cord", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Timotheo, Hippolyto et Symphoriano, Martyribus*\nDivíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-23": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui per beátum Philippum Confessórem tuum, exímium nobis humilitátis exémplum tribuísti: da fámulis tuis próspera ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto Philíppo Confessóre tuo, per hæc con", + "id": "Postcommunio" + } + ], + "2025-08-24": [ + { + "body": "*Ps 67:6-7; 67:36*\nDeus in loco sancto suo: Deus qui inhabitáre facit unánimes in domo: ipse dabit virtútem et fortitúdi", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui, abundántia pietátis tuæ, et mérita súpplicum excédis et vota: effúnde super nos miseric", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Bartholomæi Apostoli*\nOmnípotens sempitérne Deus, qui hujus diei venerándam sanctámque lætítiam in beát", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 15:1-10*\nFratres: Notum vobis fácio Evangélium, quod prædicáv", + "id": "Lectio" + }, + { + "body": "*Ps 27:7 27:1*\nIn Deo sperávit cor meum, et adjútus sum: et reflóruit caro mea, et ex voluntáte mea confitébor illi.\n℣. ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 7:31-37*\nIn illo témpore: Exiens Jesus de fínibus Tyri, venit per Si", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nExaltábo te, Dómine, quóniam suscepísti me, nec delectásti inimícos meos super me: Dómine, clamávi ad te, et", + "id": "Offertorium" + }, + { + "body": "Réspice, Dómine, quǽsumus, nostram propítius servitútem: ut, quod offérimus, sit tibi munus accéptum, et sit nostræ frag", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Bartholomæi Apostoli*\nBeáti Apóstoli tui Bartholomæi sollémnia recenséntes, quǽsumus, Dómine: ut ejus a", + "id": "Commemoratio Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Prov 3:9-10*\nHónora Dóminum de tua substántia, et de prímitiis frugum tuárum: et implebúntur hórrea tua saturitáte, et ", + "id": "Communio" + }, + { + "body": "Sentiámus, quǽsumus, Dómine, tui perceptióne sacraménti, subsídium mentis et córporis: ut, in utróque salváti, cæléstis ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Bartholomæi Apostoli*\nSumptum, Dómine, pignus redemptiónis ætérnæ: sit nobis, quǽsumus; interveniénte b", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-25": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Ludovícum Confessórem tuum de terréno regno ad cœléstis regni glóriam transtulísti: ejus, quǽsumus, mér", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 10:10-14*\nJustum dedúxit Dóminus per vias rectas, et ostendit illi regnum Dei, et dedit illi", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiandu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 19:12-26*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc:", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, sicut beátus Ludovícus Conféssor tuus, spretis mundi oblectaméntis, soli Regi Chr", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Deus, qui beátum Confessórem tuum Ludovícum mirificásti in terris, et gloriósum in cœlis fecísti: eúndem, quǽsumus, Eccl", + "id": "Postcommunio" + } + ], + "2025-08-26": [ + { + "body": "*Ps 86:1-2*\nFundaménta eius in móntibus sanctis: díligit Dóminus portas Sion super ómnia tabernácula Jacob.\n*Ps 86:3*\nGl", + "id": "Introitus" + }, + { + "body": "Omnipotens et misericors Deus, qui ad defensionem populi Polonici in beatissima Virgine Maria perpetuum auxilium mirabli", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Prov 8:17-24; 8:32-35*\nEgo díligentés mé díligó et quí máne vigilant ad mé invenient mé. Mécum ", + "id": "Lectio" + }, + { + "body": "Porta cæli et stella maris es. Virgo Maria, Regis æterni Mater ac Regina nostra.\n℣. Gratos nos redde Filio tuo: quia omn", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 2:1-11*\nIn illo témpore: Núptiæ factæ sunt in Cana Galilǽæ: et era", + "id": "Evangelium" + }, + { + "body": "*Ps 47:13-15*\nCircumdate Sion, et complectimini eam, narrate in turribus eius: pronite corda vestra in virtute eius, et ", + "id": "Offertorium" + }, + { + "body": "Pro religiónis christiánæ triúmpho hóstias placatiónis tibi, Dómine, immolámus: quæ ut nobis profíciant, opem auxiliátri", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 86:3; 86:2*\nGloriosa dicta sunt de te, civitas Dei: diligit Dominus portas Sion super omnia tabernacula Iacob.", + "id": "Communio" + }, + { + "body": "Adésto, Dómine, pópulis, qui participatióne Córporis et Sánguinis tui reficiúntur: ut, sanctíssima tua Genetríce auxiliá", + "id": "Postcommunio" + } + ], + "2025-08-27": [ + { + "body": "*Ps 33:12*\nVeníte, fílii, audíte me: timorem Dómini docébo vos.\n*Ps 33:2*\nBenedícam Dóminum in omni témpore: semper laus", + "id": "Introitus" + }, + { + "body": "Deus, qui per sanctum Joséphum Confessórem tuum, ad erudiéndam spíritu intellegéntiæ ac pietátis juventútem, novum Ecclé", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 10:10-14*\nJustum dedúxit Dóminus per vias rectas, et ostendit illi regnum Dei, et dedit illi", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-5*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes:", + "id": "Evangelium" + }, + { + "body": "*Ps 9:17*\nDesidérium páuperum exaudívit Dóminus: præparatiónem cordis eórum audívit auris tua.", + "id": "Offertorium" + }, + { + "body": "Atáre tuum, Dómine, munéribus cumulamus oblatis: ut ejus nobis fiant supplicatione propitia, cujus nos donasti patrocíni", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 10:14*\nSínite párvulos veníre ad me, et ne prohibuéritis eos: tálium est enim regnum Dei.", + "id": "Communio" + }, + { + "body": "Sanctificáti, Dómine, salutári mystério: quǽsumus; ut, intercedénte sancto Josépho Confessóre tuo, ad majus semper profi", + "id": "Postcommunio" + } + ], + "2025-08-28": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Adésto supplicatiónibus nostris, omnípotens Deus: et, quibus fidúciam sperándæ pietátis indúlges, intercedénte beáto Aug", + "id": "Oratio" + }, + { + "body": "*Pro S. Hermete Martyre*\nDeus, qui beátum Hermétem Mártyrem tuum virtúte constántiæ in passióne roborásti: ex ejus nobis", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis s", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", + "id": "Offertorium" + }, + { + "body": "Sancti Augustíni Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et t", + "id": "Secreta" + }, + { + "body": "*Pro S. Hermete Martyre*\nSacrifícium tibi, Dómine, laudis offérimus in tuórum commemoratióne Sanctórum: da, quǽsumus; ut", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Augustínus Póntifex tuus et Doctor egrégius, quǽsumus, precátor ac", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Hermete Martyre*\nRepleti, Dómine, benedictióne cœlésti, quǽsumus cleméntiam tuam: ut, intercedénte beáto Herméte", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-29": [ + { + "body": "*Ps 118:46-47.*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ ", + "id": "Introitus" + }, + { + "body": "Sancti Joánnis Baptístæ Præcursóris et Martyris tui, quǽsumus, Dómine, veneránda festívitas: salutáris auxílii nobis præ", + "id": "Oratio" + }, + { + "body": "*Pro S. Sabina Martyre*\nDeus, qui inter cétera poténtiæ tuæ mirácula étiam in sexu frágili victóriam martýrii contulísti", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Jeremíæ Prophétæ.\n*Jer 1:17-19*\nIn diébus illis: Factum est verbum Dómini ad me, dicens: Accínge lumbos tuos, et ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiándu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 6:17-29*\nIn illo témpore: Misit Heródes, ac ténuit Joánnem, et vinxi", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Múnera, quæ tibi, Dómine, pro sancti Martyris tui Joánnis Baptístæ passióne deférimus: quǽsumus; ut ejus obténtu nobis p", + "id": "Secreta" + }, + { + "body": "*Pro S. Sabina Martyre*\nHóstias tibi, Dómine, beátæ Sabínæ Mártyris tuæ dicátas méritis, benígnus assúme: et ad perpétuu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso.", + "id": "Communio" + }, + { + "body": "Cónferat nobis, Dómine, sancti Joánnis Baptístæ sollémnitas: ut et magnífica sacraménta, quæ súmpsimus, significáta vene", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Sabina Martyre*\nDivíni muneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut, intercedénte beáta Sabína M", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-30": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Bonórum ómnium largítor, omnípotens Deus, qui beátam Rosam, cœléstis grátiæ rore prævéntam, virginitátis et patiéntiæ de", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Felice et Adaucto*\nMajestátem tuam, Dómine, súpplices exorámus: ut, sicut nos júgiter Sanctórum tuórum commemor", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Felice et Adaucto*\nHóstias, Dómine, tuæ plebis inténde: et, quas in honóre Sanctórum tuórum devóta mente celébr", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Felice et Adaucto*\nRepléti, Dómine, munéribus sacris: quǽsumus: ut, intercedéntibus Sanctis tuis, in gratiárum ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-31": [ + { + "body": "*Ps 69:2-3*\nDeus, in adjutórium meum inténde: Dómine, ad adjuvándum me festína: confundántur et revereántur inimíci mei,", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, de cujus múnere venit, ut tibi a fidélibus tuis digne et laudabíliter serviátur: tríbue, ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 3:4-9*\nFratres: Fidúciam talem habémus per Christum ad Deum: n", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nBenedícam Dóminum in omni témpore: semper laus ejus in ore meo.\n℣. In Dómino laudábitur ánima mea: áudiant m", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:23-37*\nIn illo témpore: Dixit Jesus discípulis suis: Beáti óculi, qu", + "id": "Evangelium" + }, + { + "body": "*Exod 32:11 32:13; 32:14*\nPrecátus est Moyses in conspéctu Dómini, Dei sui, et dixit: Quare, Dómine, irásceris in pópulo", + "id": "Offertorium" + }, + { + "body": "Hóstias, quǽsumus, Dómine, propítius inténde, quas sacris altáribus exhibémus: ut, nobis indulgéntiam largiéndo, tuo nóm", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13; 103:14-15*\nDe fructu óperum tuórum, Dómine, satiábitur terra: ut edúcas panem de terra, et vinum lætíficet c", + "id": "Communio" + }, + { + "body": "Vivíficet nos, quǽsumus, Dómine, hujus participátio sancta mystérii: et páriter nobis expiatiónem tríbuat et múnimen.\nPe", + "id": "Postcommunio" + } + ], + "2025-09-01": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Domine Iesu Christe, qui in humili tuæ Crucis sequela ascensiones ad te disposuisti; concede propitius; ut, exemplo beat", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Virginis tuæ Bronislavæ precibus Domine Iesu Christe, plebis tuæ dona sanctifica: ut, quæ tibi tuo grata sunt instituto,", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Corporis et Sanguinis tui sacra libatio, Domine, intercedente beata Virgine Bronislava, ab omnibus nos caducis rebus ave", + "id": "Postcommunio" + } + ], + "2025-09-02": [ + { + "body": "*Ps 36:30-31.*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, Ecclésiæ tuæ, omnípotens Deus: ut beátum Stéphanum Confessórem tuum, quem regnántem in terris propaga", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 31:8-11*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiándu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:12-26*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc: ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Réspice, quas offérimus, hóstias, omnípotens Deus: et præsta; ut, qui passiónis Dominicæ mystéria celebrámus, imitémur q", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut beáti Stephani Confessóris tui fidem cóngrua devotióne sectémur; qui, pro ejúsdem ", + "id": "Postcommunio" + } + ], + "2025-09-03": [ + { + "body": "*Ps 88:20-22*\nExtuli eléctum de pópulo, óleo sancto meo unxi eum: ut manus mea sit semper cum eo, et brácchium meum conf", + "id": "Introitus" + }, + { + "body": "Deus, qui ad tuéndam cathólicam fidem, et univérsa in Christo instauránda sanctum Pium, Summum Pontíficem, cælésti sapié", + "id": "Oratio" + }, + { + "body": "Lectio prima Sancti Pauli apóstoli ad Thessalonicénses\n*1 Thess 2:2-8*\nFratres: Fidúciam habúimus in Deo nostro, loqui a", + "id": "Lectio" + }, + { + "body": "*Ps 39:10-11*\nAnnuntiávi justítiam tuam in cœtu magno; ecce lábia mea non cohíbui: Dómine, tu nosti.\n℣. Justítiam tuam n", + "id": "Graduale" + }, + { + "body": "Sequéntia Sancti evangélii secúndum Joánnem\n*Joannes 21:15-17*\nIn illo témpore, dicit Jesus Simóni Petro: Simon Joánnis,", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nVeníte, fílii; audíte me: timórem Dómini docébo vos.", + "id": "Offertorium" + }, + { + "body": "Oblatiónibus nostris, quǽsumus, Dómine, benígne suscéptis, da nobis, ut hæc divína mystéria, sancto Pio Summo Pontífice ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joannes 6:56-57*\nCaro enim mea vere est cibus: et sanguis meus, vere est potus; qui mandúcat meam carnem et bibit meum ", + "id": "Communio" + }, + { + "body": "Mensæ cæléstis virtúte refécti, quǽsumus, Dómine Deus noster: ut, interveniénte sancto Pio Summo Pontífice; fortes effic", + "id": "Postcommunio" + } + ], + "2025-09-04": [ + { + "body": "*Ps 69:2-3*\nDeus, in adjutórium meum inténde: Dómine, ad adjuvándum me festína: confundántur et revereántur inimíci mei,", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, de cujus múnere venit, ut tibi a fidélibus tuis digne et laudabíliter serviátur: tríbue, ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 3:4-9*\nFratres: Fidúciam talem habémus per Christum ad Deum: n", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nBenedícam Dóminum in omni témpore: semper laus ejus in ore meo.\n℣. In Dómino laudábitur ánima mea: áudiant m", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:23-37*\nIn illo témpore: Dixit Jesus discípulis suis: Beáti óculi, qu", + "id": "Evangelium" + }, + { + "body": "*Exod 32:11 32:13; 32:14*\nPrecátus est Moyses in conspéctu Dómini, Dei sui, et dixit: Quare, Dómine, irásceris in pópulo", + "id": "Offertorium" + }, + { + "body": "Hóstias, quǽsumus, Dómine, propítius inténde, quas sacris altáribus exhibémus: ut, nobis indulgéntiam largiéndo, tuo nóm", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13; 103:14-15*\nDe fructu óperum tuórum, Dómine, satiábitur terra: ut edúcas panem de terra, et vinum lætíficet c", + "id": "Communio" + }, + { + "body": "Vivíficet nos, quǽsumus, Dómine, hujus participátio sancta mystérii: et páriter nobis expiatiónem tríbuat et múnimen.\nPe", + "id": "Postcommunio" + } + ], + "2025-09-05": [ + { + "body": "*Eccli 45:30*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.\n", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, omnípotens Deus: ut beáti Lauréntii Confessóris tui atque Pontíficis veneránda sollémnitas, et devotiónem ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:16-27; 45:3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Ps 44:20*\nNon est invéntus símilis illi, qui conser", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam h", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Lauréntio Confessór", + "id": "Postcommunio" + } + ], + "2025-09-06": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2025-09-07": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nRéspice, Dómine, in testaméntum tuum, et ánimas páuperum tuórum ne derelínquas in finem: exsúrg", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, da nobis fídei, spei et caritátis augméntum: et, ut mereámur asséqui quod promíttis, fac nos", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas\n*Gal 3:16-22*\nFratres: Abrahæ dictæ sunt promissiónes, et sémini ejus. N", + "id": "Lectio" + }, + { + "body": "*Ps 73:20; 73:19; 73:22*\nRéspice, Dómine, in testaméntum tuum: et ánimas páuperum tuórum ne obliviscáris in finem.\n℣. Ex", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 17:11-19*\nIn illo témpore: Dum iret Jesus in Jerúsalem, transíbat per m", + "id": "Evangelium" + }, + { + "body": "*Sap 30:15-16*\nIn te sperávi, Dómine; dixi: Tu es Deus meus, in mánibus tuis témpora mea.", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, pópulo tuo, propitiáre munéribus: ut, hac oblatióne placátus, et indulgéntiam nobis tríbuas et postu", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Sap 16:20*\nPanem de cœlo dedísti nobis, Dómine, habéntem omne delectaméntum et omnem sapórem suavitátis.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, cœléstibus sacraméntis: ad redemptiónis ætérnæ, quǽsumus, proficiámus augméntum.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-09-08": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Fámulis tuis, quǽsumus, Dómine, cœléstis grátiæ munus impertíre: ut, quibus beátæ Vírginis partus éxstitit salútis exórd", + "id": "Oratio" + }, + { + "body": "*Pro S. Adriani, Mart*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti Hadriáni Mártyris tui natalítia cólimus, interce", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Prov 8:22-35*\nDóminus possédit me in inítio viárum suárum, ántequam quidquam fáceret a princípi", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo Maria: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Initium ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 1:1-16*\nLiber generatiónis Jesu Christi, fílii David, fílii Abraham.", + "id": "Evangelium" + }, + { + "body": "Beáta es, Virgo María, quæ ómnium portásti Creatórem: genuísti qui te fecit, et in ætérnum pérmanes Virgo.", + "id": "Offertorium" + }, + { + "body": "Unigéniti tui, Dómine, nobis succúrrat humánitas: ut, qui natus de Vírgine, matris integritátem non mínuit, sed sacrávit", + "id": "Secreta" + }, + { + "body": "*Pro S. Hadriano*\nMunéribus nostris, quǽsumus, Dómine, precibúsque susceptis: et cœléstibus nos munda mystériis, et clem", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, celebritátis ánnuæ votíva sacraménta: præsta, quǽsumus; ut et temporális vitæ nobis remédia præbeant ", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Hadriano*\nDa, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur offí", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-09": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nRéspice, Dómine, in testaméntum tuum, et ánimas páuperum tuórum ne derelínquas in finem: exsúrg", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, da nobis fídei, spei et caritátis augméntum: et, ut mereámur asséqui quod promíttis, fac nos", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Gorgonii Martyris*\nSanctus tuus, Dómine, Gorgónius sua nos intercessióne lætíficet: et pia fáciat solle", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas\n*Gal 3:16-22*\nFratres: Abrahæ dictæ sunt promissiónes, et sémini ejus. N", + "id": "Lectio" + }, + { + "body": "*Ps 73:20; 73:19; 73:22*\nRéspice, Dómine, in testaméntum tuum: et ánimas páuperum tuórum ne obliviscáris in finem.\n℣. Ex", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 17:11-19*\nIn illo témpore: Dum iret Jesus in Jerúsalem, transíbat per m", + "id": "Evangelium" + }, + { + "body": "*Sap 30:15-16*\nIn te sperávi, Dómine; dixi: Tu es Deus meus, in mánibus tuis témpora mea.", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, pópulo tuo, propitiáre munéribus: ut, hac oblatióne placátus, et indulgéntiam nobis tríbuas et postu", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Gorgonii Martyris*\nGrata tibi sit, Dómine, nostræ servitútis oblátio: pro qua sanctus Gorgónius Martyr ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Sap 16:20*\nPanem de cœlo dedísti nobis, Dómine, habéntem omne delectaméntum et omnem sapórem suavitátis.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, cœléstibus sacraméntis: ad redemptiónis ætérnæ, quǽsumus, proficiámus augméntum.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Gorgonii Martyris*\nFamíliam tuam, Deus, suávitas ætérna contíngat et végetet: quæ in Mártyre tuo Gorgón", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-10": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Adésto Dómine supplicatiónibus nostris quas in beáti Nicolái Confessóris tui solemnitáte deférimus: ut qui nostræ justít", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto N. Confessóre tuo, per hæc contra óm", + "id": "Postcommunio" + } + ], + "2025-09-11": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nRéspice, Dómine, in testaméntum tuum, et ánimas páuperum tuórum ne derelínquas in finem: exsúrg", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, da nobis fídei, spei et caritátis augméntum: et, ut mereámur asséqui quod promíttis, fac nos", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Proti et Hyacinthi Martyrum*\nBeatórum Mártyrum tuórum Proti et Hyacínthi nos, Dómine, fóveat pretiósa ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas\n*Gal 3:16-22*\nFratres: Abrahæ dictæ sunt promissiónes, et sémini ejus. N", + "id": "Lectio" + }, + { + "body": "*Ps 73:20; 73:19; 73:22*\nRéspice, Dómine, in testaméntum tuum: et ánimas páuperum tuórum ne obliviscáris in finem.\n℣. Ex", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 17:11-19*\nIn illo témpore: Dum iret Jesus in Jerúsalem, transíbat per m", + "id": "Evangelium" + }, + { + "body": "*Sap 30:15-16*\nIn te sperávi, Dómine; dixi: Tu es Deus meus, in mánibus tuis témpora mea.", + "id": "Offertorium" + }, + { + "body": "Propitiáre, Dómine, pópulo tuo, propitiáre munéribus: ut, hac oblatióne placátus, et indulgéntiam nobis tríbuas et postu", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Proti et Hyacinthi Martyrum*\nPro sanctórum Mártyrum tuórum Proti et Hyacínthi commemoratióne, múnera t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Sap 16:20*\nPanem de cœlo dedísti nobis, Dómine, habéntem omne delectaméntum et omnem sapórem suavitátis.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, cœléstibus sacraméntis: ad redemptiónis ætérnæ, quǽsumus, proficiámus augméntum.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Proti et Hyacinthi Martyrum*\nUt percépta nos, Dómine, tua sancta puríficent: beatórum Mártyrum tuórum ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-12": [ + { + "body": "*Ps 44:13; 44:15-16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus add", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut fidéles tui, qui sub sanctíssimæ Vírginis Maríæ Nómine et protectióne lætántur; e", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:23-31*\nEgo quasi vitis fructificávi suavitátem odóris: et flores mei fructus honóris e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:26-38*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitáte", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28; 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos úbique protegi; in ", + "id": "Postcommunio" + } + ], + "2025-09-13": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2025-09-14": [ + { + "body": "*Ps 83:10-11.*\nProtéctor noster, áspice, Deus, et réspice in fáciem Christi tui: quia mélior est dies una in átriis tuis", + "id": "Introitus" + }, + { + "body": "Custódi, Dómine, quǽsumus, Ecclésiam tuam propitiatióne perpétua: et quia sine te lábitur humána mortálitas; tuis semper", + "id": "Oratio" + }, + { + "body": "*Commemoratio In Exaltatione Sanctæ crucis*\nDeus, qui nos hodiérna die Exaltatiónis sanctæ Crucis ánnua sollemnitáte læt", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:16-24*\nFratres: Spíritu ambuláte, et desidéria carnis non perfic", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nBonum est confidére in Dómino, quam confidére in hómine.\n℣. Bonum est speráre in Dómino, quam speráre in pr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 6:24-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo potest", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nImmíttet Angelus Dómini in circúitu timéntium eum, et erípiet eos: gustáte et vidéte, quóniam suávis est Dóm", + "id": "Offertorium" + }, + { + "body": "Concéde nobis, Dómine, quǽsumus, ut hæc hóstia salutáris et nostrórum fiat purgátio delictórum, et tuæ propitiátio potes", + "id": "Secreta" + }, + { + "body": "*Commemoratio In Exaltatione Sanctæ crucis*\nJesu Christi, Dómini nostri, Córpore et Sánguine saginándi, per quem Crucis ", + "id": "Commemoratio Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Matt 6:33*\nPrimum quǽrite regnum Dei, et ómnia adjiciéntur vobis, dicit Dóminus.", + "id": "Communio" + }, + { + "body": "Puríficent semper et múniant tua sacraménta nos, Deus: et ad perpétuæ ducant salvatiónis efféctum.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio In Exaltatione Sanctæ crucis*\nAdésto nobis, Dómine, Deus noster: et, quos sanctæ Crucis lætári facis honór", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-15": [ + { + "body": "*Joann 19:25*\nStabant juxta Crucem Jesu Mater ejus, et soror Matris ejus, María Cléophæ, et Salóme et María Magdaléne.\n*", + "id": "Introitus" + }, + { + "body": "Deus, in cujus passióne, secúndum Simeónis prophetíam, dulcíssimam ánimam gloriósæ Vírginis et Matris Maríæ dolóris glad", + "id": "Oratio" + }, + { + "body": "Léctio libri Judith.\n*Judith 13:22; 13:23-25*\nBenedíxit te Dóminus in virtúte sua, quia per te ad níhilum redégit inimíc", + "id": "Lectio" + }, + { + "body": "Dolorósa et lacrimábilis es, Virgo María, stans juxta Crucem Dómini Jesu, Fílii tui, Redemptóris.\n℣. Virgo Dei Génetrix,", + "id": "Graduale" + }, + { + "body": "Stabat Mater dolorósa\nJuxta Crucem lacrimósa,\nDum pendébat Fílius.\n\nCujus ánimam geméntem,\nContristátam et doléntem\nPert", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 19:25-27.*\nIn illo témpore: Stabant juxta Crucem Jesu Mater ejus, ", + "id": "Evangelium" + }, + { + "body": "*Jer 18:20*\nRecordáre, Virgo, Mater Dei, dum stéteris in conspéctu Dómini, ut loquáris pro nobis bona, et ut avértat ind", + "id": "Offertorium" + }, + { + "body": "Offérimus tibi preces et hóstias, Dómine Jesu Christe, humiliter supplicántes: ut, qui Transfixiónem dulcíssimi spíritus", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Felíces sensus beátæ Maríæ Vírginis, qui sine morte meruérunt martýrii palmam sub Cruce Dómini.", + "id": "Communio" + }, + { + "body": "Sacrifícia, quæ súmpsimus, Dómine Jesu Christe, Transfixiónem Matris tuæ et Vírginis devóte celebrántes: nobis ímpetrent", + "id": "Postcommunio" + } + ], + "2025-09-16": [ + { + "body": "*Ps 78:11-12; 78:10*\nIntret in conspéctu tuo, Dómine, gémitus compeditórum: redde vicínis nostris séptuplum in sinu eóru", + "id": "Introitus" + }, + { + "body": "Beatórum Mártyrum, paritérque Pontíficum Cornélii et Cypriáni nos quǽsumus Dómine festa tueántur: et eórum comméndet orá", + "id": "Oratio" + }, + { + "body": "*Pro S. Euphemia*\nPræsta, Dómine, précibus nostris cum exsultatióne provéntum: ut sanctórum Mártyrum Euphémiæ, Lúciæ et ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Sap 3:1-8*\nJustorum ánimæ in manu Dei sunt, et non tanget illos torméntum mortis. Visi sunt ocul", + "id": "Lectio" + }, + { + "body": "*Exod 15:11*\nGloriósus Deus in Sanctis suis: mirábilis in majestáte, fáciens prodígia.\n*Exod 15:6*\n℣. Déxtera tua, Dómin", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 21:9-19*\nIn illo témpore: Dixit Jesus discípulis suis: Cum audieritis ", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nMirábilis Deus in Sanctis suis: Deus Israël, ipse dabit virtútem et fortitúdinem plebi suæ: benedíctus Deus, ", + "id": "Offertorium" + }, + { + "body": "Adésto, Dómine, supplicatiónibus nostris, quas in Sanctórum tuórum commemoratióne deférimus: ut, qui nostræ justítiæ fid", + "id": "Secreta" + }, + { + "body": "*Pro S. Euphemia*\nVota pópuli tui, quǽsumus, Dómine, propítius inténde: et, quorum nos tríbuis sollémnia celebráre, fac ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentávit eos: tamquam aurum in fornáce probávit eos, et quas", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, salutáribus repléti mystériis: ut, quorum sollémnia celebrámus, eórum oratiónibus adjuvémur.\nPer Domin", + "id": "Postcommunio" + }, + { + "body": "Exáudi, Dómine, preces nostras: et sanctórum Mártyrum tuórum Euphémiæ, Lúciæ et Geminiáni, quorum festa sollémniter cele", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-17": [ + { + "body": "*Ps 83:10-11.*\nProtéctor noster, áspice, Deus, et réspice in fáciem Christi tui: quia mélior est dies una in átriis tuis", + "id": "Introitus" + }, + { + "body": "Custódi, Dómine, quǽsumus, Ecclésiam tuam propitiatióne perpétua: et quia sine te lábitur humána mortálitas; tuis semper", + "id": "Oratio" + }, + { + "body": "*Commemoratio Impressionis Stigmatum S. Francisci*\nDómine Jesu Christe, qui, frigescénte mundo, ad inflammándum corda no", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:16-24*\nFratres: Spíritu ambuláte, et desidéria carnis non perfic", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nBonum est confidére in Dómino, quam confidére in hómine.\n℣. Bonum est speráre in Dómino, quam speráre in pr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 6:24-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo potest", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nImmíttet Angelus Dómini in circúitu timéntium eum, et erípiet eos: gustáte et vidéte, quóniam suávis est Dóm", + "id": "Offertorium" + }, + { + "body": "Concéde nobis, Dómine, quǽsumus, ut hæc hóstia salutáris et nostrórum fiat purgátio delictórum, et tuæ propitiátio potes", + "id": "Secreta" + }, + { + "body": "*Commemoratio Impressionis Stigmatum S. Francisci*\nMúnera tibi, Dómine, dicata sanctífica: et, intercedénte beáto Francí", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 6:33*\nPrimum quǽrite regnum Dei, et ómnia adjiciéntur vobis, dicit Dóminus.", + "id": "Communio" + }, + { + "body": "Puríficent semper et múniant tua sacraménta nos, Deus: et ad perpétuæ ducant salvatiónis efféctum.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Impressionis Stigmatum S. Francisci*\nDeus, qui mira Crucis mystéria in beáto Francísco Confessóre tuo mult", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-18": [ + { + "body": "*Eccli 1:14-15*\nDiléctio Dei honorábilis sapiéntia: quibus autem apparúerit in visu, díligunt eam in visióne et in agnit", + "id": "Introitus" + }, + { + "body": "Deus, qui ad unigénitum Fílium tuum exaltátum a terra ómnia tráhere disposuísti: pérfice propítius; ut, méritis et exémp", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 13:1-8*\nFratres: Si linguis hóminum loquar et Angelorum, cari", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 22:1-14*\nIn illo témpore: Loquebátur Jesus princípibus sacerdótum ", + "id": "Evangelium" + }, + { + "body": "*Ps 34:13*\nEgo autem, cum mihi molésti essent, induébar cilício. Humiliábam in jejúnio ánimam meam: et orátio mea in sin", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 68:30-31*\nEgo sum pauper et dolens: salus tua, Deus, suscépit me. Laudábo nomen Dei cum cantico: et magnificábo eum ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + } + ], + "2025-09-19": [ + { + "body": "*Ps 36:39*\nSalus autem justórum a Dómino: et protéctor eórum est in témpore tribulatiónis.\n*Ps 36:1*\nNoli æmulári in mal", + "id": "Introitus" + }, + { + "body": "Deus, qui nos ánnua sanctórum Mártyrum tuórum Januárii et Sociórum ejus sollemnitáte lætíficas: concéde propítius; ut, q", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebraeos.\n*Hebr 10:32-38*\nFratres: Rememorámini prístinos dies, in quibus illumi", + "id": "Lectio" + }, + { + "body": "*Ps 33:18-19*\nClamavérunt justi, et Dóminus exaudívit eos: et ex ómnibus tribulatiónibus eórum liberávit eos.\n℣. Juxta e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:3-13*\nIn illo témpore: Sedénte Jesu super montem Olivéti, access", + "id": "Evangelium" + }, + { + "body": "*Sap 3:1-3*\nJustórum ánimæ in manu Dei sunt, et non tanget illos torméntum malítiae: visi sunt óculis insipiéntium mori:", + "id": "Offertorium" + }, + { + "body": "Oblátis, quǽsumus, Dómine, placáre munéribus: et, intercedéntibus sanctis Martýribus tuis Januário et Sóciis ejus, a cun", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 10:27*\nQuod dico vobis in ténebris, dícite in lúmine, dicit Dóminus: et quod in aure audítis, prædicáte super tect", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedéntibus sanctis Martýribus tuis Januário et Sóciis ejus, coelést", + "id": "Postcommunio" + } + ], + "2025-09-20": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Eustachii et Sociorum Martyrum*\nDeus, qui nos concédis sanctórum Mártyrum tuórum Eustáchii et Sociórum ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Eustachii et Sociorum Martyrum*\nMúnera tibi, Dómine, nostra devotiónis offérimus: quæ et pro tuórum tib", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Eustachii et Sociorum Martyrum*\nPræsta nobis, quǽsumus, Dómine: intercedéntibus sanctis Martýribus tuis", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-21": [ + { + "body": "*Ps 85:1; 85:2-3*\nInclína, Dómine, aurem tuam ad me, et exáudi me: salvum fac servum tuum, Deus meus, sperántem in te: m", + "id": "Introitus" + }, + { + "body": "Ecclésiam tuam, Dómine, miserátio continuáta mundet et múniat: et quia sine te non potest salva consístere; tuo semper m", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Matthæi Apostoli et Evangelistæ*\nBeáti Apóstoli et Evangelístæ Matthæi, Dómine, précibus adjuvémur: ut,", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:25-26; 6:1-10*\nFratres: Si spíritu vívimus, spíritu et ambulémus", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3.*\nBonum est confitéri Dómino: et psallere nómini tuo, Altíssime.\n℣. Ad annuntiándum mane misericórdiam tuam, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:11-16*\nIn illo témpore: Ibat Jesus in civitátem, quæ vocátur Naim: e", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2; 39:3; 39:4*\nExspéctans exspectávi Dóminum, et respéxit me: et exaudívit deprecatiónem meam: et immísit in os m", + "id": "Offertorium" + }, + { + "body": "Tua nos, Dómine, sacramenta custodiant: et contra diabólicos semper tueántur incúrsus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Matthæi Apostoli et Evangelistæ*\nSupplicatiónibus beáti Matthæi Apóstoli et Evangelístæ, quǽsumus, Dómi", + "id": "Commemoratio Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Joann 6:52*\nPanis, quem ego dédero, caro mea est pro sǽculi vita.", + "id": "Communio" + }, + { + "body": "Mentes nostras et córpora possídeat, quǽsumus, Dómine, doni cœléstis operátio: ut non noster sensus in nobis, sed júgite", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Matthæi Apostoli et Evangelistæ*\nPercéptis, Dómine, sacraméntis, beáto Matthæo Apóstolo tuo et Evangelí", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-22": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Thomam Pontíficem insígnis in páuperes misericórdiæ virtúte decorásti: quǽsumus; ut, ejus intercessióne", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Mauritio et Sociis*\nAnnue, quǽsumus, omnípotens Deus: ut sanctórum Martyrum tuórum Maurítii et Sociórum ejus no", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti Thomæ Confessóris tui atque Pontíficis, quǽsumus, Dómine, ánnua sollémnitas pietáti tuæ nos reddat accéptos: ut, ", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Mauritio et Sociis*\nRéspice, quǽsumus, Dómine, múnera, quæ in sanctórum Mártyrum tuórum Maurítii et Sociórum ej", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Deus, fidélium remunerátor animárum: præsta; ut beáti Thomæ Confessóris tui atque Pontíficis, cujus venerándam celebrámu", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Mauritio et Sociis*\nCœléstibus refécti sacraméntis et gáudiis: súpplices te rogámus, Dómine; ut, quorum gloriám", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-23": [ + { + "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", + "id": "Introitus" + }, + { + "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum atque) Summum Pontíficem, perpétua protec", + "id": "Oratio" + }, + { + "body": "*Pro S. Thecla Virg. et Mart.*\nDa, quǽsumus, omnípotens Deus: ut, qui beátæ Theclæ Vírginis et Mártyris tuæ natalítia có", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", + "id": "Secreta" + }, + { + "body": "*Pro S. Thecla Virg. et Mart.*\nSúscipe, Dómine, múnera, quæ in beátæ Theclæ Vírginis et Mártyris tuæ sollemnitáte deféri", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Thecla Virg. et Mart.*\nAuxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta Thecla Vírgine et Márt", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-24": [ + { + "body": "*Ps 80:2; 80:3; 80:4; 80:5*\nExsultáte Deo, adjutóri nostro: jubiláte Deo Jacob: súmite psalmum jucúndum cum cíthara: cán", + "id": "Introitus" + }, + { + "body": "Misericórdiæ tuæ remédiis, quǽsumus, Dómine, fragílitas nostra subsístat: ut, quæ sua conditióne attéritur, tua cleménti", + "id": "Oratio" + }, + { + "body": "Léctio Amos Prophétæ.\n*Amos 9:13-15*\nHæc dicit Dóminus Deus: Ecce, dies véniunt: et comprehéndet arátor messórem, et cal", + "id": "LectioL1" + }, + { + "body": "*Ps 112,5-7*\nQuis sicut Dóminus, Deus noster, qui in altis hábitat, et humilia réspicit in cœlo et in terra?\n℣. Súscitan", + "id": "GradualeL1" + }, + { + "body": "Præsta, quǽsumus, Dómine, famíliæ tuæ supplicánti: ut, dum a cibis corporálibus se ábstinet, a vítiis quoque mente jejún", + "id": "OratioL1" + }, + { + "body": "*Commemoratio Beatæ Mariæ Virginis de Mercede*\nDeus, qui per gloriosíssimam Fílii tui Matrem, ad liberandos Christi fidé", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Esdræ.\n*Neh 8:1-10*\nIn diébus illis: Congregátus est omnis pópulus quasi vir unus ad platéam, quæ est ante ", + "id": "Lectio" + }, + { + "body": "*Ps 32:12 ; 32:6*\nBeáta gens, cujus est Dóminus Deus eórum: pópulus, quem elégit Dóminus in hereditátem sibi.\n℣. Verbo D", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 9:16-28*\nIn illo témpore: Respóndens unus de turba, dixit ad Jesum: ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 18:48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi.", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et ad sacrifícium celebrándum, subditórum tibi córpora mentésque s", + "id": "Secreta" + }, + { + "body": "*Commemoratio Beatæ Mariæ Virginis de Mercede*\nTua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Neh 8:10*\nComédite pínguia et bíbite mulsum, et míttite partes his, qui non præparavérunt sibi: sanctus enim dies Dómin", + "id": "Communio" + }, + { + "body": "Suméntes, Dómine, dona cœléstia, supplíciter deprecámur: ut, quæ sédula servitúte, donánte te, gérimus, dignis sénsibus ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Beatæ Mariæ Virginis de Mercede*\nSumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semp", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-25": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui beatum Ladislaum religiosa perfectione voluisti omnibus prælucere: concede propitius; ut eius exemplo in virtu", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Hostias ad altare tuum offerentibus, Domine, da nobis illum pietatis affectum, quem beato Ladislao Confessori tuo infudi", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Tribuat nobis, omnipotens Deus, suffragantibus beati Ladislai Confessoris tui precibus, refectio sacra subsidium: ut et ", + "id": "Postcommunio" + } + ], + "2025-09-26": [ + { + "body": "*Ps 104:3-4*\nLætétur cor quæréntium Dóminum: quǽrite Dóminum, et confirmámini: quǽrite fáciem ejus semper.\n*Ps 104:1*\nCo", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, observatiónes sacras ánnua devotióne recoléntes, et córpore tibi placeámus et men", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Cypriani et Justinæ Martyrum*\nBeatórum Mártyrum Cypriáni et Justínæ nos, Dómine, fóveant continuáta pæ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Osee Prophétæ.\n*Osee 14:2-10*\nHæc dicit Dóminus Deus: Convértere, Israël, ad Dóminum, Deum tuum: quóniam corruíst", + "id": "Lectio" + }, + { + "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:36-50*\nIn illo témpore: Rogábat Jesum quidam de pharisǽis, ut manduc", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2; 102:5*\nBénedic, ánima mea, Dómino, et noli oblivísci omnes retributiónes ejus: et renovábitur, sicut áquilæ, ", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sint, Dómine, quǽsumus, nostri dona jejúnii: quæ et expiándo nos tua grátia dignos effíciant, et ad sempité", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Cypriani et Justinæ Martyrum*\nMúnera tibi, Dómine, nostræ devotiónis offérimus: quæ et pro tuórum tibi", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:22; 118:24*\nAufer a me oppróbrium et contémptum, quia mandáta tua exquisívi, Dómine: nam et testimónia tua medit", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, benefícia potióra sumámus.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Cypriani et Justinæ Martyrum*\nPræsta nobis, quǽsumus, Dómine: intercedéntibus sanctis Martýribus tuis ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-27": [ + { + "body": "*Ps 94:6-7*\nVeníte, adorémus Deum et procidámus ante Dóminum, plorémus ante eum, qui fecit nos: quia ipse est Dóminus, D", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui per continéntiam salutárem corpóribus medéris et méntibus: majestátem tuam súpplices exo", + "id": "Oratio" + }, + { + "body": "Léctio libri Levítici.\n*Levit 23:26-32*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: Décimo die mensis hujus ", + "id": "LectioL1" + }, + { + "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", + "id": "GradualeL1" + }, + { + "body": "Da nobis, quǽsumus, omnípotens Deus: ut, jejunándo, tua grátia satiémur; et, abstinéndo, cunctis efficiámur hóstibus for", + "id": "OratioL1" + }, + { + "body": "Léctio libri Levítici.\n*Levit 23:39-43*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: A quintodécimo die mensi", + "id": "LectioL2" + }, + { + "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", + "id": "GradualeL2" + }, + { + "body": "Tuére, quǽsumus, Dómine, fámiliam tuam: ut salútis ætérnæ remédia, quæ te inspiránte requírimus, te largiénte consequámu", + "id": "OratioL2" + }, + { + "body": "Léctio Michææ Prophétæ.\n*Mich 7:14; 7:16; 7:18-20*\nDómine, Deus noster, pasce pópulum tuum in virga tua, gregem hereditá", + "id": "LectioL3" + }, + { + "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", + "id": "GradualeL3" + }, + { + "body": "Præsta, quǽsumus, Dómine, sic nos ab épulis abstinére carnálibus: ut a vítiis irruéntibus páriter jejunémus.\nPer Dominum", + "id": "OratioL3" + }, + { + "body": "Léctio Zacharíæ Prophétæ.\n*Zach 8:14-19*\nIn diébus illis: Factum est verbum Dómini ad me, dicens: Hæc dicit Dóminus exer", + "id": "LectioL4" + }, + { + "body": "*Ps 140:2*\nDirigátur orátio mea sicut incénsum in conspéctu tuo, Dómine.\n℣. Elevátio mánuum meárum sacrifícium vespertín", + "id": "GradualeL4" + }, + { + "body": "Ut nobis, Dómine, tríbuis sollémne tibi deférre jejúnium: sic nobis, quǽsumus, indulgéntiæ præsta subsídium.\nPer Dominum", + "id": "OratioL4" + }, + { + "body": "Léctio Daniélis Prophétæ.\n*Dan 3:49-51*\nIn diébus illis: Angelus Dómini descéndit cum Azaría et sóciis ejus in fornácem:", + "id": "LectioL5" + }, + { + "body": "Deus, qui tribus púeris mitigásti flammas ígnium: concéde propítius; ut nos fámulos tuos non exúrat flamma vitiórum.\nPer", + "id": "OratioL5" + }, + { + "body": "*Commemoratio S. Cosmæ et Damiani Martyrum*\nPræsta, quǽsumus, omnípotens Deus: ut, qui sanctórum Mártyrum tuórum Cosmæ e", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebræos.\n*Hebr 9:2-12*\nFratres: Tabernáculum factum est primum, in quo erant can", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nLaudáte Dóminum, omnes gentes: et collaudáte eum, omnes pópuli.\n℣. Quóniam confirmáta est super nos miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 13:6-17*\nIn illo témpore: Dicébat Jesus turbis hanc similitúdinem: Arb", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nDómine, Deus salútis meæ, in die clamávi et nocte coram te: intret orátio mea in conspéctu tuo, Dómine.", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut oculis tuæ majestátis munus oblátum et grátiam nobis devotiónis obtíneat, et effé", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Cosmæ et Damiani Martyrum*\nSanctórum tuórum nobis, Dómine, pia non desit orátio: quæ et múnera nostra c", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Levit 23:41; 23:43*\nMense séptimo festa celebrábitis, cum in tabernáculis habitáre fécerim fílios Israël, cum edúcerem ", + "id": "Communio" + }, + { + "body": "Perfíciant in nobis, Dómine, quǽsumus, tua sacraménta quod cóntinent: ut, quæ nunc spécie gérimus, rerum veritáte capiám", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Cosmæ et Damiani Martyrum*\nPrótegat, quǽsumus, Dómine, pópulum tuum et participátio cœléstis indúlta co", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-28": [ + { + "body": "*Ps 85:3; 85:5*\nMiserére mihi, Dómine, quóniam ad te clamávi tota die: quia tu, Dómine, suávis ac mitis es, et copiósus ", + "id": "Introitus" + }, + { + "body": "Tua nos, quǽsumus, Dómine, grátia semper et prævéniat et sequátur: ac bonis opéribus júgiter præstet esse inténtos.\nPer ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 3:13-21*\nFratres: Obsecro vos, ne deficiátis in tribulatiónibus ", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:1-11*\nIn illo témpore: Cum intráret Jesus in domum cujúsdam príncip", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14; 39:15*\nDómine, in auxílium meum réspice: confundántur et revereántur, qui quærunt ánimam meam, ut áuferant ea", + "id": "Offertorium" + }, + { + "body": "Munda nos, quǽsumus, Dómine, sacrifícii præséntis efféctu: et pérfice miserátus in nobis; ut ejus mereámur esse partícip", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-17; 70:18*\nDómine, memorábor justítiæ tuæ solíus: Deus, docuísti me a juventúte mea: et usque in senéctam et s", + "id": "Communio" + }, + { + "body": "Purífica, quǽsumus, Dómine, mentes nostras benígnus, et rénova cœléstibus sacraméntis: ut consequénter et córporum præse", + "id": "Postcommunio" + } + ], + "2025-09-29": [ + { + "body": "*Ps 102:20.*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus, ad audiéndam vocem sermón", + "id": "Introitus" + }, + { + "body": "Deus, qui, miro órdine, Angelórum ministéria hominúmque dispénsas: concéde propítius; ut, a quibus tibi ministrántibus i", + "id": "Oratio" + }, + { + "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli.\n*Apoc 1:1-5*\nIn diébus illis: Significávit Deus, quæ opórtet fíeri cito", + "id": "Lectio" + }, + { + "body": "*Ps 102:20; 102:1*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus.\n℣. Benedic, ánima m", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-10*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes", + "id": "Evangelium" + }, + { + "body": "*Apoc 8:3; 8:4*\nStetit Angelus juxta aram templi, habens thuríbulum áureum in manu sua, et data sunt ei incénsa multa: e", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, laudis offérimus, supplíciter deprecántes: ut easdem, angélico pro nobis interveniénte suffrágio, ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nBenedícite, omnes Angeli Dómini, Dóminum: hymnum dícite et superexaltáte eum in sǽcula.", + "id": "Communio" + }, + { + "body": "Beáti Archángeli tui Michælis intercessióne suffúlti: súpplices te, Dómine, deprecámur; ut, quod ore prosequimur, contin", + "id": "Postcommunio" + } + ], + "2025-09-30": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiæ tuæ in exponéndis sacris Scriptúris beátum Hierónymum, Confessórem tuum, Doctórem máximum providére d", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Donis cœléstibus da nobis, quǽsumus, Dómine, líbera tibi mente servíre: ut múnera, quæ deférimus, interveniénte beáto Hi", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Repleti alimónia cœlésti, quǽsumus, Dómine: ut, interveniénte beáto Hierónymo Confessóre tuo, misericórdiæ tuæ grátiam c", + "id": "Postcommunio" + } + ], + "2025-10-01": [ + { + "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", + "id": "Introitus" + }, + { + "body": "Deus, qui beatum Ioannem Confessorem tuum eximiæ humilitatis et patientiæ donis decorasti: concede propitius; ut, eiusde", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Remigii Episcopi Confessoris*\nDa, quǽsumus omnípotens Deus: ut beáti Remígii Confessóris tui atque Pont", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Remigii Episcopi Confessoris*\nSancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto N. Confessóre tuo, per hæc contra óm", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Remigii Episcopi Confessoris*\nPræsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exh", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-02": [ + { + "body": "*Ps 102:20.*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus, ad audiéndam vocem sermón", + "id": "Introitus" + }, + { + "body": "Deus, qui ineffábili providéntia sanctos Angelos tuos ad nostram custódiam míttere dignáris: largíre supplícibus tuis; e", + "id": "Oratio" + }, + { + "body": "Léctio libri Exodi.\n*Exod 23:20-23*\nHæc dicit Dóminus Deus: Ecce, ego mittam Angelum meum, qui præcédat te, et custódiat", + "id": "Lectio" + }, + { + "body": "*Ps 90:11-12*\nAngelis suis Deus mandávit de te, ut custódiant te in ómnibus viis tuis.\n℣. In mánibus portábunt te, ne um", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-10*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes", + "id": "Evangelium" + }, + { + "body": "*Ps 102:20-21*\nBenedícite Dóminum, omnes Angeli ejus: minístri ejus, qui fácitis verbum ejus, ad audiéndam vocem sermónu", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ pro sanctórum Angelórum tuórum veneratióne deférimus: et concéde propítius; ut, perpétuis e", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nBenedícite, omnes Angeli Dómini, Dóminum: hymnum dícite et superexaltáte eum in sǽcula.", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, divína mystéria, sanctórum Angelórum tuórum festivitáte lætántes: quǽsumus; ut eórum protectióne ab h", + "id": "Postcommunio" + } + ], + "2025-10-03": [ + { + "body": "*Cant 4:8-9.*\nVeni de Líbano, sponsa mea, veni de Líbano, veni: vulnerásti cor meum, soror mea sponsa, vulnerásti cor me", + "id": "Introitus" + }, + { + "body": "Dómine, qui dixísti: Nisi efficiámini sicut párvuli, non intrábitis in regnum cœlórum: da nobis, quǽsumus: ita sanctæ Te", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ.\n*Is 66:12-14*\nHæc dicit Dóminus: Ecce, ego declinábo super eam quasi flúvium pacis, et quasi torr", + "id": "Lectio" + }, + { + "body": "*Matt 11:25*\nConfíteor tibi, Pater, Dómine cœli et terræ, quia abscondísti hæc a sapiéntibus, et prudéntibus, et revelás", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-4*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes:", + "id": "Evangelium" + }, + { + "body": "*Luc 1:46-49*\nMagníficat ánima mea Dóminum: et exsultávit spíritus meus in Deo salutári meo: quia respéxit humilitátem a", + "id": "Offertorium" + }, + { + "body": "Sacrifícium nostrum tibi, Dómine, quǽsumus, sanctæ Terésiæ Vírginis tuæ precátio sancta concíliet: ut, in cujus honóre s", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Deut 32:10-12*\nCircumdúxit eam, et dócuit: et custodívit quasi pupíllam óculi sui. Sicut aquila expándit alas suas, et ", + "id": "Communio" + }, + { + "body": "Illo nos, Dómine amóris igne cœléste mystérium inflámmet: quo sancta Teresia Virgo tua se tibi pro homínibus caritátis v", + "id": "Postcommunio" + } + ], + "2025-10-04": [ + { + "body": "*Gal 6:14.*\nMihi autem absit gloriári, nisi in Cruce Dómini nostri Jesu Christi: per quem mihi mundus crucifíxus est, et", + "id": "Introitus" + }, + { + "body": "Deus, qui Ecclésiam tuam, beáti Francisci méritis fœtu novæ prolis amplíficas: tríbue nobis; ex ejus imitatióne, terréna", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 6:14-18.*\nFratres: Mihi autem absit gloriári, nisi in Cruce Dómini", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 11:25-30*\nIn illo témpore: Respóndens Jesus, dixit: Confíteor tibi", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, dicata sanctífica: et, intercedénte beáto Francísco, ab omni nos culpárum labe purífica.\nPer Dominu", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ecclésiam tuam, quǽsumus, Dómine, grátia cœléstis amplíficet: quam beáti Francísci Confessóris tui illumináre voluísti g", + "id": "Postcommunio" + } + ], + "2025-10-05": [ + { + "body": "*Ps 118:137; 118:124*\nJustus es, Dómine, et rectum judícium tuum: fac cum servo tuo secúndum misericórdiam tuam.\n*Ps 118", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, Dómine, pópulo tuo diabólica vitáre contágia: et te solum Deum pura mente sectári.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 4:1-6*\nFratres: Obsecro vos ego vinctus in Dómino, ut digne ambu", + "id": "Lectio" + }, + { + "body": "*Ps 32:12; 32:6*\nBeáta gens, cujus est Dóminus Deus eórum: pópulus, quem elégit Dóminus in hereditátem sibi.\n℣. Verbo Dó", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:34-46*\nIn illo témpore: Accessérunt ad Jesum pharisǽi: et interr", + "id": "Evangelium" + }, + { + "body": "*Dan 9:17; 9:18; 9:19*\nOrávi Deum meum ego Dániel, dicens: Exáudi, Dómine, preces servi tui: illúmina fáciem tuam super ", + "id": "Offertorium" + }, + { + "body": "Majestátem tuam, Dómine, supplíciter deprecámur: ut hæc sancta, quæ gérimus, et a prætéritis nos delictis éxuant et futú", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 75:12-13*\nVovéte et réddite Dómino, Deo vestro, omnes, qui in circúitu ejus affértis múnera: terríbili, et ei qui au", + "id": "Communio" + }, + { + "body": "Sanctificatiónibus tuis, omnípotens Deus, et vítia nostra curéntur, et remédia nobis ætérna provéniant.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-10-06": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Sancti Brunónis Confessóris tui, quǽsumus, Dómine, intercessiónibus adjuvémur: ut, qui majestátem tuam gráviter delinqué", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœlestia aliménta percépimus, intercedénte beáto Brunóne Confessóre tuo, per hæc cont", + "id": "Postcommunio" + } + ], + "2025-10-07": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Maríæ Vírginis: de cujus sollemnitáte gaudent Angeli", + "id": "Introitus" + }, + { + "body": "Deus, cujus Unigénitus per vitam, mortem et resurrectiónem suam nobis salútis ætérnæ præmia comparávit: concéde, quǽsumu", + "id": "Oratio" + }, + { + "body": "*Pro S. Marco Papa et Conf.*\nExáudi, Dómine, preces nostras: et, interveniénte beáto Marco Confessóre tuo atque Pontífic", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Prov 8:22-24; 8:32-35*\nDóminus possédit me in inítio viárum suárum, ántequam quidquam fáceret a", + "id": "Lectio" + }, + { + "body": "*Ps 44:5; 44:11; 44:12*\nPropter veritátem et mansuetúdinem et justítiam, et dedúcet te mirabíliter déxtera tua.\n℣. Audi,", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:26-38*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitáte", + "id": "Evangelium" + }, + { + "body": "*Eccli 24:25; Eccli 39:17*\nIn me grátia omnis viæ et veritátis, in me omnis spes vitæ et virtútis: ego quasi rosa plantá", + "id": "Offertorium" + }, + { + "body": "Fac nos, quǽsumus, Dómine, his munéribus offeréndis conveniénter aptári: et per sacratíssimi Rosárii mystéria sic vitam,", + "id": "Secreta" + }, + { + "body": "*Pro S. Marco Papa et Conf.*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se mér", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "*Eccli 39:19*\nFloréte, flores, quasi lílium, et date odórem, et frondéte in grátiam, collaudáte cánticum, et benedícite ", + "id": "Communio" + }, + { + "body": "Sacratíssimæ Genetrícis tuæ, cujus Rosárium celebrámus, quǽsumus, Dómine, précibus adjuvémur: ut et mysteriórum, quæ cól", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Marco Papa et Conf.*\nDa, quǽsumus, Dómine, fidélibus pópulis Sanctórum tuórum semper veneratióne lætari: et eóru", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-08": [ + { + "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", + "id": "Introitus" + }, + { + "body": "Dómine, Deus noster, qui beátæ Birgíttæ per Fílium tuum unigénitum secreta cœléstia revelásti: ipsíus pia intercessióne ", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Sergio, Baccho, Marcello et Apulejo Martyribus*\nSanctórum Martyrum tuórum nos, Dómine, Sérgii, Bacchi, Marcélli", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*1 Tim 5:3-10.*\nCaríssime: Víduas honóra, quæ vere víduæ sunt. Si qua ", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Sergio, Baccho, Marcello et Apulejo Martyribus*\nMajestátem tuam nobis, Dómine, quǽsumus, hæc hóstia reddat immo", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Sergio, Baccho, Marcello et Apulejo Martyribus*\nSacraméntis, Dómine, muniámur accéptis: et sanctórum Mártyrum t", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-09": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui beatum Vincentium Confessorem tuum atque Pontificem, spretis saeculi pompis humilitatis gloria decorasti: prae", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Joannis Leonardi Confessoris*\nDeus, qui beátum Joánnem Confessórem tuum ad fidem in géntibus propagánda", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Joannis Leonardi Confessoris*\nSúscipe, Dómine, oblatiónem mundam salutáris hóstiæ: et præsta; ut, inter", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto N. Confessóre tuo a", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Joannis Leonardi Confessoris*\nPretiósi córporis, et sánguinis tui sacris refécti mystériis, Dómine, adp", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-10": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Dómine Jesu Christe, veræ humilitátis et exémplar et præmium: quǽsumus; ut, sicut beátum Francíscum in terréni honóris c", + "id": "Oratio" + }, + { + "body": "*Commemoratio Victoriae Chocimensis*\nDeus, qui in summis regni nostri periculis, antiqua bracchii tui miracula renovasti", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus Francíscus, quǽsumus, in salútem nobis proveníre depóscat.\nPer Do", + "id": "Secreta" + }, + { + "body": "*Commemoratio Victoriae Chocimensis*\nOdorem, Domine, sacrificii huius cum gratiarum actionibus suscipe: et praesta; ut, ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus Francíscus, pro nobis intercedéndo: ut et conversatiónis eju", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Victoriae Chocimensis*\nDeus, qui neminem in te sperantem, nimium affligi permittis, sed pium precibus prae", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-11": [ + { + "body": "*Isa 7:14.*\nEcce Virgo concípiet, et páriet fílium, et vocábitur nomen ejus Emmánuel.\n*Ps 97:1.*\nCantáte Dómino cánticum", + "id": "Introitus" + }, + { + "body": "Deus, qui de beátæ Maríæ Vírginis útero Verbum tuum, Angelo nuntiánte, carnem suscípere voluísti: præsta supplícibus tui", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:23-31*\nEgo quasi vitis fructificávi suavitátem odóris: et flores mei, fructus honóris ", + "id": "Lectio" + }, + { + "body": "*Isa 11:1-2.*\nEgrediétur virga de rádice Jesse, et flos de rádice ejus ascéndet.\n℣. Et requiéscet super eum Spíritus Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:43-51*\nIn illo témpore: Cum redírent, remánsit puer Jesus in Jerúsal", + "id": "Evangelium" + }, + { + "body": "*Matt 1:18*\nCum esset desponsáta mater ejus María Joseph, invénta est in útero habens de Spíritu Sancto.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis, Unigéniti tui matris intercessióne, ad perpétuam atque præsé", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genitríce María, cœléstis remédii fáciat ", + "id": "Postcommunio" + } + ], + "2025-10-12": [ + { + "body": "*Eccli 36:18*\nDa pacem, Dómine, sustinéntibus te, ut prophétæ tui fidéles inveniántur: exáudi preces servi tui et plebis", + "id": "Introitus" + }, + { + "body": "Dírigat corda nostra, quǽsumus, Dómine, tuæ miseratiónis operátio: quia tibi sine te placére non póssumus.\nPer Dominum…", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 1:4-8*\nFratres: Grátias ago Deo meo semper pro vobis in grátia", + "id": "Lectio" + }, + { + "body": "*Ps 121:1; 121:7*\nLætátus sum in his, quæ dicta sunt mihi: in domum Dómini íbimus.\n℣. Fiat pax in virtúte tua: et abundá", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 9:1-8*\nIn illo témpore: Ascéndens Jesus in navículam, transfretávit", + "id": "Evangelium" + }, + { + "body": "*Exodi 24:4; 24:5*\nSanctificávit Móyses altáre Dómino, ófferens super illud holocáusta et ímmolans víctimas: fecit sacri", + "id": "Offertorium" + }, + { + "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes éfficis: præsta, quǽsumus; u", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nTóllite hóstias, et introíte in átria ejus: adoráte Dóminum in aula sancta ejus.", + "id": "Communio" + }, + { + "body": "Grátias tibi reférimus, Dómine, sacro múnere vegetáti: tuam misericórdiam deprecántes; ut dignos nos ejus participatióne", + "id": "Postcommunio" + } + ], + "2025-10-13": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum regem Eduárdum Confessórem tuum æternitátis glória coronásti: fac nos, quǽsumus; ita eum venerári in te", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, eius muniá", + "id": "Postcommunio" + } + ], + "2025-10-14": [ + { + "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", + "id": "Introitus" + }, + { + "body": "Deus, qui nos cónspicis ex nostra infirmitáte defícere: ad amórem tuum nos misericórditer per Sanctórum tuórum exémpla r", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Mýstica nobis, Dómine, prosit oblátio: quæ nos et a reátibus nostris expédiat, et perpétua salvatióne confírmet.\nPer Dom", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut reátus nostros múnera sacráta puríficent, et recte vivéndi nobis operéntur efféctum.\nPer D", + "id": "Postcommunio" + } + ], + "2025-10-15": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ Terésiæ Vírginis tuæ festivitáte gaudémus; ita cœléstis ejus doct", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2025-10-16": [ + { + "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", + "id": "Introitus" + }, + { + "body": "Deus, qui beátam Hedwígem a sǽculi pompa ad húmilem tuæ Crucis sequélam toto corde transíre docuísti: concéde; ut ejus m", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2025-10-17": [ + { + "body": "*Cant 2:3.*\nSub umbra illíus, quem desideráveram, sedi: et fructus ejus dulcis gútturi meo.\n*Ps 83:2-3*\nQuam dilécta tab", + "id": "Introitus" + }, + { + "body": "Dómine Jesu Christe, qui investigábiles divítias Cordis tui beátæ Margarítæ Maríæ Vírgini mirabíliter revelásti: da nobi", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Ephes 3:8-9; 14-19.*\nFratres: Mihi ómnium sanctórum mínimo data est g", + "id": "Lectio" + }, + { + "body": "*Cant 8:7.*\nAquæ multæ non potuérunt exstínguere caritátem, nec flúmina óbruent illam.\n*Ps 72:26*\nDefécit caro mea et co", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 11:25-30*\nIn illo témpore: Respóndens Jesus, dixit: Confíteor tibi", + "id": "Evangelium" + }, + { + "body": "*Zach 9:17*\nQuid bonum ejus est et quid pulchrum ejus, nisi fruméntum electórum et vinum gérminans vírgines?", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sint, Dómine, plebis tuæ múnera: et concéde; ut ignis ille divínus nos inflámmet, quo de Corde Fílii tui em", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Cant 6:2*\nEgo dilécto meo, et diléctus meus mihi, qui páscitur inter lília.", + "id": "Communio" + }, + { + "body": "Córporis et Sánguinis tui, Dómine Jesu, sumptis mystériis: concéde nobis, quǽsumus, beáta Margaríta María Vírgine interc", + "id": "Postcommunio" + } + ], + "2025-10-18": [ + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2*\nDómine", + "id": "Introitus" + }, + { + "body": "Intervéniat pro nobis, quǽsumus, Dómine, sanctus tuus Lucas Evangélista: qui crucis mortificatiónem júgiter in suo córpo", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 8:16-24.*\nFratres: Grátias ago Deo, qui dedit eandem sollicitú", + "id": "Lectio" + }, + { + "body": "*Ps 18:5; 18:2*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.\n℣. Cœli enárrant glóriam Dei: e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et álios septuagínta duos: ", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", + "id": "Offertorium" + }, + { + "body": "Donis cœléstibus da nobis, quǽsumus, Dómine, líbera tibi mente servíre: ut múnera quæ deférimus, interveniénte beáto Eva", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, quod de sancto altári tuo accépimus, précibus beáti Evangelístæ tui Lucæ, sanctíf", + "id": "Postcommunio" + } + ], + "2025-10-19": [ + { + "body": "Salus pópuli ego sum, dicit Dóminus: de quacúmque tribulatióne clamáverint ad me, exáudiam eos: et ero illórum Dóminus i", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, univérsa nobis adversántia propitiátus exclúde: ut mente et córpore páriter expedíti, quæ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 4:23-28*\nFratres: Renovámini spíritu mentis vestræ, et indúite n", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nDirigátur orátio mea, sicut incénsum in conspéctu tuo, Dómine.\n℣. Elevatio mánuum meárum sacrifícium vespertí", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:1-14*\nIn illo témpore: Loquebátur Jesus princípibus sacerdótum e", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nSi ambulávero in médio tribulatiónis, vivificábis me, Dómine: et super iram inimicórum meórum exténdes manum ", + "id": "Offertorium" + }, + { + "body": "Hæc múnera, quǽsumus, Dómine, quæ óculis tuæ majestátis offérimus, salutária nobis esse concéde.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nTu mandásti mandáta tua custodíri nimis: útinam dirigántur viæ meæ, ad custodiéndas justificatiónes tuas.", + "id": "Communio" + }, + { + "body": "Tua nos, Dómine, medicinális operátio, et a nostris perversitátibus cleménter expédiat, et tuis semper fáciat inhærére m", + "id": "Postcommunio" + } + ], + "2025-10-20": [ + { + "body": "*Eccli 18:12-13*\nMiserátio hóminis circa próximum: misericórdia autem Dei super omnem carnem. Qui misericórdiam habet, d", + "id": "Introitus" + }, + { + "body": "Da, quǽsumus, omnípotens Deus: ut, sancti Joánnis Confessóris exémplo in sciéntia Sanctórum proficiéntes atque áliis mis", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jac 2:12-17*\nCarissimi: Sic loquímini, et sic fácite sicut per legem libertátis i", + "id": "Lectio" + }, + { + "body": "*Ps 106:8-9*\nConfiteántur Dómino misericórdiæ ejus: et mirabília ejus fíliis hóminum.\n℣. Quia satiávit ánimam inánem: et", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Job 29:14-16*\nJustítia indútus sum, et vestívi me, sicut vestiménto et diadémate, judício meo. Oculus fui cæco et pes c", + "id": "Offertorium" + }, + { + "body": "Has, quǽsumus, Dómine, hóstias sancti Joánnis Confessóris tui méritis benígnus assúme: et præsta; ut, te super ómnia et ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 6:38*\nDate, et dábitur vobis: mensúram bonam et confértam et coagitátam et supereffluéntem dabunt in sinum vestrum.", + "id": "Communio" + }, + { + "body": "Pretiósi Córporis et Sánguinis tui, Dómine, pasti delíciis, tuam súpplices deprecámur clementiam: ut, sancti Joánnis Con", + "id": "Postcommunio" + } + ], + "2025-10-21": [ + { + "body": "*Is 61:1*\nSpíritus Dómini super me, eo quod únxerit Dóminus me: ad annuntiándum mansuétis misit me.\n*Ps 131:1*\nMeménto, ", + "id": "Introitus" + }, + { + "body": "Deus, qui in beáto Iacóbo, Confessóre tuo atque Pontífice, apostólicum evangelizándi spíritum mirabíliter renovásti: præ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Hilarionis Abbatis*\nIntercéssio nos, quǽsumus, Dómine, beáti N. Abbátis comméndet: ut, quod nostris mér", + "id": "Commemoratio Oratio" + }, + { + "body": "*Philipp 1:3-11*\nGrátias ago Deo meo in omni memória vestri, semper in cunctis oratiónibus meis pro ómnibus vobis, cum g", + "id": "Lectio" + }, + { + "body": "*Sir 44:16-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n℣. Non est invéntus símilis illi, qui conserváret l", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", + "id": "Evangelium" + }, + { + "body": "Elégit eum Dóminus sacerdótem sibi, ad sacrificándum ei hóstiam laudis.", + "id": "Offertorium" + }, + { + "body": "Tua, quǽsumus, Dómine, múnera illas in nobis puríssimi amóris flammas éxcitent, quibus beátus Iacóbus éadem offeréndo ta", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Hilarionis Abbatis*\nSacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salút", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Mt 10:27*\nQuod dico vobis in ténebris, dícite in lúmine: et quod in aure audítis, prædicáte super tecta.", + "id": "Communio" + }, + { + "body": "Persevéret in córdibus nostris, piíssime Deus, percépti grátia sacraménti: ut ea roboráti, beáti Iacóbi exémplo, et host", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Hilarionis Abbatis*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus N. Abbas, pro nobis int", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-22": [ + { + "body": "Salus pópuli ego sum, dicit Dóminus: de quacúmque tribulatióne clamáverint ad me, exáudiam eos: et ero illórum Dóminus i", + "id": "Introitus" + }, + { + "body": "Omnípotens et miséricors Deus, univérsa nobis adversántia propitiátus exclúde: ut mente et córpore páriter expedíti, quæ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 4:23-28*\nFratres: Renovámini spíritu mentis vestræ, et indúite n", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nDirigátur orátio mea, sicut incénsum in conspéctu tuo, Dómine.\n℣. Elevatio mánuum meárum sacrifícium vespertí", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:1-14*\nIn illo témpore: Loquebátur Jesus princípibus sacerdótum e", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nSi ambulávero in médio tribulatiónis, vivificábis me, Dómine: et super iram inimicórum meórum exténdes manum ", + "id": "Offertorium" + }, + { + "body": "Hæc múnera, quǽsumus, Dómine, quæ óculis tuæ majestátis offérimus, salutária nobis esse concéde.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nTu mandásti mandáta tua custodíri nimis: útinam dirigántur viæ meæ, ad custodiéndas justificatiónes tuas.", + "id": "Communio" + }, + { + "body": "Tua nos, Dómine, medicinális operátio, et a nostris perversitátibus cleménter expédiat, et tuis semper fáciat inhærére m", + "id": "Postcommunio" + } + ], + "2025-10-23": [ + { + "body": "*Ps 131:9-10.*\nSacerdótes tui, Dómine, induántur justítiam, et sancti tui exsúltent. Propter David servum tuum non avért", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Antónium Maríam Confessórem tuum atque Pontíficem, apostólicis virtútibus sublimásti, et per eum novas ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos\n*Heb 7:23-27.*\nFratres : Plures facti sunt sacerdótes, idcírco quod mort", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\n℣. Sacerdótes ejus índuam salutári, et sancti ejus exsultatióne exsultábunt.\n℣. Illuc prodúcam cornu Davi", + "id": "Graduale" + }, + { + "body": "Lectio sancti Evangelii secundum Matthǽum\n*Matt 24:42-47.*\nIn illo témpore: Dixit Jesus discípulis suis: Vigiláte ergo, ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso, et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Sancti Antónii Maríæ Confessóris tui atque Pontíficis, quǽsumus, Dómine, ánnua solémnitas pietáti tuæ nos reddat accépto", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46 - 47.*\nBeátus ille servus, quem cum vénerit dóminus ejus, invénerit sic faciéntem.", + "id": "Communio" + }, + { + "body": "Deus, fidélium remunerátor animárum: præsta; ut beáti Antónii Maríæ Confessóris tui atque Pontíficis, cuius venerándam c", + "id": "Postcommunio" + } + ], + "2025-10-24": [ + { + "body": "*Ps 102:20*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus, ad audiéndam vocem sermónu", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Raphaélem Archángelum Tobíæ fámulo tuo cómitem dedísti in via: concéde nobis fámulis tuis; ut ejúsdem s", + "id": "Oratio" + }, + { + "body": "Léctio libri Tobíæ\n*Tob 12:7-15*\nIn diébus illis: Dixit Angelus Ráphaël ad Tobíam: Sacraméntum regis abscóndere bonum es", + "id": "Lectio" + }, + { + "body": "*Tob 8:3*\nAngelus Dómini Raphaël apprehéndit et ligávit dæmonem.\n*Ps 146:5.*\n℣. Magnus Dóminus noster, et magna virtus e", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 5:1-4*\nIn illo témpore: Erat dies festus Judæórum, et ascéndit Jesu", + "id": "Evangelium" + }, + { + "body": "*Apoc 8:3; 8:4*\nStetit Angelus juxta aram templi, habens thuríbulum áureum in manu sua, et data sunt ei incénsa multa: e", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, laudis offérimus, supplíciter deprecántes: ut eásdem, angélico pro nobis interveniénte suffrágio, ", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Dan 3:58*\nBenedícite, omnes Angeli Dómini, Dóminum: hymnum dícite et superexaltáte eum in sǽcula.", + "id": "Communio" + }, + { + "body": "Dirigere dignáre, Dómine Deus, in adjutórium nostrum sanctum Raphaélem Archángelum: et, quem tuæ majestáti semper assíst", + "id": "Postcommunio" + } + ], + "2025-10-25": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Chrysanthi et Dariæ Martyrum*\nBeatórum Mártyrum tuórum, Dómine, Chrysánthi et Dáriæ, quǽsumus, adsit n", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Chrysanthi et Dariæ Martyrum*\nPópuli tui, quǽsumus, Dómine, tibi grata sit hóstia, quæ in natalítiis s", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Chrysanthi et Dariæ Martyrum*\nMýsticis, Dómine, repléti sumus votis et gáudiis: præsta, quǽsumus; ut, ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-26": [ + { + "body": "*Apoc 5:12; 1:6*\nDignus est Agnus, qui occísus est, accípere virtútem, et divinitátem, et sapiéntiam, et fortitúdinem, e", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui in dilécto Fílio tuo, universórum Rege, ómnia instauráre voluísti: concéde propítius; ut", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses.\n*Col 1:12-20*\nFratres: Grátias ágimus Deo Patri, qui dignos nos fec", + "id": "Lectio" + }, + { + "body": "*Ps 71:8; 78:11*\nDominábitur a mari usque ad mare, et a flúmine usque ad términos orbis terrárum.\n℣. Et adorábunt eum om", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 18:33-37*\nIn illo témpore: Dixit Pilátus ad Jesum: Tu es Rex Judæó", + "id": "Evangelium" + }, + { + "body": "*Ps 2:8.*\nPóstula a me, et dabo tibi gentes hereditátem tuam, et possessiónem tuam términos terræ.", + "id": "Offertorium" + }, + { + "body": "Hóstiam tibi, Dómine, humánæ reconciliatiónis offérimus: præsta, quǽsumus; ut, quem sacrifíciis præséntibus immolámus, i", + "id": "Secreta" + }, + { + "body": "*de D.N. Jesu Christi Rege*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómin", + "id": "Prefatio" + }, + { + "body": "*Ps 28:10; 28:11*\nSedébit Dóminus Rex in ætérnum: Dóminus benedícet pópulo suo in pace.", + "id": "Communio" + }, + { + "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, qui sub Christi Regis vexíllis militáre gloriámur, cum ipso, i", + "id": "Postcommunio" + } + ], + "2025-10-27": [ + { + "body": "*Dan 3:31; 31:29; 31:35*\nOmnia, quæ fecísti nobis, Dómine, in vero judício fecísti, quia peccávimus tibi et mandátis tui", + "id": "Introitus" + }, + { + "body": "Largíre, quǽsumus, Dómine, fidélibus tuis indulgéntiam placátus et pacem: ut páriter ab ómnibus mundéntur offénsis, et s", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 5:15-21*\nFratres: Vidéte, quómodo caute ambulétis: non quasi ins", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno. ℣. Aperis tu manum tuam: ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 4:46-53*\nIn illo témpore: Erat quidam régulus, cujus fílius infir", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nSuper flúmina Babylónis illic sédimus et flévimus: dum recordarémur tui, Sion.", + "id": "Offertorium" + }, + { + "body": "Cœléstem nobis prǽbeant hæc mystéria, quǽsumus, Dómine, medicínam: et vítia nostri cordis expúrgent.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nMeménto verbi tui servo tuo, Dómine, in quo mihi spem dedísti: hæc me consoláta est in humilitáte mea.", + "id": "Communio" + }, + { + "body": "Ut sacris, Dómine, reddámur digni munéribus: fac nos, quǽsumus, tuis semper obœdíre mandátis.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-10-28": [ + { + "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2*\nDómine", + "id": "Introitus" + }, + { + "body": "Deus, qui nos per beátos Apóstolos tuos Simónem et Judam ad agnitiónem tui nóminis veníre tribuísti: da nobis eórum glór", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Eph 4:7-13*\nFratres: Unicuíque nostrum data est grátia secúndum mensúr", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro pátribus tuis nati ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 15:17-25*\nIn illo témpore: Dixit Jesus discípulis suis: Hæc mando v", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.", + "id": "Offertorium" + }, + { + "body": "Glóriam, Dómine, sanctórum Apostolórum tuórum Simónis et Judæ perpétuam venerántes: quǽsumus; ut eam, sacris mystériis e", + "id": "Secreta" + }, + { + "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", + "id": "Prefatio" + }, + { + "body": "*Matt 19:28*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël.", + "id": "Communio" + }, + { + "body": "Percéptis, Dómine, sacraméntis, supplíciter exorámus: ut, intercedéntibus beátis Apóstolis tuis Simóne et Juda, quæ pro ", + "id": "Postcommunio" + } + ], + "2025-10-29": [ + { + "body": "*Dan 3:31; 31:29; 31:35*\nOmnia, quæ fecísti nobis, Dómine, in vero judício fecísti, quia peccávimus tibi et mandátis tui", + "id": "Introitus" + }, + { + "body": "Largíre, quǽsumus, Dómine, fidélibus tuis indulgéntiam placátus et pacem: ut páriter ab ómnibus mundéntur offénsis, et s", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 5:15-21*\nFratres: Vidéte, quómodo caute ambulétis: non quasi ins", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno. ℣. Aperis tu manum tuam: ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 4:46-53*\nIn illo témpore: Erat quidam régulus, cujus fílius infir", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nSuper flúmina Babylónis illic sédimus et flévimus: dum recordarémur tui, Sion.", + "id": "Offertorium" + }, + { + "body": "Cœléstem nobis prǽbeant hæc mystéria, quǽsumus, Dómine, medicínam: et vítia nostri cordis expúrgent.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nMeménto verbi tui servo tuo, Dómine, in quo mihi spem dedísti: hæc me consoláta est in humilitáte mea.", + "id": "Communio" + }, + { + "body": "Ut sacris, Dómine, reddámur digni munéribus: fac nos, quǽsumus, tuis semper obœdíre mandátis.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-10-30": [ + { + "body": "*Dan 3:31; 31:29; 31:35*\nOmnia, quæ fecísti nobis, Dómine, in vero judício fecísti, quia peccávimus tibi et mandátis tui", + "id": "Introitus" + }, + { + "body": "Largíre, quǽsumus, Dómine, fidélibus tuis indulgéntiam placátus et pacem: ut páriter ab ómnibus mundéntur offénsis, et s", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 5:15-21*\nFratres: Vidéte, quómodo caute ambulétis: non quasi ins", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno. ℣. Aperis tu manum tuam: ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 4:46-53*\nIn illo témpore: Erat quidam régulus, cujus fílius infir", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nSuper flúmina Babylónis illic sédimus et flévimus: dum recordarémur tui, Sion.", + "id": "Offertorium" + }, + { + "body": "Cœléstem nobis prǽbeant hæc mystéria, quǽsumus, Dómine, medicínam: et vítia nostri cordis expúrgent.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nMeménto verbi tui servo tuo, Dómine, in quo mihi spem dedísti: hæc me consoláta est in humilitáte mea.", + "id": "Communio" + }, + { + "body": "Ut sacris, Dómine, reddámur digni munéribus: fac nos, quǽsumus, tuis semper obœdíre mandátis.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-10-31": [ + { + "body": "*Dan 3:31; 31:29; 31:35*\nOmnia, quæ fecísti nobis, Dómine, in vero judício fecísti, quia peccávimus tibi et mandátis tui", + "id": "Introitus" + }, + { + "body": "Largíre, quǽsumus, Dómine, fidélibus tuis indulgéntiam placátus et pacem: ut páriter ab ómnibus mundéntur offénsis, et s", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 5:15-21*\nFratres: Vidéte, quómodo caute ambulétis: non quasi ins", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno. ℣. Aperis tu manum tuam: ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 4:46-53*\nIn illo témpore: Erat quidam régulus, cujus fílius infir", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nSuper flúmina Babylónis illic sédimus et flévimus: dum recordarémur tui, Sion.", + "id": "Offertorium" + }, + { + "body": "Cœléstem nobis prǽbeant hæc mystéria, quǽsumus, Dómine, medicínam: et vítia nostri cordis expúrgent.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nMeménto verbi tui servo tuo, Dómine, in quo mihi spem dedísti: hæc me consoláta est in humilitáte mea.", + "id": "Communio" + }, + { + "body": "Ut sacris, Dómine, reddámur digni munéribus: fac nos, quǽsumus, tuis semper obœdíre mandátis.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-11-01": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre Sanctórum ómnium: de quorum sollemnitáte gaudent Angeli et", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, qui nos ómnium Sanctórum tuórum mérita sub una tribuísti celebritáte venerári: quǽsumus; ut ", + "id": "Oratio" + }, + { + "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli.\n*Apoc 7:2-12*\nIn diébus illis: Ecce, ego Joánnes vidi álterum Angelum a", + "id": "Lectio" + }, + { + "body": "*Ps 33:10; 33:11*\nTiméte Dóminum, omnes Sancti ejus: quóniam nihil deest timéntibus eum.\n℣. Inquiréntes autem Dóminum, n", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:1-12*\nIn illo témpore: Videns Jesus turbas, ascéndit in montem, ", + "id": "Evangelium" + }, + { + "body": "*Sap 3:1; 3:2; 3:3*\nJustórum ánimæ in manu Dei sunt, et non tanget illos torméntum malítiæ: visi sunt óculis insipiéntiu", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, nostræ devotiónis offérimus: quæ et pro cunctórum tibi grata sint honóre Justórum, et nobis salutár", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 5:8-10*\nBeáti mundo corde, quóniam ipsi Deum vidébunt; beáti pacífici, quóniam filii Dei vocabúntur: beáti, qui pe", + "id": "Communio" + }, + { + "body": "Da, quǽsumus, Dómine, fidélibus pópulis ómnium Sanctórum semper veneratióne lætári: et eórum perpétua supplicatióne muní", + "id": "Postcommunio" + } + ], + "2025-11-02": [ + { + "body": "*Esth 13:9; 13:10-11*\nIn voluntáte tua, Dómine, univérsa sunt pósita, et non est, qui possit resístere voluntáti tuæ: tu", + "id": "Introitus" + }, + { + "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut a cunctis adversitátibus, te protegénte, sit líbera, et in", + "id": "Oratio" + }, + { + "body": "Lectio Epistolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 6:10-17*\nFratres: Confortámini in Dómino et in poténtia virtútis", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nDómine, refúgium factus es nobis, a generatióne et progénie.\n℣. Priúsquam montes fíerent aut formarétur terr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 18:23-35*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Job 1.1*\nVir erat in terra Hus, nómine Job: simplex et rectus ac timens Deum: quem Satan pétiit ut tentáret: et data es", + "id": "Offertorium" + }, + { + "body": "Suscipe, Dómine, propítius hóstias: quibus et te placári voluísti, et nobis salútem poténti pietáte restítui.\nPer Dominu", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nIn salutári tuo ánima mea, et in verbum tuum sperávi: quando fácies de persequéntibus me jud", + "id": "Communio" + }, + { + "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, quod ore percépimus, pura mente sectémur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-11-03": [ + { + "body": "*4 Esdr 2:34; 2:35*\nRéquiem ætérnam dona eis, Dómine: et lux perpétua lúceat eis.\n*Ps 64:2-3*\nTe decet hymnus, Deus, in ", + "id": "Introitus" + }, + { + "body": "Fidélium, Deus, ómnium Cónditor et Redémptor: animábus famulórum famularúmque tuárum remissiónem cunctórum tríbue peccat", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 15:51-57*\nFratres: Ecce, mystérium vobis dico: Omnes quidem re", + "id": "Lectio" + }, + { + "body": "*4 Esdr 2:34 et 35.*\nRéquiem ætérnam dona eis, Dómine: et lux perpétua lúceat eis.\n*Ps 111:7.*\n℣. In memória ætérna erit", + "id": "Graduale" + }, + { + "body": "Dies iræ, dies illa\nSolvet sæclum in favílla:\nTeste David cum Sibýlla.\n\nQuantus tremor est futúrus,\nQuando judex est ven", + "id": "Sequentia" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 5:25-29*\nIn illo témpore: Dixit Jesus turbis Judæórum: Amen, amen, ", + "id": "Evangelium" + }, + { + "body": "Dómine Jesu Christe, Rex glóriæ, líbera ánimas ómnium fidélium defunctórum de pœnis inférni et de profúndo lacu: líbera ", + "id": "Offertorium" + }, + { + "body": "Hóstias, quǽsumus, Dómine, quas tibi pro animábus famulórum famularúmque tuárum offérimus, propitiátus inténde: ut, quib", + "id": "Secreta" + }, + { + "body": "*Defunctorum*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pate", + "id": "Prefatio" + }, + { + "body": "*4 Esdr 2:35; 2:34*\nLux ætérna lúceat eis, Dómine:\n* Cum Sanctis tuis in ætérnum: quia pius es.\n℣. Requiem ætérnam dona ", + "id": "Communio" + }, + { + "body": "Animábus, quǽsumus, Dómine, famulórum famularúmque tuárum orátio profíciat supplicántium: ut eas et a peccátis ómnibus é", + "id": "Postcommunio" + } + ], + "2025-11-04": [ + { + "body": "*Eccli 45:30*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.\n", + "id": "Introitus" + }, + { + "body": "Ecclésiam tuam, Dómine, sancti Caróli Confessóris tui atque Pontíficis contínua protectióne custódi: ut, sicut illum pas", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Vitale et Agrícola Martyribus*\nPræsta, quǽsumus, omnípotens Deus: ut, qui sanctórum Mártyrum tuórum Vitális et ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45:3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est j", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\n℣. Non est invéntus símilis illi, qui ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Sancti tui, quǽsumus, Dómine, nos ubique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Vitale et Agrícola Martyribus*\nOblátis, quǽsumus, Dómine, placáre munéribus: et, intercedéntibus sanctis Martýr", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Cárolo Confessóre t", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Vitale et Agrícola Martyribus*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedéntibus sanctis Martýrib", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-05": [ + { + "body": "*Esth 13:9; 13:10-11*\nIn voluntáte tua, Dómine, univérsa sunt pósita, et non est, qui possit resístere voluntáti tuæ: tu", + "id": "Introitus" + }, + { + "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut a cunctis adversitátibus, te protegénte, sit líbera, et in", + "id": "Oratio" + }, + { + "body": "Lectio Epistolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 6:10-17*\nFratres: Confortámini in Dómino et in poténtia virtútis", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nDómine, refúgium factus es nobis, a generatióne et progénie.\n℣. Priúsquam montes fíerent aut formarétur terr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 18:23-35*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Job 1.1*\nVir erat in terra Hus, nómine Job: simplex et rectus ac timens Deum: quem Satan pétiit ut tentáret: et data es", + "id": "Offertorium" + }, + { + "body": "Suscipe, Dómine, propítius hóstias: quibus et te placári voluísti, et nobis salútem poténti pietáte restítui.\nPer Dominu", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nIn salutári tuo ánima mea, et in verbum tuum sperávi: quando fácies de persequéntibus me jud", + "id": "Communio" + }, + { + "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, quod ore percépimus, pura mente sectémur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-11-06": [ + { + "body": "*Esth 13:9; 13:10-11*\nIn voluntáte tua, Dómine, univérsa sunt pósita, et non est, qui possit resístere voluntáti tuæ: tu", + "id": "Introitus" + }, + { + "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut a cunctis adversitátibus, te protegénte, sit líbera, et in", + "id": "Oratio" + }, + { + "body": "Lectio Epistolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 6:10-17*\nFratres: Confortámini in Dómino et in poténtia virtútis", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nDómine, refúgium factus es nobis, a generatióne et progénie.\n℣. Priúsquam montes fíerent aut formarétur terr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 18:23-35*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Job 1.1*\nVir erat in terra Hus, nómine Job: simplex et rectus ac timens Deum: quem Satan pétiit ut tentáret: et data es", + "id": "Offertorium" + }, + { + "body": "Suscipe, Dómine, propítius hóstias: quibus et te placári voluísti, et nobis salútem poténti pietáte restítui.\nPer Dominu", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nIn salutári tuo ánima mea, et in verbum tuum sperávi: quando fácies de persequéntibus me jud", + "id": "Communio" + }, + { + "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, quod ore percépimus, pura mente sectémur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-11-07": [ + { + "body": "*Esth 13:9; 13:10-11*\nIn voluntáte tua, Dómine, univérsa sunt pósita, et non est, qui possit resístere voluntáti tuæ: tu", + "id": "Introitus" + }, + { + "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut a cunctis adversitátibus, te protegénte, sit líbera, et in", + "id": "Oratio" + }, + { + "body": "Lectio Epistolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 6:10-17*\nFratres: Confortámini in Dómino et in poténtia virtútis", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nDómine, refúgium factus es nobis, a generatióne et progénie.\n℣. Priúsquam montes fíerent aut formarétur terr", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 18:23-35*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Job 1.1*\nVir erat in terra Hus, nómine Job: simplex et rectus ac timens Deum: quem Satan pétiit ut tentáret: et data es", + "id": "Offertorium" + }, + { + "body": "Suscipe, Dómine, propítius hóstias: quibus et te placári voluísti, et nobis salútem poténti pietáte restítui.\nPer Dominu", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nIn salutári tuo ánima mea, et in verbum tuum sperávi: quando fácies de persequéntibus me jud", + "id": "Communio" + }, + { + "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, quod ore percépimus, pura mente sectémur.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-11-08": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Ss. Quatuor Coronatorum Martyrum*\nPræsta, quǽsumus, omnípotens Deus: ut, qui gloriósos Mártyres fortes in ", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*Commemoratio Ss. Quatuor Coronatorum Martyrum*\nBenedíctio tua. Dómine, larga descéndat: quæ et múnera nostra, deprecánt", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Ss. Quatuor Coronatorum Martyrum*\nCœléstibus refécti sacraméntis et gáudiis: súpplices te, Dómine, deprecá", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-09": [ + { + "body": "*Ps 129:3-4*\nSi iniquitátes observáveris, Dómine: Dómine, quis sustinébit? quia apud te propitiátio est, Deus Israël.\n*P", + "id": "Introitus" + }, + { + "body": "Deus, refúgium nostrum et virtus: adésto piis Ecclésiæ tuæ précibus, auctor ipse pietátis, et præsta; ut, quod fidéliter", + "id": "Oratio" + }, + { + "body": "*Commemoratio In Dedicatione Basilicæ Ss. Salvatoris*\nDeus, qui nobis per síngulos annos hujus sancti templi tui consecr", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 1:6-11*\nFratres: Confídimus in Dómino Jesu, quia, qui cœpit i", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:15-21*\nIn illo témpore: Abeúntes pharisǽi consílium iniérunt, ut", + "id": "Evangelium" + }, + { + "body": "*Esth 14:12; 14:13*\nRecordáre mei, Dómine, omni potentátui dóminans: et da sermónem rectum in os meum, ut pláceant verba", + "id": "Offertorium" + }, + { + "body": "Da, miséricors Deus: ut hæc salutáris oblátio et a própriis nos reátibus indesinénter expédiat, et ab ómnibus tueátur ad", + "id": "Secreta" + }, + { + "body": "*Commemoratio In Dedicatione Basilicæ Ss. Salvatoris*\nAnnue, quǽsumus, Dómine, précibus nostris: ut, dum hæc vota præsén", + "id": "Commemoratio Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nEgo clamávi, quóniam exaudísti me, Deus: inclína aurem tuam et exáudi verba mea.", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, sacri dona mystérii, humíliter deprecántes: ut, quæ in tui commemoratiónem nos fácere præcepísti, in ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio In Dedicatione Basilicæ Ss. Salvatoris*\nDeus, qui de vivis et electis lapídibus ætérnum majestáti tuæ prǽp", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-10": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Deus, qui in corde beáti Andréæ Confessóris tui, per árduum cotídie in virtútibus proficiéndi votum, admirábiles ad te a", + "id": "Oratio" + }, + { + "body": "*Pro Ss. Tryphone, Respicio et Nympha Virg., Mm.*\nFac nos, quǽsumus, Dómine, sanctórum Mártyrum tuórum Tryphónis, Respíc", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", + "id": "Secreta" + }, + { + "body": "*Pro Ss. Tryphone, Respicio et Nympha Virg., Mm.*\nMúnera tibi, Dómine, nostræ devotiónis offérimus: quæ et pro tuórum ti", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", + "id": "Postcommunio" + }, + { + "body": "*Pro Ss. Tryphone, Respicio et Nympha Virg., Mm.*\nPræsta nobis, quǽsumus, Dómine: intercedéntibus sanctis Martýribus tui", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-11": [ + { + "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", + "id": "Introitus" + }, + { + "body": "Deus, qui cónspicis, quia ex nulla nostra virtúte subsístimus: concéde propítius; ut, intercessióne beáti Martíni Confes", + "id": "Oratio" + }, + { + "body": "*Pro S. Menna Martyre*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti Mennæ Martyris tui natalítia cólimus, intercessi", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:16-27; 45:3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 11:33-36*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo lucérnam ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Sanctífica, quǽsumus, Dómine Deus, hæc múnera, quæ in sollemnitáte sancti Antístitis tui Martíni offérimus: ut per ea vi", + "id": "Secreta" + }, + { + "body": "*Pro S. Menna Martyre*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mystériis, et", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, Dómine, Deus noster: ut, quorum festivitáte votíva sunt sacraménta, eórum intercessióne salutária nobi", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Menna Martyre*\nDa, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-12": [ + { + "body": "*Ps 33:20-21*\nMultæ tribulatiónes justórum, et de his ómnibus liberávit eos Dóminus: Dóminus custódit ómnia ossa eórum: ", + "id": "Introitus" + }, + { + "body": "Deus, qui primítias fídei apud Polonórum gentem sanctórum Mártyrum tuórum Benedícti, Ioánnis, Matthǽi, Isáaci atque Chri", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:10-15*\nHi viri misericórdiæ sunt, quorum pietátes non defuérunt: cum semine eórum pérm", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:1-8*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ferm", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nGloriabúntur in te omnes, qui díligunt nomen tuum, quóniam tu, Dómine, benedíces justo: Dómine, ut scuto bo", + "id": "Offertorium" + }, + { + "body": "Hóstias tibi, Dómine, sanctórum Mártyrum tuórum dicátas méritis, benígnus assúme: et ad perpétuum nobis tríbue proveníre", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentavit eos: tamquam aurum in fornáce probávit eos, et quas", + "id": "Communio" + }, + { + "body": "Súmpsimus, Dómine, sanctórum Mártyrum tuórum Benedícti, Ioánnis, Matthǽi, Isáaci atque Christíni solémnia celebrántes, s", + "id": "Postcommunio" + } + ], + "2025-11-13": [ + { + "body": "*Sap 4:13-14*\nConsummatus in brevi explevit tempora multa: placita enim erat Deo anima illius: propter hoc properavit ed", + "id": "Introitus" + }, + { + "body": "Deus, qui inter cetera sapientiæ tuæ miracula, etiam in tenera ætate maturæ sanctitatis gratiam contulisti: da, quǽsumus", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Sap 4:7-18*\nIustus autem si morte præoccupatus fuerit in refrigerio erit. Senectus enim venerab", + "id": "Lectio" + }, + { + "body": "*Ps 20:3-4*\nDesiderium cordis eius tribuisti ei: et voluntate labiorum eius non fraudasti eum.\n℣. Quoniam prævenisti eum", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 19:13-21*\nTunc oblati sunt ei parvuli ut manus eis inponeret et or", + "id": "Evangelium" + }, + { + "body": "*Ps 42:4*\nIntroibo ad altare Dei: ad Deum, qui lætificat iuventutem meam.", + "id": "Offertorium" + }, + { + "body": "Angelorum pane, quǽsumus, Domine, beati Stanislai nos intercessio dignos efficiat, qui eo meruit angelica manu recreari.", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Eccli 15:3*\nCibavit illum Dominus pane vitæ et intellectus, et aqua sapientæ salutaris potavit illum.", + "id": "Communio" + }, + { + "body": "Ut nobis, Domine, cælestis, quem sumpsimus, panis sit vitæ: beato Stanislao Confessore tuo intercedente, quǽsumus; ut pa", + "id": "Postcommunio" + } + ], + "2025-11-14": [ + { + "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beáti Jósaphat Mártyris: de cujus passióne gaudent Angeli ", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, in Ecclésia tua Spíritum, quo replétus beátus Jósaphat Martyr et Póntifex tuus ánimam suam pro", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebræos.\n*Hebr 5:1-6*\nFratres: Omnis póntifex ex homínibus assúmptus, pro homíni", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisæis: Ego sum pastor b", + "id": "Evangelium" + }, + { + "body": "*Joann 15:13*\nMajórem caritátem nemo habet, ut ánimam suam ponat quis pro amícis suis.", + "id": "Offertorium" + }, + { + "body": "Clementíssime Deus, múnera hæc tua benedictióne perfunde, et nos in fide confírma: quam sanctus Jósaphat Martyr et Pónti", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ.", + "id": "Communio" + }, + { + "body": "Spíritum, Dómine, fortitúdinis hæc nobis tríbuat mensa cœléstis: quæ sancti Jósaphat Mártyris tui atque Pontíficis vitam", + "id": "Postcommunio" + } + ], + "2025-11-15": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Albértum Pontíficem tuum atque Doctórem in humána sapiéntia divínæ fídei subjiciénda magnum effecísti: ", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, Dómine, quǽsumus, inténde placátus: ut quod Passiónis Fílii tui Dómini nostri mystério gérimus,", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Per hæc sancta quæ súmpsimus, ab hóstium nos, Dómine, impugnatióne defénde: et intercedénte beáto Albérto Confessóre tuo", + "id": "Postcommunio" + } + ], + "2025-11-16": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Absólve, quǽsumus, Dómine, tuórum delícta populórum: ut a peccatórum néxibus, quæ pro nostra fraglitáte contráximus, tua", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 3:17-21; 4:1-3*\nFratres: Imitatóres mei estóte, et observáte ", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 9:18-26*\nIn illo témpore: Loquénte Jesu ad turbas, ecce, princeps u", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Pro nostræ servitútis augménto sacrifícium tibi, Dómine, laudis offérimus: ut, quod imméritis contulísti, propítius exse", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, quos divína tríbuis participatióne gaudére, humánis non sinas subjacére perículis.\nPer Do", + "id": "Postcommunio" + } + ], + "2025-11-17": [ + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Introitus" + }, + { + "body": "Deus, qui in beata Salomea terreni regni contemptum cum virginitatis condore in connubio sociasti: concede nobis, quaesu", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Gregorii Thaumaturgi Episcopi et Confessoris*\nDa, quǽsumus omnípotens Deus: ut beáti Gregórii Confessór", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Gregorii Thaumaturgi Episcopi et Confessoris*\nSancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Gregorii Thaumaturgi Episcopi et Confessoris*\nPræsta, quǽsumus, omnípotens Deus: ut, de percéptis munér", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-18": [ + { + "body": "*Gen 28:17*\nTerríbilis est locus iste: hic domus Dei est et porta cœli: et vocábitur aula Dei. (T.P. Allelúja, allelúja.", + "id": "Introitus" + }, + { + "body": "Deus, qui nobis per síngulos annos hujus sancti templi tui consecratiónis réparas diem, et sacris semper mystériis repæs", + "id": "Oratio" + }, + { + "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli\n*Apoc 21:2-5*\nIn diébus illis: Vidi sanctam civitátem Jerúsalem novam de", + "id": "Lectio" + }, + { + "body": "Locus iste a Deo factus est, inæstimábile sacraméntum, irreprehensíbilis est.\n℣. Deus, cui astat Angelórum chorus, exáud", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:1-10*\nIn illo témpore: Ingréssus Jesus perambulábat Jéricho. Et ecce", + "id": "Evangelium" + }, + { + "body": "*1 Par 29:17-18*\nDómine Deus, in simplicitáte cordis mei lætus óbtuli univérsa; et pópulum tuum, qui repértus est, vidi ", + "id": "Offertorium" + }, + { + "body": "*Extra Ecclesiam dedicatam*\nAnnue, quǽsumus, Dómine, précibus nostris: ut, dum hæc vota præséntia réddimus, ad ætérna pr", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 21:13*\nDomus mea domus oratiónis vocábitur, dicit Dóminus: in ea omnis, qui petit, áccipit; et qui quærit, invénit", + "id": "Communio" + }, + { + "body": "Deus, qui de vivis et electis lapídibus ætérnum majestáti tuæ prǽparas habitáculum: auxiliáre pópulo tuo supplicánti; ut", + "id": "Postcommunio" + } + ], + "2025-11-19": [ + { + "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", + "id": "Introitus" + }, + { + "body": "Tuórum corda fidélium, Deus miserátor, illústra: et, beátæ Elisabeth précibus gloriósis; fac nos próspera mundi despícer", + "id": "Oratio" + }, + { + "body": "*Pro S. Pontiano Papa et Martyre*\nInfirmitátem nostram réspice, omnípotens Deus: et, quia pondus própriæ actiónis gravat", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", + "id": "Secreta" + }, + { + "body": "*Pro S. Pontiano Papa et Martyre*\nHóstias tibi, Dómine, beáti N. Mártyris tui atque Pontíficis dicátas méritis, benígnus", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Pontiano Papa et Martyre*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséqui", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-20": [ + { + "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", + "id": "Introitus" + }, + { + "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum atque) Summum Pontíficem, perpétua protec", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Felicis de Valois Confessoris*\nDeus, qui beátum Felícem Confessórem tuum ex erémo ad munus rediméndi ca", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Felicis de Valois Confessoris*\nPræsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio e", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Felicis de Valois Confessoris*\nQuǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, interce", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-21": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum. (Allelúja, allelú", + "id": "Introitus" + }, + { + "body": "Deus, qui beátam Maríam semper Vírginem, Spíritus Sancti habitáculum, hodiérna die in templo præsentári voluísti: præsta", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16.*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, ", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28; 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium. (Allelúja.)", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + } + ], + "2025-11-22": [ + { + "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", + "id": "Introitus" + }, + { + "body": "Deus, qui nos ánnua beátæ Cæcíliæ Vírginis et Mártyris tuæ sollemnitáte lætíficas: da, ut, quam venerámur offício, étiam", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 51:13-17*\nDómine, Deus meus, exaltásti super terram habitatiónem meam, et pro morte deflu", + "id": "Lectio" + }, + { + "body": "*Ps 44:11; 44:12*\nAudi, fília, et vide, et inclína aurem tuam: quia concupívit Rex spéciem tuam. ℣.Ps 44:5\nSpécie tua et", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur", + "id": "Offertorium" + }, + { + "body": "Hæc hóstia, Dómine, placatiónis et laudis, quǽsumus: ut, intercedénte beáta Cæcília Vírgine et Mártyre tua, nos propitia", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nConfundántur supérbi, quia injúste iniquitátem fecérunt in me: ego autem in mandátis tuis exercébor,", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + } + ], + "2025-11-23": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, tuórum fidélium voluntátes: ut, divíni óperis fructum propénsius exsequéntes; pietátis tuæ rem", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 1:9-14*\nFratres: Non cessámus pro vobis orántes et postulántes,", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:15-35*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vidérit", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Propítius esto, Dómine, supplicatiónibus nostris: et, pópuli tui oblatiónibus precibúsque suscéptis, ómnium nostrum ad t", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine: ut per hæc sacraménta quæ súmpsimus, quidquid in nostra mente vitiósum est, ipsorum med", + "id": "Postcommunio" + } + ], + "2025-11-24": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui sanctum Joánnem Confessórem tuum atque Doctorem perféctæ sui abnegatiónis et Crucis amatórem exímium effecísti", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Chrysogoni Martyris*\nAdésto, Dómine, supplicatiónibus nostris: ut, qui ex iniquitáte nostra reos nos es", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", + "id": "Offertorium" + }, + { + "body": "Sancti Joánnis Confessóris tui atque Doctóris nobis, Dómine, pia non désit orátio: quæ et múnera nostra concíliet; et tu", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Chrysogoni Martyris*\nOblátis, quǽsumus, Dómine, placáre munéribus: et, intercedénte beáto Chrysógono Má", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Joánnes Confessor tuus et Doctor egrégius, quǽsumus, precátor accé", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Chrysogoni Martyris*\nTui, Dómine, perceptióne sacraménti, et a nostris mundémur occúltis, et ab hóstium", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-25": [ + { + "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", + "id": "Introitus" + }, + { + "body": "Deus, qui dedísti legem Móysi in summitáte montis Sínai, et in eódem loco per sanctos Angelos tuos corpus beátæ Catharín", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ in beátæ Catharínæ Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus pa", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nConfundántur supérbi, quia injúste iniquitátem fecérunt in me: ego autem in mandátis tuis exercébor,", + "id": "Communio" + }, + { + "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta Catharína Vírgine et Mártyre tua, sempitérna fáciant ", + "id": "Postcommunio" + } + ], + "2025-11-26": [ + { + "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", + "id": "Introitus" + }, + { + "body": "Clementíssime Deus, qui sanctum Silvéstrum Abbátem, sǽculi hujus vanitátem in apérto túmulo pie meditántem, ad erémum vo", + "id": "Oratio" + }, + { + "body": "*Pro S. Petro Alexandrino Episcopo et Martyre*\nInfirmitátem nostram réspice, omnípotens Deus: et, quia pondus própria; a", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", + "id": "Offertorium" + }, + { + "body": "Quǽsumus, Dómine: ut, dum hæc múnera divínæ majestáti tuæ reverénter offérimus; pia mentis præparatióne et cordis puritá", + "id": "Secreta" + }, + { + "body": "*Pro S. Petro Alexandrino Episcopo et Martyre*\nHóstias tibi, Dómine, beáti Petri Mártyris tui atque Pontíficis dicátas m", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", + "id": "Communio" + }, + { + "body": "Divína dape reféctis tríbue, quǽsumus, Dómine: sancti Silvéstri Abbátis vestígiis ita inhærére; ut copiósam mercédem in ", + "id": "Postcommunio" + }, + { + "body": "*Pro S. Petro Alexandrino Episcopo et Martyre*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-27": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, tuórum fidélium voluntátes: ut, divíni óperis fructum propénsius exsequéntes; pietátis tuæ rem", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 1:9-14*\nFratres: Non cessámus pro vobis orántes et postulántes,", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:15-35*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vidérit", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Propítius esto, Dómine, supplicatiónibus nostris: et, pópuli tui oblatiónibus precibúsque suscéptis, ómnium nostrum ad t", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine: ut per hæc sacraménta quæ súmpsimus, quidquid in nostra mente vitiósum est, ipsorum med", + "id": "Postcommunio" + } + ], + "2025-11-28": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, tuórum fidélium voluntátes: ut, divíni óperis fructum propénsius exsequéntes; pietátis tuæ rem", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 1:9-14*\nFratres: Non cessámus pro vobis orántes et postulántes,", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:15-35*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vidérit", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", + "id": "Offertorium" + }, + { + "body": "Propítius esto, Dómine, supplicatiónibus nostris: et, pópuli tui oblatiónibus precibúsque suscéptis, ómnium nostrum ad t", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", + "id": "Communio" + }, + { + "body": "Concéde nobis, quǽsumus, Dómine: ut per hæc sacraménta quæ súmpsimus, quidquid in nostra mente vitiósum est, ipsorum med", + "id": "Postcommunio" + } + ], + "2025-11-29": [ + { + "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", + "id": "Introitus" + }, + { + "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Saturnini Martyris*\nDeus, qui nos beáti Saturníni Mártyris tui concédis natalítia pérfrui: ejus nos trí", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", + "id": "Lectio" + }, + { + "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Saturnini Martyris*\nMúnera, Dómine, tibi dicáta sanctífica: et, intercedénte beáto Saturníno Mártyre tu", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", + "id": "Communio" + }, + { + "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Saturnini Martyris*\nSanctíficet nos, quǽsumus, Dómine, tui percéptio sacraménti: et intercessióne Sanct", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-30": [ + { + "body": "*Ps 24:1-3*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim un", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nostrórum perículis, te mereámur proteg", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 13:11-14.*\nFratres: Sciéntes, quia hora est jam nos de somno súrger", + "id": "Lectio" + }, + { + "body": "*Ps 24:3; 24:4*\nUnivérsi, qui te exspéctant, non confundéntur, Dómine.\n℣. Vias tuas, Dómine, notas fac mihi: et sémitas ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 21:25-33.*\nIn illo témpore: Dixit Jesus discípulis suis: Erunt signa in", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3.*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim u", + "id": "Offertorium" + }, + { + "body": "Hæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princípium.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13.*\nDóminus dabit benignitátem: et terra nostra dabit fructum suum.", + "id": "Communio" + }, + { + "body": "Suscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ ventúra sollémnia cóngruis honóribus", + "id": "Postcommunio" + } + ], + "2025-12-01": [ + { + "body": "*Ps 24:1-3*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim un", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nostrórum perículis, te mereámur proteg", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 13:11-14.*\nFratres: Sciéntes, quia hora est jam nos de somno súrger", + "id": "Lectio" + }, + { + "body": "*Ps 24:3; 24:4*\nUnivérsi, qui te exspéctant, non confundéntur, Dómine.\n℣. Vias tuas, Dómine, notas fac mihi: et sémitas ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 21:25-33.*\nIn illo témpore: Dixit Jesus discípulis suis: Erunt signa in", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3.*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim u", + "id": "Offertorium" + }, + { + "body": "Hæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princípium.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13.*\nDóminus dabit benignitátem: et terra nostra dabit fructum suum.", + "id": "Communio" + }, + { + "body": "Suscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ ventúra sollémnia cóngruis honóribus", + "id": "Postcommunio" + } + ], + "2025-12-02": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Petrum Chrysólogum Doctórem egrégium, divínitus præmonstrátum, ad regéndam et instruéndam Ecclésiam tua", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", + "id": "Lectio" + }, + { + "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", + "id": "Offertorium" + }, + { + "body": "Sancti Petri Chrysólogi Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concílie", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 25:20; 25:21*\nDómine, quinque talénta tradidísti mihi: ecce, ália quinque superlucrátus sum. Euge, serve bone et f", + "id": "Communio" + }, + { + "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Petrus Chrysólogus Póntifex tuus et Doctor egrégius, quǽsumus, pre", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-03": [ + { + "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", + "id": "Introitus" + }, + { + "body": "Deus, qui Indiárum gentes beáti Francísci prædicatióne et miráculis Ecclésiæ tuæ aggregáre voluísti: concéde propítius; ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 10:10-18*\nFratres: Corde enim créditur ad justítiam: ore autem conf", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiándu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum\n*Marc 16:15-18*\nIn illo témpore: Dixit Jesus discípulis suis: Eúntes in mun", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio, et pro tuórum tibi grata sit honóre Sanctórum, e", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", + "id": "Communio" + }, + { + "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto Francísco Confessóre tuo, per hæc co", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-04": [ + { + "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", + "id": "Introitus" + }, + { + "body": "Intercessio, quaesumus, Domine, beatae Barbarae Virginis et Martyris tuae ab omni nos adversitate protegat: ut per eius ", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ in beátæ N. Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus patrocíni", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nConfundántur supérbi, quia injúste iniquitátem fecérunt in me: ego autem in mandátis tuis exercébor,", + "id": "Communio" + }, + { + "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta N. Vírgine et Mártyre tua, sempitérna fáciant protect", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-05": [ + { + "body": "*Ps 24:1-3*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim un", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nostrórum perículis, te mereámur proteg", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Sabbæ Abbatis*\nIntercéssio nos, quǽsumus. Dómine, beáti Sabbæ Abbátis comméndet: ut, quod nostris mérit", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 13:11-14.*\nFratres: Sciéntes, quia hora est jam nos de somno súrger", + "id": "Lectio" + }, + { + "body": "*Ps 24:3; 24:4*\nUnivérsi, qui te exspéctant, non confundéntur, Dómine.\n℣. Vias tuas, Dómine, notas fac mihi: et sémitas ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 21:25-33.*\nIn illo témpore: Dixit Jesus discípulis suis: Erunt signa in", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3.*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim u", + "id": "Offertorium" + }, + { + "body": "Hæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princípium.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Sabbæ Abbatis*\nSacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salútem no", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13.*\nDóminus dabit benignitátem: et terra nostra dabit fructum suum.", + "id": "Communio" + }, + { + "body": "Suscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ ventúra sollémnia cóngruis honóribus", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Sabbæ Abbatis*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus Sabbas, pro nobis intercedén", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-06": [ + { + "body": "*Eccli 45:30*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dignitas in ætérnum.\n", + "id": "Introitus" + }, + { + "body": "Deus, qui beátum Nicoláum Pontíficem innúmeris decorásti miráculis: tríbue, quǽsumus; ut ejus méritis et précibus a gehé", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos\n*Hebr 13:7-17*\nFratres: Mementóte præpositórum vestrórum, qui vobis locú", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23.*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum conf", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", + "id": "Offertorium" + }, + { + "body": "Sanctífica, quǽsumus, Dómine Deus, hæc múnera, quæ in sollemnitáte sancti Antístitis tui Nicolái offérimus: ut per ea vi", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36-38*\nSemel jurávi in sancto meo: Semen ejus in ætérnum manebit, et sedes ejus sicut sol in conspéctu meo, et si", + "id": "Communio" + }, + { + "body": "Sacrifícia, quæ súmpsimus, Dómine, pro sollemnitáte sancti Pontíficis tui Nicolái, sempitérna nos protectióne consérvent", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-07": [ + { + "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", + "id": "Introitus" + }, + { + "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", + "id": "Offertorium" + }, + { + "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", + "id": "Communio" + }, + { + "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", + "id": "Postcommunio" + } + ], + "2025-12-08": [ + { + "body": "*Is 61:10*\nGaudens gaudébo in Dómino, et exsultábit ánima mea in Deo meo: quia índuit me vestiméntis salútis: et indumén", + "id": "Introitus" + }, + { + "body": "Deus, qui per immaculátam Vírginis Conceptiónem dignum Fílio tuo habitáculum præparásti: quǽsumus; ut, qui ex morte ejús", + "id": "Oratio" + }, + { + "body": "Léctio libri Sapiéntiæ\n*Prov 8:22-35*\nDóminus possedit me in inítio viárum suárum, ántequam quidquam fáceret a princípio", + "id": "Lectio" + }, + { + "body": "*Judith 13:23*\nBenedícta es tu. Virgo María, a Dómino, Deo excélso, præ ómnibus muliéribus super terram.\n*Judith 15:10*\n", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:26-28*\nIn illo témpore: Missus est Angelus Gábriël a Deo in civitátem", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, allelúja.", + "id": "Offertorium" + }, + { + "body": "Salutárem hóstiam, quam in sollemnitáte immaculátæ Conceptiónis beátæ Vírginis Maríæ tibi, Dómine, offérimus, súscipe et", + "id": "Secreta" + }, + { + "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", + "id": "Prefatio" + }, + { + "body": "*Ps 86:3, Luc 1:49*\nGloriósa dicta sunt de te, María: quia fecit tibi magna qui potens est.", + "id": "Communio" + }, + { + "body": "Sacraménta quæ súmpsimus, Dómine, Deus noster: illíus in nobis culpæ vúlnera réparent; a qua immaculátam beátæ Maríæ Con", + "id": "Postcommunio" + } + ], + "2025-12-09": [ + { + "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", + "id": "Introitus" + }, + { + "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", + "id": "Offertorium" + }, + { + "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", + "id": "Communio" + }, + { + "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", + "id": "Postcommunio" + } + ], + "2025-12-10": [ + { + "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", + "id": "Introitus" + }, + { + "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Melchiadis Papæ et Mart*\nDeus, qui per immaculátam Vírginis Conceptiónem dignum Fílio tuo habitáculum p", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", + "id": "Offertorium" + }, + { + "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Melchiadis Papæ et Mart*\nSalutárem hóstiam, quam in sollemnitáte immaculátæ Conceptiónis beátæ Vírginis", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", + "id": "Communio" + }, + { + "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Melchiadis Papæ et Mart*\nSacraménta quæ súmpsimus, Dómine, Deus noster: illíus in nobis culpæ vúlnera r", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-11": [ + { + "body": "*Joann 21:15; 21:16; 21:17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine", + "id": "Introitus" + }, + { + "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum Damásum Summum Pontíficem, perpétua protectióne custódi; qu", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nExcita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior e", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi,", + "id": "Evangelium" + }, + { + "body": "*Jerem 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, ", + "id": "Offertorium" + }, + { + "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nPlacáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla sup", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", + "id": "Communio" + }, + { + "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nRepléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus parti", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-12": [ + { + "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", + "id": "Introitus" + }, + { + "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", + "id": "Offertorium" + }, + { + "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", + "id": "Communio" + }, + { + "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", + "id": "Postcommunio" + } + ], + "2025-12-13": [ + { + "body": "*Ps 44:8.*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus ", + "id": "Introitus" + }, + { + "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ Luciæ Vírginis tuæ festivitáte gaudémus; ita piæ devotiónis erudi", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nExcita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntu", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam h", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15-16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur in ", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuorum honore Sanctórum: quorum se meritis de tribulatione percepís", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nPlacáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla sup", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 118:161-162*\nPríncipes persecúti sunt me gratis, et a verbis tuis formidávit cor meum: lætábor ego super elóquia tua", + "id": "Communio" + }, + { + "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica II Adventus*\nRepléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus parti", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-14": [ + { + "body": "*Phil 4:4-6*\nGaudéte in Dómino semper: íterum dico, gaudéte. Modéstia vestra nota sit ómnibus homínibus: Dóminus enim pr", + "id": "Introitus" + }, + { + "body": "Aurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras, grátia tuæ visitatiónis illústra:\nQ", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 4:4-7*\nFratres: Gaudéte in Dómino semper: íterum dico, gau", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nQui sedes, Dómine, super Chérubim, éxcita poténtiam tuam, et veni.\n℣. Qui regis Israël, inténde: q", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 1:19-28*\nIn illo tempore: Misérunt Judǽi ab Jerosólymis sacerdótes ", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nBenedixísti, Dómine, terram tuam: avertísti captivitátem Jacob: remisísti iniquitatem plebis tuæ.", + "id": "Offertorium" + }, + { + "body": "Devotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri péragat institúta mystérii, et salutáre", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Is 35:4.*\nDícite: pusillánimes, confortámini et nolíte timére: ecce, Deus noster véniet et salvábit nos.", + "id": "Communio" + }, + { + "body": "Implorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad festa ventúra nos prǽparent.\nPer Domi", + "id": "Postcommunio" + } + ], + "2025-12-15": [ + { + "body": "*Phil 4:4-6*\nGaudéte in Dómino semper: íterum dico, gaudéte. Modéstia vestra nota sit ómnibus homínibus: Dóminus enim pr", + "id": "Introitus" + }, + { + "body": "Aurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras, grátia tuæ visitatiónis illústra:\nQ", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 4:4-7*\nFratres: Gaudéte in Dómino semper: íterum dico, gau", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nQui sedes, Dómine, super Chérubim, éxcita poténtiam tuam, et veni.\n℣. Qui regis Israël, inténde: q", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 1:19-28*\nIn illo tempore: Misérunt Judǽi ab Jerosólymis sacerdótes ", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nBenedixísti, Dómine, terram tuam: avertísti captivitátem Jacob: remisísti iniquitatem plebis tuæ.", + "id": "Offertorium" + }, + { + "body": "Devotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri péragat institúta mystérii, et salutáre", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Is 35:4.*\nDícite: pusillánimes, confortámini et nolíte timére: ecce, Deus noster véniet et salvábit nos.", + "id": "Communio" + }, + { + "body": "Implorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad festa ventúra nos prǽparent.\nPer Domi", + "id": "Postcommunio" + } + ], + "2025-12-16": [ + { + "body": "*Dan 3:84; 3:87*\nSacerdótes Dei, benedícite Dóminum: sancti et húmiles corde, laudáte Deum.\n*Dan 3:57*\nBenedícite, ómnia", + "id": "Introitus" + }, + { + "body": "Deus, qui nos beáti N. Mártyris tui atque Pontíficis ánnua sollemnitáte lætíficas: concéde propítius; ut, cujus natalíti", + "id": "Oratio" + }, + { + "body": "*Commemoratio Dominica III Adventus*\nAurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras", + "id": "Commemoratio Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*2 Cor 1:3-7*\nFratres: Benedíctus Deus et Pater Dómini nostri Jesu C", + "id": "Lectio" + }, + { + "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum.\n℣. Et constituísti eum super ópera mánuum tuárum, Dómine. Allelúja, allelúja.", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:24-27*\nIn illo témpore: Dixit Jesus discípulis suis: Si quis vu", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", + "id": "Offertorium" + }, + { + "body": "Múnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto N. Mártyre tuo atque Pontífice, per éadem nos placátus in", + "id": "Secreta" + }, + { + "body": "*Commemoratio Dominica III Adventus*\nDevotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri pé", + "id": "Commemoratio Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso.", + "id": "Communio" + }, + { + "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto N. Mártyre tuo atque Pontífice, coeléstis remédii fác", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio Dominica III Adventus*\nImplorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-17": [ + { + "body": "*Is 45:8*\nRoráte, cœli, désuper, et nubes pluant justum: aperiátur terra, et gérminet Salvatórem\n*Ps 18:2.*\nCœli enárran", + "id": "Introitus" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut redemptiónis nostræ ventúra sollémnitas et præséntis nobis vitæ subsídia cónferat,", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 2:2-5.*\nIn diébus illis: Dixit Isaias Prophéta: Erit in novíssimis diébus præparátus mons domu", + "id": "LectioL1" + }, + { + "body": "*Ps 23:7; 23:3; 23:4*\nTóllite portas, principes, vestras: et elevámini, portæ æternáles: et introíbit Rex glóriæ.\n℣. Qui", + "id": "GradualeL1" + }, + { + "body": "Festína, quǽsumus, Dómine, ne tardáveris, et auxílium nobis supérnæ virtútis impénde: ut advéntus tui consolatiónibus su", + "id": "OratioL1" + }, + { + "body": "Lectio Isaíæ Prophétæ\n*Is 7:10-15*\nIn diébus illis: Locútus est Dóminus ad Achaz, dicens: Pete tibi signum a Dómino, Deo", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPrope est Dóminus ómnibus invocántibus eum: ómnibus qui ínvocant eum in veritáte.\n℣. Laudem Dómini l", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 1:26-38*\nIn illo tempore: Missus est Angelus Gábriel a Deo in civitatem", + "id": "Evangelium" + }, + { + "body": "*Is 35:4.*\nConfortámini, et jam nolite timére: ecce enim, Deus noster retríbuet judícium: ipse véniet, et salvos nos fác", + "id": "Offertorium" + }, + { + "body": "Acépta tibi sint, quǽsumus, Dómine, nostra jejúnia: quæ et expiándo nos tua grátia dignos effíciant, et ad sempiterna pr", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel.", + "id": "Communio" + }, + { + "body": "Salutáris tui, Dómine, munere satiáti, súpplices deprecámur: ut, cujus lætámur gustu, renovémur efféctu.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-12-18": [ + { + "body": "*Phil 4:4-6*\nGaudéte in Dómino semper: íterum dico, gaudéte. Modéstia vestra nota sit ómnibus homínibus: Dóminus enim pr", + "id": "Introitus" + }, + { + "body": "Aurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras, grátia tuæ visitatiónis illústra:\nQ", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 4:4-7*\nFratres: Gaudéte in Dómino semper: íterum dico, gau", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nQui sedes, Dómine, super Chérubim, éxcita poténtiam tuam, et veni.\n℣. Qui regis Israël, inténde: q", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 1:19-28*\nIn illo tempore: Misérunt Judǽi ab Jerosólymis sacerdótes ", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nBenedixísti, Dómine, terram tuam: avertísti captivitátem Jacob: remisísti iniquitatem plebis tuæ.", + "id": "Offertorium" + }, + { + "body": "Devotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri péragat institúta mystérii, et salutáre", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Is 35:4.*\nDícite: pusillánimes, confortámini et nolíte timére: ecce, Deus noster véniet et salvábit nos.", + "id": "Communio" + }, + { + "body": "Implorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad festa ventúra nos prǽparent.\nPer Domi", + "id": "Postcommunio" + } + ], + "2025-12-19": [ + { + "body": "*Ps 118:151-152*\nPrope es tu, Dómine, et omnes viæ tuæ véritas: inítio cognóvi de testimóniis tuis, quia in ætérnum tu e", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: ut hi, qui in tua pietáte confídunt, ab omni cítius adversitáte liber", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 11:1-5*\nHæc dicit Dóminus Deus: Egrediátur virga de radíce Jesse, et flos de radíce ejus ascén", + "id": "Lectio" + }, + { + "body": "*Ps 84:8; 84:2*\nOsténde nobis, Dómine, misericórdiam tuam: et salutáre tuum da nobis.\n℣. Benedixísti, Dómine, terram tua", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:39-47*\nIn illo tempore: Exsúrgens María ábiit in montána cum festinat", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", + "id": "Offertorium" + }, + { + "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Zach 14:5*\nEcce, Dóminus véniet et omnes Sancti ejus cum eo: et erit in die illa lux magna.", + "id": "Communio" + }, + { + "body": "Tui nos, Dómine, sacraménti libátio sancta restáuret: et a vetustáte purgátos, in mystérii salutáris fáciat transíre con", + "id": "Postcommunio" + } + ], + "2025-12-20": [ + { + "body": "*Ps 79:4; 79:2*\nVeni, et osténde nobis fáciem tuam, Dómine, qui sedes super Chérubim: et salvi érimus.\n*Ps 79:2*\nQui reg", + "id": "Introitus" + }, + { + "body": "Deus, qui cónspicis, quia ex nostra pravitáte afflígimur: concéde propítius; ut ex tua visitatióne consolémur:\nQui vivis", + "id": "Oratio" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Isa 19:20-22*\nIn diebus illis: Clamábunt ad Dóminum a facie tribulántis, et mittet eis salvatórem", + "id": "LectioL1" + }, + { + "body": "*Ps 18:7; 18:2*\nA summo cœlo egréssio ejus: et occúrsus ejus usque ad summum ejus.\n℣. Cœli enárrant glóriam Dei: et oper", + "id": "GradualeL1" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui sub peccáti jugo et vetústa servitúte deprímimur; exspectáta unigéniti Fílii", + "id": "OratioL1" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Isa 35:1-7*\nHæc dicit Dóminus: Lætábitur desérta et ínvia, ei exsultábit solitúdo, et florébit qu", + "id": "LectioL2" + }, + { + "body": "*Ps 18:6; 18:7*\nIn sole pósuit tabernáculum suum: et ipse tamquam sponsus procédens de thálamo suo.\n℣. A summo cœlo egré", + "id": "GradualeL2" + }, + { + "body": "Indígnos nos, quǽsumus, Dómine, fámulos tuos, quos actiónis própriæ culpa contrístat, unigéniti Fílii tui advéntu lætífi", + "id": "OratioL2" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 40:9-11*\nHæc dicit Dóminus: Super montem excélsum ascénde tu, qui evangelízas Sion: exálta in ", + "id": "LectioL3" + }, + { + "body": "*Ps 79:20; 79:3*\nDómine, Deus virtútum, convérte nos: et osténde fáciem tuam, et salvi érimus.\n℣. Excita, Dómine, potént", + "id": "GradualeL3" + }, + { + "body": "Prǽsta, quǽsumus, omnípotens Deus: ut Fílii tui ventúra sollémnitas et præséntis nobis vitæ remédia cónferat, et prǽmia ", + "id": "OratioL3" + }, + { + "body": "Léctio Isaíæ Prophétæ\n*Is 45:1-8.*\nHæc dicit Dóminus christo meo Cyro, cujus apprehéndi déxteram, ut subjíciam ante fáci", + "id": "LectioL4" + }, + { + "body": "*Ps 79:3,; 79:2; 79:3*\nExcita, Dómine, poténtiam tuam, et veni, ut salvos fácias nos.\n℣. Qui regis Israël, inténde: qui ", + "id": "GradualeL4" + }, + { + "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pietátis tuæ visit", + "id": "OratioL4" + }, + { + "body": "Léctio Daniélis Prophétæ\n*Dan 3:47-51*\nIn diebus illis: Angelus Dómini descéndit cum Azaría et sóciis ejus in fornácem: ", + "id": "LectioL5" + }, + { + "body": "Deus, qui tribus púeris mitigásti flammas ignium: concéde propítius; ut nos fámulos tuos non exúrat flamma vitiórum.\nPer", + "id": "OratioL5" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses\n*2 Thess 2:1-8*\nFratres: Rogámus vos per advéntum Dómini nostri", + "id": "Lectio" + }, + { + "body": "*Ps:79:2-3*\nQui regis Israël, inténde: qui dedúcis, velut ovem, Joseph.\n℣. Qui sedes super Chérubim, appáre coram Ephrai", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 3:1-6*\nAnno quintodécimo impérii Tibérii Cǽsaris, procuránte Póntio Pil", + "id": "Evangelium" + }, + { + "body": "*Zach 9:9*\nExsúlta satis, fília Sion, prǽdica, fília Jerúsalem: ecce, Rex tuus venit tibi sanctus et Salvátor.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Ps 18:6-7*\nExsultávit ut gigas ad curréndam viam: a summo cœlo egréssio ejus, et occúrsus ejus usque ad summum ejus.", + "id": "Communio" + }, + { + "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti; et præsens nobi", + "id": "Postcommunio" + } + ], + "2025-12-21": [ + { + "body": "*Isa 45:8*\nRoráte, cœli, désuper, et nubes pluant justum: aperiátur terra, et gérminet Salvatórem\n*Ps 18:2*\nCœli enárran", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: et magna nobis virtúte succúrre; ut per auxílium grátiæ tuæ, quod nos", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:1-5*\nFratres: Sic nos exístimet homo ut minístros Christi, e", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPrope est Dóminus ómnibus invocántibus eum: ómnibus, qui ínvocant eum in veritáte.\n℣. Laudem Dómini ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 3:1-6*\nAnno quintodécimo impérii Tibérii Cǽsaris, procuránte Póntio Pil", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28*\nAve, María, gratia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", + "id": "Prefatio" + }, + { + "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel.", + "id": "Communio" + }, + { + "body": "Sumptis munéribus, quǽsumus, Dómine: ut, cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-12-22": [ + { + "body": "*Isa 45:8*\nRoráte, cœli, désuper, et nubes pluant justum: aperiátur terra, et gérminet Salvatórem\n*Ps 18:2*\nCœli enárran", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: et magna nobis virtúte succúrre; ut per auxílium grátiæ tuæ, quod nos", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:1-5*\nFratres: Sic nos exístimet homo ut minístros Christi, e", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPrope est Dóminus ómnibus invocántibus eum: ómnibus, qui ínvocant eum in veritáte.\n℣. Laudem Dómini ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 3:1-6*\nAnno quintodécimo impérii Tibérii Cǽsaris, procuránte Póntio Pil", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28*\nAve, María, gratia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel.", + "id": "Communio" + }, + { + "body": "Sumptis munéribus, quǽsumus, Dómine: ut, cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-12-23": [ + { + "body": "*Isa 45:8*\nRoráte, cœli, désuper, et nubes pluant justum: aperiátur terra, et gérminet Salvatórem\n*Ps 18:2*\nCœli enárran", + "id": "Introitus" + }, + { + "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: et magna nobis virtúte succúrre; ut per auxílium grátiæ tuæ, quod nos", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:1-5*\nFratres: Sic nos exístimet homo ut minístros Christi, e", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPrope est Dóminus ómnibus invocántibus eum: ómnibus, qui ínvocant eum in veritáte.\n℣. Laudem Dómini ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 3:1-6*\nAnno quintodécimo impérii Tibérii Cǽsaris, procuránte Póntio Pil", + "id": "Evangelium" + }, + { + "body": "*Luc 1:28*\nAve, María, gratia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", + "id": "Offertorium" + }, + { + "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel.", + "id": "Communio" + }, + { + "body": "Sumptis munéribus, quǽsumus, Dómine: ut, cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum…", + "id": "Postcommunio" + } + ], + "2025-12-24": [ + { + "body": "*Exod 16:6; 16:7*\nHódie sciétis, quia véniet Dóminus et salvábit nos: et mane vidébitis glóriam ejus.\n*Ps 23:1*\nDómini e", + "id": "Introitus" + }, + { + "body": "Deus, qui nos redemptiónis nostræ ánnua exspectatióne lætíficas: præsta; ut Unigénitum tuum, quem Redemptórem læti suscí", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beati Pauli Apostoli ad Romános\n*Rom 1:1-6*\nPaulus, servus Jesu Christi, vocátus Apóstolus, segregátus i", + "id": "Lectio" + }, + { + "body": "*Exod 16:6; 16:7*\nHódie sciétis, quia véniet Dóminus et salvábit nos: et mane vidébitis glóriam ejus.\n*Ps 79:2-3*\nQui re", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Matthǽum.\n*Matt 1:18-21*\nCum esset desponsáta Mater Jesu Maria Joseph, ántequam co", + "id": "Evangelium" + }, + { + "body": "*Ps 23:7*\nTóllite portas, principes, vestras: et elevámini, portæ æternáles, et introíbit Rex glóriæ.", + "id": "Offertorium" + }, + { + "body": "Da nobis, quǽsumus, omnípotens Deus: ut, sicut adoránda Fílii tui natalítia prævenímus, sic ejus múnera capiámus sempité", + "id": "Secreta" + }, + { + "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", + "id": "Prefatio" + }, + { + "body": "*Isa 40:5*\nRevelábitur glória Dómini: et vidébit omnis caro salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Da nobis, quǽsumus, Dómine: unigéniti Fílii tui recensíta nativitáte respiráre; cujus cœlésti mystério páscimur et potám", + "id": "Postcommunio" + } + ], + "2025-12-25": [ + { + "body": "*Ps 2:7.*\nDóminus dixit ad me: Fílius meus es tu, ego hódie génui te.\n*Ps 2:1*\nQuare fremuérunt gentes: et pópuli meditá", + "id": "Introitus" + }, + { + "body": "Deus, qui hanc sacratíssimam noctem veri lúminis fecísti illustratióne claréscere: da, quǽsumus; ut, cujus lucis mystéri", + "id": "Oratio" + }, + { + "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", + "id": "Lectio" + }, + { + "body": "*Ps 109:3; 109:1*\nTecum princípium in die virtútis tuæ: in splendóribus Sanctórum, ex útero ante lucíferum génui te.\n℣. ", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 2:1-14*\nIn illo témpore: Exiit edíctum a Cæsare Augústo, ut describerét", + "id": "Evangelium" + }, + { + "body": "*Ps 95:11; 95:13*\nLæténtur cœli et exsúltet terra ante fáciem Dómini: quóniam venit.", + "id": "Offertorium" + }, + { + "body": "Accépta tibi sit, Dómine, quǽsumus, hodiérnæ festivitátis oblátio: ut, tua gratia largiénte, per hæc sacrosáncta commérc", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 109:3*\nIn splendóribus Sanctórum, ex útero ante lucíferum génui te.", + "id": "Communio" + }, + { + "body": "Da nobis, quǽsumus, Dómine, Deus noster: ut, qui Nativitátem Dómini nostri Jesu Christi mystériis nos frequentáre gaudém", + "id": "Postcommunio" + } + ], + "2025-12-26": [ + { + "body": "*Ps 118:23; 118:86; 118:23*\nSedérunt príncipes, et advérsum me loquebántur: et iníqui persecúti sunt me: ádjuva me, Dómi", + "id": "Introitus" + }, + { + "body": "Da nobis, quǽsumus, Dómine, imitári quod cólimus: ut discámus et inimícos dilígere; quia ejus natalícia celebrámus, qui ", + "id": "Oratio" + }, + { + "body": "*Pro Octava Nativitatis*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; quo", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio Actuum Apostolorum\n*Act 6:8-10; 7:54-59*\nIn diebus illis: Stéphanus, plenus grátia et fortitúdine, faciébat prodí", + "id": "Lectio" + }, + { + "body": "*Ps 118:23; 118:86*\nSedérunt príncipes, et advérsum me loquebántur: et iníqui persecúti sunt me.\n*Ps 6:5*\nAdjuva me, Dóm", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Matthǽum\n*Matt 23:34-39*\nIn illo témpore: Dicébat Jesus scribis et pharisæis: Ecce", + "id": "Evangelium" + }, + { + "body": "*Act 6:5; 7:59*\nElegérunt Apóstoli Stéphanum Levítam, plenum fide et Spíritu Sancto: quem lapidavérunt Judæi orántem, et", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera pro tuórum commemoratióne Sanctórum: ut, sicut illos pássio gloriósos effécit; ita nos devótio r", + "id": "Secreta" + }, + { + "body": "*Pro Octava Nativitatis*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrorum", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Act 7:56; 7:59; 7:60*\nVídeo cælos apértos, et Jesum stantem a dextris virtútis Dei: Dómine Jesu, accipe spíritum meum, ", + "id": "Communio" + }, + { + "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáto Stéphano Mártyre tuo, sempitérna protectióne confírme", + "id": "Postcommunio" + }, + { + "body": "*Pro Octava Nativitatis*\nPræsta, quǽsumus, omnípotens Deus: ut natus hodie Salvátor mundi, sicut divínæ nobis generatión", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-27": [ + { + "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", + "id": "Introitus" + }, + { + "body": "Ecclésiam tuam, Dómine, benígnus illústra: ut, beáti Joánnis Apóstoli tui et Evangelístæ illumináta doctrínis, ad dona p", + "id": "Oratio" + }, + { + "body": "*Pro Octava Nativitatis:*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio libri Sapiéntiæ.\n*Eccli 15:1-6*\nQui timet Deum, fáciet bona: et qui cóntinens est justítiæ, apprehéndet illam, et", + "id": "Lectio" + }, + { + "body": "*Joann 21:23; 21:19*\nExiit sermo inter fratres, quod discípulus ille non móritur: et non dixit Jesus: Non móritur,\n℣. Se", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Joánnem.\n*Joann 21:19-24*\nIn illo témpore: Dixit Jesus Petro: Séquere me. Convérsu", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, mulliplicábitur.", + "id": "Offertorium" + }, + { + "body": "Súscipe, Dómine, múnera, quæ in ejus tibi sollemnitáte deférimus, cujus nos confídimus patrocínio liberári.\nPer Dominum…", + "id": "Secreta" + }, + { + "body": "*Pro Octava Nativitatis:*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostróru", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Joann 21:23*\nExiit sermo inter fratres, quod discípulus ille non móritur: et non dixit Jesus: Non móritur; sed: Sic eum", + "id": "Communio" + }, + { + "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices deprecámur: ut, in cujus hæc commemoratióne percépimus, ejus mun", + "id": "Postcommunio" + }, + { + "body": "*Pro Octava Nativitatis:*\nPræsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatió", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-28": [ + { + "body": "*Sap 18:14-15.*\nDum médium siléntium tenérent ómnia, et nox in suo cursu médium iter háberet, omnípotens Sermo tuus, Dóm", + "id": "Introitus" + }, + { + "body": "Omnípotens sempitérne Deus, dírige actus nostros in beneplácito tuo: ut in nómine dilécti Fílii tui mereámur bonis opéri", + "id": "Oratio" + }, + { + "body": "*Pro Octava Nativitatis:*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; qu", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio Epístolæ beati Pauli Apóstoli ad Gálatas.\n*Gal 4:1-7*\nFratres: Quanto témpore heres párvulus est, nihil differt a", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nSpeciósus forma præ filiis hóminum: diffúsa est gratia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secundum Lucam.\n*Luc 2:33-40*\nIn illo témpore: Erat Joseph et María Mater Jesu, mirántes su", + "id": "Evangelium" + }, + { + "body": "*Ps 92:1-2*\nDeus firmávit orbem terræ, qui non commovébitur: paráta sedes tua, Deus, ex tunc, a sǽculo tu es.", + "id": "Offertorium" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut óculis tuæ majestátis munus oblátum, et grátiam nobis piæ devotiónis obtineat, et", + "id": "Secreta" + }, + { + "body": "*Pro Octava Nativitatis:*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostróru", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Matt 2:20*\nTolle Púerum et Matrem ejus, et vade in terram Israël: defúncti sunt enim, qui quærébant ánimam Púeri.", + "id": "Communio" + }, + { + "body": "Per hujus, Dómine, operatiónem mystérii, et vitia nostra purgéntur, et justa desidéria compleántur.\nPer Dominum…", + "id": "Postcommunio" + }, + { + "body": "*Pro Octava Nativitatis:*\nPræsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatió", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-29": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; quos sub peccáti jugo vetúst", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Thomæ M.*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; q", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio Epístolæ beati Pauli Apostoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt cœli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium ", + "id": "Offertorium" + }, + { + "body": "Obláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer eúnd", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Thomæ M.*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrór", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatiónis est auctor; ita et imm", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Thomæ M.*\nPræsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generati", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-30": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; quos sub peccáti jugo vetúst", + "id": "Oratio" + }, + { + "body": "Lectio Epístolæ beati Pauli Apostoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt cœli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium ", + "id": "Offertorium" + }, + { + "body": "Obláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer eúnd", + "id": "Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatiónis est auctor; ita et imm", + "id": "Postcommunio" + } + ], + "2025-12-31": [ + { + "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", + "id": "Introitus" + }, + { + "body": "Concéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; quos sub peccáti jugo vetúst", + "id": "Oratio" + }, + { + "body": "*Commemoratio S. Silvestri*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; ", + "id": "Commemoratio Oratio" + }, + { + "body": "Lectio Epístolæ beati Pauli Apostoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", + "id": "Graduale" + }, + { + "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTui sunt cœli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium ", + "id": "Offertorium" + }, + { + "body": "Obláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer eúnd", + "id": "Secreta" + }, + { + "body": "*Commemoratio S. Silvestri*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostró", + "id": "Commemoratio Secreta" + }, + { + "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", + "id": "Communio" + }, + { + "body": "Præsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatiónis est auctor; ita et imm", + "id": "Postcommunio" + }, + { + "body": "*Commemoratio S. Silvestri*\nPræsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generat", + "id": "Commemoratio Postcommunio" + } + ] +} \ No newline at end of file diff --git a/tests/fixtures/propers_la_2020.json b/tests/fixtures/propers_la_2020.json deleted file mode 100644 index c75f7821..00000000 --- a/tests/fixtures/propers_la_2020.json +++ /dev/null @@ -1,17234 +0,0 @@ -{ - "2020-01-01": [ - { - "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", - "id": "Introitus" - }, - { - "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fecúnda, humáno géneri præmia præstitísti: tríbue, quǽsumus; ut ipsam ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTui sunt coeli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium", - "id": "Offertorium" - }, - { - "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", - "id": "Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", - "id": "Communio" - }, - { - "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cæléstis remédii fáciat ", - "id": "Postcommunio" - } - ], - "2020-01-02": [ - { - "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", - "id": "Introitus" - }, - { - "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fecúnda, humáno géneri præmia præstitísti: tríbue, quǽsumus; ut ipsam ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTui sunt coeli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium", - "id": "Offertorium" - }, - { - "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", - "id": "Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", - "id": "Communio" - }, - { - "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cæléstis remédii fáciat ", - "id": "Postcommunio" - } - ], - "2020-01-03": [ - { - "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", - "id": "Introitus" - }, - { - "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fecúnda, humáno géneri præmia præstitísti: tríbue, quǽsumus; ut ipsam ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTui sunt coeli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium", - "id": "Offertorium" - }, - { - "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", - "id": "Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", - "id": "Communio" - }, - { - "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cæléstis remédii fáciat ", - "id": "Postcommunio" - } - ], - "2020-01-04": [ - { - "body": "*Ps 44:13; 44:15; 44:16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus", - "id": "Introitus" - }, - { - "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fœcúnda, humáno generi præmia præstitísti: tríbue, quǽsumus; ut ipsam ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:2*\nSpeciósus forma præ fíliis hóminum: diffúsa est grátia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", - "id": "Evangelium" - }, - { - "body": "Felix namque es, sacra Virgo María, et omni laude digníssima: quia ex te ortus est sol justítiæ, Christus, Deus noster.", - "id": "Offertorium" - }, - { - "body": "Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis prof", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", - "id": "Communio" - }, - { - "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cœléstis remédii fáciat ", - "id": "Postcommunio" - } - ], - "2020-01-05": [ - { - "body": "*Phil 2:10-11*\nIn nómine Jesu omne genu flectátur, cœléstium, terréstrium et infernórum: et omnis lingua confiteátur, qu", - "id": "Introitus" - }, - { - "body": "Deus, qui unigénitum Fílium tuum constituísti humáni géneris Salvatórem, et Jesum vocári jussísti: concéde propítius; ut", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolorum\n*Act 4:8-12*\nIn diébus illis: Petrus, replétus Spíritu Sancto, dixit: Príncipes pópuli et seni", - "id": "Lectio" - }, - { - "body": "*Ps 105:47*\nSalvos fac nos, Dómine, Deus noster, et cóngrega nos de natiónibus: ut confiteámur nómini sancto tuo, et glo", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:21*\nIn illo témpore: Postquam consummáti sunt dies octo, ut circumcid", - "id": "Evangelium" - }, - { - "body": "*Ps 85:12; 85:5*\nConfitébor tibi, Dómine, Deus meus, in toto corde meo, et glorificábo nomen tuum in ætérnum: quóniam tu", - "id": "Offertorium" - }, - { - "body": "Benedíctio tua, clementíssime Deus, qua omnis viget creatúra, sanctíficet, quǽsumus, hoc sacrifícium nostrum, quod ad gl", - "id": "Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Ps 85:9-10*\nOmnes gentes, quascúmque fecísti, vénient et adorábunt coram te, Dómine, et glorificábunt nomen tuum: quóni", - "id": "Communio" - }, - { - "body": "Omnípotens ætérne Deus, qui creásti et redemísti nos, réspice propítius vota nostra: et sacrifícium salutáris hóstiæ, qu", - "id": "Postcommunio" - } - ], - "2020-01-06": [ - { - "body": "*Malach 3:1; 1 Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium.\n*Ps 71:1*\nDeu", - "id": "Introitus" - }, - { - "body": "Deus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qui jam te ex fide cognóvi", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta es", - "id": "Lectio" - }, - { - "body": "*Isa 60:6; 60:1*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre,", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 2:1-12*\nCum natus esset Jesus in Béthlehem Juda in diébus Heródis r", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", - "id": "Offertorium" - }, - { - "body": "Ecclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha profertur; sed quod eisdem ", - "id": "Secreta" - }, - { - "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intellegéntia consequámur.\nPer", - "id": "Postcommunio" - } - ], - "2020-01-07": [ - { - "body": "*Malach 3:1; 1 Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium.\n*Ps 71:1*\nDeu", - "id": "Introitus" - }, - { - "body": "Deus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qui jam te ex fide cognóvi", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta es", - "id": "Lectio" - }, - { - "body": "*Isa 60:6; 60:1*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre,", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 2:1-12*\nCum natus esset Jesus in Béthlehem Juda in diébus Heródis r", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", - "id": "Offertorium" - }, - { - "body": "Ecclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha profertur; sed quod eisdem ", - "id": "Secreta" - }, - { - "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intellegéntia consequámur.\nPer", - "id": "Postcommunio" - } - ], - "2020-01-08": [ - { - "body": "*Malach 3:1; 1 Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium.\n*Ps 71:1*\nDeu", - "id": "Introitus" - }, - { - "body": "Deus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qui jam te ex fide cognóvi", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta es", - "id": "Lectio" - }, - { - "body": "*Isa 60:6; 60:1*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre,", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 2:1-12*\nCum natus esset Jesus in Béthlehem Juda in diébus Heródis r", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", - "id": "Offertorium" - }, - { - "body": "Ecclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha profertur; sed quod eisdem ", - "id": "Secreta" - }, - { - "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intellegéntia consequámur.\nPer", - "id": "Postcommunio" - } - ], - "2020-01-09": [ - { - "body": "*Malach 3:1; 1 Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium.\n*Ps 71:1*\nDeu", - "id": "Introitus" - }, - { - "body": "Deus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qui jam te ex fide cognóvi", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta es", - "id": "Lectio" - }, - { - "body": "*Isa 60:6; 60:1*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre,", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 2:1-12*\nCum natus esset Jesus in Béthlehem Juda in diébus Heródis r", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", - "id": "Offertorium" - }, - { - "body": "Ecclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha profertur; sed quod eisdem ", - "id": "Secreta" - }, - { - "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intellegéntia consequámur.\nPer", - "id": "Postcommunio" - } - ], - "2020-01-10": [ - { - "body": "*Malach 3:1; 1 Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium.\n*Ps 71:1*\nDeu", - "id": "Introitus" - }, - { - "body": "Deus, qui hodiérna die Unigénitum tuum géntibus stella duce revelásti: concéde propítius; ut, qui jam te ex fide cognóvi", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta es", - "id": "Lectio" - }, - { - "body": "*Isa 60:6; 60:1*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre,", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 2:1-12*\nCum natus esset Jesus in Béthlehem Juda in diébus Heródis r", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", - "id": "Offertorium" - }, - { - "body": "Ecclésiæ tuæ, quǽsumus, Dómine, dona propítius intuere: quibus non jam aurum, thus et myrrha profertur; sed quod eisdem ", - "id": "Secreta" - }, - { - "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, quæ sollémni celebrámus officio, purificátæ mentis intellegéntia consequámur.\nPer", - "id": "Postcommunio" - } - ], - "2020-01-11": [ - { - "body": "*Ps 44:13; 44:15; 44:16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus", - "id": "Introitus" - }, - { - "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fœcúnda, humáno generi præmia præstitísti: tríbue, quǽsumus; ut ipsam ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:2*\nSpeciósus forma præ fíliis hóminum: diffúsa est grátia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", - "id": "Evangelium" - }, - { - "body": "Felix namque es, sacra Virgo María, et omni laude digníssima: quia ex te ortus est sol justítiæ, Christus, Deus noster.", - "id": "Offertorium" - }, - { - "body": "Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis prof", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", - "id": "Communio" - }, - { - "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cœléstis remédii fáciat ", - "id": "Postcommunio" - } - ], - "2020-01-12": [ - { - "body": "*Prov 23:24; 23:25*\nExsúltat gáudio pater Justi, gáudeat Pater tuus et Mater tua, et exsúltet quæ génuit te.\n*Ps 83:2-3*", - "id": "Introitus" - }, - { - "body": "Dómine Jesu Christe, qui, Maríæ et Joseph súbditus, domésticam vitam ineffabílibus virtútibus consecrásti: fac nos, utri", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses.\n*Col 3:12-17*\nFratres: Indúite vos sicut elécti Dei, sancti et dilé", - "id": "Lectio" - }, - { - "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram: ut inhábitem in domo Dómini ómnibus diébus vitæ meæ.\n*Ps 83:5.*\nBeáti, qui", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:42-52*\nCum factus esset Jesus annórum duódecim, ascendéntibus illis ", - "id": "Evangelium" - }, - { - "body": "*Luc 2:22*\nTulérunt Jesum paréntes ejus in Jerúsalem, ut sísterent eum Dómino.", - "id": "Offertorium" - }, - { - "body": "Placatiónis hostiam offérimus tibi, Dómine, supplíciter ut, per intercessiónem Deíparæ Vírginis cum beáto Joseph, famíli", - "id": "Secreta" - }, - { - "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", - "id": "Prefatio" - }, - { - "body": "*Luc 2:51*\nDescéndit Jesus cum eis, et venit Názareth, et erat súbditus illis.", - "id": "Communio" - }, - { - "body": "Quos cœléstibus réficis sacraméntis, fac, Dómine Jesu, sanctæ Famíliæ tuæ exémpla júgiter imitári: ut in hora mortis nos", - "id": "Postcommunio" - } - ], - "2020-01-13": [ - { - "body": "*Malach 3:1; 3:1; Par 29:12*\nEcce, advénit dominátor Dóminus: et regnum in manu ejus et potéstas et impérium\n*Ps 71:1*\nD", - "id": "Introitus" - }, - { - "body": "Deus, cujus Unigénitus in substántia nostræ carnis appáruit: præsta, quǽsumus; ut per eum, quem símilem nobis foris agnó", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ.\n*Is 60:1-6*\nSurge, illumináre, Jerúsalem: quia venit lumen tuum, et glória Dómini super te orta e", - "id": "Lectio" - }, - { - "body": "*Isa 60:6; 60:11*\nOmnes de Saba vénient, aurum et thus deferéntes, et laudem Dómino annuntiántes.\n℣. Surge et illumináre", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 1:29-34*\nIn illo témpore: Vidit Joánnes Jesum veniéntem ad se, et ", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nReges Tharsis, et ínsulæ múnera ófferent: reges Arabum et Saba dona addúcent: et adorábunt eum omnes reges", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, pro nati Fílii tui apparitióne deférimus, supplíciter exorántes: ut, sicut ipse nostrórum auctor e", - "id": "Secreta" - }, - { - "body": "*de Epiphania Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sanc", - "id": "Prefatio" - }, - { - "body": "*Matt 2:2*\nVídimus stellam ejus in Oriénte, et vénimus cum munéribus adoráre Dóminum.", - "id": "Communio" - }, - { - "body": "Cœlésti lúmine, quǽsumus, Dómine, semper et ubíque nos præveni: ut mystérium, cujus nos partícipes esse voluísti, et pur", - "id": "Postcommunio" - } - ], - "2020-01-14": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Hilárium minístrum tribuísti: præsta quǽsumus; ut, quem Doctórem vitæ habúimu", - "id": "Oratio" - }, - { - "body": "*Pro S. Felicis Mart.*\nConcéde, quǽsumus, omnípotens Deus: ut ad meliórem vitam Sanctórum tuórum exémpla nos próvocent; ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "*Pro Doctore Pontifice*\nSancti N. Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostr", - "id": "Secreta" - }, - { - "body": "*Pro S. Felicis Mart.*\nHóstias tibi, Dómine, beáti Félicis Mártyris tui dicátas méritis, benígnus assúme: et ad perpétuu", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "*Pro Doctore Pontifice*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus N. Póntifex tuus et Doctor egrégius, quǽsu", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Felicis Mart.*\nQuǽsumus, Dómine, salutáribus repléti mystériis: ut, beáti Félicis Mártyris tui, cujus sollémnia ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-15": [ - { - "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", - "id": "Introitus" - }, - { - "body": "Deus, qui nos beáti Pauli Confessóris tui ánnua sollemnitáte lætíficas: concéde propítius; ut, cujus natalítia cólimus, ", - "id": "Oratio" - }, - { - "body": "*Pro S. Mauro Abbate*\nIntercéssio nos, quǽsumus, Dómine, beáti Mauri Abbátis comméndet: ut, quod nostris méritis non val", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 3:7-12*\nFratres: Quæ mihi fuérunt lucra, hæc arbitrátus su", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAnnuntiándum m", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:25-30*\nIn illo témpore: Respóndens Jesus, dixit: Confíteor tibi,", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Pro S. Mauro Abbate*\nSacris altáribus, Dómine, hóstias superpósitas sanctus Maurus Abbas, quǽsumus, in salútem nobis pr", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 63:11*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde.", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muni", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Mauro Abbate*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus Maurus Abbas, pro nobis intercedéndo: ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-16": [ - { - "body": "*Joann 21:15; 21:16; 21:17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine", - "id": "Introitus" - }, - { - "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut beáti Marcélli Mártyris tui atque Pontíficis méritis adjuvémur", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior e", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi,", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et déstruas, et", - "id": "Offertorium" - }, - { - "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubíque succéssus, et ", - "id": "Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18.*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", - "id": "Communio" - }, - { - "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", - "id": "Postcommunio" - } - ], - "2020-01-17": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Intercéssio nos, quǽsumus Dómine, beáti Antónii Abbátis comméndet: ut, quod nostris méritis non valémus, ejus patrocínio", - "id": "Oratio" - }, - { - "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", - "id": "Offertorium" - }, - { - "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salútem nobis proveníre depóscat.\nPer Domi", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus N. Abbas, pro nobis intercedéndo: ut et conversatiónis ejus ", - "id": "Postcommunio" - } - ], - "2020-01-18": [ - { - "body": "*Ps 44:13; 44:15; 44:16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus", - "id": "Introitus" - }, - { - "body": "Deus, qui salútis ætérnæ, beátæ Maríæ virginitáte fœcúnda, humáno generi præmia præstitísti: tríbue, quǽsumus; ut ipsam ", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Priscæ Virginis*\nDa, quǽsumus, omnípotens Deus: ut, qui beátæ Priscæ Vírginis et Mártyris tuæ natalítia", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:2*\nSpeciósus forma præ fíliis hóminum: diffúsa est grátia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", - "id": "Evangelium" - }, - { - "body": "Felix namque es, sacra Virgo María, et omni laude digníssima: quia ex te ortus est sol justítiæ, Christus, Deus noster.", - "id": "Offertorium" - }, - { - "body": "Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis prof", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Priscæ Virginis*\nHæc hóstia, quǽsumus, Dómine, quam Sanctórum tuórum natalítia recenséntes offérimus, e", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", - "id": "Communio" - }, - { - "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírgine Dei Genetríce María, cœléstis remédii fáciat ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Priscæ Virginis*\nQuǽsumus, Dómine, salutáribus repléti mystériis: ut, cujus sollémnia celebrámus, ejus ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-19": [ - { - "body": "*Ps 65:4*\nOmnis terra adóret te, Deus, et psallat tibi: psalmum dicat nómini tuo, Altíssime.\n*Ps 65:1-2*\nJubiláte Deo, o", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui cœléstia simul et terréna moderáris: supplicatiónes pópuli tui cleménter exáudi; et pace", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:6-16*\nFratres: Habéntes donatiónes secúndum grátiam, quæ data e", - "id": "Lectio" - }, - { - "body": "*Ps 106:20-21*\nMisit Dóminus verbum suum, et sanávit eos: et erípuit eos de intéritu eórum.\n℣. Confiteántur Dómino miser", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 2:1-11*\nIn illo témpore: Núptiæ factæ sunt in Cana Galilǽæ: et era", - "id": "Evangelium" - }, - { - "body": "*Ps 65:1-2; 65:16*\nJubiláte Deo, univérsa terra: psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", - "id": "Offertorium" - }, - { - "body": "Oblata, Dómine, múnera sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Joann 2:7; 2:8; 2:9; 2:10-11*\nDicit Dóminus: Implete hýdrias aqua et ferte architriclíno. Cum gustásset architriclínus ", - "id": "Communio" - }, - { - "body": "Augeátur in nobis, quǽsumus, Dómine, tuæ virtútis operatio: ut divínis vegetáti sacraméntis, ad eórum promíssa capiénda,", - "id": "Postcommunio" - } - ], - "2020-01-20": [ - { - "body": "*Ps 78:11-12; 78:10*\nIntret in conspéctu tuo, Dómine, gémitus compeditórum: redde vicínis nostris séptuplum in sinu eóru", - "id": "Introitus" - }, - { - "body": "Infirmitátem nostram réspice, omnípotens Deus: et, quia pondus própriæ actiónis gravat, beatórum Mártyrum tuórum Fabiáni", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos\n*Hebr 11:33-39*\nFratres: Sancti per fidem vicérunt regna, operáti sunt j", - "id": "Lectio" - }, - { - "body": "*Exod 15:11*\nGloriósus Deus in Sanctis suis: mirábilis in majestáte, fáciens prodígia.\n*Exod 15:6*\nDéxtera tua, Dómine, ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 6:17-23*\nIn illo témpore: descéndens Jesus de monte, stetit in loco ca", - "id": "Evangelium" - }, - { - "body": "*Ps 31:11*\nLætámini in Dómino et exsultáte, justi: et gloriámini, omnes recti corde.", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, beatórum Mártyrum tuórum Fabiáni et Sebastiáni dicátas méritis, benígnus assúme: et ad perpétuum n", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 6:18; 6:19*\nMultitúdo languéntium, et qui vexabántur a spirítibus immúndis, veniébant ad eum: quia virtus de illo e", - "id": "Communio" - }, - { - "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedéntibus sancti", - "id": "Postcommunio" - } - ], - "2020-01-21": [ - { - "body": "*Ps 118:95-96*\nMe exspectavérunt peccatóres, ut pérderent me: testimónia tua, Dómine, intelléxi: omnis consummatiónis vi", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui infírma mundi éligis, ut fórtia quæque confúndas: concéde propítius; ut, qui beátæ Agnét", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", - "id": "Lectio" - }, - { - "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum,\n*Ps 44:5*\nPropter veritátem et mans", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducántur", - "id": "Offertorium" - }, - { - "body": "Hóstias, Dómine, quas tibi offérimus, propítius súscipe: et, intercedénte beáta Agnéte Vírgine et Mártyre tua, víncula p", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque cœlésti. Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", - "id": "Postcommunio" - } - ], - "2020-01-22": [ - { - "body": "*Ps 78:11-12; 78:10*\nIntret in conspéctu tuo, Dómine, gémitus compeditórum: redde vicínis nostris séptuplum in sinu eóru", - "id": "Introitus" - }, - { - "body": "Adésto, Dómine, supplicatiónibus nostris: ut, qui ex iniquitáte nostra reos nos esse cognóscimus, beatórum Mártyrum tuór", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 3:1-8*\nJustorum ánimæ in manu Dei sunt, et non tanget illos torméntum mortis. Visi sunt ocul", - "id": "Lectio" - }, - { - "body": "*Exod 15:11*\nGloriósus Deus in Sanctis suis: mirábilis in majestáte, fáciens prodígia.\n*Exod 15:6*\n℣. Déxtera tua, Dómin", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 21:9-19*\nIn illo témpore: Dixit Jesus discípulis suis: Cum audieritis ", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nMirábilis Deus in Sanctis suis: Deus Israël, ipse dabit virtútem et fortitúdinem plebi suæ: benedíctus Deus, ", - "id": "Offertorium" - }, - { - "body": "Múnera tibi, Dómine, nostræ devotiónis offérimus: quæ et pro tuórum tibi grata sint honóre Justórum, et nobis salutária,", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentávit eos: tamquam aurum in fornáce probávit eos, et quas", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedéntibus beátis Martýribus tuis Vincéntio et Ana", - "id": "Postcommunio" - } - ], - "2020-01-23": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Raymúndum pœniténtiæ sacraménti insígnem minístrum elegísti, et per maris undas mirabíliter traduxísti:", - "id": "Oratio" - }, - { - "body": "*Pro S. Emerentianæ Virg. et Mart.*\nIndulgéntiam nobis, quǽsumus, Dómine, beáta Emerentiána Virgo et Martyr implóret: qu", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Pro S. Emerentianæ Virg. et Mart.*\nHóstias tibi, Dómine, beátæ Emerentiánæ Vírginis et Mártyris tuæ dicátas méritis, be", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Emerentianæ Virg. et Mart.*\nDivíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut, intercedénte be", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-24": [ - { - "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum\n", - "id": "Introitus" - }, - { - "body": "Infirmitátem nostram réspice, omnípotens Deus: et, quia pondus própriæ actiónis gravat, beáti N. Mártyris tui atque Pont", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*1 Tim 6:11-16*\nCaríssime: Sectáre justítiam, pietátem, fidem, caritá", - "id": "Lectio" - }, - { - "body": "*Ps 88:21-23.*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum conf", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:26-33.*\nIn illo témpore: Dixit Jesus turbis: Si quis venit ad me, e", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25.*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, beáti N. Mártyris tui atque Pontíficis dicátas méritis, benígnus assúme: et ad perpétuum nobis trí", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 88:36; 88:37-38.*\nSemel jurávi in sancto meo: Semen ejus in ætérnum manébit: et sedes ejus sicut sol in conspéctu me", - "id": "Communio" - }, - { - "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedénte beáto N. ", - "id": "Postcommunio" - } - ], - "2020-01-25": [ - { - "body": "*2 Tim 1:12*\nScio, cui crédidi, et certus sum, quia potens est depósitum meum serváre in illum diem, justus judex.\n*Ps 1", - "id": "Introitus" - }, - { - "body": "Deus, qui univérsum mundum beáti Pauli Apóstoli prædicatióne docuísti: da nobis, quǽsumus; ut, qui ejus hódie Conversión", - "id": "Oratio" - }, - { - "body": "*Pro S. Petro*\nDeus, qui beáto Petro Apóstolo tuo, collátis clávibus regni cœléstis, ligándi atque solvéndi pontifícium ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Actuum Apostolórum\n*Act 9:1-22*\nIn diébus illis: Saulus adhuc spirans minárum et cædis in discípulos Dómini, accé", - "id": "Lectio" - }, - { - "body": "*Gal 2:8; 2:9*\nQui operátus est Petro in apostolátum, operátus est ei mihi inter gentes: et cognovérunt grátiam Dei, quæ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", - "id": "Offertorium" - }, - { - "body": "Apóstoli tui Pauli précibus, Dómine, plebis tuæ dona sanctífica: ut, quæ tibi tuo grata sunt institúto, gratióra fiant p", - "id": "Secreta" - }, - { - "body": "*Pro S. Petro*\nEcclésiæ tuæ, quǽsumus, Dómine, preces et hóstias beáti Petri Apóstoli comméndet orátio: ut, quod pro ill", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28; 19:29*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", - "id": "Communio" - }, - { - "body": "Sanctificáti, Dómine, salutári mystério: quǽsumus; ut nobis ejus non desit orátio, cujus nos donásti patrocínio gubernár", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Petro*\nLætíficet nos, Dómine, munus oblátum: ut, sicut in Apóstolo tuo Petro te mirábilem prædicámus; sic per il", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-26": [ - { - "body": "*Ps 96:7-8*\nAdoráte Deum, omnes Angeli ejus: audívit, et lætáta est Sion: et exsultavérunt fíliæ Judæ.\n*Ps 96:1*\nDóminus", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, infirmitatem nostram propítius réspice: atque, ad protegéndum nos, déxteram tuæ majestátis e", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 12:16-21*\nFratres: Nolíte esse prudéntes apud vosmetípsos: nulli m", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:1-13*\nIn illo témpore: Cum descendísset Jesus de monte, secútæ s", - "id": "Evangelium" - }, - { - "body": "*Ps 117:16; 117:17*\nDéxtera Dómini fecit virtutem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera ", - "id": "Offertorium" - }, - { - "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Luc 4:22*\nMirabántur omnes de his, quæ procedébant de ore Dei.", - "id": "Communio" - }, - { - "body": "Quos tantis, Dómine, largíris uti mystériis: quǽsumus; ut efféctibus nos eórum veráciter aptáre dignéris.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-01-27": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Ecclésiam tuam, quǽsumus, Dómine, grátia cœléstis amplíficet: quam beáti Joánnis Chrysóstomi Confessóris tui atque Pontí", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui j", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est inventus símilis illi, qui con", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", - "id": "Offertorium" - }, - { - "body": "Sancti Joánnis Chrysóstomi Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concí", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Joánnes Chrysóstomus Póntifex tuus et Doctor egrégius, quǽsumus, p", - "id": "Postcommunio" - } - ], - "2020-01-28": [ - { - "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", - "id": "Introitus" - }, - { - "body": "Deus, qui in tuæ caritátis exémplum ad fidélium redemptiónem sanctum Petrum Ecclésiam tuam nova prole fœcundáre divínitu", - "id": "Oratio" - }, - { - "body": "*Pro S. Agneti secundo*\nDeus, qui nos ánnua beátæ Agnetis Vírginis et Martyris tuæ sollemnitáte lætíficas: da, quǽsumus;", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", - "id": "Offertorium" - }, - { - "body": "Laudis tibi. Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum quibus nos et præséntibus éxui malis confídimu", - "id": "Secreta" - }, - { - "body": "*Pro S. Agneti secundo*\nSuper has, quǽsumus, Dómine, hóstias benedíctio copiósa descéndat: quæ et sanctificatiónem nobis", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Agneti secundo*\nSúmpsimus, Dómine, celebritátis ánnuæ votiva sacraménta: præsta, quǽsumus; ut et temporális vitæ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-29": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui ad animárum salútem beátum Francíscum Confessórem tuum atque Pontíficem ómnibus ómnia factum esse voluísti: co", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "*Pro Doctore Pontifice*\nSancti N. Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostr", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "*Pro Doctore Pontifice*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus N. Póntifex tuus et Doctor egrégius, quǽsu", - "id": "Postcommunio" - } - ], - "2020-01-30": [ - { - "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", - "id": "Introitus" - }, - { - "body": "Deus, qui inter cétera poténtiæ tuæ mirácula, étiam in sexu frágili victóriam martýrii contulísti: concéde propítius; ut", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", - "id": "Lectio" - }, - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, múnera, quæ in beátæ N. Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus patrocíni", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 118:78; 118:80*\nConfundántur supérbi, quia injúste iniquitátem fecérunt in me: ego autem in mandátis tuis exercébor,", - "id": "Communio" - }, - { - "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta N. Vírgine et Mártyre tua, sempitérna fáciant protect", - "id": "Postcommunio" - } - ], - "2020-01-31": [ - { - "body": "*3 Reg 4:29*\nDedit illi Deus sapiéntiam, et prudéntiam multam nimis, et latitúdinem cordis, quasi arénam quæ est in lítt", - "id": "Introitus" - }, - { - "body": "Deus, qui sanctum Joánnem Confessórem tuum adolescentium patrem et magístrum excitásti, ac per eum, auxiliatríce Vírgine", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses.\n*Philipp 4:4-9*\nFratres: Gaudéte in Dómino semper: íterum dico, ga", - "id": "Lectio" - }, - { - "body": "*Ps 36:3-5*\nSpera in Dómino, et fac bonitátem, et inhábita terram, et pascéris in divítiis ejus.\n℣. Delectáre in Dómino,", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-5*\nIn illo témpore: Accessérunt discípuli ad Jesum dicéntes: ", - "id": "Evangelium" - }, - { - "body": "*Ps 33:12*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, oblatiónem mundam salutáris Hóstiæ, et præsta: ut, te in ómnibus et super ómnia diligéntes, in glóriæ t", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Rom 4:18*\nContra spem in spem crédidit, ut fíeret pater multárum géntium, secúndum quod dictum est ei.", - "id": "Communio" - }, - { - "body": "Córporis et Sánguinis tui, Dómine, mystério satiátis, concéde, quǽsumus; ut, intercedénte sancto Joánne Confessóre tuo, ", - "id": "Postcommunio" - } - ], - "2020-02-01": [ - { - "body": "*Gal 6:14.*\nMihi autem absit gloriári, nisi in Cruce Dómini nostri Jesu Christi: per quem mihi mundus crucifíxus est, et", - "id": "Introitus" - }, - { - "body": "Infirmitátem nostram respice, omnípotens Deus: et, quia pondus própriæ actionis gravat, beáti Ignátii Martyris tui atque", - "id": "Oratio" - }, - { - "body": "Léctio Epistolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:35-39.*\nFratres: Quis nos separábit a caritáte Christi: tribuláti", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16.*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20.*\n℣. Non est invéntus símilis illi, qu", - "id": "Graduale" - }, - { - "body": "Sequentia sancti Evangelii secundum Joánnem\n*Joann 12:24-26.*\nIn illo témpore: Dixit Jesus discípulis suis: Amen, amen, ", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7.*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Domine.", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, beáti Ignátii Martyris tui atque Pontíficis dicatas méritis, benígnus assúme: et ad perpétuum nobi", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "Fruméntum Christi sum: déntibus bestiárum molar, ut panis mundus invéniar.", - "id": "Communio" - }, - { - "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedénte beáto Ign", - "id": "Postcommunio" - } - ], - "2020-02-02": [ - { - "body": "*Si candelarum benedictio et processio, ob defectum ministrorum sacrorum, forma solemni fieri nequeat, licet formam simp", - "id": "De Benedictione Candelarum" - }, - { - "body": "*Tum dignior ex Clero accedit ad Altare, et ab eo Celebrans accipit Candelam, non genuflectens nec osculans manum illius", - "id": "De Distributione Candelarum" - }, - { - "body": "*Primo Celebrans ponit incensum in thuribulum: postea Diaconus vertens se ad populum, dicit:*\n℣. Procedámus in pace.\n℟. ", - "id": "De Processione" - }, - { - "body": "*Ps 47:10-11.*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tua in f", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, majestátem tuam súpplices exorámus: ut, sicut unigénitus Fílius tuus hodiérna die cum nostræ", - "id": "Oratio" - }, - { - "body": "Léctio Malachíæ Prophétæ.\n*Malach 3:1-4.*\nHæc dicit Dóminus Deus: Ecce, ego mitto Angelum meum, et præparábit viam ante ", - "id": "Lectio" - }, - { - "body": "*Ps 47:10-11; 47:9.*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 2:22-32.*\nIn illo témpore: Postquam impleti sunt dies purgatiónis Marí", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3.*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi.", - "id": "Offertorium" - }, - { - "body": "Exáudi, Dómine, preces nostras: et, ut digna sint múnera, quæ óculis tuæ majestátis offérimus, subsídium nobis tuæ pietá", - "id": "Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Luc 2:26.*\nRespónsum accépit Símeon a Spíritu Sancto, non visúrum se mortem, nisi vidéret Christum Dómini.", - "id": "Communio" - }, - { - "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti, intercedénte be", - "id": "Postcommunio" - } - ], - "2020-02-03": [ - { - "body": "*Ps 96:7-8*\nAdoráte Deum, omnes Angeli ejus: audívit, et lætáta est Sion: et exsultavérunt fíliæ Judæ.\n*Ps 96:1*\nDóminus", - "id": "Introitus" - }, - { - "body": "Deus, qui nos, in tantis perículis constitútos, pro humána scis fragilitáte non posse subsístere: da nobis salútem menti", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Blasii Episcopi*\nDeus, qui nos beáti Blásii Mártyris tui atque Pontíficis ánnua solemnitáte lætíficas: ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános.\n*Rom 13:8-10*\nFratres: Némini quidquam debeátis, nisi ut ínvicem diligá", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:23-27*\nIn illo témpore: Ascendénte Jesu in navículam, secúti sun", - "id": "Evangelium" - }, - { - "body": "*Ps 117:16; 117:17*\nDéxtera Dómini fecit virtutem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera ", - "id": "Offertorium" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut hujus sacrifícii munus oblátum fragilitátem nostram ab omni malo purget semper et", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Blasii Episcopi*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto Blásio Mártyre tuo atqu", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 4:22*\nMirabántur omnes de his, quæ procedébant de ore Dei.", - "id": "Communio" - }, - { - "body": "Múnera tua nos, Deus, a delectatiónibus terrenis expédiant: et cœléstibus semper instáurent aliméntis.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Blasii Episcopi*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto Blásio Mártyre tuo ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-04": [ - { - "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", - "id": "Introitus" - }, - { - "body": "Deus, qui in Ecclésia tua nova semper instáuras exémpla virtútum: da pópulo tuo beáti Andréæ Confessóris tui atque Pontí", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", - "id": "Offertorium" - }, - { - "body": "Sancti tui, quǽsumus, Dómine, nos úbique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Andréa Confessóre t", - "id": "Postcommunio" - } - ], - "2020-02-05": [ - { - "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Agathæ Vírginis et Martyris: de cujus passióne gaude", - "id": "Introitus" - }, - { - "body": "Deus, qui inter cétera poténtiæ tuæ mirácula étiam in sexu frágili victóriam martýrii contulísti: concéde propítius; ut,", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 1:26-31.*\nFratres: Vidéte vocatiónem vestram: quia non multi s", - "id": "Lectio" - }, - { - "body": "*Ps 45:6 et 5.*\nAdjuvábit eam Deus vultu suo: Deus in médio ejus, non commovébitur.\n℣. Flúminis impetus lætíficat civitá", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 19:3-12.*\nIn illo témpore: Accessérunt ad Jesum pharisǽi, tentánte", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15.*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi.", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, múnera, quæ in beátæ Agathæ Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus patro", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "Qui me dignátus est ab omni plaga curáre et mamíllam meam meo péctori restitúere, ipsum ínvoco Deum vivum.", - "id": "Communio" - }, - { - "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta Agatha Vírgine et Mártyre tua, sempitérna protectióne", - "id": "Postcommunio" - } - ], - "2020-02-06": [ - { - "body": "*Eccli 45:30*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.\n", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Titum Confessórem tuum atque Pontíficem apostólicis virtútibus decorásti: ejus méritis et intercessióne", - "id": "Oratio" - }, - { - "body": "*Pro S. Dorotheæ Virg. et Mart.*\nIndulgéntiam nobis, quǽsumus, Dómine, beáta Dorothéa Virgo et Martyr implóret: quæ tibi", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16.*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20.*\n℣. Non est inventus símilis illi, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et álios septuagínta duos: ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", - "id": "Offertorium" - }, - { - "body": "Sancti tui, quǽsumus, Dómine, nos ubique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Pro S. Dorothea*\nHóstias tibi, Dómine, beátæ Dorótheæ Vírginis et Mártyris tuæ dicatas méritis, benígnus assúme: et ad ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Tito Confessóre tuo", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Dorothea*\nDivíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut, intercedénte beáta Dorothéa Vírgi", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-07": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Intercéssio nos, quǽsumus Dómine, beáti Romuáldi Abbátis comméndet: ut quod nostris méritis non valémus, ejus patrocínio", - "id": "Oratio" - }, - { - "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", - "id": "Offertorium" - }, - { - "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salútem nobis proveníre depóscat.\nPer Domi", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus N. Abbas, pro nobis intercedéndo: ut et conversatiónis ejus ", - "id": "Postcommunio" - } - ], - "2020-02-08": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui per sanctum Joánnem órdinem sanctíssimæ Trinitátis ad rediméndum de potestáte Saracenórum captívos cǽlitus ins", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muni", - "id": "Postcommunio" - } - ], - "2020-02-09": [ - { - "body": "*Ps 17:5; 17:6; 17:7*\nCircumdedérunt me gémitus mortis, dolóres inférni circumdedérunt me: et in tribulatióne mea invocá", - "id": "Introitus" - }, - { - "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 9:24-27; 10:1-5*\nFratres: Nescítis, quod ii, qui in stádio cur", - "id": "Lectio" - }, - { - "body": "*Ps 9:10-11; 9:19-20*\nAdjútor in opportunitátibus, in tribulatióne: sperent in te, qui novérunt te: quóniam non derelínq", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 20:1-16*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", - "id": "Evangelium" - }, - { - "body": "*Ps 91:2*\nBonum est confitéri Dómino, et psállere nómini tuo, Altíssime.", - "id": "Offertorium" - }, - { - "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 30:17-18*\nIllúmina fáciem tuam super servum tuum, et salvum me fac in tua misericórdia: Dómine, non confúndar, quóni", - "id": "Communio" - }, - { - "body": "Fidéles tui, Deus, per tua dona firméntur: ut eadem et percipiéndo requírant, et quæréndo sine fine percípiant.\nPer Domi", - "id": "Postcommunio" - } - ], - "2020-02-10": [ - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Introitus" - }, - { - "body": "Deus, qui ánimam beátæ Vírginis tuæ Scholásticæ ad ostendéndam innocéntiæ viam in colúmbæ spécie cœlum penetráre fecísti", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", - "id": "Tractus" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - } - ], - "2020-02-11": [ - { - "body": "*Apoc 21:2*\nVidi civitátem sanctam, Jerúsalem novam, descendéntem de cœlo a Deo, parátam sicut sponsam ornátam viro suo.", - "id": "Introitus" - }, - { - "body": "Deus, qui per immaculátam Vírginis Conceptiónem dignum Filio tuo habitáculum præparásti: súpplices a te quǽsumus; ut, ej", - "id": "Oratio" - }, - { - "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli\n*Apoc 11:19; 12:1, 10*\nApértum est templum Dei in cœlo: et visa est arca", - "id": "Lectio" - }, - { - "body": "*Cant 2:12*\nFlores apparuérunt in terra nostra, tempus putatiónis advénit, vox túrturis audíta est in terra nostra.\n*Can", - "id": "Tractus" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:26-31*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitátem", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28*\nAve, grátia plena; Dóminus tecum: benedícta tu in muliéribus.", - "id": "Offertorium" - }, - { - "body": "Hóstia laudis, quam tibi, Dómine, per mérita gloriósæ et immaculátæ Vírginis offérimus, sit tibi in odórem suavitátis, e", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "*Ps 64:10*\nVisitásti terram et inebriásti eam, multiplicásti locupletáre eam.", - "id": "Communio" - }, - { - "body": "Quos cœlésti, Dómine, aliménto satiásti, súblevet dextera Genetrícis tuæ immaculátæ: ut ad ætérnam pátriam, ipsa adjuván", - "id": "Postcommunio" - } - ], - "2020-02-12": [ - { - "body": "*Sap 10:20-21.*\nJusti decantavérunt, Dómine, nomen sanctum tuum, et victrícem manum tuam laudavérunt páriter: quóniam sa", - "id": "Introitus" - }, - { - "body": "Dómine Jesu Christe, qui, ad recoléndam memóriam dolórum sanctíssimæ Genetrícis tuæ, per septem beátos Patres nova Servo", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 44:1-15*\nLaudémus viros gloriósos et paréntes nostros in generatióne sua. Multam glóriam f", - "id": "Lectio" - }, - { - "body": "*Is 65:23.*\nElécti mei non laborábunt frustra, neque germinábunt in conturbatióne: quia semen benedictórum Dómini est, e", - "id": "Tractus" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 19:27-29.*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíq", - "id": "Evangelium" - }, - { - "body": "*Is 56:7.*\nAddúcam eos in montem sanctum meum, et lætificábo eos in domo oratiónis meæ: holocáusta eórum et víctimæ eóru", - "id": "Offertorium" - }, - { - "body": "Accipe, quǽsumus, Dómine, hóstias quas tibi offérimus: et præsta; ut, intercedéntibus Sanctis tuis, libera tibi mente se", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Joann 15:16.*\nEgo vos elégi de mundo, ut eátis et fructum afferátis: et fructus vester máneat.", - "id": "Communio" - }, - { - "body": "Cœléstibus refécti mystériis te, Dómine, deprecámur: ut, quorum festa percólimus imitántes exémpla; juxta Crucem Jesu cu", - "id": "Postcommunio" - } - ], - "2020-02-13": [ - { - "body": "*Ps 17:5; 17:6; 17:7*\nCircumdedérunt me gémitus mortis, dolóres inférni circumdedérunt me: et in tribulatióne mea invocá", - "id": "Introitus" - }, - { - "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 9:24-27; 10:1-5*\nFratres: Nescítis, quod ii, qui in stádio cur", - "id": "Lectio" - }, - { - "body": "*Ps 9:10-11; 9:19-20*\nAdjútor in opportunitátibus, in tribulatióne: sperent in te, qui novérunt te: quóniam non derelínq", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 20:1-16*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", - "id": "Evangelium" - }, - { - "body": "*Ps 91:2*\nBonum est confitéri Dómino, et psállere nómini tuo, Altíssime.", - "id": "Offertorium" - }, - { - "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 30:17-18*\nIllúmina fáciem tuam super servum tuum, et salvum me fac in tua misericórdia: Dómine, non confúndar, quóni", - "id": "Communio" - }, - { - "body": "Fidéles tui, Deus, per tua dona firméntur: ut eadem et percipiéndo requírant, et quæréndo sine fine percípiant.\nPer Domi", - "id": "Postcommunio" - } - ], - "2020-02-14": [ - { - "body": "*Ps 17:5; 17:6; 17:7*\nCircumdedérunt me gémitus mortis, dolóres inférni circumdedérunt me: et in tribulatióne mea invocá", - "id": "Introitus" - }, - { - "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Valentini*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti Valentíni Mártyris tui natalítia cólimus, a", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 9:24-27; 10:1-5*\nFratres: Nescítis, quod ii, qui in stádio cur", - "id": "Lectio" - }, - { - "body": "*Ps 9:10-11; 9:19-20*\nAdjútor in opportunitátibus, in tribulatióne: sperent in te, qui novérunt te: quóniam non derelínq", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 20:1-16*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", - "id": "Evangelium" - }, - { - "body": "*Ps 91:2*\nBonum est confitéri Dómino, et psállere nómini tuo, Altíssime.", - "id": "Offertorium" - }, - { - "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Valentini*\nSúscipe, quǽsumus, Dómine, múnera dignánter obláta: et, beáti Valentini Mártyris tui suffrag", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 30:17-18*\nIllúmina fáciem tuam super servum tuum, et salvum me fac in tua misericórdia: Dómine, non confúndar, quóni", - "id": "Communio" - }, - { - "body": "Fidéles tui, Deus, per tua dona firméntur: ut eadem et percipiéndo requírant, et quæréndo sine fine percípiant.\nPer Domi", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Valentini*\nSit nobis, Dómine, reparátio mentis et córporis cœléste mystérium: ut, cujus exséquimur acti", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-15": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", - "id": "Introitus" - }, - { - "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", - "id": "Oratio" - }, - { - "body": "*Commemoratio SS. Faustini et Jovitæ*\nDeus, qui nos ánnua sanctórum Mártyrum tuórum Faustíni et Jovítæ sollemnitáte lætí", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Tractus" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", - "id": "Evangelium" - }, - { - "body": "Felix namque es, sacra Virgo María, et omni laude digníssima: quia ex te ortus est sol justítiæ, Christus, Deus noster.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*Commemoratio SS. Faustini et Jovitæ*\nAdésto, Dómine, supplicatiónibus nostris, quas in Sanctórum tuórum commemoratióne ", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio SS. Faustini et Jovitæ*\nQuǽsumus, Dómine, salutáribus repléti mystériis: ut, quorum sollémnia celebrámus, ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-16": [ - { - "body": "*Ps 43:23-26*\nExsúrge, quare obdórmis, Dómine? exsúrge, et ne repéllas in finem: quare fáciem tuam avértis, oblivísceris", - "id": "Introitus" - }, - { - "body": "Deus, qui cónspicis, quia ex nulla nostra actióne confídimus: concéde propítius; ut, contra advérsa ómnia, Doctóris gént", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 11:19-33; 12:1-9*\nFratres: Libénter suffértis insipiéntes: cum", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nSciant gentes, quóniam nomen tibi Deus: tu solus Altíssimus super omnem terram,\n℣. Deus meus, pone ill", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 8:4-15*\nIn illo témpore: Cum turba plúrima convenírent, et de civitátib", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", - "id": "Offertorium" - }, - { - "body": "Oblátum tibi, Dómine, sacrifícium, vivíficet nos semper et múniat.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nIntroíbo ad altáre Dei, ad Deum, qui lætíficat juventútem meam.", - "id": "Communio" - }, - { - "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", - "id": "Postcommunio" - } - ], - "2020-02-17": [ - { - "body": "*Ps 43:23-26*\nExsúrge, quare obdórmis, Dómine? exsúrge, et ne repéllas in finem: quare fáciem tuam avértis, oblivísceris", - "id": "Introitus" - }, - { - "body": "Deus, qui cónspicis, quia ex nulla nostra actióne confídimus: concéde propítius; ut, contra advérsa ómnia, Doctóris gént", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 11:19-33; 12:1-9*\nFratres: Libénter suffértis insipiéntes: cum", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nSciant gentes, quóniam nomen tibi Deus: tu solus Altíssimus super omnem terram,\n℣. Deus meus, pone ill", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 8:4-15*\nIn illo témpore: Cum turba plúrima convenírent, et de civitátib", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", - "id": "Offertorium" - }, - { - "body": "Oblátum tibi, Dómine, sacrifícium, vivíficet nos semper et múniat.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nIntroíbo ad altáre Dei, ad Deum, qui lætíficat juventútem meam.", - "id": "Communio" - }, - { - "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", - "id": "Postcommunio" - } - ], - "2020-02-18": [ - { - "body": "*Ps 43:23-26*\nExsúrge, quare obdórmis, Dómine? exsúrge, et ne repéllas in finem: quare fáciem tuam avértis, oblivísceris", - "id": "Introitus" - }, - { - "body": "Deus, qui cónspicis, quia ex nulla nostra actióne confídimus: concéde propítius; ut, contra advérsa ómnia, Doctóris gént", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Simeonis Faustini Episcopi et Martyris*\nInfirmitátem nostram réspice, omnípotens Deus: et quia pondus p", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 11:19-33; 12:1-9*\nFratres: Libénter suffértis insipiéntes: cum", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nSciant gentes, quóniam nomen tibi Deus: tu solus Altíssimus super omnem terram,\n℣. Deus meus, pone ill", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 8:4-15*\nIn illo témpore: Cum turba plúrima convenírent, et de civitátib", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", - "id": "Offertorium" - }, - { - "body": "Oblátum tibi, Dómine, sacrifícium, vivíficet nos semper et múniat.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Simeonis Faustini Episcopi et Martyris*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nIntroíbo ad altáre Dei, ad Deum, qui lætíficat juventútem meam.", - "id": "Communio" - }, - { - "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Simeonis Faustini Episcopi et Martyris*\nDa, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemorati", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-19": [ - { - "body": "*Ps 43:23-26*\nExsúrge, quare obdórmis, Dómine? exsúrge, et ne repéllas in finem: quare fáciem tuam avértis, oblivísceris", - "id": "Introitus" - }, - { - "body": "Deus, qui cónspicis, quia ex nulla nostra actióne confídimus: concéde propítius; ut, contra advérsa ómnia, Doctóris gént", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 11:19-33; 12:1-9*\nFratres: Libénter suffértis insipiéntes: cum", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nSciant gentes, quóniam nomen tibi Deus: tu solus Altíssimus super omnem terram,\n℣. Deus meus, pone ill", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 8:4-15*\nIn illo témpore: Cum turba plúrima convenírent, et de civitátib", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", - "id": "Offertorium" - }, - { - "body": "Oblátum tibi, Dómine, sacrifícium, vivíficet nos semper et múniat.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nIntroíbo ad altáre Dei, ad Deum, qui lætíficat juventútem meam.", - "id": "Communio" - }, - { - "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", - "id": "Postcommunio" - } - ], - "2020-02-20": [ - { - "body": "*Ps 43:23-26*\nExsúrge, quare obdórmis, Dómine? exsúrge, et ne repéllas in finem: quare fáciem tuam avértis, oblivísceris", - "id": "Introitus" - }, - { - "body": "Deus, qui cónspicis, quia ex nulla nostra actióne confídimus: concéde propítius; ut, contra advérsa ómnia, Doctóris gént", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 11:19-33; 12:1-9*\nFratres: Libénter suffértis insipiéntes: cum", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nSciant gentes, quóniam nomen tibi Deus: tu solus Altíssimus super omnem terram,\n℣. Deus meus, pone ill", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 8:4-15*\nIn illo témpore: Cum turba plúrima convenírent, et de civitátib", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", - "id": "Offertorium" - }, - { - "body": "Oblátum tibi, Dómine, sacrifícium, vivíficet nos semper et múniat.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nIntroíbo ad altáre Dei, ad Deum, qui lætíficat juventútem meam.", - "id": "Communio" - }, - { - "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", - "id": "Postcommunio" - } - ], - "2020-02-21": [ - { - "body": "*Ps 43:23-26*\nExsúrge, quare obdórmis, Dómine? exsúrge, et ne repéllas in finem: quare fáciem tuam avértis, oblivísceris", - "id": "Introitus" - }, - { - "body": "Deus, qui cónspicis, quia ex nulla nostra actióne confídimus: concéde propítius; ut, contra advérsa ómnia, Doctóris gént", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 11:19-33; 12:1-9*\nFratres: Libénter suffértis insipiéntes: cum", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nSciant gentes, quóniam nomen tibi Deus: tu solus Altíssimus super omnem terram,\n℣. Deus meus, pone ill", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 8:4-15*\nIn illo témpore: Cum turba plúrima convenírent, et de civitátib", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", - "id": "Offertorium" - }, - { - "body": "Oblátum tibi, Dómine, sacrifícium, vivíficet nos semper et múniat.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nIntroíbo ad altáre Dei, ad Deum, qui lætíficat juventútem meam.", - "id": "Communio" - }, - { - "body": "Súpplices te rogámus, omnípotens Deus: ut, quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservír", - "id": "Postcommunio" - } - ], - "2020-02-22": [ - { - "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", - "id": "Introitus" - }, - { - "body": "Deus, qui beáto Petro Apóstolo tuo, collátis clávibus regni cœléstis, ligándi atque solvéndi pontifícium tradidísti: con", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1. Pet 1:1-7*\nPetrus, Apóstolus Jesu Christi, eléctis ádvenis dispersiónis Ponti,", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", - "id": "Tractus" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi,", - "id": "Evangelium" - }, - { - "body": "*Matt 16:18-19*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam: et portæ inferi non prævalébunt advérsus ea", - "id": "Offertorium" - }, - { - "body": "Ecclésiæ tuæ, quǽsumus, Dómine, preces et hóstias beáti Petri Apóstoli comméndet orátio: ut, quod pro illíus glória cele", - "id": "Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", - "id": "Communio" - }, - { - "body": "Lætíficet nos, Dómine, munus oblátum: ut, sicut in Apóstolo tuo Petro te mirábilem prædicámus; sic per illum tuæ sumámus", - "id": "Postcommunio" - } - ], - "2020-02-23": [ - { - "body": "*Ps 30:3-4*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias: quóniam firmaméntum meum et refúgiu", - "id": "Introitus" - }, - { - "body": "Preces nostras, quǽsumus, Dómine, cleménter exáudi: atque, a peccatórum vínculis absolútos, ab omni nos adversitáte cust", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 13:1-13*\nFratres: Si linguis hóminum loquar et Angelórum, cari", - "id": "Lectio" - }, - { - "body": "*Ps 76:15; 76:16*\nTu es Deus qui facis mirabília solus: notam fecísti in géntibus virtútem tuam.\n℣. Liberásti in bráchio", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:31-43*\nIn illo témpore: Assúmpsit Jesus duódecim, et ait illis: Ecce", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12-13*\nBenedíctus es, Dómine, doce me justificatiónes tuas: in lábiis meis pronuntiávi ómnia judícia oris tui.", - "id": "Offertorium" - }, - { - "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 77:29-30*\nManducavérunt, et saturári sunt nimis, et desidérium eórum áttulit eis Dóminus: non sunt fraudáti a desidé", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, qui coeléstia aliménta percépimus, per hæc contra ómnia adversa muniámur.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-02-24": [ - { - "body": "*Ps 30:3-4*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias: quóniam firmaméntum meum et refúgiu", - "id": "Introitus" - }, - { - "body": "Preces nostras, quǽsumus, Dómine, cleménter exáudi: atque, a peccatórum vínculis absolútos, ab omni nos adversitáte cust", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 13:1-13*\nFratres: Si linguis hóminum loquar et Angelórum, cari", - "id": "Lectio" - }, - { - "body": "*Ps 76:15; 76:16*\nTu es Deus qui facis mirabília solus: notam fecísti in géntibus virtútem tuam.\n℣. Liberásti in bráchio", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:31-43*\nIn illo témpore: Assúmpsit Jesus duódecim, et ait illis: Ecce", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12-13*\nBenedíctus es, Dómine, doce me justificatiónes tuas: in lábiis meis pronuntiávi ómnia judícia oris tui.", - "id": "Offertorium" - }, - { - "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 77:29-30*\nManducavérunt, et saturári sunt nimis, et desidérium eórum áttulit eis Dóminus: non sunt fraudáti a desidé", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, qui coeléstia aliménta percépimus, per hæc contra ómnia adversa muniámur.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-02-25": [ - { - "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2.*\nDómin", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Matthíam Apostolórum tuórum collégio sociásti: tríbue, quǽsumus; ut, ejus interventióne, tuæ circa nos ", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolórum\n*Act 1, 15-26.*\nIn diébus illis exsúrgens Petrus in médio fratrum, dixit - erat autem turba hó", - "id": "Lectio" - }, - { - "body": "*Ps 138:17-18*\nNimis honoráti sunt amíci tui, Deus: nimis confortátus est principatus eórum.\n℣. Dinumerábo eos, et super", - "id": "Tractus" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:25-30*\nIn illo témpore: Respóndens Jesus, dixit: Confíteor tibi,", - "id": "Evangelium" - }, - { - "body": "*Ps 44:17-18.*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine, in omni progénie et gener", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, quas nómini tuo sacrándas offérimus, sancti Matthíæ Apóstoli tui prosequátur orátio: per quam nos ", - "id": "Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28.*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël.", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut per hæc sancta, quæ súmpsimus, interveniénte beáto Matthía Apóstolo tuo, véniam co", - "id": "Postcommunio" - } - ], - "2020-02-26": [ - { - "body": "*Antiphona.*\n*Ps 68:17*\nExáudi nos, Dómine, quóniam benígna est misericórdia tua: secúndum multitúdinem miseratiónum tuá", - "id": "Benedictio cinerum" - }, - { - "body": "*Sap 11:24 11:25; 11:27*\nMiseréris ómnium, Dómine, et nihil odísti eórum quæ fecísti, dissímulans peccáta hóminum propte", - "id": "Introitus" - }, - { - "body": "Præsta, Dómine, fidélibus tuis: ut jejuniórum veneránda sollémnia, et cóngrua pietáte suscípiant, et secúra devotióne pe", - "id": "Oratio" - }, - { - "body": "Léctio Joélis Prophétæ.\n*Joel 2:12-19*\nHæc dicit Dóminus: Convertímini ad me in toto corde vestro, in jejúnio, et in fle", - "id": "Lectio" - }, - { - "body": "*Ps 56:2; 56:4*\nMiserére mei, Deus, miserére mei: quóniam in te confídit ánima mea.\n℣. Misit de coelo, et liberávit me, ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthaeum.\n*Matt 6:16-21*\nIn illo témpore: Dixit Jesus discípulis suis: Cum jejuná", - "id": "Evangelium" - }, - { - "body": "*Ps 29:2-3*\nExaltábo te, Dómine, quóniam suscepísti me, nec delectásti inimícos meos super me: Dómine, clamávi ad te, et", - "id": "Offertorium" - }, - { - "body": "Fac nos, quǽsumus, Dómine, his munéribus offeréndis conveniénter aptári: quibus ipsíus venerábilis sacraménti celebrámus", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 1:2 et 3.*\nQui meditábitur in lege Dómini die ac nocte, dabit fructum suum in témpore suo.", - "id": "Communio" - }, - { - "body": "Percépta nobis, Dómine, praebeant sacraménta subsídium: ut tibi grata sint nostra jejúnia, et nobis profíciant ad medéla", - "id": "Postcommunio" - }, - { - "body": "*Deinde Sacerdos absolute dicit:*\n*Oratio super populum*\nOrémus.\n*Et Diaconus, si in officio Diaconatus serviat versus a", - "id": "Super populum" - } - ], - "2020-02-27": [ - { - "body": "*Ps 54:17-23*\nDum clamárem ad Dóminum, exaudívit vocem meam ab his, qui appropínquant mihi, et humiliávit eos, qui est a", - "id": "Introitus" - }, - { - "body": "Deus, qui culpa offénderis, pæniténtia placáris: preces pópuli tui supplicántis propítius réspice; et flagélla tuæ iracú", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ.\n*Is 38:1-6*\nIn diébus illis: Ægrotávit Ezechías usque ad mortem: et introívit ad eum Isaías fíliu", - "id": "Lectio" - }, - { - "body": "*Ps 54:23, 17, 18 et 19.*\nJacta cogitátum tuum in Dómino, et ipse te enútriet.\n℣. Dum clamárem ad Dóminum, exaudívit voc", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 8:5-13*\nIn illo témpore: Cum introísset Jesus Caphárnaum, accéssit", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", - "id": "Offertorium" - }, - { - "body": "Sacrifíciis præséntibus, Dómine, quǽsumus, inténde placátus: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nAcceptábis sacrifícium justítiæ, oblatiónes et holocáusta, super altáre tuum, Dómine.", - "id": "Communio" - }, - { - "body": "Cœléstis doni benedictióne percépta: súpplices te, Deus omnípotens, deprecámur; ut hoc idem nobis et sacraménti causa si", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nParce, Dómine, parce populo tuo: ut, dignis flagellatiónibus", - "id": "Super populum" - } - ], - "2020-02-28": [ - { - "body": "*Ps 29:11.*\nAudívit Dóminus, et misértus est mihi: Dóminus factus est adjútor meus.\n*Ps 29:2*\nExaltábo te, Dómine, quóni", - "id": "Introitus" - }, - { - "body": "Inchoáta jejúnia, quǽsumus, Dómine, benígno favore proséquere: ut observántiam, quam corporáliter exhibémus, méntibus ét", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Gabrielis a Virgine Perdolente Confessoris*\nDeus, qui beátum Gabriélem dulcíssimæ Matris tuæ dolóres as", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ.\n*Isa 58:1-9*\nHæc dicit Dóminus Deus: Clama, ne cesses: quasi tuba exálta vocem tuam: et annúntia ", - "id": "Lectio" - }, - { - "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram, ut inhábitem in domo Dómini,\n℣. Ut vídeam voluptátem Dómini, et prótegar a", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:43-48; 6:1-4*\nIn illo témpore: Dixit Jesus discípulis suis: Audí", - "id": "Evangelium" - }, - { - "body": "*Ps 118:154; 118:125*\nDómine, vivífica me secúndum elóquium tuum: ut sciam testimónia tua.", - "id": "Offertorium" - }, - { - "body": "Sacrifícium, Dómine, observántiæ quadragesimális, quod offérimus, præsta, quǽsumus: ut tibi et mentes nostras reddat acc", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Gabrielis a Virgine Perdolente Confessoris*\nSalutárem hóstiam in memóriam sancti Gabriélis tibi, Dómine", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 2:11-12*\nServite Dómino in timóre, et exsultáte ei cum tremóre: apprehéndite disciplínam, ne pereátis de via justa.", - "id": "Communio" - }, - { - "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos uno pane cœlésti satiásti, tua fácias pietáte concórdes.\nPer Dom", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Gabrielis a Virgine Perdolente Confessoris*\nQuas tibi, Dómine, in festivitáte sancti Gabriélis Confessó", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nTuére, Dómine, pópulum tuum et ab ómnibus peccátis cleménter", - "id": "Super populum" - } - ], - "2020-02-29": [ - { - "body": "*Ps 29:11*\nAudívit Dóminus, et misértus est mihi: Dóminus factus est adjútor meus.\n*Ps 29:2*\nExaltábo te, Dómine, quónia", - "id": "Introitus" - }, - { - "body": "Adésto, Dómine, supplicatiónibus nostris: et concéde; ut hoc sollémne jejúnium, quod animábus corporibúsque curándis sal", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ.\n*Isa 58:9-14*\nHæc dicit Dóminus Deus: Si abstúleris de médio tui caténam, et desíeris exténdere d", - "id": "Lectio" - }, - { - "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram, ut inhábitem in domo Dómini,\n℣. Ut vídeam voluptátem Dómini, et prótegar a", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 6:47-56*\nIn illo témpore: Cum sero esset, erat navis in médio mari, ", - "id": "Evangelium" - }, - { - "body": "*Ps 118:154 ; 118:125*\nDómine, vivífica me secúndum elóquium tuum: ut sciam testimónia tua.", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, sacrifícium, cujus te voluísti dignánter immolatióne placári: præsta, quǽsumus; ut, hujus operatióne mu", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 2:11-12*\nServite Dómino in timóre, et exsultáte ei cum tremóre: apprehéndite disciplínam, ne pereátis de via justa.", - "id": "Communio" - }, - { - "body": "Cœléstis vitæ múnere vegetáti, quǽsumus, Dómine: ut, quod est nobis in præsénti vita mystérium, fiat æternitátis auxíliu", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nFidéles tui, Deus, per tua dona firméntur: ut éadem et perci", - "id": "Super populum" - } - ], - "2020-03-01": [ - { - "body": "*Ps 90:15; 90:16*\nInvocábit me, et ego exáudiam eum: erípiam eum, et glorificábo eum: longitúdine diérum adimplébo eum.\n", - "id": "Introitus" - }, - { - "body": "Deus, qui Ecclésiam tuam ánnua quadragesimáli observatióne puríficas: præsta famíliæ tuæ; ut, quod a te obtinére abstiné", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 6:1-10.*\nFratres: Exhortámur vos, ne in vácuum grátiam Dei rec", - "id": "Lectio" - }, - { - "body": "*Ps 90,11-12*\nAngelis suis Deus mandávit de te, ut custódiant te in ómnibus viis tuis.\n℣. In mánibus portábunt te, ne um", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 4:1-11*\nIn illo témpore: Ductus est Jesus in desértum a Spíritu, ut", - "id": "Evangelium" - }, - { - "body": "*Ps 90:4-5*\nScápulis suis obumbrábit tibi Dóminus, et sub pennis ejus sperábis: scuto circúmdabit te véritas ejus.", - "id": "Offertorium" - }, - { - "body": "Sacrifícium quadragesimális inítii sollémniter immolámus, te, Dómine, deprecántes: ut, cum epulárum restrictióne carnáli", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 90:4-5*\nScápulis suis obumbrábit tibi Dóminus, et sub pennis ejus sperábis: scuto circúmdabit te véritas ejus.", - "id": "Communio" - }, - { - "body": "Qui nos, Dómine, sacraménti libátio sancta restáuret: et a vetustáte purgátos, in mystérii salutáris fáciat transíre con", - "id": "Postcommunio" - } - ], - "2020-03-02": [ - { - "body": "*Ps 122:2*\nSicut óculi servórum in mánibus dominórum suórum: ita óculi nostri ad Dóminum, Deum nostrum, donec misereátur", - "id": "Introitus" - }, - { - "body": "Convérte nos, Deus, salutáris noster: et, ut nobis jejúnium quadragesimále profíciat, mentes nostras cœléstibus ínstrue ", - "id": "Oratio" - }, - { - "body": "Léctio Ezechiélis Prophétæ\n*Ezech 34:11-16*\nHæc dicit Dóminus Deus: Ecce, ego ipse requíram oves meas, et visitábo eas. ", - "id": "Lectio" - }, - { - "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Matthǽum\n*Matt 25:31-46*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vénerit", - "id": "Evangelium" - }, - { - "body": "*Ps 118:18; 118:26; 118:73*\nLevábo óculos meos, et considerábo mirabília tua, Dómine, ut dóceas me justítias tuas: da mi", - "id": "Offertorium" - }, - { - "body": "Múnera tibi, Dómine, obláta sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Matt 25:40; 25:34*\nAmen, dico vobis: quod uni ex mínimis meis fecístis, mihi fecístis: veníte, benedícti Patris mei, po", - "id": "Communio" - }, - { - "body": "Salutáris tui, Dómine, múnere satiáti, súpplices exorámus: ut, cujus lætámur gustu, renovémur efféctu.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAbsólve, quǽsumus, Dómine, nostrórum víncula peccatórum: et,", - "id": "Super populum" - } - ], - "2020-03-03": [ - { - "body": "*Ps 89:1; 89:2*\nDómine, refúgium factus es nobis a generatióne et progénie: a sǽculo et in sǽculum tu es.\n*Ps 89:2*\nPriú", - "id": "Introitus" - }, - { - "body": "Réspice, Dómine, famíliam tuam: et præsta; ut apud te mens nostra tuo desidério fúlgeat, quæ se carnis maceratióne castí", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 55:6-11*\nIn diébus illis: Locútus est Isaías Prophéta, dicens: Quǽrite Dóminum, dum inveníri p", - "id": "Lectio" - }, - { - "body": "*Ps 140:2*\nDirigátur orátio mea sicut incénsum in conspéctu tuo, Dómine,\n℣. Elevátio mánuum meárum sacrifícium vespertín", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 21:10-17*\nIn illo témpore: Cum intrásset Jesus Jerosólymam, commóta", - "id": "Evangelium" - }, - { - "body": "*Ps 30:15-16*\nIn te sperávi, Dómine; dixi: Tu es Deus meus, in mánibus tuis témpora mea.", - "id": "Offertorium" - }, - { - "body": "Oblátis, quǽsumus, Dómine, placáre munéribus: et a cunctis nos defénde perículis.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 4:2*\nCum invocárem te, exaudísti me, Deus justítiæ meæ: in tribulatióne dilatásti me: miserére mihi, Dómine, et exáu", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut illíus salutáris capiámus efféctum, cujus per hæc mystéria pignus accépimus.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super Populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAscéndant ad te, Dómine, preces nostræ: et ab Ecclésia tua c", - "id": "Super populum" - } - ], - "2020-03-04": [ - { - "body": "*Ps 24:6; 24:3; 24:22*\nReminíscere miseratiónum tuárum, Dómine, et misericórdiæ tuæ, quæ a sǽculo sunt: ne umquam dominé", - "id": "Introitus" - }, - { - "body": "Preces nostras, quǽsumus, Dómine, cleménter exáudi: et contra cuncta nobis adversántia, déxteram tuæ majestátis exténde.", - "id": "Oratio" - }, - { - "body": "Léctio libri Exodi\n*Exod 24:12-18*\nIn diébus illis: Dixit Dóminus ad Móysen: Ascénde ad me in montem, et esto ibi: dabóq", - "id": "LectioL1" - }, - { - "body": "*Ps 24:17-18*\nTribulatiónes cordis mei dilatátæ sunt: de necessitátibus meis éripe me, Dómine.\n℣. Vide humilitátem meam,", - "id": "GradualeL1" - }, - { - "body": "Devotiónem pópuli tui, quǽsumus, Dómine, benígnus inténde: ut, qui per abstinéntiam macerántur in córpore, per fructum b", - "id": "OratioL1" - }, - { - "body": "*Commemoratio S. Casimiri Confessoris*\nDeus, qui inter regáles delícias et mundi illécebras sanctum Casimírum virtúte co", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Regum\n*3 Reg 19:3-8*\nIn diébus illis: Venit Elías in Bersabée Juda, et dimísit ibi púerum suum, et perréxit", - "id": "Lectio" - }, - { - "body": "*Ps 24:17; 24:18; 24:1-4*\nDe necessitátibus meis éripe me, Dómine: vide humilitátem meam et labórem meum: et dimítte ómn", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 12:38-50*\nIn illo témpore: Respondérunt Jesu quidam de scribis et p", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47; 118:48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi.", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, placatiónis offérimus: ut et delícta nostra miserátus absólvas, et nutántia corda tu dírigas.\nPer ", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Casimiri Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 5:2-4*\nIntéllege clamórem meum: inténde voci oratiónis meæ, Rex meus et Deus meus: quóniam ad te orábo, Dómine.", - "id": "Communio" - }, - { - "body": "Tui, Dómine, perceptióne sacraménti, et a nostris mundémur occúltis, et ab hóstium liberémur insídiis.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Casimiri Confessoris*\nRefécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus h", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\n℣. Mentes nostras, quǽsumus, Dómine, lúmine tuæ claritátis i", - "id": "Super populum" - } - ], - "2020-03-05": [ - { - "body": "*Ps 95:6*\nConféssio et pulchritúdo in conspéctu ejus: sánctitas et magnificéntia in sanctificatióne eius.\n*Ps 95:1*\nCant", - "id": "Introitus" - }, - { - "body": "Devotiónem pópuli tui, quǽsumus, Dómine, benígnus inténde: ut, qui per abstinéntiam macerántur in córpore, per fructum b", - "id": "Oratio" - }, - { - "body": "Léctio Ezechiélis Prophétæ\n*Ezech 18:1-9*\nIn diébus illis: Factus est sermo Dómini ad me, dicens: Quid est, quod inter v", - "id": "Lectio" - }, - { - "body": "*Ps 16:8; 16:2*\nCustódi me, Dómine, ut pupíllam óculi: sub umbra alárum tuárum prótege me.\n℣. De vultu tuo judícium meum", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 15:21-28*\nIn illo témpore: Egréssus Jesus secéssit in partes Tyri e", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nImmíttet Angelus Dómini in circúitu timéntium eum, et erípiet eos: gustáte, et vidéte, quóniam suávis est Dó", - "id": "Offertorium" - }, - { - "body": "Sacrifícia, Dómine, quǽsumus, propénsius ista nos salvent, quæ medicinálibus sunt institúta jejúniis.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Joann 6:52*\nPanis, quem ego dédero, caro mea est pro sǽculi vita.", - "id": "Communio" - }, - { - "body": "Tuórum nos, Dómine, largitáte donórum, et temporálibus attólle præsídiis, et rénova sempitérnis.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\n℣. Orémus.\nHumiliáte cápita vestra Deo.\nDa, quǽsumus, Dómine, pópulis christiánis: et, quæ profit", - "id": "Super populum" - } - ], - "2020-03-06": [ - { - "body": "*Ps 24:17; 24:18*\nDe necessitátibus meis éripe me, Dómine: vide humilitátem meam et labórem meum, et dimítte ómnia peccá", - "id": "Introitus" - }, - { - "body": "Esto, Dómine, propítius plebi tuæ: et, quam tibi facis esse devótam, benígno réfove miserátus auxílio.\nPer Dominum…", - "id": "Oratio" - }, - { - "body": "*Commemoratio Ss. Perpetuæ et Felicitatis Martyrum*\nDa nobis, quǽsumus, Dómine, Deus noster, sanctarum Mártyrum tuárum P", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Ezechiélis Prophétæ\n*Ezech 18:20-28*\nHæc dicit Dóminus Deus: Anima, quæ peccáverit, ipsa moriétur: fílius non por", - "id": "Lectio" - }, - { - "body": "*Ps 85:2; 85:6*\nSalvum fac servum tuum. Deus meus, sperántem in te.\n℣. Auribus pércipe, Dómine, oratiónem meam.\n\n*Tractu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 5:1-15*\nIn illo témpore: Erat dies festus Judæórum, et ascéndit Jes", - "id": "Evangelium" - }, - { - "body": "*Ps 102:2; 102:5*\nBénedic, ánima mea, Dómino, et noli oblivísci omnes retributiónes ejus: et renovábitur, sicut áquilæ, ", - "id": "Offertorium" - }, - { - "body": "Súscipe, quǽsumus, Dómine, múnera nostris obláta servítiis: et tua propítius dona sanctífica.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Commemoratio Ss. Perpetuæ et Felicitatis Martyrum*\nInténde, quǽsumus, Dómine, múnera altáribus tuis pro sanctárum Márty", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 6:11*\nErubéscant et conturbéntur omnes inimíci mei: avertántur retrórsum, et erubéscant valde velóciter.", - "id": "Communio" - }, - { - "body": "Per hujus, Dómine, operatiónem mystérii, et vítia nostra purgéntur, et justa desidéria compleántur.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Ss. Perpetuæ et Felicitatis Martyrum*\nMýsticis, Dómine, repléti sumus votis et gáudiis: præsta, quǽsumus; ", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nExáudi nos, miséricors Deus: et méntibus nostris grátiæ tuæ ", - "id": "Super populum" - } - ], - "2020-03-07": [ - { - "body": "*Ps 87:3*\nIntret orátio mea in conspéctu tuo: inclína aurem tuam ad precem meam, Dómine.\n*Ps 87:2*\nDómine, Deus salútis ", - "id": "Introitus" - }, - { - "body": "Pópulum tuum, quǽsumus, Dómine, propítius réspice: atque ab eo flagélla tuæ iracúndiæ cleménter avérte.\nPer Dominum…", - "id": "Oratio" - }, - { - "body": "Léctio libri Deuteronómii\n*Deut 26:12-19*\nIn diébus illis: Locútus est Móyses ad pópulum, dicens: Quando compléveris déc", - "id": "LectioL1" - }, - { - "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", - "id": "GradualeL1" - }, - { - "body": "Protéctor noster, áspice, Deus: ut, qui malórum nostrórum póndere prémimur, percépta misericórdia, líbera tibi mente fam", - "id": "OratioL1" - }, - { - "body": "Léctio libri Deuteronómii\n*Deut 11:22-25*\nIn diébus illis: Dixit Móyses fíliis Israël: Si custodiéritis mandáta, quæ ego", - "id": "LectioL2" - }, - { - "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", - "id": "GradualeL2" - }, - { - "body": "Adésto, quǽsumus, Dómine, supplicatiónibus nostris: ut esse, te largiénte, mereámur et inter próspera húmiles, et inter ", - "id": "OratioL2" - }, - { - "body": "Léctio libri Machabæórum\n*2 Mach 1:23-26; 1:27*\nIn diébus illis: Oratiónem faciébant omnes sacerdótes, dum consummarétur", - "id": "LectioL3" - }, - { - "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", - "id": "GradualeL3" - }, - { - "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pro tui nóminis gl", - "id": "OratioL3" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 36:1-10*\nMiserére nostri, Deus ómnium, et réspice nos, et osténde nobis lucem miseratiónum", - "id": "LectioL4" - }, - { - "body": "*Ps 140:2*\nDirigátur orátio mea sicut incénsum in conspéctu tuo, Dómine.\n℣. Elevátio mánuum meárum sacrifícium vespertín", - "id": "GradualeL4" - }, - { - "body": "Actiónes nostras, quǽsumus, Dómine, aspirándo prǽveni, et adjuvándo proséquere: ut cuncta nostra orátio et operátio a te", - "id": "OratioL4" - }, - { - "body": "Léctio Daniélis Prophétæ\n*Dan 3:47-51*\nIn diébus illis: Angelus Dómini descéndit cum Azaría et sóciis ejus in fornácem: ", - "id": "LectioL5" - }, - { - "body": "Deus, qui tribus púeris mitigásti flammas ígnium: concéde propítius; ut nos fámulos tuos non exúrat flamma vitiórum.\nPer", - "id": "OratioL5" - }, - { - "body": "*Commemoratio S. Thomæ de Aquino Confessoris Ecclesiæ Doctoris*\nDeus, qui Ecclésiam tuam beáti Thomæ Confessóris tui mir", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses\n*1 Thess 5:14-23*\nFratres: Rogámus vos, corrípite inquiétos, co", - "id": "Lectio" - }, - { - "body": "*Ps 116:1-2*\nLaudáte Dóminum, omnes gentes: et collaudáte eum, omnes pópuli.\n℣. Quóniam confirmáta est super nos miseric", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 17:1-9*\nIn illo témpore: Assúmpsit Jesus Petrum, et Jacóbum, et Joá", - "id": "Evangelium" - }, - { - "body": "*Ps 87:2-3*\nDómine, Deus salútis meæ, in die clamávi et nocte coram te: intret orátio mea in conspéctu tuo, Dómine.", - "id": "Offertorium" - }, - { - "body": "Præséntibus sacrifíciis, quǽsumus, Dómine, jejúnia nostra sanctífica: ut, quod observántia nostra profitétur extrínsecus", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Thomæ de Aquino Confessoris Ecclesiæ Doctoris*\nSancti N. Confessóris tui atque Doctóris nobis, Dómine, ", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 7:2*\nDómine, Deus meus, in te sperávi: líbera me ab ómnibus persequéntibus me, et éripe me.", - "id": "Communio" - }, - { - "body": "Sanctificatiónibus tuis, omnípotens Deus, et vítia nostra curéntur, et remédia nobis ætérna provéniant.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Thomæ de Aquino Confessoris Ecclesiæ Doctoris*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus N.", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nFidéles tuos, Deus, benedíctio desideráta confírmet: quæ eos", - "id": "Super populum" - } - ], - "2020-03-08": [ - { - "body": "*Ps 24:6; 24:3; 24:22*\nReminíscere miseratiónum tuarum, Dómine, et misericórdiæ tuæ, quæ a sǽculo sunt: ne umquam dominé", - "id": "Introitus" - }, - { - "body": "Deus, qui cónspicis omni nos virtúte destítui: intérius exteriúsque custódi; ut ab ómnibus adversitátibus muniámur in có", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses\n*1 Thess 4:1-7.*\nFratres: Rogámus vos et obsecrámus in Dómino J", - "id": "Lectio" - }, - { - "body": "*Ps 24:17-18*\nTribulatiónes cordis mei dilatátæ sunt: de necessitátibus meis éripe me, Dómine,\n℣. Vide humilitátem meam ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 17:1-9*\nIn illo témpore: Assúmpsit Jesus Petrum, et Jacóbum, et Joá", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47; 118:48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi.", - "id": "Offertorium" - }, - { - "body": "Sacrifíciis præséntibus, Dómine, quǽsumus, inténde placátus: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 5:2-4*\nIntéllege clamórem meum: inténde voci oratiónis meæ, Rex meus et Deus meus: quóniam ad te orábo, Dómine.", - "id": "Communio" - }, - { - "body": "Súpplices te rogámus, omnípotens Deus: ut quos tuis réficis sacraméntis, tibi étiam plácitis móribus dignánter deservíre", - "id": "Postcommunio" - } - ], - "2020-03-09": [ - { - "body": "*Ps 25:11-12.*\nRédime me, Dómine, et miserére mei: pes enim meus stetit in via recta: in ecclésiis benedícam Dóminum.\n*P", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut família tua, quæ se, affligéndo carnem, ab aliméntis ábstinet: sectándo justítiam,", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Franciscæ Viduæ Romanæ*\nDeus, qui beátam Francíscam fámulam tuam, inter cétera grátiæ tuæ dona, familiá", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Daniélis Prophétæ.\n*Dan 9:15-19*\nIn diébus illis: Orávit Dániel Dóminum, dicens: Dómine, Deus noster, qui eduxíst", - "id": "Lectio" - }, - { - "body": "*Ps 69:6; 69:3*\nAdjútor meus et liberátor meus esto: Dómine, ne tardáveris.\n℣. Confundántur et revereántur inimíci mei, ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joh 8:21-29*\nIn illo témpore: Dixit Jesus turbis Judæórum: Ego vado, et ", - "id": "Evangelium" - }, - { - "body": "*Ps 15:7; 15:8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Dóminum in conspéctu meo semper: quóniam a d", - "id": "Offertorium" - }, - { - "body": "Hæc hóstia, Dómine, placatiónis et laudis, tua nos protectióne dignos effíciat.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Franciscæ Viduæ Romanæ*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: q", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 8:2*\nDómine, Dóminus noster, quam admirábile est nomen tuum in univérsa terra!", - "id": "Communio" - }, - { - "body": "Hæc nos commúnio, Dómine, purget a crímine: et cœléstis remédii fáciat esse consórtes.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Franciscæ Viduæ Romanæ*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interv", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAdésto supplicatiónibus nostris, omnípotens Deus: et, quibus", - "id": "Super populum" - } - ], - "2020-03-10": [ - { - "body": "*Ps 26:8; 26:9*\nTibi dixit cor meum, quæsívi vultum tuum. vultum tuum, Dómine, requíram: ne avértas fáciem tuam a me.\n*P", - "id": "Introitus" - }, - { - "body": "Pérfice, quǽsumus, Dómine, benígnus in nobis observántiæ sanctæ subsídium: ut, quæ te auctóre faciénda cognóvimus, te op", - "id": "Oratio" - }, - { - "body": "*Commemoratio Ss. Quadraginta Martyrum*\nPræsta, quǽsumus, omnípotens Deus: ut, qui gloriósos Mártyres fortes in sua conf", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Regum.\n*3 Reg 17:8-16*\nIn diébus illis: Factus est sermo Dómini ad Elíam Thesbíten, dicens: Surge et vade i", - "id": "Lectio" - }, - { - "body": "*Ps 54:23; 54:17; 54:18; 54:19*\nJacta cogitátum tuum in Dómino, et ipse te enútriet.\n℣. Dum clamárem ad Dóminum, exaudív", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 23:1-12*\nIn illo témpore: Locútus est Jesus ad turbas et ad discíp", - "id": "Evangelium" - }, - { - "body": "*Ps 50:3.*\nMiserére mei, Dómine, secúndum magnam misericórdiam tuam: dele, Dómine, iniquitátem meam.", - "id": "Offertorium" - }, - { - "body": "Sanctificatiónem tuam nobis, Dómine, his mystériis operáre placátus: quæ nos et a terrénis purget vítiis, et ad cœléstia", - "id": "Secreta" - }, - { - "body": "*Commemoratio Ss. Quadraginta Martyrum*\nPreces, Dómine, tuórum réspice oblationésque fidélium: ut et tibi gratæ sint pro", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 9:2-3*\nNarrábo ómnia mirabília tua: lætábor, et exsultábo in te: psallam nómini tuo, Altíssime.", - "id": "Communio" - }, - { - "body": "Ut sacris, Dómine, reddámur digni munéribus: fac nos tuis, quǽsumus, semper obœdíre mandátis.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Ss. Quadraginta Martyrum*\nSanctórum tuórum, Dómine, intercessióne placátus: præsta, quǽsumus; ut, quæ temp", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPropitiáre, Dómine, supplicatiónibus nostris, et animárum no", - "id": "Super populum" - } - ], - "2020-03-11": [ - { - "body": "*Ps 37:22-23.*\nNe derelínquas me, Dómine, Deus meus, ne discédas a me: inténde in adjutórium meum, Dómine, virtus salúti", - "id": "Introitus" - }, - { - "body": "Pópulum tuum, quǽsumus, Dómine, propítius réspice: et, quos ab escis carnálibus prǽcipis abstinére, a nóxiis quoque víti", - "id": "Oratio" - }, - { - "body": "Léctio libri Esther.\n*Esth 13:8-11; 13:15-17*\nIn diébus illis: Orávit Mardochǽus ad Dóminum, dicens: Dómine, Dómine, Rex", - "id": "Lectio" - }, - { - "body": "*Ps 27:9; 27:1*\nSalvum fac pópulum tuum, Dómine, et bénedic hereditáti tuæ.\n℣. Ad te, Dómine, clamávi: Deus meus, ne síl", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 20:17-28*\nIn illo témpore: Ascéndens Jesus Jerosólymam, assúmpsit ", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", - "id": "Offertorium" - }, - { - "body": "Hóstias, Dómine, quas tibi offérimus, propítius réspice: et, per hæc sancta commércia, víncula peccatórum nostrórum absó", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 10:8*\nJustus Dóminus, et justítiam diléxit: æquitátem vidit vultus ejus.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, sacraméntis: ad redemptiónis ætérnæ, quǽsumus, proficiámus augméntum.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDeus, innocéntiæ restitútor et amátor, dírige ad te tuórum c", - "id": "Super populum" - } - ], - "2020-03-12": [ - { - "body": "*Ps 69:2; 69:3*\nDeus, in adjutórium meum inténde: Dómine, ad adjuvándum me festína: confundántur et revereántur inimíci ", - "id": "Introitus" - }, - { - "body": "Præsta nobis, quǽsumus, Dómine, auxílium grátiæ tuæ: ut, jejúniis et oratiónibus conveniénter inténti, liberémur ab hóst", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Gregorii Papæ Confessoris et Ecclesiæ Doctoris*\nDeus, qui ánimæ fámuli tui Gregórii ætérnæ beatitúdinis", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Jeremíæ Prophétæ.\n*Jer 17:5-10*\nHæc dicit Dóminus Deus: Maledíctus homo, qui confídit in hómine, et ponit carnem ", - "id": "Lectio" - }, - { - "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 16:19-31*\nIn illo témpore: Dixit Jesus pharisǽis: Homo quidam erat div", - "id": "Evangelium" - }, - { - "body": "*Exod 32:11; 32:13; 32:14*\nPrecátus est Móyses in conspéctu Dómini, Dei sui, et dixit: Quare, Dómine, irásceris in pópul", - "id": "Offertorium" - }, - { - "body": "Præsénti sacrifício, nómini tuo nos, Dómine, jejúnia dicáta sanctíficent: ut, quod observántia nostra profitétur extériu", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Gregorii Papæ Confessoris et Ecclesiæ Doctoris*\nAnnue nobis, quǽsumus, Dómine: ut intercessióne beáti G", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Joann 6:57*\nQui mandúcat meam carnem, et bibit meum sánguinem, in me manet, et ego in eo, dicit Dóminus.", - "id": "Communio" - }, - { - "body": "Grátia tua nos, quǽsumus, Dómine, non derelínquat: quæ et sacræ nos déditos fáciat servitúti, et tuam nobis opem semper ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Gregorii Papæ Confessoris et Ecclesiæ Doctoris*\nDeus, qui beátum Gregórium Pontíficem Sanctórum tuórum ", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAdésto, Dómine, fámulis tuis, et perpétuam benignitátem larg", - "id": "Super populum" - } - ], - "2020-03-13": [ - { - "body": "*Ps 16:15*\nEgo autem cum justítia apparébo in conspéctu tuo: satiábor, dum manifestábitur glória tua.\n*Ps 16:1*\nExáudi, ", - "id": "Introitus" - }, - { - "body": "Da, quǽsumus, omnípotens Deus: ut, sacro nos purificánte jejúnio, sincéris méntibus ad sancta ventúra fácias perveníre.\n", - "id": "Oratio" - }, - { - "body": "Léctio libri Génesis.\n*Gen 37:6-22*\nIn diébus illis: Dixit Joseph frátribus suis: Audíte sómnium meum, quod vidi: Putába", - "id": "Lectio" - }, - { - "body": "*Ps 119:1-2*\nAd Dóminum, cum tribulárer, clamávi, et exaudívit me.\n℣. Dómine, líbera ánimam meam a lábiis iníquis et a l", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 21:33-46*\nIn illo témpore: Dixit Jesus turbis Judæórum et princípib", - "id": "Evangelium" - }, - { - "body": "*Ps 39:14; 39:15*\nDómine, in auxílium meum réspice: confundántur et revereántur, qui quærunt ánimam meam, ut áuferant ea", - "id": "Offertorium" - }, - { - "body": "Hæc in nobis sacrifícia, Deus, et actióne permáneant, et operatióne firméntur.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 11:8*\nTu, Dómine, servábis nos, et custódies nos a generatióne hac in ætérnum.", - "id": "Communio" - }, - { - "body": "Fac nos, quǽsumus, Dómine: accépto pígnore salútis ætérnæ, sic téndere congruénter; ut ad eam perveníre possímus.\nPer Do", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDa, quǽsumus, Dómine, pópulo tuo salútem mentis et córporis:", - "id": "Super populum" - } - ], - "2020-03-14": [ - { - "body": "*Ps 18:8.*\nLex Dómini irreprehensíbilis, convértens ánimas: testimónium Dómini fidéle, sapiéntiam præstans párvulis.\n*Ps", - "id": "Introitus" - }, - { - "body": "Da, quǽsumus, Dómine, nostris efféctum jejúniis salutárem: ut castigátio carnis assúmpta, ad nostrárum vegetatiónem trán", - "id": "Oratio" - }, - { - "body": "Léctio libri Genesis\n*Gen 27:6-40*\nIn diébus illis: Dixit Rebécca fílio suo Jacob: Audívi patrem tuum loquéntem cum Esau", - "id": "Lectio" - }, - { - "body": "*Ps 91:2-3*\nBonum est confitéri Dómino: et psállere nómini tuo, Altíssime.\n℣. Ad annuntiándum mane misericórdiam tuam, e", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 15:11-32*\nIn illo témpore: Dixit Jesus pharisǽis et scribis parábolam i", - "id": "Evangelium" - }, - { - "body": "*Ps 12:4-5*\nIllúmina óculos meos, ne umquam obdórmiam in morte: ne quando dicat inimícus meus: Præválui advérsus eum.", - "id": "Offertorium" - }, - { - "body": "His sacrifíciis, Dómine, concéde placátus: ut, qui própriis orámus absólvi delíctis, non gravémur extérnis.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Luc 15:32*\nOpórtet te, fili, gaudére, quia frater tuus mórtuus fúerat, et revíxit: períerat, et invéntus est.", - "id": "Communio" - }, - { - "body": "Sacraménti tui, Dómine, divína libátio, penetrália nostri cordis infúndat: et sui nos partícipes poténter effíciat.\nPer ", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nFamíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: u", - "id": "Super populum" - } - ], - "2020-03-15": [ - { - "body": "*Ps 24:15-16.*\nOculi mei semper ad Dóminum, quia ipse evéllet de láqueo pedes meos: réspice in me, et miserére mei, quón", - "id": "Introitus" - }, - { - "body": "Quǽsumus, omnípotens Deus, vota humílium réspice: atque, ad defensiónem nostram, déxteram tuæ majestátis exténde.\nPer Do", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Ephes 5:1-9*\nFratres: Estóte imitatóres Dei, sicut fílii caríssimi: e", - "id": "Lectio" - }, - { - "body": "*Ps 9:20; 9:4*\nExsúrge, Dómine, non præváleat homo: judicéntur gentes in conspéctu tuo.\n℣. In converténdo inimícum meum ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 11:14-28*\nIn illo témpore: Erat Jesus ejíciens dæmónium, et illud erat", - "id": "Evangelium" - }, - { - "body": "*Ps 18:9, 10, 11, 12*\nJustítiæ Dómini rectæ, lætificántes corda, et judícia ejus dulcióra super mel et favum: nam et ser", - "id": "Offertorium" - }, - { - "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 83:4-5*\nPasser invénit sibi domum, et turtur nidum, ubi repónat pullos suos: altária tua, Dómine virtútum, Rex meus,", - "id": "Communio" - }, - { - "body": "A cunctis nos, quǽsumus, Dómine, reátibus et perículis propitiátus absólve: quos tanti mystérii tríbuis esse partícipes.", - "id": "Postcommunio" - } - ], - "2020-03-16": [ - { - "body": "*Ps 55:5.*\nIn Deo laudábo verbum, in Dómino laudábo sermónem: in Deo sperábo, non timebo, quid fáciat mihi homo.\n*Ps 55:", - "id": "Introitus" - }, - { - "body": "Córdibus nostris, quǽsumus, Dómine, grátiam tuam benígnus infúnde: ut, sicut ab escis carnálibus abstinémus; ita sensus ", - "id": "Oratio" - }, - { - "body": "Léctio libri Regum.\n*4 Reg 5:1-15*\nIn diébus illis: Náaman, princeps milítiæ regis Sýriæ, erat vir magnus apud dóminum s", - "id": "Lectio" - }, - { - "body": "*Ps 55:9, 2*\nDeus, vitam meam annuntiávi tibi: posuísti lácrimas meas in conspéctu tuo.\n℣. Miserére mei, Dómine, quóniam", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 4:23-30.*\nIn illo témpore: Dixit Jesus pharisǽis: Utique dicétis mihi ", - "id": "Evangelium" - }, - { - "body": "*Ps 54:2-3*\nExáudi, Deus, oratiónem meam, et ne despéxeris deprecatiónem meam: inténde in me, et exáudi me.", - "id": "Offertorium" - }, - { - "body": "Munus, quod tibi, Dómine, nostræ servitútis offérimus, tu salutáre nobis pérfice sacraméntum.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 13:7*\nQuis dabit ex Sion salutáre Israël? cum avérterit Dóminus captivitátem plebis suæ, exsultábit Jacob, et lætábi", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens et miséricors Deus: ut, quod ore contíngimus, pura mente capiámus.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nSubvéniat nobis, Dómine, misericórdia tua: ut ab imminéntibu", - "id": "Super populum" - } - ], - "2020-03-17": [ - { - "body": "*Ps 16:6, 8*\nEgo clamávi, quóniam exaudísti me, Deus: inclína aurem tuam, et exáudi verba mea: custódi me, Dómine, ut pu", - "id": "Introitus" - }, - { - "body": "Exáudi nos, omnípotens et miséricors Deus: et continéntiæ salutáris propítius nobis dona concéde.\nPer Dominum…", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Patricii Episcopi et Conf.*\nDeus, qui ad prædicándam géntibus glóriam tuam beátum Patrícium Confessórem", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Regum.\n*4 Reg 4:1-7*\nIn diébus illis: Múlier quædam clamábat ad Eliséum Prophétam, dicens: Servus tuus vir ", - "id": "Lectio" - }, - { - "body": "*Ps 18:13-14*\nAb occúltis meis munda me, Dómine: et ab aliénis parce servo tuo.\n℣. Si mei non fúerint domináti, tunc imm", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:15-22*\nIn illo témpore: Dixit Jesus discípulis suis: Si peccáve", - "id": "Evangelium" - }, - { - "body": "*Ps 117:16, 17*\nDéxtera Dómini fecit virtútem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera Dómi", - "id": "Offertorium" - }, - { - "body": "Per hæc véniat, quǽsumus, Dómine, sacraménta nostræ redemptiónis efféctus: qui nos et ab humánis rétrahat semper excéssi", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Patricii Episcopi et Conf.*\nSancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita r", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 14:1-2*\nDómine, quis habitábit in tabernáculo tuo? aut quis requiéscet in monte sancto tuo? Qui ingréditur sine mácu", - "id": "Communio" - }, - { - "body": "Sacris, Dómine, mystériis expiáti: et véniam, quǽsumus, consequámur et grátiam.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Patricii Episcopi et Conf.*\nPræsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhib", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nTua nos, Dómine, protectióne defénde: et ab omni semper iniq", - "id": "Super populum" - } - ], - "2020-03-18": [ - { - "body": "*Ps 30:7-8.*\nEgo autem in Dómino sperábo: exsultábo et lætábor in tua misericórdia: quia respexísti humilitátem meam.\n*P", - "id": "Introitus" - }, - { - "body": "Præsta nobis, quǽsumus, Dómine: ut salutáribus jejúniis erudíti, a nóxiis quoque vítiis abstinéntes, propitiatiónem tuam", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Cyrilli Episcopi Hierosolymitani Ecclesiæ Doctoris*\nDa nobis, quǽsumus, omnípotens Deus, beáto Cyríllo ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Exodi\n*Exod 20:12-24*\nHæc dicit Dóminus Deus: Honóra patrem tuum et matrem tuam, ut sis longǽvus super terr", - "id": "Lectio" - }, - { - "body": "*Ps 6:3-4*\nMiserére mei, Dómine, quóniam infírmus sum: sana me, Dómine,\n℣. Conturbáta sunt ómnia ossa mea: et ánima mea ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangéliim secúndum Matthǽum.\n*Matt 15:1-20*\nIn illo témpore: Accessérunt ad Jesum ab Jerosólymis scr", - "id": "Evangelium" - }, - { - "body": "*Ps 108:21*\nDómine, fac mecum misericórdiam tuam, propter nomen tuum: quia suávis est misericórdia tua.", - "id": "Offertorium" - }, - { - "body": "Súscipe, quǽsumus, Dómine, preces pópuli tui cum oblatiónibus hostiárum: et tua mystéria celebrántes, ab ómnibus nos def", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Cyrilli Episcopi Hierosolymitani Ecclesiæ Doctoris*\nRéspice, Dómine, immaculátam hóstiam, quam tibi off", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 15:10*\nNotas mihi fecísti vias vitæ: adimplébis me lætítia cum vultu tuo, Dómine.", - "id": "Communio" - }, - { - "body": "Sanctíficet nos, Dómine, qua pasti sumus, mensa cœléstis: et a cunctis erróribus expiátos, supérnis promissiónibus redda", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Cyrilli Episcopi Hierosolymitani Ecclesiæ Doctoris*\nSacraménta Córporis et Sánguinis tui, quæ súmpsimus", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nConcéde, quǽsumus, omnípotens Deus: ut, qui protectiónis tuæ", - "id": "Super populum" - } - ], - "2020-03-19": [ - { - "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", - "id": "Introitus" - }, - { - "body": "Sanctíssimæ Genetrícis tuæ Sponsi, quǽsumus, Dómine, méritis adjuvémur: ut, quod possibílitas nostra non óbtinet, ejus n", - "id": "Oratio" - }, - { - "body": "*Commemoratio Feria V infra Hebd III Quadragesimæ*\nMagníficet te, Dómine, sanctórum tuórum Cosmæ et Damiáni beáta solémn", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 1:18-21*\nCum esset desponsáta Mater Jesu María Joseph, ántequam con", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "Débitum tibi, Dómine, nostræ réddimus servitútis, supplíciter exorántes: ut, suffrágiis beáti Joseph, Sponsi Genetrícis ", - "id": "Secreta" - }, - { - "body": "*Commemoratio Feria V infra Hebd III Quadragesimæ*\nIn tuorum, Dómine, pretiósa morte justórum sacrifícium illud offérimu", - "id": "Commemoratio Secreta" - }, - { - "body": "*de S. Joseph*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pat", - "id": "Prefatio" - }, - { - "body": "*Matt 1:20*\nJoseph, fili David, noli timére accípere Maríam cónjugem tuam: quod enim in ea natum est, de Spíritu Sancto ", - "id": "Communio" - }, - { - "body": "Adésto nobis, quǽsumus, miséricors Deus: et, intercedénte pro nobis beáto Joseph Confessóre, tua circa nos propitiátus d", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Feria V infra Hebd III Quadragesimæ*\nSit nobis, Dómine, sacraménti tui certa salvátio: quæ cum beatórum Má", - "id": "Commemoratio Postcommunio" - } - ], - "2020-03-20": [ - { - "body": "*Ps 85:17.*\nFac mecum, Dómine, signum in bonum: ut vídeant, qui me oderunt, et confundántur: quóniam tu, Dómine, adjuvís", - "id": "Introitus" - }, - { - "body": "Jejúnia nostra, quǽsumus, Dómine, benígno favóre proséquere: ut, sicut ab aliméntis abstinémus in córpore; ita a vítiis ", - "id": "Oratio" - }, - { - "body": "Léctio libri Numeri.\n*Num 20:1, 3, 6-13*\nIn diébus illis: Convenérunt fílii Israël adversum Móysen et Aaron: et versi in", - "id": "Lectio" - }, - { - "body": "*Ps 27:7, 1*\nIn Deo sperávit cor meum, et adjútus sum: et reflóruit caro mea, et ex voluntáte mea confitébor illi.\n℣. Ad", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 4:5-42*\nIn illo témpore: Venit Jesus in civitátem Samaríæ, quæ díc", - "id": "Evangelium" - }, - { - "body": "*Ps 5:3-4*\nInténde voci oratiónis meæ, Rex meus, et Deus meus: quóniam ad te orábo, Dómine.", - "id": "Offertorium" - }, - { - "body": "Réspice, quǽsumus, Dómine, propítius ad múnera, quæ sacrámus: ut tibi grata sint, et nobis salutária semper exsístant.\nP", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Joann 4:13, 14*\nQui bíberit aquam, quam ego dabo ei, dicit Dóminus, fiet in eo fons aquæ saliéntis in vitam ætérnam.", - "id": "Communio" - }, - { - "body": "Hujus nos, Dómine, percéptio sacraménti mundet a crimine: et ad cœléstia regna perdúcat.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPræsta, quǽsumus, omnípotens Deus: ut, qui in tua protectión", - "id": "Super populum" - } - ], - "2020-03-21": [ - { - "body": "*Ps 5:2-3.*\nVerba mea áuribus pércipe, Dómine, intéllege clamórem meum: inténde voci oratiónis meæ, Rex meus et Deus meu", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui se, affligéndo carnem, ab aliméntis ábstinent; sectándo justítiam, a culpa je", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Benedicti Abbatis*\nIntercéssio nos, quǽsumus, Dómine, beáti Benedícti Abbátis comméndet: ut quod nostri", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Daniélis Prophétæ.\n*Dan 13:1-9, 15-17, 19-30, 33-62*\nIn diébus illis: Erat vir hábitans in Babylóne, et nomen eju", - "id": "Lectio" - }, - { - "body": "*Ps 22:4*\nSi ámbulem in médio umbræ mortis, non timébo mala: quóniam tu mecum es, Dómine.\n℣. Virga tua et báculus tuus, ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 8:1-11*\nIn illo témpore: Perréxit Jesus in montem Olivéti: et dilú", - "id": "Evangelium" - }, - { - "body": "*Ps 118:133.*\nGressus meos dírige secúndum elóquium tuum: ut non dominétur mei omnis injustítia, Dómine.", - "id": "Offertorium" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut hujus sacrifícii munus oblátum, fragilitátem nostram ab omni malo purget semper e", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Benedicti Abbatis*\nSacris altáribus, Dómine, hóstias superpósitas sanctus Benedíctus Abbas, quǽsumus, i", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Joann 8:10, 11*\nNemo te condemnávit, mulier? Nemo, Dómine. Nec ego te condemnábo: jam ámplius noli peccáre.", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut inter ejus membra numerémur, cujus córpori communicámus et sánguini:\nQui tecum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Benedicti Abbatis*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus Benedíctus Abbas, pro no", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPræténde, Dómine, fidélibus tuis déxteram cœléstis auxílii: ", - "id": "Super populum" - } - ], - "2020-03-22": [ - { - "body": "*Is 66:10 et 11*\nLætáre, Jerúsalem: et convéntum fácite, omnes qui dilígitis eam: gaudéte cum lætítia, qui in tristítia ", - "id": "Introitus" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui ex mérito nostræ actiónis afflígimur, tuæ grátiæ consolatióne respirémus.\nPe", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas\n*Gal 4:22-31*\nFratres: Scriptum est: Quóniam Abraham duos fílios hábuit:", - "id": "Lectio" - }, - { - "body": "*Ps 121:1, 7*\nLætátus sum in his, quæ dicta sunt mihi: in domum Dómini íbimus.\n℣. Fiat pax in virtúte tua: et abundántia", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 6:1-15*\nIn illo témpore: Abiit Jesus trans mare Galilǽæ, quod est T", - "id": "Evangelium" - }, - { - "body": "*Ps 134:3, 6*\nLaudáte Dóminum, quia benígnus est: psállite nómini ejus, quóniam suávis est: ómnia, quæcúmque vóluit, fec", - "id": "Offertorium" - }, - { - "body": "Sacrifíciis præséntibus, Dómine, quǽsumus, inténde placátus: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 121:3-4*\nJerúsalem, quæ ædificátur ut cívitas, cujus participátio ejus in idípsum: illuc enim ascendérunt tribus, tr", - "id": "Communio" - }, - { - "body": "Da nobis, quǽsumus, miséricors Deus: ut sancta tua, quibus incessánter explémur, sincéris tractémus obséquiis, et fidéli", - "id": "Postcommunio" - } - ], - "2020-03-23": [ - { - "body": "*Ps 53:3-4*\nDeus, in nómine tuo salvum me fac, et in virtúte tua líbera me: Deus, exáudi oratiónem meam: áuribus pércipe", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, observatiónes sacras ánnua devotióne recoléntes, et córpore tibi placeámus et men", - "id": "Oratio" - }, - { - "body": "Léctio libri Regum\n*3 Reg 3:16-28.*\nIn diébus illis: Venérunt duæ mulíeres meretríces ad regem Salomónem, steterúntque c", - "id": "Lectio" - }, - { - "body": "*Ps 30:3*\nEsto mihi in Deum protectórem et in locum refúgii, ut salvum me fácias.\n*Ps 70:1.*\n℣. Deus, in te sperávi: Dóm", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 2:13-25*\nIn illo témpore: Prope erat Pascha Judæórum, et ascéndit J", - "id": "Evangelium" - }, - { - "body": "*Ps 99:1-2*\nJubiláte Deo, omnis terra, servíte Dómino in lætítia: intráte in conspéctu ejus in exsultatióne: quia Dóminu", - "id": "Offertorium" - }, - { - "body": "Oblátum tibi, Dómine, sacrifícium vivíficet nos semper et múniat.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 18:13, 14*\nAb occúltis meis munda me, Dómine: et ab aliénis parce servo tuo.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salutáribus sacraméntis: ad redemptiónis ætérnæ, quǽsumus, proficiámus augméntum.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDeprecatiónem nostram, quǽsumus. Dómine, benígnus exáudi: et", - "id": "Super populum" - } - ], - "2020-03-24": [ - { - "body": "*Ps 54:2-3*\nExáudi, Deus, oratiónem meam, et ne despéxeris deprecatiónem meam: inténde in me et exáudi me.\n*Ps 54:3-4*\nC", - "id": "Introitus" - }, - { - "body": "Sacræ nobis, quǽsumus, Dómine, observatiónis jejúnia: et piæ conversatiónis augméntum, et tuæ propitiatiónis contínuum p", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Gabrielis Archangeli*\nDeus, qui inter céteros Angelos, ad annuntiándum incarnatiónis tuæ mystérium, Gab", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Exodi.\n*Exod 32:7-14*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: Descénde de monte: peccávit p", - "id": "Lectio" - }, - { - "body": "*Ps 43:26, 2*\nExsúrge, Dómine, fer opem nobis: et líbera nos propter nomen tuum.\n℣. Deus, áuribus nostris audívimus: et ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 7:14-31*\nIn illo témpore: Jam die festo mediánte, ascéndit Jesus i", - "id": "Evangelium" - }, - { - "body": "*Ps 39:2, 3, 4*\nExspéctans exspectávi Dóminum, et respéxit me: et exaudívit deprecatiónem meam: et immísit in os meum cá", - "id": "Offertorium" - }, - { - "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et, ad sacrifícium celebrándum, subditórum tibi córpora mentésque ", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Gabrielis Archangeli*\nAccéptum fiat in conspéctu tuo, Dómine, nostræ servitútis munus, et beáti Archáng", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 19:6*\nLætábimur in salutári tuo: et in nómine Dómini, Dei nostri, magnificábimur.", - "id": "Communio" - }, - { - "body": "Hujus nos, Dómine, percéptio sacraménti mundet a crímine: et ad cæléstia regna perdúcat.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Gabrielis Archangeli*\nCórporis tui et Sánguinis sumptis mystériis, tuam, Dómine, Deus noster, deprecámu", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nMiserére, Dómine, pópulo tuo: et contínuis tribulatiónibus l", - "id": "Super populum" - } - ], - "2020-03-25": [ - { - "body": "*Ps 44:13, 15 et 16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus add", - "id": "Introitus" - }, - { - "body": "Deus, qui de beátæ Maríæ Vírginis útero Verbum tuum, Angelo nuntiánte, carnem suscípere voluísti: præsta supplícibus tui", - "id": "Oratio" - }, - { - "body": "*Commemoratio Feria IV infra Hebd IV Quadragesimæ*\nDeus, qui et justis prǽmia meritórum et peccatóribus per jejúnium vén", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 7:10-15*\nIn diébus illis: Locútus est Dóminus ad Achaz, dicens: Pete tibi signum a Dómino, Deo", - "id": "Lectio" - }, - { - "body": "*Ps 44:3 et 5*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansue", - "id": "Tractus" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:26-38*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitátem", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28 et 42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "In méntibus nostris, quǽsumus, Dómine, veræ fídei sacraménta confírma: ut, qui concéptum de Vírgine Deum verum et hómine", - "id": "Secreta" - }, - { - "body": "*Commemoratio Feria IV infra Hebd IV Quadragesimæ*\nSúpplices te rogámus, omnípotens Deus: ut his sacrifíciis peccáta nos", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel. (Allelúja.)", - "id": "Communio" - }, - { - "body": "Grátiam tuam, quǽsumus, Dómine, méntibus nostris infúnde: ut qui, Angelo nuntiánte, Christi Fílii tui incarnatiónem cogn", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Feria IV infra Hebd IV Quadragesimæ*\nSacraménta, quæ súmpsimus, Dómine, Deus noster: et spirituálibus nos ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-03-26": [ - { - "body": "*Ps 104:3-4.*\nLætétur cor quæréntium Dóminum: quǽrite Dóminum, et confirmámini: quǽrite fáciem ejus semper.\n*Ps 104:1*\nC", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, quos jejúnia votíva castígant, ipsa quoque devótio sancta lætíficet; ut, terrénis", - "id": "Oratio" - }, - { - "body": "Léctio libri Regum\n*4 Reg 4:25-38*\nIn diébus illis: Venit múlier Sunamítis ad Eliséum in montem Carméli: cumque vidísset", - "id": "Lectio" - }, - { - "body": "*Ps 73:20, 19, 22*\nRéspice, Dómine, in testaméntum tuum: et ánimas páuperum tuórum ne obliviscáris in finem.\n℣. Exsúrge,", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 7:11-16*\nIn illo témpore: Ibat Jesus in civitátem, quæ vocátur Naim: et", - "id": "Evangelium" - }, - { - "body": "*Ps 69:2, 3, 4*\nDómine, ad adjuvándum me festína: confundántur omnes, qui cógitant servis tuis mala.", - "id": "Offertorium" - }, - { - "body": "Purífica nos, miséricors Deus: ut Ecclésiæ tuæ preces, quæ tibi gratæ sunt, pia múnera deferéntes, fiant expiátis méntib", - "id": "Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 70:16-17, 18*\nDómine, memorábor justítiæ tuæ solíus: Deus, docuísti me a juventúte mea: et usque in senéctam et séni", - "id": "Communio" - }, - { - "body": "Cœléstia dona capiéntibus, quǽsumus, Dómine: non ad judícium proveníre patiáris, quæ fidélibus tuis ad remédium providís", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nPópuli tui, Deus, institútor et rector, peccáta, quibus impu", - "id": "Super populum" - } - ], - "2020-03-27": [ - { - "body": "*Ps 18:15*\nMeditátio cordis mei in conspéctu tuo semper: Dómine, adjútor meus, et redémptor meus.\n*Ps 18:2*\nCœli enárran", - "id": "Introitus" - }, - { - "body": "Deus, qui ineffabílibus mundum rénovas sacraméntis: præsta, quǽsumus; ut Ecclésia tua et ætérnis profíciat institútis, e", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Joannis Damasceni Confessoris*\nOmnípotens sempitérne Deus, qui, ad cultum sacrárum imáginum asseréndum,", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Regum.\n*3 Reg 17:17-24*\nIn diébus illis: Ægrotávit fílius mulíeris matris famílias, et erat languor fortíss", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nBonum est confídere in Dómino, quam confídere in hómine.\n℣. Bonum est speráre in Dómino, quam speráre in pr", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 11:1-45*\nIn illo témpore: Erat quidam languens Lázarus a Bethánia,", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28, 32*\nPópulum húmilem salvum fácies, Dómine, et óculos superbórum humiliábis: quóniam quis Deus præter te, Dómi", - "id": "Offertorium" - }, - { - "body": "Múnera nos, Dómine, quǽsumus, obláta puríficent: et te nobis jugiter fáciant esse placátum.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Joannis Damasceni Confessoris*\nUt, quæ tibi, Dómine, offérimus, dona tuo sint digna conspéctu: beáti Jo", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Joann 11:33, 35, 43, 44, 39*\nVidens Dóminus flentes soróres Lázari ad monuméntum, lacrimátus est coram Judǽis, et excla", - "id": "Communio" - }, - { - "body": "Hæc nos, quǽsumus, Dómine, participátio sacraménti: et a propriis reátibus indesinénter expédiat, et ab ómnibus tueátur ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Joannis Damasceni Confessoris*\nSumpta nos, quǽsumus, Dómine, dona cœléstibus armis tueántur: et beáti J", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDa nobis, quǽsumus, omnípotens Deus: ut, qui infirmitátis no", - "id": "Super populum" - } - ], - "2020-03-28": [ - { - "body": "*Isa 55:1*\nSitiéntes, veníte ad aquas, dicit Dóminus: et qui non habétis prétium, veníte et bíbite cum lætítia.\n*Ps 77:1", - "id": "Introitus" - }, - { - "body": "Fiat, Dómine, quǽsumus, per grátiam tuam fructuósus nostræ devotiónis afféctus: quia tunc nobis próderunt suscépta jejún", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Joannis a Capistrano Confessoris*\nDeus, qui per beátum Joánnem fidéles tuos in virtúte sanctíssimi nómi", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ.\n*Isa 49:8-15*\nHæc dicit Dóminus: In témpore plácito exaudívi te, et in die salútis auxiliátus sum", - "id": "Lectio" - }, - { - "body": "*Ps 9:14, 1-2*\nTibi, Dómine, derelíctus est pauper: pupíllo tu eris adjútor.\n℣. Ut quid, Dómine, recessísti longe, déspi", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 8:12-20*\nIn illo témpore: Locútus est Jesus turbis Judæórum, dicen", - "id": "Evangelium" - }, - { - "body": "*Ps 17:3*\nFactus est Dóminus firmaméntum meum, et refúgium meum, et liberátor meus: et sperábo in eum.", - "id": "Offertorium" - }, - { - "body": "Oblatiónibus nostris, quǽsumus, Dómine, placáre suscéptis: et ad te nostras étiam rebélles compélle propítius voluntátes", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Joannis a Capistrano Confessoris*\nSacrifícium, Dómine, quod immolámus, placátus inténde: ut, intercedén", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Quadragesima*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine, sancte ", - "id": "Prefatio" - }, - { - "body": "*Ps 22:1-2*\nDóminus regit me, et nihil mihi déerit: in loco páscuæ ibi me collocávit: super aquam refectiónis educávit m", - "id": "Communio" - }, - { - "body": "Tua nos, quǽsumus, Dómine, sancta puríficent: et operatióne sua tibi plácitos esse perfíciant.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Joannis a Capistrano Confessoris*\nRepléti alimónia cœlésti et spirituáli pópulo recreáti, quǽsumus, omn", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDeus, qui sperántibus in te miseréri pótius éligis quam irás", - "id": "Super populum" - } - ], - "2020-03-29": [ - { - "body": "*Ps 42:1-2.*\nJúdica me, Deus, et discérne causam meam de gente non sancta: ab hómine iníquo et dolóso éripe me: quia tu ", - "id": "Introitus" - }, - { - "body": "Quǽsumus, omnípotens Deus, famíliam tuam propítius réspice: ut, te largiénte, regátur in córpore; et, te servánte, custo", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos.\n*Hebr 9:11-15*\nFratres: Christus assístens Póntifex futurórum bonórum, ", - "id": "Lectio" - }, - { - "body": "*Ps 142:9, 10*\nEripe me, Dómine, de inimícis meis: doce me fácere voluntátem tuam\n*Ps 17:48-49*\nLiberátor meus, Dómine, ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 8:46-59*\nIn illo témpore: Dicébat Jesus turbis Judæórum: Quis ex v", - "id": "Evangelium" - }, - { - "body": "*Ps 118:17, 107*\nConfitébor tibi, Dómine, in toto corde meo: retríbue servo tuo: vivam, et custódiam sermónes tuos: viví", - "id": "Offertorium" - }, - { - "body": "Hæc múnera, quǽsumus Dómine, et víncula nostræ pravitátis absólvant, et tuæ nobis misericórdiæ dona concílient.\nPer Domi", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*1 Cor 11:24, 25*\nHoc corpus, quod pro vobis tradétur: hic calix novi Testaménti est in meo sánguine, dicit Dóminus: hoc", - "id": "Communio" - }, - { - "body": "Adésto nobis, Dómine, Deus noster: et, quos tuis mystériis recreásti, perpétuis defénde subsídiis.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-03-30": [ - { - "body": "*Ps 55:2*\nMiserére mihi, Dómine, quóniam conculcávit me homo: tota die bellans tribulávit me.\n*Ps 55:3*\nConculcavérunt m", - "id": "Introitus" - }, - { - "body": "Sanctífica, quǽsumus, Dómine, nostra jejúnia: et cunctárum nobis indulgéntiam propítius largíre culpárum.\nPer Dominum…", - "id": "Oratio" - }, - { - "body": "Léctio Jonæ Prophétæ.\n*Jonæ 3:1-10*\nIn diébus illis: Factum est verbum Dómini ad Jonam Prophétam secúndo, dicens: Surge,", - "id": "Lectio" - }, - { - "body": "*Ps 53:4, 3*\nDeus, exáudi oratiónem meam: áuribus pércipe verba oris mei.\n℣. Deus, in nómine tuo salvum me fac, et in vi", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 7:32-39*\nIn illo témpore: Misérunt príncipes et pharisǽi minístros", - "id": "Evangelium" - }, - { - "body": "*Ps 6:5*\nDómine, convértere, et éripe ánimam meam: salvum me fac propter misericórdiam tuam.", - "id": "Offertorium" - }, - { - "body": "Concéde nobis, Dómine, Deus noster: ut hæc hóstia salutáris et nostrórum fiat purgátio delictórum, et tuæ propitiátio ma", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*Ps 23:10*\nDóminus virtútum ipse est Rex glóriæ.", - "id": "Communio" - }, - { - "body": "Sacraménti tui, quǽsumus, Dómine, participátio salutáris, et purificatiónem nobis tríbuat, et medélam.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDa, quǽsumus, Dómine, pópulo tuo salútem mentis et córporis:", - "id": "Super populum" - } - ], - "2020-03-31": [ - { - "body": "*Ps 26:14*\nExspécta Dóminum, viríliter age: et confortétur cor tuum, et sústine Dóminum.\n*Ps 26:1*\nDóminus illuminátio m", - "id": "Introitus" - }, - { - "body": "Nostra tibi, Dómine, quǽsumus, sint accépta jejúnia: quæ nos et expiándo grátia tua dignos effíciant; et ad remédia perd", - "id": "Oratio" - }, - { - "body": "Léctio Daniélis Prophétæ\n*Dan 14:27, 28-42*\nIn diébus illis: Congregáti sunt Babylónii ad regem, et dixérunt ei: Trade n", - "id": "Lectio" - }, - { - "body": "*Ps 42:1, 3*\nDiscérne causam meam, Dómine: ab hómine iníquo et dolóso éripe me.\n℣. Emítte lucem tuam et veritátem tuam: ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 7:1-13*\nIn illo témpore: Ambulábat Jesus in Galilǽam, non enim volé", - "id": "Evangelium" - }, - { - "body": "*Ps 9:11-12, 13*\nSperent in te omnes, qui novérunt nomen tuum, Dómine: quóniam non derelínquis quæréntes te: psállite Dó", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, deférimus immolándas: quæ temporálem consolatiónem signíficent; ut promíssa non desperémus ætérna.", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*Ps 24:22*\nRédime me, Deus Israël, ex ómnibus angústiis meis.", - "id": "Communio" - }, - { - "body": "Da, quǽsumus, omnípotens Deus: ut, quæ divína sunt, júgiter exsequéntes, donis mereámur cœléstibus propinquáre.\nPer Domi", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nDa nobis, quǽsumus, Dómine: perseverántem in tua voluntáte f", - "id": "Super populum" - } - ], - "2020-04-01": [ - { - "body": "*Ps 17:48-49*\nLiberátor meus de géntibus iracúndis: ab insurgéntibus in me exaltábis me: a viro iníquo erípies me, Dómin", - "id": "Introitus" - }, - { - "body": "Sanctificáto hoc jejúnio, Deus, tuórum corda fidélium miserátor illústra: et quibus devotiónis præstas afféctum, præbe s", - "id": "Oratio" - }, - { - "body": "Léctio libri Levítici.\n*Lev 19:1-2, 11-19, 25*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: Lóquere ad omnem ", - "id": "Lectio" - }, - { - "body": "*Ps 29:2-4*\nExaltábo te, Dómine, quóniam suscepísti me: nec delectásti inimícos meos super me.\n℣. Dómine, Deus meus, cla", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 10:22-38*\nIn illo témpore: Facta sunt encǽnia in Jerosólymis: et h", - "id": "Evangelium" - }, - { - "body": "*Ps 58:2*\nEripe me de inimícis meis, Deus meus: et ab insurgéntibus in me líbera me, Dómine.", - "id": "Offertorium" - }, - { - "body": "Annue, miséricors Deus: ut hóstias placatiónis et laudis sincéro tibi deferámus obséquio.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*Ps 25:6-7*\nLavábo inter innocéntes manus meas, et circuíbo altáre tuum, Dómine: ut áudiam vocem laudis tuæ, et enárrem ", - "id": "Communio" - }, - { - "body": "Cœléstis doni benedictióne percépta: súpplices te, Deus omnípotens, deprecámur; ut hoc idem nobis et sacraménti causa si", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\n℣. Humiliáte cápita vestra Deo.\nAdésto supplicatiónibus nostris, omnípotens Deus: et, qui", - "id": "Super populum" - } - ], - "2020-04-02": [ - { - "body": "*Dan 3:31*\nOmnia, quæ fecísti nobis, Dómine, in vero judício fecísti: quia peccávimus tibi, et mandátis tuis non obedívi", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut dígnitas condiciónis humánæ, per immoderántiam sauciáta, medicinális parsimóniæ st", - "id": "Oratio" - }, - { - "body": "Léctio Daniélis Prophétæ\n*Dan 3:25, 34-45*\nIn diébus illis: Orávit Azarías Dóminum, dicens: Dómine, Deus noster: ne, quǽ", - "id": "Lectio" - }, - { - "body": "*Ps 95:8-9*\nTóllite hóstias, et introíte in átria ejus: adoráte Dóminum in aula sancta ejus\n*Ps 28:9*\nRevelávit Dóminus ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:36-50*\nIn illo témpore: Rogábat Jesum quidam de pharisǽis, ut manduc", - "id": "Evangelium" - }, - { - "body": "*Ps 136:1*\nSuper flúmina Babylónis illic sédimus et flévimus: dum recordarémur tui, Sion.", - "id": "Offertorium" - }, - { - "body": "Dómine, Deus noster, qui in his pótius creatúris, quas ad fragilitátis nostræ subsídium condidísti, tuo quoque nómini mú", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*Ps 118:49-50*\nMeménto verbi tui servo tuo, Dómine, in quo mihi spem dedísti: hæc me consoláta est in humilitáte mea.", - "id": "Communio" - }, - { - "body": "Quod ore súmpsimus, Dómine, pura mente capiámus: et de munere temporáli, fiat nobis remédium sempitérnum.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus. Humiliáte cápita vestra Deo.\nEsto, quǽsumus, Dómine, propítius plebi tuæ: ut, quæ tibi no", - "id": "Super populum" - } - ], - "2020-04-03": [ - { - "body": "*Ps 30:10, 16, 18*\nMiserére mihi, Dómine, quóniam tríbulor: líbera me, et éripe me de mánibus inimicórum meórum et a per", - "id": "Introitus" - }, - { - "body": "Córdibus nostris, quǽsumus, Dómine, grátiam tuam benígnus infúnde: ut peccáta nostra castigatióne voluntária cohibéntes,", - "id": "Oratio" - }, - { - "body": "*Commemoratio Septem Dolorum B. M. ℣.*\nDeus, in cujus passióne, secúndum Simeónis prophetíam, dulcíssimam ánimam gloriós", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Jeremíæ Prophétæ\n*Jer 17:13-18*\nIn diébus illis: Dixit Jeremías: Dómine, omnes, qui te derelínquunt, confundéntur", - "id": "Lectio" - }, - { - "body": "*Ps 34:20, 22*\nPacífice loquebántur mihi inimíci mei: et in ira molésti erant mihi.\n℣. Vidísti, Dómine, ne síleas: ne di", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 11:47-54*\nIn illo témpore: Collegérunt pontífices et pharisǽi concí", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12, 121, 42*\nBenedíctus es, Dómine, doce me justificatiónes tuas: et non tradas calumniántibus me supérbis: et r", - "id": "Offertorium" - }, - { - "body": "Præsta nobis, miséricors Deus: ut digne tuis servíre semper altáribus mereámur; et eórum perpétua participatióne salvári", - "id": "Secreta" - }, - { - "body": "*Commemoratio Septem Dolorum B. M. ℣.*\nOfférimus tibi preces et hóstias, Dómine Jesu Christe, humíliter supplicántes: ut", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*Ps 26:12*\nNe tradíderis me, Dómine, in animas persequéntium me: quóniam insurrexérunt in me testes iníqui, et mentíta e", - "id": "Communio" - }, - { - "body": "Sumpti sacrifícii, Dómine, perpetua nos tuítio non derelínquat: et nóxia semper a nobis cuncta depéllat.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Septem Dolorum B. M. ℣.*\nSacrifícia, quæ súmpsimus, Dómine Jesu Christe, Transfixiónem Matris tuæ et Vírgi", - "id": "Commemoratio Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nConcéde, quǽsumus, omnípotens Deus: ut, qui protectiónis tuæ", - "id": "Super populum" - } - ], - "2020-04-04": [ - { - "body": "*Ps 30:10,16, 18*\nMiserére mihi, Dómine, quóniam tríbulor: líbera me, et éripe me de mánibus inimicórum meórum et a pers", - "id": "Introitus" - }, - { - "body": "Profíciat, quǽsumus, Dómine, plebs tibi dicáta piæ devotiónis afféctu: ut sacris actiónibus erudíta, quanto majestáti tu", - "id": "Oratio" - }, - { - "body": "Léctio Jeremíæ Prophétæ\n*Jer 18:18-23*\nIn diébus illis: Dixérunt ímpii Judǽi ad ínvicem: Veníte, et cogitémus contra jus", - "id": "Lectio" - }, - { - "body": "*Ps 34:20, 22*\nPacífice loquebántur mihi inimíci mei: et in ira molésti erant mihi.\n℣. Vidísti, Dómine, ne síleas: ne di", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 12:10-36*\nIn illo témpore: Cogitavérunt príncipes sacerdótum, ut et", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12, 121, 42*\nBenedíctus es, Dómine, doce me justificatiónes tuas: et non tradas calumniántibus me supérbis: et r", - "id": "Offertorium" - }, - { - "body": "A cunctis nos, quǽsumus, Dómine, reátibus et perículis propitiátus absólve: quos tanti mystérii tríbuis esse consórtes.\n", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*Ps 26:12*\nNe tradíderis me, Dómine, in ánimas persequéntium me: quóniam insurrexérunt in me testes iníqui, et mentíta e", - "id": "Communio" - }, - { - "body": "Divíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut hujus semper participatióne vivámus.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nTueátur, quǽsumus, Dómine, déxtera tua pópulum deprecántem: ", - "id": "Super populum" - } - ], - "2020-04-05": [ - { - "body": "*Celebrans, omissa aspersione aquae, proceditur ad benedicendum ramos palmarum seu olivarum, sive aliarum arborum. Color", - "id": "Benedictio Palmorum" - }, - { - "body": "*Celebrans dat ramos benedictos primum omnibus clericis, deinde ministrantibus, denique, ad cancellos, fidelibus. Et cum", - "id": "De distributione ramorum" - }, - { - "body": "*Ramorum distributione peracta, diaconus defert librum Evangeliorum ad altare. Celebrans ponit incensum in thuribulo. Di", - "id": "De lectione Evangelica" - }, - { - "body": "*His peractis, celebrans ponit incensum in thuribulo, more solito. Deinde diaconus, vertens se ad populum, dicit:*\n\n℣. P", - "id": "De processione cum ramis benedictis" - }, - { - "body": "\n*Chorus:*\nGlória, laus et honor tibi sit, Rex Christe, Redémptor: Cui pueríle decus prompsit Hosánna pium.\n*Omnes:*\nGló", - "id": "Hymnus ad Christum Regem" - }, - { - "body": "*Ps 21:20 et 22.*\nDómine, ne longe fácias auxílium tuum a me, ad defensiónem meam áspice: líbera me de ore leonis, et a ", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui humáno generi, ad imitandum humilitátis exémplum, Salvatórem nostrum carnem súmere et cr", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses.\n*Phil 2:5-11*\nFratres: Hoc enim sentíte in vobis, quod et in Chris", - "id": "Lectio" - }, - { - "body": "*Ps 72:24 et 1-3*\nTenuísti manum déxteram meam: et in voluntáte tua deduxísti me: et cum glória assumpsísti me.\n℣. Quam ", - "id": "Graduale" - }, - { - "body": "Pássio Dómini nostri Jesu Christi secúndum Matthǽum.\n*Matt 26:36-75; 27:1-60.*\nTunc venit Jesus cum illis in villam, quæ", - "id": "Evangelium" - }, - { - "body": "*Ps 68:21-22.*\nImpropérium exspectávit cor meum et misériam: et sustínui, qui simul mecum contristarétur, et non fuit: c", - "id": "Offertorium" - }, - { - "body": "Concéde, quǽsumus, Dómine: ut oculis tuæ majestátis munus oblátum, et grátiam nobis devotionis obtineat, et efféctum beá", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*Matt 26:42.*\nPater, si non potest hic calix transíre, nisi bibam illum: fiat volúntas tua.", - "id": "Communio" - }, - { - "body": "Per hujus, Dómine, operatiónem mystérii: et vitia nostra purgéntur, et justa desidéria compleántur.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-04-06": [ - { - "body": "*Ps 34:1-2.*\nJúdica, Dómine, nocéntes me, expúgna impugnántes me: apprehénde arma et scutum, et exsúrge in adjutórium me", - "id": "Introitus" - }, - { - "body": "Da, quǽsumus, omnípotens Deus: ut, qui in tot advérsis ex nostra infirmitáte defícimus; intercedénte unigéniti Fílii tui", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ.\n*Isa 50:5-10*\nIn diébus illis: Dixit Isaías: Dóminus Deus apéruit mihi aurem, ego autem non contr", - "id": "Lectio" - }, - { - "body": "*Ps 34:23 et 3.*\nExsúrge, Dómine, et inténde judício meo, Deus meus et Dóminus meus, in causam meam.\n℣. Effúnde frámeam,", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 12:1-9*\nAnte sex dies Paschæ venit Jesus Bethániam, ubi Lázarus fú", - "id": "Evangelium" - }, - { - "body": "*Ps 142:9-10*\nEripe me de inimícis meis, Dómine: ad te confúgi, doce me fácere voluntátem tuam: quia Deus meus es tu.", - "id": "Offertorium" - }, - { - "body": "Hæc sacrifícia nos, omnípotens Deus, poténti virtúte mundátos, ad suum fáciant purióres veníre princípium.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*Ps 34:26*\nErubéscant et revereántur simul, qui gratulántur malis meis: induántur pudóre et reveréntia, qui malígna loqu", - "id": "Communio" - }, - { - "body": "Prǽbeant nobis, Dómine, divínum tua sancta fervórem: quo eórum páriter et actu delectémur et fructu.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nAdjuva nos, Deus, salutáris noster: et ad benefícia recolénd", - "id": "Super populum" - } - ], - "2020-04-07": [ - { - "body": "*Gal 6:14*\nNos autem gloriári opórtet in Cruce Dómini nostri Jesu Christi: in quo est salus, vita et resurréctio nostra:", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus: da nobis ita Domínicæ passiónis sacraménta perágere; ut indulgéntiam percípere mereámur.\nPer", - "id": "Oratio" - }, - { - "body": "Léctio Jeremíæ Prophétæ\n*Jer 11:18-20*\nIn diébus illis: Dixit Jeremías: Dómine, demonstrásti mihi, et cognóvi: tunc oste", - "id": "Lectio" - }, - { - "body": "*Ps 34:13 et 1-2*\nEgo autem, dum mihi molésti essent, induébam me cilício, et humiliábam in jejúnio ánimam meam: et orát", - "id": "Graduale" - }, - { - "body": "\n\n \nPássio Dómini nostri Jesu Christi secúndum Marcum\n\n*Marc 14:32-72; 15, 1-46*\n\nEt véniunt in prǽdium, cui nomen Geths", - "id": "Evangelium" - }, - { - "body": "*Ps 139:5*\nCustódi me, Dómine, de manu peccatóris: et ab homínibus iníquis éripe me.", - "id": "Offertorium" - }, - { - "body": "Sacrifícia nos, quǽsumus, Dómine, propénsius ista restáurent: quæ medicinálibus sunt institúta jejúniis.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*Ps 68:13-14*\nAdvérsum me exercebántur, qui sedébant in porta: et in me psallébant, qui bibébant vinum: ego vero oratión", - "id": "Communio" - }, - { - "body": "Sanctificatiónibus tuis, omnípotens Deus: et vítia nostra curéntur, et remédia nobis sempitérna provéniant.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nTua nos misericórdia, Deus, et ab omni subreptióne vetustáti", - "id": "Super populum" - } - ], - "2020-04-08": [ - { - "body": "*Phil 2:10, 8 et 11*\nIn nómine Jesu omne genu flectátur, cœléstium, terréstrium et infernórum: quia Dóminus factus est o", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui nostris excéssibus incessánter afflígimur, per unigéniti Fílii tui passiónem ", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Isa 63:1-7*\nHæc dicit Dóminus Deus: Dícite fíliæ Sion: Ecce Salvátor tuus venit: ecce, merces eju", - "id": "LectioL1" - }, - { - "body": "*Ps 68:18 et 2-3*\nNe avértas fáciem tuam a púero tuo, quóniam tríbulor: velóciter exáudi me.\n℣. Salvum me fac, Deus, quó", - "id": "GradualeL1" - }, - { - "body": "Deus, qui pro nobis Fílium tuum Crucis patíbulum subire voluísti, ut inimíci a nobis expélleres potestatem: concéde nobi", - "id": "OratioL1" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 53:1-12.*\nIn diébus illis: Dixit Isaías: Dómine, quis crédidit audítui nostro? et bráchium Dóm", - "id": "Lectio" - }, - { - "body": "*Ps. 101:2-5, 14*\nDómine, exáudi oratiónem meam, et clamor meus ad te véniat.\n℣. Ne avértas fáciem tuam a me: in quacúmq", - "id": "Graduale" - }, - { - "body": "\n\n \nPássio Dómini nostri Jesu Christi secúndum Lucam.\n\n*Luc 22:39-71; 23:1-53*\n\n\nIn illo témpore: Egréssus Jesus ibat se", - "id": "Evangelium" - }, - { - "body": "*Ps 101:2-3*\nDómine, exáudi oratiónem meam, et clamor meus ad te pervéniat: ne avértas fáciem tuam a me.", - "id": "Offertorium" - }, - { - "body": "Súscipe, quǽsumus, Dómine, munus oblátum, et dignánter operáre: ut, quod passiónis Fílii tui, Dómini nostri, mystério gé", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*Ps 101:13 et 14.*\nPotum meum cum fletu temperábam: quia élevans allisísti me: et ego sicut fænum árui: tu autem, Dómine", - "id": "Communio" - }, - { - "body": "Largíre sénsibus nostris, omnípotens Deus: ut, per temporálem Fílii tui mortem, quam mystéria veneránda testántur, vitam", - "id": "Postcommunio" - }, - { - "body": "*Oratio super populum*\nOrémus.\nHumiliáte cápita vestra Deo.\nRéspice, quǽsumus, Dómine, super hanc famíliam tuam, pro qua", - "id": "Super populum" - } - ], - "2020-04-09": [ - { - "body": "*Gal 6:14.*\nNos autem gloriári opórtet in Cruce Dómini nostri Jesu Christi: in quo est salus, vita et resurréctio nostra", - "id": "Introitus" - }, - { - "body": "Deus, a quo et Judas reatus sui poenam, et confessiónis suæ latro praemium sumpsit, concéde nobis tuæ propitiatiónis eff", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 11:20-32.*\nFratres: Conveniéntibus vobis in unum, jam non est", - "id": "Lectio" - }, - { - "body": "*Phil 2:8-9*\nChristus factus est pro nobis oboediens usque ad mortem, mortem autem crucis\n℣. Propter quod et Deus exaltá", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 13:1-15*\nAnte diem festum Paschae, sciens Jesus, quia venit hora e", - "id": "Evangelium" - }, - { - "body": "*Post homiliam proceditur, ad lotionem pedum. In medio presbyterii, vel in ipsa aula ecclesiæ, parata sint sedilia hinc ", - "id": "Maundi" - }, - { - "body": "*Ps 117:16 et 17.*\nDéxtera Dómini fecit virtútem, déxtera Dómini exaltávit me: non móriar, sed vivam, et narrábo ópera D", - "id": "Offertorium" - }, - { - "body": "Ipse tibi, quǽsumus, Dómine sancte, Pater omnípotens, ætérne Deus, sacrifícium nostrum reddat accéptum, qui discípulis s", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "Communicántes et diem sacratíssimum celebrántes, quo Dóminus noster Jesus Christus pro nobis est tráditus: sed et memóri", - "id": "Communicantes" - }, - { - "body": "*Joann 13:12, 13 et 15.*\nDóminus Jesus, postquam coenávit cum discípulis suis, lavit pedes eórum, et ait illis: Scitis, ", - "id": "Communio" - }, - { - "body": "Refécti vitálibus aliméntis, quǽsumus, Dómine, Deus noster: ut, quod témpore nostræ mortalitátis exséquimur, immortalitá", - "id": "Postcommunio" - }, - { - "body": "*Missa expleta, statim proceditur ad solemnem translationem et repositionem Sacramenti. Dum fit processio, cantatur hymn", - "id": "Post Missam" - }, - { - "body": "\n*Deinde celebrans et ministri, seu *\n*ministrantes, exeunt ante altare maius; facta *\n*eidem reverentia, stantes, incip", - "id": "Denudatione altaris" - } - ], - "2020-04-10": [ - { - "body": "\n\n\n\n\n\n\n\nDeus, qui peccati veteris hereditariam mortem, in qua posteritatis genus omne successerat, Christi tui, Domini n", - "id": "Lectiones" - }, - { - "body": "*Proceditur ad cantum vel lectionem historiae Passionis Domini secundum Ioannem.*\n\n\nS. Dominus sit in cordibus vestris e", - "id": "Passio" - }, - { - "body": "*Dicuntur autem hoc ordine: Praecedit celebrantis praefatio, qua intentio specialis indicatur, et cantatur tono peculiar", - "id": "Oratio Fidelium" - }, - { - "body": "\n*Orationibus solemnibus completis, celebrans et ministri redeunt ad sedilia, ubi celebrans deponit pluviale, ministri d", - "id": "Crucis Adoratione" - }, - { - "body": "*Cum ad altare maius pervenerint, illud ascendunt, diaconus sacram pyxidem super corporale, acolythi autem candelabra su", - "id": "CommunioQ" - } - ], - "2020-04-11": [ - { - "body": "*Hora competenti tobaleis cooperiuntur *\n*altaria, sed candelæ exstinctæ manent usque *\n*ad principium Missæ. Interim ex", - "id": "Benedictio ignis" - }, - { - "body": "*Unus ministrantium portat cereum paschalem ante celebrantem, qui facit super earn crux, litteram græcam Alpha, subtus v", - "id": "De benedictione cerei Paschalis" - }, - { - "body": "*Tum celebrans iterum ponit incensum *\n*in thuribulo; postea diaconus, depositis *\n*paramentis violaceis, et indutus sto", - "id": "De solemni processione" - }, - { - "body": "*Diaconus accipiens librum, petit benedictionem, dicens:*\n\nIube, domne, benedícere.\n\n*Et celebrans subiungit:*\n\nDóminus ", - "id": "De praeconio paschali" - }, - { - "body": "*Post præconium paschale, diaconus, *\n*depositis paramentis albis, assumit violacea, *\n*et vadit ad celebrantem.*\n*In fi", - "id": "De lectionibus" - }, - { - "body": "*His expletis, a duobus cantoribus, in medio chori genuflexis, cantantur Litaniæ Sanctorum.*\n\n\n\n℣. Kýrie eléison.\n℟. Kýr", - "id": "De prima parte Litaniarum" - }, - { - "body": "℣. Dóminus vobíscum. \n\r℟. Et cum spíritu tuo.\nOrémus.\nOmnípotens sempitérne Deus, adésto magnæ pietátis tuæ mystériis", - "id": "De benedictione aquae baptismalis" - }, - { - "body": "*Celebrans assumit stolam et pluviale albi coloris; deinde, imposito thure, et facta incensatione cerei, stans iuxta ill", - "id": "De renovatione promissionum baptismatis" - }, - { - "body": "*Renovatione promissionum Baptismatis peracta, cantores, seu ipse sacerdos, incipiunt alteram partem Litaniarum. Propiti", - "id": "De altera parte Litaniarum" - }, - { - "body": "*Celebratio solius Missæ Vigiliæ paschalis sine cæremoniis præcedentibus interdicitur.*\n\n*Sacra Communio fidelibus dari ", - "id": "De Missa solemni Vigiliae paschalis" - }, - { - "body": "℣. Dóminus vobíscum. \n\r℟. Et cum spíritu tuo.\nOrémus.\nDeus, qui hanc sacratíssimum noctem gloria domínicæ Resurrectió", - "id": "Oratio" - }, - { - "body": "Lectio Epistolæ beati Pauli apostoli ad Colossenses.\n*Col 3:1-4*\nFratres: si consurrexístis cum Christo, quæ sursum sunt", - "id": "Lectio" - }, - { - "body": "*Ps. 116*\n℣. Laudáte Dominum omnes gentes: et collaudáte eum, omnes pópuli.\n℣. Quóniam confirmáta est super nos misericó", - "id": "Tractus" - }, - { - "body": "*Ad Evangelium non portantur luminaria*\n\nSequéntia ☩ sancti Evangélii secúndum Matthǽum.\n℟. Glória tibi, Dómine.\n*Matt. ", - "id": "Evangelium" - }, - { - "body": "Suscipe, quǽsumus, Domine, preces populi tui, cum oblationibus hostiarum: ut paschalibus initiata mysteriis, ad æternita", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Post sumptionem Sacramenti, distributio Communionis, purificatio et ablutio fiunt more solito; deinde pro LAUDIBUS domi", - "id": "Pro Laudibus" - }, - { - "body": "℣. Dóminus vobíscum. \n\r℟. Et cum spíritu tuo.\nOrémus.\nSpíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos sacramé", - "id": "Postcommunio" - }, - { - "body": "℣. Ite, Missa est, allelúia, allelúia.\n℟. Deo grátias, allelúia, allelúia.", - "id": "Conclusio" - } - ], - "2020-04-12": [ - { - "body": "*Ps 138:18; 138:5-6.*\nResurréxi, et adhuc tecum sum, allelúja: posuísti super me manum tuam, allelúja: mirábilis facta e", - "id": "Introitus" - }, - { - "body": "Deus, qui hodiérna die per Unigénitum tuum æternitátis nobis áditum, devícta morte, reserásti: vota nostra, quæ prævenié", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios.\n*1 Cor 5:7-8*\nFratres: Expurgáte vetus ferméntum, ut sitis nova cons", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps. 117:24; 117:1*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Confitémini Dómino", - "id": "Graduale" - }, - { - "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 16:1-7.*\nIn illo témpore: María Magdaléne et María Jacóbi et Salóme ", - "id": "Evangelium" - }, - { - "body": "*Ps. 75:9-10.*\nTerra trémuit, et quiévit, dum resúrgeret in judício Deus, allelúja.", - "id": "Offertorium" - }, - { - "body": "Súscipe, quǽsumus, Dómine, preces pópuli tui cum oblatiónibus hostiárum: ut, Paschálibus initiáta mystériis, ad æternitá", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*1 Cor 5:7-8*\nPascha nostrum immolátus est Christus, allelúja: itaque epulémur in ázymis sinceritátis et veritátis, alle", - "id": "Communio" - }, - { - "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos sacraméntis paschálibus satiásti, tua fácias pietáte concordes.\n", - "id": "Postcommunio" - } - ], - "2020-04-13": [ - { - "body": "*Exod 13:5; 13:9*\nIntrodúxit vos Dóminus in terram fluéntem lac et mel, allelúja: et ut lex Dómini semper sit in ore ves", - "id": "Introitus" - }, - { - "body": "Deus, qui sollemnitáte pascháli, mundo remédia contulísti: pópulum tuum, quǽsumus, cœlésti dono proséquere; ut et perféc", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostólorum\n*Act. 10, 37-43.*\nIn diébus illis: Stans Petrus in médio plebis, dixit: Viri fratres, vos scit", - "id": "Lectio" - }, - { - "body": "*Ps 117:24; 117:2*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Dicat nunc Israël, quóniam bonus: quóni", - "id": "Graduale" - }, - { - "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc. 24:13-35*\nIn illo témpore: Duo ex discípulis Jesu ibant ipsa die in ca", - "id": "Evangelium" - }, - { - "body": "*Matt 28:2; 28:5-6*\nAngelus Dómini descéndit de cœlo, et dixit muliéribus: Quem quǽritis, surréxit, sicut dixit, allelúj", - "id": "Offertorium" - }, - { - "body": "Súscipe, quǽsumus, Dómine, preces pópuli tui cum oblatiónibus hostiárum: ut, paschálibus initiáta mystériis, ad æternitá", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Luc 24:34*\nSurréxit Dóminus, et appáruit Petro, allelúja.", - "id": "Communio" - }, - { - "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos sacraméntis paschálibus satiásti, tua fácias pietáte concórdes.\n", - "id": "Postcommunio" - } - ], - "2020-04-14": [ - { - "body": "*Eccli 15:3-4*\nAqua sapiéntiæ potávit eos, allelúja: firmábitur in illis et non flectétur, allelúja: et exaltábit eos in", - "id": "Introitus" - }, - { - "body": "Deus, qui Ecclésiam tuam novo semper fœtu multíplicas: concéde fámulis tuis; ut sacraméntum vivéndo téneant, quod fide p", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolórum\n*Acts 13:16; 13:26-33*\nIn diébus illis: Surgens Paulus et manu siléntium índicens, ait: Viri f", - "id": "Lectio" - }, - { - "body": "*Ps 117:24;106:2*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n*Ps 106:2*\n℣. Dicant nunc, qui redémpti sun", - "id": "Graduale" - }, - { - "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc. 24, 36-47*\nIn illo témpore: Stetit Jesus in médio discipulórum suórum ", - "id": "Evangelium" - }, - { - "body": "*Ps. 17:14; 17:16*\nIntónuit de cœlo Dóminus, et Altíssimus dedit vocem suam: et apparuérunt fontes aquárum, allelúja.", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, fidélium preces cum oblatiónibus hostiárum: ut, per hæc piæ devotiónis offícia, ad cœléstem glóriam tra", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Col 3:1-2*\nSi consurrexístis cum Christo, quæ sursum sunt quǽrite, ubi Christus est in déxtera Dei sedens, allelúja: qu", - "id": "Communio" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut paschális percéptio sacraménti, contínua in nostris méntibus persevéret.\nPer Domi", - "id": "Postcommunio" - } - ], - "2020-04-15": [ - { - "body": "*Matt 25:34*\nVeníte, benedícti Patris mei, percípite regnum, allelúja: quod vobis parátum est ab orígine mundi, allelúja", - "id": "Introitus" - }, - { - "body": "Deus, qui nos Resurrectiónis Domínicæ ánnua solemnitáte lætíficas: concéde propítius; ut per temporália festa, quæ ágimu", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolórum\n*Acts 3:13-15; 3:17-19*\nIn diébus illis: Apériens Petrus os suum, dixit: Viri Israëlítæ, et qu", - "id": "Lectio" - }, - { - "body": "*Ps 117:24; 117:16*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Déxtera Dómini fecit virtútem, déxtera", - "id": "Graduale" - }, - { - "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 21:1-14*\nIn illo témpore: Manifestávit se íterum Jesus discípulis", - "id": "Evangelium" - }, - { - "body": "*Ps 77:23-25*\nPortas cœli apéruit Dóminus: et pluit illis manna, ut éderent: panem cœli dedit eis: panem Angelórum mandu", - "id": "Offertorium" - }, - { - "body": "Sacrifícia, Dómine, paschálibus gáudiis immolámus: quibus Ecclésia tua mirabíliter et páscitur et nutrítur.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Rom 6:9*\nChristus resúrgens ex mórtuis jam non móritur, allelúja: mors illi ultra non dominábitur, allelúja, allelúja.", - "id": "Communio" - }, - { - "body": "Ab omni nos, quǽsumus, Dómine, vetustáte purgátos: sacraménti tui veneránda percéptio in novam tránsferat creatúram:\nQui", - "id": "Postcommunio" - } - ], - "2020-04-16": [ - { - "body": "*Sap 10:20-21*\nVictrícem manum tuam, Dómine, laudavérunt páriter, allelúja: quia sapiéntia apéruit os mutum, et linguas ", - "id": "Introitus" - }, - { - "body": "Deus, qui diversitátem géntium in confessióne tui nóminis adunásti: da, ut renátis fonte baptísmatis una sit fides ménti", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolorum\n*Act 8:26-40*\nIn diébus illis: Angelus Dómini locútus est ad Philíppum, dicens: Surge et vade ", - "id": "Lectio" - }, - { - "body": "*Ps 117:24; 117:22-23.*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Lápidem, quem reprobavérunt ædific", - "id": "Graduale" - }, - { - "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 20:11-18*\nIn illo témpore: María stabat ad monuméntum foris, plor", - "id": "Evangelium" - }, - { - "body": "*Exod 13:5*\nIn die solemnitátis vestræ, dicit Dóminus, indúcam vos in terram fluéntem lac et mel, allelúja.", - "id": "Offertorium" - }, - { - "body": "Súscipe, quǽsumus, Dómine, múnera populórum tuórum propítius: ut, confessióne tui nóminis et baptísmate renováti, sempit", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*1 Pet 2:9*\nPópulus acquisitiónis, annuntiáte virtútes ejus, allelúja: qui vos de ténebris vocávit in admirábile lumen s", - "id": "Communio" - }, - { - "body": "Exáudi, Dómine, preces nostras: ut redemptiónis nostræ sacrosáncta commércia, et vitæ nobis cónferant præséntis auxílium", - "id": "Postcommunio" - } - ], - "2020-04-17": [ - { - "body": "*Ps 77:53*\nEdúxit eos Dóminus in spe, allelúja: et inimícos eórum opéruit mare, allelúja, allelúja, allelúja.\n*Ps 77:1*\n", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui paschále sacraméntum in reconciliatiónis humánæ fœ́dere contulísti: da méntibus nostris;", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 3:18-22*\nCaríssimi: Christus semel pro peccátis nostris mórtuus est, justu", - "id": "Lectio" - }, - { - "body": "*Ps 117:24; 117:26-27*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea.\n℣. Benedíctus, qui venit in nómine Dóm", - "id": "Graduale" - }, - { - "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 28:16-20*\nIn illo témpore: Undecim discípuli abiérunt in Galilǽam, ", - "id": "Evangelium" - }, - { - "body": "*Exod 12:14*\nErit vobis hæc dies memoriális, allelúja: et diem festum celebrábitis solémnem Dómino in progénies vestras:", - "id": "Offertorium" - }, - { - "body": "Hóstias, quǽsumus, Dómine, placátus assúme: quas et pro renatórum expiatióne peccáti deférimus, et pro acceleratióne cœl", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Matt 28:18-19*\nData est mihi omnis potéstas in cœlo et in terra, allelúja: eúntes, docéte omnes gentes, baptizántes eos", - "id": "Communio" - }, - { - "body": "Réspice, quǽsumus, Dómine, pópulum tuum: et, quem ætérnis dignátus es renováre mystériis, a temporálibus culpis dignánte", - "id": "Postcommunio" - } - ], - "2020-04-18": [ - { - "body": "*Ps 104:43.*\nEdúxit Dóminus pópulum suum in exsultatióne, allelúja: et eléctos suos in lætítia, allelúja, allelúja.\n*Ps ", - "id": "Introitus" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui festa paschália venerándo égimus, per hæc contíngere ad gáudia ætérna mereám", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 2:1-10*\nCaríssimi: Deponéntes ígitur omnem malítiam, et omnem dolum, et simu", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 117:24*\nHæc dies, quam fecit Dóminus: exsultémus et lætémur in ea. Allelúja.\n*Ps 112:1*\nLaudáte,", - "id": "Graduale" - }, - { - "body": "Víctimæ pascháli laudes ímmolent Christiáni.\nAgnus rédemit oves: Christus ínnocens Patri reconciliávit peccatóres.\nMors ", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 20:1-9*\nIn illo témpore: Una sábbati, María Magdaléne venit mane", - "id": "Evangelium" - }, - { - "body": "*Ps 7:26-27*\nBenedíctus, qui venit in nómine Dómini: benedíximus vobis de domo Dómini: Deus Dóminus, et illúxit nobis, a", - "id": "Offertorium" - }, - { - "body": "Concéde, quǽsumus, Dómine, semper nos per hæc mystéria paschália gratulári: ut contínua nostræ reparatiónis operátio per", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Gal 3:27*\nOmnes, qui in Christo baptizáti estis, Christum induístis, allelúja.", - "id": "Communio" - }, - { - "body": "Redemptiónis nostræ múnere vegetáti, quǽsumus, Dómine: ut, hoc perpétuæ salútis auxílio, fides semper vera profíciat.\nPe", - "id": "Postcommunio" - } - ], - "2020-04-19": [ - { - "body": "*1 Pet 2:2*\nQuasi modo géniti infántes, allelúja: rationábiles, sine dolo lac concupíscite, allelúja, allelúja, allelúja", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui paschália festa perégimus, hæc, te largiénte, móribus et vita teneámus.\nPer D", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 Joannes 5:4-10*\nCaríssimi: Omne, quod natum est ex Deo, vincit mundum: et hæc ", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Matt 28:7*\nIn die resurrectiónis meæ, dicit Dóminus, præcédam vos in Galilǽam. Allelúja.\n*Joannes 2", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 20:19-31*\nIn illo témpore: Cum sero esset die illo, una sabbatóru", - "id": "Evangelium" - }, - { - "body": "*Matt 28:2; 28:5-6*\nAngelus Dómini descéndit de cœlo, et dixit muliéribus: Quem quǽritis, surréxit, sicut dixit, allelúj", - "id": "Offertorium" - }, - { - "body": "Súscipe múnera, Dómine, quǽsumus, exsultántis Ecclésiæ: et, cui causam tanti gáudii præstitísti, perpétuæ fructum concéd", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Joannes 20:27*\nMitte manum tuam, et cognósce loca clavórum, allelúja: et noli esse incrédulus, sed fidélis, allelúja, a", - "id": "Communio" - }, - { - "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti; et præsens nobi", - "id": "Postcommunio" - } - ], - "2020-04-20": [ - { - "body": "*1 Pet 2:2*\nQuasi modo géniti infántes, allelúja: rationábiles, sine dolo lac concupíscite, allelúja, allelúja, allelúja", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui paschália festa perégimus, hæc, te largiénte, móribus et vita teneámus.\nPer D", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 Joannes 5:4-10*\nCaríssimi: Omne, quod natum est ex Deo, vincit mundum: et hæc ", - "id": "Lectio" - }, - { - "body": "\n*Matt 28:7*\nIn die resurrectiónis meæ, dicit Dóminus, præcédam vos in Galilǽam. \n*Joannes 20:26*\nPost dies octo, jánuis", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 20:19-31*\nIn illo témpore: Cum sero esset die illo, una sabbatóru", - "id": "Evangelium" - }, - { - "body": "*Matt 28:2; 28:5-6*\nAngelus Dómini descéndit de cœlo, et dixit muliéribus: Quem quǽritis, surréxit, sicut dixit, allelúj", - "id": "Offertorium" - }, - { - "body": "Súscipe múnera, Dómine, quǽsumus, exsultántis Ecclésiæ: et, cui causam tanti gáudii præstitísti, perpétuæ fructum concéd", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Joannes 20:27*\nMitte manum tuam, et cognósce loca clavórum, allelúja: et noli esse incrédulus, sed fidélis, allelúja, a", - "id": "Communio" - }, - { - "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti; et præsens nobi", - "id": "Postcommunio" - } - ], - "2020-04-21": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Ansélmum minístrum tribuísti: præsta quǽsumus; ut, quem Doctórem vitæ habúimu", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Eccli 45:9*\nAmávit eum Dóminus, et ornávit eum: stolam glóriæ índuit eum.\n*Osee 14:6*\nJustus germin", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "*Pro Doctore pontifice*\nSancti Ansélmi Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera ", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "*Pro Doctore Pontifice.*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus Ansélmus Póntifex tuus et Doctor egrégius", - "id": "Postcommunio" - } - ], - "2020-04-22": [ - { - "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", - "id": "Introitus" - }, - { - "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum atque) Summum Pontíficem, perpétua protec", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja\n*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam\n*Ps 44:17-18.*\nConstítues eo", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", - "id": "Offertorium" - }, - { - "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", - "id": "Communio" - }, - { - "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", - "id": "Postcommunio" - } - ], - "2020-04-23": [ - { - "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", - "id": "Introitus" - }, - { - "body": "Tuam nobis indulgéntiam, quǽsumus, Dómine, beátus Adalbértus Epíscopus et Martyr implóret: ut et delícta nobis cleménter", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebræos.\n*Hebr 5:1-6*\nFratres: Omnis póntifex ex homínibus assúmptus, pro homíni", - "id": "Lectio" - }, - { - "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ. Alleluia.\n*Ps 109:4*\n℣. Tu es sacerdos i", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", - "id": "Evangelium" - }, - { - "body": "*Ps 20:4-5*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso: vitam pétiit a te, et tribuísti ei, allelúja.", - "id": "Offertorium" - }, - { - "body": "Sacrifícium exhíbitum, quǽsumus, Dómine, benígnus assúme: ut, quod nómini tuo in solemnitáte beáti Adalbérti Mártyris tu", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ, alleluia, alleluia.", - "id": "Communio" - }, - { - "body": "Refécti, Dómine, munéribus sacris, súpplices te deprecámur: ut indulgéntiam tuam nobis intercéssio beáti Adalbérti Márty", - "id": "Postcommunio" - } - ], - "2020-04-24": [ - { - "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus: et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Fidélem, seráphico spíritus ardóre succénsum, in veræ fídei propagatióne martýrii palma et gloriósis mi", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 10:10-14*\nJustum dedúxit Dóminus per vias rectas, et ostendit illi regnum Dei, et dedit illi", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:34-42*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte arbi", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", - "id": "Offertorium" - }, - { - "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Matt 16:24*\nQui vult veníre post me, ábneget semetípsum, et tollat crucem suam, et sequátur me.", - "id": "Communio" - }, - { - "body": "Da, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur offício; ita perpétuo ", - "id": "Postcommunio" - } - ], - "2020-04-25": [ - { - "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Marcum Evangelístam tuum evangélicæ prædicatiónis grátia sublimásti: tríbue, quǽsumus; ejus nos semper ", - "id": "Oratio" - }, - { - "body": "*Pro rogationibus*\nPræsta, quǽsumus, omnípotens Deus: ut, qui in afflictióne nostra de tua pietáte confídimus; contra ad", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Ezechiélis Prophétæ.\n*Ezech 1:10-14*\nSimilitúdo vultus quátuor animálium: fácies hóminis, et fácies leónis a dext", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. All", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et alios septuagínta duos:", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: et veritátem tuam in ecclésia sanctórum, allelúja, allelúja.", - "id": "Offertorium" - }, - { - "body": "Beáti Marci Evangelístæ tui sollemnitáte tibi múnera deferéntes, quǽsumus, Dómine: ut, sicut illum prædicátio evangélica", - "id": "Secreta" - }, - { - "body": "*Pro rogationibus*\nHæc múnera, quǽsumus, Dómine, et víncula nostræ pravitátis absólvant, et tuæ nobis misericórdiæ dona ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Ps 63:11*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde, allelúja, allelúja.", - "id": "Communio" - }, - { - "body": "Tríbuant nobis, quǽsumus, Dómine, contínuum tua sancta præsídium: quo, beáti Marci evangelístæ tui précibus, nos ab ómni", - "id": "Postcommunio" - }, - { - "body": "*Pro rogationibus*\nVota nostra, quǽsumus, Dómine, pio favóre proséquere: ut, dum dona tua in tribulatióne percípimus, de", - "id": "Commemoratio Postcommunio" - } - ], - "2020-04-26": [ - { - "body": "*Ps 32:5-6*\nMisericórdia Dómini plena est terra, allelúja: verbo Dómini cœli firmáti sunt, allelúja, allelúja.\n*Ps 32:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui in Fílii tui humilitáte jacéntem mundum erexísti: fidélibus tuis perpétuam concéde lætítiam; ut, quos perpétuæ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Petri 2:21-25*\nCaríssimi: Christus passus est pro nobis, vobis relínquens exémpl", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Luc 24:35*\nCognovérunt discípuli Dóminum Jesum in fractióne panis. Allelúja\n*Joannes 10:14*\nEgo sum", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", - "id": "Evangelium" - }, - { - "body": "*Ps 62:2; 62:5*\nDeus, Deus meus, ad te de luce vígilo: et in nómine tuo levábo manus meas, allelúja.", - "id": "Offertorium" - }, - { - "body": "Benedictiónem nobis, Dómine, cónferat salutárem sacra semper oblátio: ut, quod agit mystério, virtúte perfíciat.\nPer Dom", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Joannes 10:14*\nEgo sum pastor bonus, allelúja: et cognósco oves meas, et cognóscunt me meæ, allelúja, allelúja.", - "id": "Communio" - }, - { - "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut, vivificatiónis tuæ grátiam consequéntes, in tuo semper múnere gloriémur.\nPe", - "id": "Postcommunio" - } - ], - "2020-04-27": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui ad tuéndam cathólicam fidem beátum Petrum Confessórem tuum virtúte et doctrína roborásti: concéde propítius; u", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Eccli 45:9*\nAmávit eum Dóminus, et ornávit eum: stolam glóriæ índuit eum.\n*Osee 14:6.*\nJustus germi", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "Sancti Petri Confessóris tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et tuam", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Petrus Conféssor tuus et Doctor egrégius, quǽsumus, precátor accéd", - "id": "Postcommunio" - } - ], - "2020-04-28": [ - { - "body": "*Gal 2:19-20*\nChristo confíxus sum Cruci: vivo autem, jam non ego; vivit vero in me Christus: in fide vivo Fílii Dei, qu", - "id": "Introitus" - }, - { - "body": "Dómine Jesu Christe, qui, ad mystérium Crucis prædicándum, sanctum Paulum singulári caritáte donásti, et per eum novam i", - "id": "Oratio" - }, - { - "body": "*Pro S. Vitale Martyre*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti Vitális Mártyris tui natalítia cólimus, interce", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 1:17-25.*\nFratres: Non misit me Christus baptizáre, sed evange", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja\n*2 Cor 5:15*\nPro ómnibus mórtuus est Christus: ut, et qui vivunt, jam non sibi vivant, sed ei, qui pr", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et álios septuagínta duos: ", - "id": "Evangelium" - }, - { - "body": "*Ephes 5:2*\nAmbuláte in dilectióne, sicut et Christus diléxit nos, et trádidit semetípsum pro nobis oblatiónem et hóstia", - "id": "Offertorium" - }, - { - "body": "Cœléstem nobis, Dómine, prǽbeant mystéria hæc passiónis et mortis tuæ fervórem: quo sanctus Paulus, ea offeréndo, corpus", - "id": "Secreta" - }, - { - "body": "*Pro S. Vitale*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mystériis, et clemén", - "id": "Commemoratio Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*1 Pet 4:13*\nCommunicántes Christi passiónibus gaudéte, ut in revelatióne glóriæ ejus gaudeátis exsultántes. Allelúja.", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, divínum sacraméntum, imménsæ caritátis tuæ memoriále perpétuum: tríbue, quǽsumus; ut, sancti Pauli mé", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Vitale*\nDa, quǽsumus, Dómine Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur offício", - "id": "Commemoratio Postcommunio" - } - ], - "2020-04-29": [ - { - "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus: et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut beáti Petri Mártyris tui fidem cóngrua devotióne sectémur; qui, pro ejúsdem fídei ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum.\n*2 Tim 2:8-10; 3:10-12*\nCaríssime: Memor esto, Dóminum Jesum Christum", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:34-42*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte arbi", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", - "id": "Offertorium" - }, - { - "body": "Preces, quas tibi, Dómine, offérimus, intercedénte beáto Petro Mártyre tuo, cleménter inténde: et propugnatóres fídei su", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Matt 16:24*\nQui vult veníre post me, ábneget semetípsum, et tollat crucem suam, et sequátur me.", - "id": "Communio" - }, - { - "body": "Fidéles tuos, Dómine, custódiant sacraménta, quæ súmpsimus: et, intercedénte beáto Petro Mártyre tuo, contra omnes advér", - "id": "Postcommunio" - } - ], - "2020-04-30": [ - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Introitus" - }, - { - "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ N. Vírginis tuæ festivitáte gaudémus; ita piæ devotiónis erudiámu", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", - "id": "Lectio" - }, - { - "body": "Allelúia, allelúja\n*Ps 44:15-16*\nAdducéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia. Allelúja.\n*", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - } - ], - "2020-05-01": [ - { - "body": "*Sap. 10:17*\nSapiéntia réddidit justis mercédem labórum suórum, et dedúxit illos in via mirábili, et fuit illis in velam", - "id": "Introitus" - }, - { - "body": "Rerum cónditor Deus, qui legem labóris humáno géneri statuísti: concéde propítius; ut, sancti Joseph exémplo et patrocín", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses.\n*Col. 3:14-15, 17, 23-24*\nFratres: Caritátem habéte, quod est víncu", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\nDe quacúmque tribulatióne clamáverint ad me, exáudiam eos, et ero protéctor eórum semper. Allelúja.\n", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 13:54-58*\nIn illo témpore: Véniens Jesus in pátriam suam, docébat ", - "id": "Evangelium" - }, - { - "body": "*Ps 89:17*\nBónitas Dómini Dei nostri sit super nos, et opus mánuum nostrárum secúnda nobis, et opus mánuum nostrárum sec", - "id": "Offertorium" - }, - { - "body": "Quas tibi, Dómine, de opéribus mánuum nostrárum offérimus hóstias, sancti Joseph interpósito suffrágio, pignus fácias no", - "id": "Secreta" - }, - { - "body": "*de S. Joseph*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pat", - "id": "Prefatio" - }, - { - "body": "*Matt 13:54-55*\nUnde huic sapiéntia hæc et virtútes? Nonne hic est fabri fílius? Nonne mater ejus dícitur María? Allelúj", - "id": "Communio" - }, - { - "body": "Hæc sancta quæ súmpsimus, Dómine, per intercessiónem beáti Joseph; et operatiónem nostram cómpleant, et prǽmia confírmen", - "id": "Postcommunio" - } - ], - "2020-05-02": [ - { - "body": "*Eccli 15:5.*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ", - "id": "Introitus" - }, - { - "body": "Exáudi, quǽsumus, Dómine, preces nostras, quas in beáti Athanásii Confessóris tui atque Pontíficis solemnitáte deférimus", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*2 Cor 4:5-14.*\nFratres: Non nosmetípsos prædicámus, sed Jesum Chris", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 109:4*\nTu es sacérdos in ætérnum, secúndum órdinem Melchísedech. Allelúja\n*Jas 1:12*\nBeátus vir,", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 10:23-28*\nIn illo témpore: Dixit Jesus discípulis suis: Cum perseq", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", - "id": "Offertorium" - }, - { - "body": "Sancti Athanásii Confessóris tui atque Pontíficis, quǽsumus, Dómine, ánnua solémnitas pietáti tuæ nos reddat accéptos: u", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Matt 10:27*\nQuod dico vobis in ténebris, dícite in lúmine, dicit Dóminus: et quod in aure audítis, prædicáte super tect", - "id": "Communio" - }, - { - "body": "Deus, fidélium remunerátor animárum: præsta; ut beáti Athanásii Confessóris tui atque Pontíficis, cujus venerándam celeb", - "id": "Postcommunio" - } - ], - "2020-05-03": [ - { - "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Maríæ Vírginis: de cujus sollemnitáte gaudent Angeli", - "id": "Introitus" - }, - { - "body": "Omnípotens et miséricors Deus, qui ad defensiónem pópuli nostri, in beatíssima Vírgine María mirábile nobis auxílium con", - "id": "Oratio" - }, - { - "body": "Léctio libri Judith.\n*Judith 13:22; 13:23-25*\nBenedíxit te Dóminus in virtúte sua, quia per te ad níhilum redégit inimíc", - "id": "Lectio" - }, - { - "body": "Allelúia, allelúia.\n*Cant 6:3; 6:9*\n℣. Tota formósa et suávis es, fília Sion, pulchra ut luna, elécta ut sol, terríbilis", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 19:25-27*\nIn illo témpore: Stabant juxta crucem Jesu mater ejus, e", - "id": "Evangelium" - }, - { - "body": "*Jer 18:20*\nRecordáre, Virgo, Mater Dei, dum stéteris in conspéctu Dómini, ut loquáris pro nobis bona, et ut avértat ind", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, munus quod tibi offérimus, memóriam recoléntes piíssimæ Vírginis Maríæ, quæ consolátur nos in omni trib", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Regína mundi digníssima, María Virgo perpétua intercéde pro nostra pace et salúte, quæ genuísti Christum Dóminum, Salvat", - "id": "Communio" - }, - { - "body": "Deus, qui nobis beátam Vírginem Maríam singulárem Patrónam dedísti: concéde propítius; ut, sacris donis tuis satiáti, pr", - "id": "Postcommunio" - } - ], - "2020-05-04": [ - { - "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", - "id": "Introitus" - }, - { - "body": "Deus, qui nos beáti Floriáni Mártyris solemnitáte lætíficas: concéde propítius; ut, cuius gloriósum triúmphum venerámur ", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Monicæ Viduæ*\nDeus, mæréntium consolátor et in te sperántium salus, qui beátæ Mónicæ pias lácrimas in c", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 5:1-5*\nStabunt justi in magna constántia advérsus eos, qui se angustiavérunt et qui abstulér", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 15:1-7*\nIn illo témpore: Dixit Jesus discípulis suis: Ego sum vi", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: et veritátem tuam in ecclésia sanctórum, allelúja, allelúja.", - "id": "Offertorium" - }, - { - "body": "Hanc oblatiónis hóstiam, quǽsumus, omnípotens Deus, beáti Floriáni Mártyris tui digna comméndet orátio: qui sancto carit", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Monicæ Viduæ*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se m", - "id": "Commemoratio Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Ps 63:11.*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde, allelúja, allelúja.", - "id": "Communio" - }, - { - "body": "Sancta nos, quǽsumus, Dómine, sacraménti cæléstis participátio: et ab hóstium cállido tueátur incúrsu; et sancto Florián", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Monicæ Viduæ*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne no", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-05": [ - { - "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", - "id": "Introitus" - }, - { - "body": "Deus, qui, ad conteréndos Ecclésiæ tuæ hostes et ad divínum cultum reparándum, beátum Pium Pontíficem Máximum elígere di", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja\n*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam\n*Ps 44:17-18.*\nConstítues eo", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", - "id": "Offertorium" - }, - { - "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut et gregis tui profíciat úbique succéssus, et g", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", - "id": "Communio" - }, - { - "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", - "id": "Postcommunio" - } - ], - "2020-05-06": [ - { - "body": "*Ps 65:1-2.*\nJubiláte Deo, omnis terra, allelúja: psalmum dícite nómini ejus, allelúja: date glóriam laudi ejus, allelúj", - "id": "Introitus" - }, - { - "body": "Deus, qui errántibus, ut in viam possint redíre justítiæ, veritátis tuæ lumen osténdis: da cunctis, qui christiána profe", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 2:11-19*\nCaríssimi: Obsecro vos tamquam ádvenas et peregrínos abstinére vos ", - "id": "Lectio" - }, - { - "body": "\n*Ps 110:9*\nRedemptiónem misit Dóminus pópulo suo.\n*Luc 24:46*\nOportébat pati Christum, et resúrgere a mórtuis: et ita i", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:16-22*\nIn illo témpore: Dixit Jesus discípulis suis: Módicum, ", - "id": "Evangelium" - }, - { - "body": "*Ps 145:2*\nLauda, ánima mea, Dóminum: laudábo Dóminum in vita mea: psallam Deo meo, quámdiu ero, allelúja.", - "id": "Offertorium" - }, - { - "body": "His nobis, Dómine, mystériis conferátur, quo, terréna desidéria mitigántes, discámus amáre cœléstia.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Joannes 16:16*\nMódicum, et non vidébitis me, allelúja: íterum módicum, et vidébitis me, quia vado ad Patrem, allelúja, ", - "id": "Communio" - }, - { - "body": "Sacraménta quæ súmpsimus, quǽsumus, Dómine: et spirituálibus nos instáurent aliméntis, et corporálibus tueántur auxíliis", - "id": "Postcommunio" - } - ], - "2020-05-07": [ - { - "body": "*Ps 65:1-2.*\nJubiláte Deo, omnis terra, allelúja: psalmum dícite nómini ejus, allelúja: date glóriam laudi ejus, allelúj", - "id": "Introitus" - }, - { - "body": "Deus, qui errántibus, ut in viam possint redíre justítiæ, veritátis tuæ lumen osténdis: da cunctis, qui christiána profe", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 2:11-19*\nCaríssimi: Obsecro vos tamquam ádvenas et peregrínos abstinére vos ", - "id": "Lectio" - }, - { - "body": "\n*Ps 110:9*\nRedemptiónem misit Dóminus pópulo suo.\n*Luc 24:46*\nOportébat pati Christum, et resúrgere a mórtuis: et ita i", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:16-22*\nIn illo témpore: Dixit Jesus discípulis suis: Módicum, ", - "id": "Evangelium" - }, - { - "body": "*Ps 145:2*\nLauda, ánima mea, Dóminum: laudábo Dóminum in vita mea: psallam Deo meo, quámdiu ero, allelúja.", - "id": "Offertorium" - }, - { - "body": "His nobis, Dómine, mystériis conferátur, quo, terréna desidéria mitigántes, discámus amáre cœléstia.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Joannes 16:16*\nMódicum, et non vidébitis me, allelúja: íterum módicum, et vidébitis me, quia vado ad Patrem, allelúja, ", - "id": "Communio" - }, - { - "body": "Sacraménta quæ súmpsimus, quǽsumus, Dómine: et spirituálibus nos instáurent aliméntis, et corporálibus tueántur auxíliis", - "id": "Postcommunio" - } - ], - "2020-05-08": [ - { - "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", - "id": "Introitus" - }, - { - "body": "Deus, pro cuius honóre gloriósus Póntifex Stanisláus gládiis impiórum occúbuit: præsta, quǽsumus; ut omnes, qui eius imp", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebræos.\n*Hebr 5:1-6*\nFratres: Omnis póntifex ex homínibus assúmptus, pro homíni", - "id": "Lectio" - }, - { - "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ. Alleluia.\n*Ps 109:4*\n℣. Tu es sacerdos i", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", - "id": "Evangelium" - }, - { - "body": "*Ps 20:4-5*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso: vitam pétiit a te, et tribuísti ei, allelúja.", - "id": "Offertorium" - }, - { - "body": "Múnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto Stanisláo Mártyre tuo atque Pontífice, per éadem nos plac", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ, alleluia, alleluia.", - "id": "Communio" - }, - { - "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto Stanisláo Mártyre tuo atque Pontífice, cæléstis reméd", - "id": "Postcommunio" - } - ], - "2020-05-09": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Gregórium minístrum tribuísti: præsta, quǽsumus; ut quem Doctórem vitæ habúim", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 39:6-14*\nJustus cor suum tradet ad vigilándum dilúculo ad Dóminum, qui fecit illum, et in ", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Eccli 45:9*\nAmávit eum Dóminus, et ornávit eum: stolam glóriæ índuit eum.\n*Osee 14:6*\nJustus germin", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "*Pro Doctore Pontifice*\nSancti N. Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostr", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "*Pro Doctore Pontifice*\nUt nobis, Dómine, tua sacrifícia dent salútem: beátus N. Póntifex tuus et Doctor egrégius, quǽsu", - "id": "Postcommunio" - } - ], - "2020-05-10": [ - { - "body": "*Ps 97:1; 97:2*\nCantáte Dómino cánticum novum, allelúja: quia mirabília fecit Dóminus, allelúja: ante conspéctum géntium", - "id": "Introitus" - }, - { - "body": "Deus, qui fidélium mentes uníus éfficis voluntátis: da pópulis tuis id amáre quod prǽcipis, id desideráre quod promíttis", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jas 1:17-21*\nCaríssimi: Omne datum óptimum, et omne donum perféctum desúrsum est,", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 117:16.*\nDéxtera Dómini fecit virtútem: déxtera Dómini exaltávit me. Allelúja.\n*Rom 6:9*\nChristu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:5-14*\nIn illo témpore: Dixit Jesus discípulis suis: Vado ad eu", - "id": "Evangelium" - }, - { - "body": "*Ps 65:1-2; 85:16*\nJubiláte Deo, univérsa terra, psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", - "id": "Offertorium" - }, - { - "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes effecísti: præsta, quǽsumus;", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Joann 16:8*\nCum vénerit Paráclitus Spíritus veritátis, ille árguet mundum de peccáto et de justítia et de judício, alle", - "id": "Communio" - }, - { - "body": "Adésto nobis, Dómine, Deus noster: ut per hæc, quæ fidéliter súmpsimus, et purgémur a vítiis et a perículis ómnibus eruá", - "id": "Postcommunio" - } - ], - "2020-05-11": [ - { - "body": "*Neh 9:27*\nClamavérunt ad te, Dómine, in témpore afflictiónis suæ, et tu de cœlo exaudísti eos, allelúja, allelúja.\n*Ps ", - "id": "Introitus" - }, - { - "body": "Deus, qui nos ánnua Apostolórum tuórum Philíppi et Jacóbi sollemnitáte lætíficas: præsta, quǽsumus: ut, quorum gaudémus ", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 5:1-5.*\nStabunt justi in magna constántia advérsus eos, qui se angustiavérunt et qui abstulé", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: etenim veritátem tuam in ecclésia sanctórum. All", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 14:1-13*\nIn illo témpore: Dixit Jesus discípulis suis: Non turbát", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: et veritátem tuam in ecclésia sanctórum, allelúja, allelúja.", - "id": "Offertorium" - }, - { - "body": "Múnera, Dómine, quæ pro Apostolórum tuórum Philippi et Jacóbi sollemnitáte deférimus, propítius súscipe: et mala ómnia, ", - "id": "Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Joannes 14:9; 14:10*\nTanto témpore vobíscum sum, et non cognovístis me? Philíppe, qui videt me, videt et Patrem meum, a", - "id": "Communio" - }, - { - "body": "Quǽsumus, Dómine, salutáribus repléti mystériis: ut, quorum sollémnia celebrámus, eórum oratiónibus adjuvémur.\nPer Domin", - "id": "Postcommunio" - } - ], - "2020-05-12": [ - { - "body": "*Ps 32:18; 32:19; 32:20*\nEcce, óculi Dómini super timéntes eum, sperántes in misericórdia ejus, allelúja: ut erípiat a m", - "id": "Introitus" - }, - { - "body": "Semper nos, Dómine, Mártyrum tuórum Nérei, Achíllei, Domitíllæ atque Pancrátii fóveat, quǽsumus, beáta solémnitas: et tu", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 5:1-5.*\nStabunt justi in magna constántia advérsus eos, qui se angustiavérunt et qui abstulé", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n℣. Hæc est vera fratérnitas, quæ vicit mundi crímina: Christum secúta est, ínclita tenens regna cœlé", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 4:46-53*\nIn illo témpore: Erat quidam régulus, cujus fílius infi", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: et veritátem tuam in ecclésia sanctórum, allelúja, allelúja.", - "id": "Offertorium" - }, - { - "body": "Sanctórum Martyrum tuórum, quǽsumus. Dómine, Nérei, Achíllei, Domitíllæ atque Pancrátii sit tibi grata conféssio: quæ et", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Ps 32:1*\nGaudéte, justi, in Dómino, allelúja: rectos decet collaudátio, allelúja.", - "id": "Communio" - }, - { - "body": "Quǽsumus, Dómine: ut beatórum Mártyrum tuórum Nérei, Achíllei, Domitíllæ atque Pancrátii deprecatiónibus, sacraménta san", - "id": "Postcommunio" - } - ], - "2020-05-13": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui ad errórum insídias repelléndas et apostólicæ Sedis jura propugnánda, beátum Robértum Pontíficem tuum atque Do", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 7:7-14*\nOptávi, et datus est mihi sensus: et invocávi, et venit in me spíritus sapiéntiæ: et", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n℣. Qui docti fúerint fulgébunt quasi splendor firmaménti. Allelúja.\n℣. Qui ad justítiam erúdiunt mul", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 72:28*\nMihi autem adhærére Deo bonum est, pónere in Dómino Deo spem meam: ut annúntiem omnes prædicatiónes tuas in p", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, in odórem suavitátis offérimus: et præsta; ut, beáti Robérti mónitis et exémplis edócti, per sémit", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Matt 5:14; 5:16*\nVos estis lux mundi: sic lúceat lux vestra coram homínibus, ut vídeant ópera vestra bona, et glorífice", - "id": "Communio" - }, - { - "body": "Sacraménta, quæ súmpsimus, Dómine Deus noster, in nobis fóveant caritátis ardórem: quo beátus Robértus veheménter accéns", - "id": "Postcommunio" - } - ], - "2020-05-14": [ - { - "body": "*Ps 97:1; 97:2*\nCantáte Dómino cánticum novum, allelúja: quia mirabília fecit Dóminus, allelúja: ante conspéctum géntium", - "id": "Introitus" - }, - { - "body": "Deus, qui fidélium mentes uníus éfficis voluntátis: da pópulis tuis id amáre quod prǽcipis, id desideráre quod promíttis", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Bonifacii Martyris*\nDa, quǽsumus, omnípotens Deus: ut, qui beáti Bonifátii Mártyris tui sollémnia cólim", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jas 1:17-21*\nCaríssimi: Omne datum óptimum, et omne donum perféctum desúrsum est,", - "id": "Lectio" - }, - { - "body": "\n*Ps 117:16.*\nDéxtera Dómini fecit virtútem: déxtera Dómini exaltávit me. \n*Rom 6:9*\nChristus resúrgens ex mórtuis jam n", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 16:5-14*\nIn illo témpore: Dixit Jesus discípulis suis: Vado ad eu", - "id": "Evangelium" - }, - { - "body": "*Ps 65:1-2; 85:16*\nJubiláte Deo, univérsa terra, psalmum dícite nómini ejus: veníte et audíte, et narrábo vobis, omnes q", - "id": "Offertorium" - }, - { - "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes effecísti: præsta, quǽsumus;", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Bonifacii Martyris*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda", - "id": "Commemoratio Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Joann 16:8*\nCum vénerit Paráclitus Spíritus veritátis, ille árguet mundum de peccáto et de justítia et de judício, alle", - "id": "Communio" - }, - { - "body": "Adésto nobis, Dómine, Deus noster: ut per hæc, quæ fidéliter súmpsimus, et purgémur a vítiis et a perículis ómnibus eruá", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Bonifacii Martyris*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exsé", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-15": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus, allelúja,", - "id": "Introitus" - }, - { - "body": "Deus, qui, ad christiánam páuperum eruditiónem et ad juvéntam in via veritátis firmándam, sanctum Joánnem Baptístam Conf", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11*\nBeátus vir, qui inventus est sine mácula, et qui post aurum non ábiit, nec speráv", - "id": "Lectio" - }, - { - "body": "Alleluia, alleluia\n*Jas 1:12.*\nBeátus vir, qui suffert tentatiónem: quóniam, cum probátus fúerit, accípiet corónam vitæ.", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-5*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes:", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVeritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus, allelúja.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque cælésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", - "id": "Postcommunio" - } - ], - "2020-05-16": [ - { - "body": "*Ps 63:3*\nProtexísti me, Deus, a convéntu malignántium, allelúja: a multitúdine operántium iniquitátem, allelúja, allelú", - "id": "Introitus" - }, - { - "body": "Deus, qui in confessióne veræ fídei beátum Andréam, multíplici suppliciórum génere excruciátum, illústri martýrio coroná", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timotheum\n*2 Tim 2:8-10; 3:10-12.*\nCaríssime: Memor esto, Dóminum Jesum Christum", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 15:1-7*\nIn illo témpore: Dixit Jesus discípulis suis: Ego sum vi", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6*\nConfitebúntur cœli mirabília tua, Dómine: et veritátem tuam in ecclésia sanctórum, allelúja, allelúja.", - "id": "Offertorium" - }, - { - "body": "Offérimus tibi, Dómine, hóstiam immaculátam unigéniti Fílii tui, eníxe deprecántes, ut, quæ pro salúte nostra humíliter ", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Ps 63:11.*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde, allelúja, allelúja.", - "id": "Communio" - }, - { - "body": "Deam, hæc sancta, Dómine, in honórem beáti Andréæ Mártyris tui de altári libávimus: concéde propítius; ut, cuius exémpli", - "id": "Postcommunio" - } - ], - "2020-05-17": [ - { - "body": "*Isa 48:20*\nVocem jucunditátis annuntiáte, et audiátur, allelúja: annuntiáte usque ad extrémum terræ: liberávit Dóminus ", - "id": "Introitus" - }, - { - "body": "Deus, a quo bona cuncta procédunt, largíre supplícibus tuis: ut cogitémus, te inspiránte, quæ recta sunt; et, te guberná", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jas 1:22-27*\nCaríssimi: Estóte factóres verbi, et non auditóres tantum: falléntes", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n℣. Surréxit Christus, et illúxit nobis, quos rédemit sánguine suo. Allelúja.\n*Joannes 16:28*\nExívi a", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 16:23-30*\nIn illo témpore: Dixit Jesus discípulis suis: Amen, amen,", - "id": "Evangelium" - }, - { - "body": "*Ps 65:8-9; 65:20*\nBenedícite, gentes, Dóminum, Deum nostrum, et obaudíte vocem laudis ejus: qui pósuit ánimam meam ad v", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, fidélium preces cum oblatiónibus hostiárum: ut, per hæc piæ devotiónis offícia, ad cœléstem glóriam tra", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Ps 95:2*\nCantáte Dómino, allelúja: cantáte Dómino et benedícite nomen ejus: bene nuntiáte de die in diem salutáre ejus,", - "id": "Communio" - }, - { - "body": "Tríbue nobis, Dómine, cæléstis mensæ virtúte satiátis: et desideráre, quæ recta sunt, et desideráta percípere.\nPer Domin", - "id": "Postcommunio" - } - ], - "2020-05-18": [ - { - "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus: et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", - "id": "Introitus" - }, - { - "body": "Deus, qui hunc diem beáti Venántii Mártyris tui triúmpho consecrásti: exáudi preces pópuli tui et præsta: ut, qui ejus m", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 10:10-14*\nJustum dedúxit Dóminus per vias rectas, et ostendit illi regnum Dei, et dedit illi", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 88:6.*\nConfitebúntur cœli mirabília tua, Dómine: étenim veritátem tuam in ecclésia sanctórum. Al", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:34-42*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte arbi", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", - "id": "Offertorium" - }, - { - "body": "Hanc oblatiónem, omnípotens Deus, beáti Venántii mérita tibi reddant accéptam: ut, ipsíus subsidiis adjuti, glóriæ ejus ", - "id": "Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Matt 16:24*\nQui vult veníre post me, ábneget semetípsum, et tollat crucem suam, et sequátur me.", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, ætérnæ vitæ sacraménta, te humiliter deprecántes: ut, beáto Venántio Mártyre tuo pro nobis deprecánte", - "id": "Postcommunio" - } - ], - "2020-05-19": [ - { - "body": "*Joannes 21:15; 21:16; 21:17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas. Allelúja, allelúja\n*Ps 29:2", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Petrum Cœlestínum ad summi pontificátus ápicem sublimásti, quique illum humilitáti postpónere docuísti:", - "id": "Oratio" - }, - { - "body": "*Pro S. Pudentiana Virgine.*\nExáudi nos, Deus, salutáris noster: ut, sicut de beátæ Pudentiánæ Vírginis tuæ festivitáte ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Matt 16:18*\n℣. Tu es Petrus, et super hanc petram ædificábo Ecclésiam meam.\n*Ps 44:17; 44:18*\nConst", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", - "id": "Offertorium" - }, - { - "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut et gregis tui profíciat úbique succéssus, et g", - "id": "Secreta" - }, - { - "body": "*Pro S. Pudentiana Virgine.*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se mér", - "id": "Commemoratio Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam. Allelúja.", - "id": "Communio" - }, - { - "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Pudentiana Virgine.*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-20": [ - { - "body": "*Is 48:20*\nVocem jucunditátis annuntiáte, et audiátur, allelúja: annuntiáte usque ad extrémum terræ: liberávit Dóminus p", - "id": "Introitus" - }, - { - "body": "Deus, a quo bona cuncta procédunt, largíre supplícibus tuis: ut cogitémus, te inspiránte, quæ recta sunt; et, te guberná", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Bernardini Senensis Confessoris*\nDómine Jesu, qui beáto Bernardíno Confessóri tuo exímium sancti nómini", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Eph 4:7-13*\nFratres: Unicuíque nostrum data est grátia secúndum mensú", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n℣. Surréxit Christus, et illúxit nobis, quos rédemit sánguine suo. Allelúja.\n*Joannes 16:28*\n℣. Exív", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 17:1-11*\nIn illo témpore: Sublevátis Jesus óculis in cœlum, dixi", - "id": "Evangelium" - }, - { - "body": "*Ps 65:8-9; 65:20*\nBenedícite, gentes, Dóminum, Deum nostrum, et obaudíte vocem laudis ejus: qui pósuit ánimam meam ad v", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, fidélium preces cum oblatiónibus hostiárum: ut, per hæc piæ devotiónis offícia, ad cœléstem glóriam tra", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Bernardini Senensis Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctó", - "id": "Commemoratio Secreta" - }, - { - "body": "*Paschalis*\nVere dignum et justum est, æquum et salutáre: Te quidem, Dómine, omni témpore, sed in hoc potíssimum (sed te", - "id": "Prefatio" - }, - { - "body": "*Ps 95:2.*\nCantáte Dómino, allelúja: cantáte Dómino et benedícite nomen ejus: bene nuntiáte de die in diem salutáre ejus", - "id": "Communio" - }, - { - "body": "Tríbue nobis, Dómine, cœléstis mensæ virtúte satiátis: et desideráre, quæ recta sunt, et desideráta percípere.\nPer Domin", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Bernardini Senensis Confessoris*\nRefécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-21": [ - { - "body": "*Acta 1:11*\nViri Galilǽi, quid admirámini aspiciéntes in cœlum? allelúja: quemádmodum vidístis eum ascendéntem in cœlum,", - "id": "Introitus" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui hodiérna die Unigénitum tuum, Redemptórem nostrum, ad cœlos ascendísse crédi", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostólorum\n*Act 1:1-11*\nPrimum quidem sermónem feci de ómnibus, o Theóphile, quæ cœpit Jesus facere et do", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ. Allelúja.\n*Ps 67:18-19*\n℣. Dóminus ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 16:14-20*\nIn illo témpore: Recumbéntibus úndecim discípulis, appárui", - "id": "Evangelium" - }, - { - "body": "*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, múnera, quæ pro Fílii tui gloriósa Ascensióne deférimus: et concéde propítius; ut a præséntibus perícul", - "id": "Secreta" - }, - { - "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Ps 67:33-34*\nPsállite Dómino, qui ascéndit super cœlos cœlórum ad Oriéntem, allelúja.", - "id": "Communio" - }, - { - "body": "Præsta nobis, quǽsumus, omnípotens et miséricors Deus: ut, quæ visibílibus mystériis suménda percépimus, invisíbili cons", - "id": "Postcommunio" - } - ], - "2020-05-22": [ - { - "body": "*Acta 1:11*\nViri Galilǽi, quid admirámini aspiciéntes in cœlum? allelúja: quemádmodum vidístis eum ascendéntem in cœlum,", - "id": "Introitus" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui hodiérna die Unigénitum tuum, Redemptórem nostrum, ad cœlos ascendísse crédi", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostólorum\n*Act 1:1-11*\nPrimum quidem sermónem feci de ómnibus, o Theóphile, quæ cœpit Jesus facere et do", - "id": "Lectio" - }, - { - "body": "\n*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ. \n*Ps 67:18-19*\n℣. Dóminus in Sina in sancto, ascéndens", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 16:14-20*\nIn illo témpore: Recumbéntibus úndecim discípulis, appárui", - "id": "Evangelium" - }, - { - "body": "*Ps 46:6*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, múnera, quæ pro Fílii tui gloriósa Ascensióne deférimus: et concéde propítius; ut a præséntibus perícul", - "id": "Secreta" - }, - { - "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Ps 67:33-34*\nPsállite Dómino, qui ascéndit super cœlos cœlórum ad Oriéntem, allelúja.", - "id": "Communio" - }, - { - "body": "Præsta nobis, quǽsumus, omnípotens et miséricors Deus: ut, quæ visibílibus mystériis suménda percépimus, invisíbili cons", - "id": "Postcommunio" - } - ], - "2020-05-23": [ - { - "body": "*Sedulius*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum, allelúja, allelúja", - "id": "Introitus" - }, - { - "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sir 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, et i", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja\n*Num 17:8*\nVirga Jesse flóruit: Virgo Deum et hóminem génuit: pacem Deus réddidit, in se reconcílians", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 19:25-27*\nIn illo témpore: Stabant juxta Crucem Jesu Mater ejus, ", - "id": "Evangelium" - }, - { - "body": "Beáta es, Virgo María, quæ ómnium portásti Creatórem: genuísti qui te fecit, et in ætérnum pérmanes Virgo, allelúja.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - } - ], - "2020-05-24": [ - { - "body": "*Ps 26:7; 26:8; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te, allelúja: tibi dixit cor meum, quæsívi vultum tuum,", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus: fac nos tibi semper et devótam gérere voluntátem; et majestáti tuæ sincéro corde servíre.\nPe", - "id": "Oratio" - }, - { - "body": "*Commemoratio Beatæ Mariæ Virginis Confessoris Auxiliatrix*\nOmnípotens et miséricors Deus, qui ad defensiónem pópuli chr", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 4:7-11*\nCaríssimi: Estóte prudéntes et vigiláte in oratiónibus. Ante ómnia a", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 46:9*\n℣. Regnávit Dóminus super omnes gentes: Deus sedet super sedem sanctam suam. Allelúja.\n*Jo", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 15:26-27; 16:1-4*\nIn illo témpore: Dixit Jesus discípulis suis: C", - "id": "Evangelium" - }, - { - "body": "*Ps 46:6.*\nAscéndit Deus in jubilatióne, et Dóminus in voce tubæ, allelúja.", - "id": "Offertorium" - }, - { - "body": "Sacrifícia nos, Dómine, immaculáta puríficent: et méntibus nostris supérnæ grátiæ dent vigórem.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Commemoratio Beatæ Mariæ Virginis Confessoris Auxiliatrix*\nPro religiónis christiánæ triúmpho hóstias placatiónis tibi,", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Joannes 17:12-13; 17:15*\nPater, cum essem cum eis, ego servábam eos, quos dedísti mihi, allelúja: nunc autem ad te véni", - "id": "Communio" - }, - { - "body": "Repléti, Dómine, munéribus sacris: da, quǽsumus; ut in gratiárum semper actióne maneámus.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Beatæ Mariæ Virginis Confessoris Auxiliatrix*\nAdésto, Dómine, pópulis, qui participatióne Córporis et Sáng", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-25": [ - { - "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", - "id": "Introitus" - }, - { - "body": "Deus, in te sperántium fortitúdo, qui beátum Gregórium Confessórem tuum atque Pontíficem, pro tuénda Ecclésiæ libertáte,", - "id": "Oratio" - }, - { - "body": "*Pro S. Urbano*\nDeus, qui Ecclésiam tuam, in apostólicæ petræ soliditáte fundátam, ab infernárum éruis terróre portárum:", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja\n*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam\n*Ps 44:17-18.*\nConstítues eo", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", - "id": "Offertorium" - }, - { - "body": "Sancti tui, quǽsumus, Dómine, nos ubique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Pro S. Urbano*\nMúnera, quæ tibi, Dómine, lætántes offérimus, súscipe benígnus, et præsta: ut, intercedénte beáto Urbáno", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Gregório Confessóre", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Urbano*\nMultíplica, quǽsumus, Dómine, in Ecclesia tua spíritum grátiæ, quem dedísti: ut beáti Urbáni Martyris tu", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-26": [ - { - "body": "*Rom 5:5*\nCáritas Dei diffúsa est in córdibus nostris per inhabitántem Spíritum ejus in nobis. (Allelúja, allelúja.)\n*Ps", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Philíppum Confessórem tuum Sanctórum tuórum glória sublimásti: concéde propítius; ut, cujus sollemnitát", - "id": "Oratio" - }, - { - "body": "*Pro S. Eleutherio*\nInfirmitátem nostram réspice, omnípotens Deus: et, quia pondus própriæ actiónis gravat, beáti N. Már", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 7:7-14*\nOptávi, et datus est mihi sensus: et invocávi, et venit in me spíritus sapiéntiæ: et", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Lam 1:13*\nDe excélso misit ignem in óssibus meis, et erudívit me. Allelúja\n*Ps 38:4*\nConcáluit cor ", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 118:32*\nViam mandatórum tuórum cucúrri, cum dilatásti cor meum. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, inténde placatus: et præsta; ut illo nos igne Spíritus Sanctus inflámmet, quo", - "id": "Secreta" - }, - { - "body": "*Pro S. Eleutherio*\nHóstias tibi, Dómine, beáti N. Mártyris tui atque Pontíficis dicátas méritis, benígnus assúme: et ad", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Ps 83:3*\nCor meum et caro mea exsultavérunt in Deum vivum. (Allelúja.)", - "id": "Communio" - }, - { - "body": "Cœléstibus, Dómine, pasti delíciis: quǽsumus; ut beáti Philippi Confessóris tui méritis et imitatióne, semper eadem, per", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Eleutherio*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, in", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-27": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui Ecclésiam tuam beáti Bedæ Confessóris tui atque Doctóris eruditióne claríficas: concéde propítius fámulis tuis", - "id": "Oratio" - }, - { - "body": "*Pro S. Joanne*\nDeus, qui nos beáti N. Mártyris tui atque Pontíficis ánnua sollemnitáte lætíficas: concéde propítius; ut", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Eccli 45:9*\nAmávit eum Dóminus, et ornávit eum: stolam glóriæ índuit eum.\n*Osee 14:6.*\nJustus germi", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "Sancti Bedæ Confessóris tui atque Doctoris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et tuam ", - "id": "Secreta" - }, - { - "body": "*Pro S. Joanne*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto N. Mártyre tuo atque Pontífice, per éadem", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Beda Conféssor tuus et egrégius, quǽsumus, precátor accédat.\nPer D", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Joanne*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto N. Mártyre tuo atque Pontífice, coelé", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-28": [ - { - "body": "*Ps 131:9-10*\nSacerdótes tui, Dómine, induant justítiam, et sancti tui exsúltent: propter David servum tuum, non avértas", - "id": "Introitus" - }, - { - "body": "Deus, qui Anglórum gentes, prædicatióne et miráculis beáti Augustíni Confessóris tui atque Pontíficis, veræ fídei luce i", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses.\n*1 Thess 2:2-9*\nFratres: Fidúciam habúimus in Deo nostro loqui", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja\n*Ps 109:4*\nJurávit Dóminus, et non pœnitébit eum: Tu es sacérdos in ætérnum, secúndum órdinem Melchís", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et alios septuagínta duos:", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "Sacrifícium tibi offérimus. Dómine, in sollemnitáte beáti Augustíni Pontíficis et Confessóris tui, humíliter deprecántes", - "id": "Secreta" - }, - { - "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", - "id": "Communio" - }, - { - "body": "Hóstia salutári refécti: te, Dómine, súpplices exorámus; ut eadem, beáti Augustíni interveniénte suffrágio, in omni loco", - "id": "Postcommunio" - } - ], - "2020-05-29": [ - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Introitus" - }, - { - "body": "Deus, virginitátis amátor. qui beátam Maríam Magdalénam Vírginem, tuo amóre succénsam, cœléstibus donis decorásti: da; u", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", - "id": "Lectio" - }, - { - "body": "Allelúia, allelúja\n*Ps 44:15-16*\nAdducéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia. Allelúja.\n*", - "id": "GradualeP" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*de Ascensione Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - } - ], - "2020-05-30": [ - { - "body": "*Ezek 36:23; 36:24; 36:25-26*\nCum sanctificátus fúero in vobis, congregábo vos de univérsis terris: et effúndam super vo", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut claritatis tuæ super nos splendor effúlgeat; et lux tuæ lucis corda eórum, qui per", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolorum.\n*Acts 19:1-8*\nIn diébus illis: Factum est, cum Apóllo esset Corínthi, ut Paulus, peragrátis s", - "id": "Lectio" - }, - { - "body": "Allelúja\n*Ps 106:1*\n℣. Confitémini Dómino, quóniam bonus: quóniam in sǽculum misericordia ejus.\n*Ps 116:1-2*\nLaudáte Dóm", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 14:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Si dilíg", - "id": "Evangelium" - }, - { - "body": "*Ps 103:30-31*\nEmítte Spíritum tuum, et creabúntur, et renovábis fáciem terræ: sit glória Dómini in sǽcula, allelúja.", - "id": "Offertorium" - }, - { - "body": "Múnera, quǽsumus, Dómine, obláta sanctífica: et corda nostra Sancti Spíritus illustratióne emúnda.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", - "id": "Prefatio" - }, - { - "body": "*Joannes 7:37-39*\nUltimo festivitátis die dicébat Jesus: Qui in me credit, flúmina de ventre ejus fluent aquæ vivæ: hoc ", - "id": "Communio" - }, - { - "body": "Sancti Spíritus, Dómine, corda nostra mundet infúsio: et sui roris íntima aspersióne fecúndet.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-05-31": [ - { - "body": "*Sap 1:7.*\nSpíritus Dómini replévit orbem terrárum, allelúja: et hoc quod cóntinet ómnia, sciéntiam habet vocis, allelúj", - "id": "Introitus" - }, - { - "body": "Deus, qui hodiérna die corda fidélium Sancti Spíritus illustratióne docuísti: da nobis in eódem Spíritu recta sápere; et", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolórum\n*Acts 2:1-11*\nCum compleréntur dies Pentecóstes, erant omnes discípuli pariter in eódem loco: ", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 103:30*\nEmítte Spíritum tuum, et creabúntur, et renovábis fáciem terræ. Allelúja. (Hic genuflect", - "id": "Graduale" - }, - { - "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 14:23-31*\nIn illo témpore: Dixit Jesus discípulis suis: Si quis d", - "id": "Evangelium" - }, - { - "body": "*Ps 67:29-30*\nConfírma hoc, Deus, quod operátus es in nobis: a templo tuo, quod est in Jerúsalem, tibi ófferent reges mú", - "id": "Offertorium" - }, - { - "body": "Múnera, quǽsumus, Dómine, obláta sanctífica: et corda nostra Sancti Spíritus illustratióne emúnda.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", - "id": "Prefatio" - }, - { - "body": "*Act 2:2; 2:4*\nFactus est repénte de cœlo sonus, tamquam adveniéntis spíritus veheméntis, ubi erant sedéntes, allelúja: ", - "id": "Communio" - }, - { - "body": "Sancti Spíritus, Dómine, corda nostra mundet infúsio: et sui roris íntima aspersióne fecúndet.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-06-01": [ - { - "body": "*Ps 80:17*\nCibávit eos ex ádipe fruménti, allelúja: et de petra, melle saturávit eos, allelúja, allelúja.\n*Ps 80:2*\nExsu", - "id": "Introitus" - }, - { - "body": "Deus, qui Apóstolis tuis Sanctum dedísti Spíritum: concéde plebi tuæ piæ petitiónis efféctum; ut, quibus dedísti fidem, ", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolórum\n*Acts 10:34; 10:42-48*\nIn diébus illis: Apériens Petrus os suum, dixit: Viri fratres, nobis pr", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Acts 2:4*\nLoquebántur váriis linguis Apóstoli magnália Dei. Allelúja. (Hic genuflectitur)\n℣. Veni, ", - "id": "Graduale" - }, - { - "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 3:16-21*\nIn illo témpore: Dixit Jesus Nicodémo: Sic Deus diléxit ", - "id": "Evangelium" - }, - { - "body": "*Ps 17:14 et 16*\nIntónuit de cœlo Dóminus, et Altíssimus dedit vocem suam: et apparuérunt fontes aquárum, allelúja.", - "id": "Offertorium" - }, - { - "body": "Propítius, Dómine, quǽsumus, hæc dona sanctífica: et, hóstiæ spiritális oblatióne suscépta, nosmetípsos tibi pérfice mun", - "id": "Secreta" - }, - { - "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", - "id": "Prefatio" - }, - { - "body": "*Joannes 14:26*\nSpíritus Sanctus docébit vos, allelúja: quæcúmque díxero vobis, allelúja, allelúja.", - "id": "Communio" - }, - { - "body": "Adésto, quǽsumus, Dómine, pópulo tuo: et, quem mystériis cœléstibus imbuísti, ab hóstium furóre defénde.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-06-02": [ - { - "body": "*Esdr 2:36 2:37*\nAccípite jucunditátem glóriæ vestræ, allelúja: grátias agéntes Deo, allelúja: qui vos ad cœléstia regna", - "id": "Introitus" - }, - { - "body": "Adsit nobis, quǽsumus, Dómine, virtus Spíritus Sancti: quæ et corda nostra cleménter expúrget, et ab ómnibus tueátur adv", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolórum\n*Acts 8:14-17*\nIn diébus illis: Cum audíssent Apóstoli, qui erant Jerosólymis, quod recepísset", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 14:26*\nSpíritus Sanctus docébit vos, quæcúmque díxero vobis. Allelúja. (Hic genuflectitur)\n℣. Ve", - "id": "Graduale" - }, - { - "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 10:1-10*\nIn illo témpore: Dixit Jesus pharisǽis: Amen, amen, dico", - "id": "Evangelium" - }, - { - "body": "*Ps 77:23-25*\nPortas cœli aperuit Dóminus: et pluit illis manna, ut éderent: panem cœli dedit eis, panem Angelórum mandu", - "id": "Offertorium" - }, - { - "body": "Puríficet nos, quǽsumus. Dómine, múneris præséntis oblátio: et dignos sacra participatióne effíciat.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", - "id": "Prefatio" - }, - { - "body": "*Joannes 15:26; 16:14*\nSpíritus qui a Patre procédit, allelúja: ille me clarificábit, allelúja, allelúja.", - "id": "Communio" - }, - { - "body": "Mentes nostras, quǽsumus, Dómine, Spíritus Sanctus divínis réparet sacraméntis: quia ipse est remíssio ómnium peccatórum", - "id": "Postcommunio" - } - ], - "2020-06-03": [ - { - "body": "*Ps 67:8 67:9*\nDeus, dum egrederéris coram pópulo tuo, iter fáciens eis, hábitans in illis, allelúja: terra mota est, cœ", - "id": "Introitus" - }, - { - "body": "Mentes nostras, quǽsumus, Dómine, Paráclitus, qui a te procédit, illúminet: et indúcat in omnem, sicut tuus promísit Fíl", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolórum\n*Act 2:14-21.*\nIn diébus illis: Stans Petrus cum úndecim, levávit vocem suam, et locútus est e", - "id": "LectioL1" - }, - { - "body": "Alleluia.\n*Ps 32:6*\nVerbo Dómini cœli firmáti sunt, et Spíritu oris ejus omnis virtus eórum.\n\n##Gloria\nGlória in excélsi", - "id": "GradualeL1" - }, - { - "body": "Præsta, quǽsumus, omnípotens et miséricors Deus: ut Spíritus Sanctus advéniens, templum nos glóriæ suæ dignánter inhabit", - "id": "OratioL1" - }, - { - "body": "Léctio Actuum Apostolórum\n*Acts 5:12-16*\nIn diébus illis: Per manus autem Apostolórum fiébant signa et prodígia multa in", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n℣. (Hic genuflectitur) Veni, Sancte Spíritus, reple tuórum corda fidélium: et tui amóris in eis igne", - "id": "Graduale" - }, - { - "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 6:44-52*\nIn illo témpore: Dixit Jesus turbis Judæórum: Nemo potes", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47-48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi, allelúja.", - "id": "Offertorium" - }, - { - "body": "Accipe, quǽsumus, Dómine, munus oblátum: et dignánter operáre; ut, quod mystériis ágimus, piis efféctibus celebrámus.\nPe", - "id": "Secreta" - }, - { - "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", - "id": "Prefatio" - }, - { - "body": "*Joannes 14:27*\nPacem relínquo vobis, allelúja: pacem meam do vobis, allelúja, allelúja.", - "id": "Communio" - }, - { - "body": "Suméntes, Dómine, cœléstia sacraménta, quǽsumus cleméntiam tuam: ut quod temporáliter gérimus ætérnis gáudiis consequámu", - "id": "Postcommunio" - } - ], - "2020-06-04": [ - { - "body": "*Sap 1:7*\nSpíritus Dómini replévit orbem terrárum, allelúja: et hoc quod cóntinet ómnia, sciéntiam habet vocis, allelúja", - "id": "Introitus" - }, - { - "body": "Deus, qui hodiérna die corda fidélium Sancti Spíritus illustratióne docuísti: da nobis in eódem Spíritu recta sápere; et", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolórum\n*Acts 8:5-8*\nIn diébus illis: Philíppus descéndens in civitátem Samaríæ, prædicábat illis Chri", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 103:30*\n℣. Emítte Spíritum tuum, et creabúntur, et renovábis fáciem terræ. Allelúja. (Hic genuf", - "id": "Graduale" - }, - { - "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 9:1-6*\nIn illo témpore: Convocátis Jesus duódecim Apóstolis, dedit illi", - "id": "Evangelium" - }, - { - "body": "*Ps 67:29-30*\nConfírma hoc, Deus, quod operátus es in nobis: a templo tuo, quod est in Jerúsalem, tibi ófferent reges mú", - "id": "Offertorium" - }, - { - "body": "Múnera, quǽsumus, Dómine, oblata sanctífica: et corda nostra Sancti Spíritus illustratióne emúnda.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", - "id": "Prefatio" - }, - { - "body": "*Acts 2:2 2:4*\nFactus est repénte de cœlo sonus tamquam adveniéntis spíritus veheméntis, ubi erant sedéntes, allelúja: e", - "id": "Communio" - }, - { - "body": "Sancti Spíritus, Dómine, corda nostra mundet infúsio: et sui roris íntima aspersióne fecúndet.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-06-05": [ - { - "body": "*Ps 70:8 70:23*\nRepleátur os meum laude tua, allelúja: ut possim cantáre, allelúja: gaudébunt lábia mea, dum cantávero t", - "id": "Introitus" - }, - { - "body": "Da, quǽsumus, Ecclésiæ tuæ, miséricors Deus: ut, Sancto Spíritu congregáta, hostíli nullátenus incursióne turbétur.\nPer ", - "id": "Oratio" - }, - { - "body": "Léctio Joélis Prophétæ\n*Joël 2:23-24; 2:26-27*\nHæc dicit Dóminus Deus: Exsultáte, fílii Sion, et lætámini in Dómino, Deo", - "id": "Lectio" - }, - { - "body": "Allelúja, allelúja.\n*Ps 12:1*\nO quam bonus et suávis est, Dómine, Spíritus tuus in nobis! Allelúja. (Hic genuflectitur)\n", - "id": "Graduale" - }, - { - "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 5:17-26*\nIn illo témpore: Factum est in una diérum, et Jesus sedébat do", - "id": "Evangelium" - }, - { - "body": "*Sap 145:2*\nLauda, ánima mea, Dóminum: laudábo Dóminum in vita mea: psallam Deo meo, quámdiu ero, allelúja.", - "id": "Offertorium" - }, - { - "body": "Sacrifícia, Dómine, tuis obláta conspéctibus, ignis ille divínus absúmat, qui discipulórum Christi, Fílii tui, per Spíri", - "id": "Secreta" - }, - { - "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", - "id": "Prefatio" - }, - { - "body": "*Joannes 14:18*\nNon vos relínquam órphanos: véniam ad vos íterum, allelúja: et gaudébit cor vestrum, allelúja.", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, sacri dona mystérii: humíliter deprecántes; ut, quæ in tui commemoratiónem nos fácere præcepísti, in ", - "id": "Postcommunio" - } - ], - "2020-06-06": [ - { - "body": "*Rom 5:5.*\nCáritas Dei diffúsa est in córdibus nostris, allelúja: per inhabitántem Spíritum ejus in nobis, allelúja, all", - "id": "Introitus" - }, - { - "body": "Méntibus nostris, quǽsumus, Dómine, Spíritum Sanctum benígnus infúnde: cujus et sapiéntia cónditi sumus, et providéntia ", - "id": "Oratio" - }, - { - "body": "Léctio Joélis Prophétæ\n*Joel 2:28-32*\nHæc dicit Dóminus Deus: Effúndam Spíritum meum super omnem carnem: et prophetábunt", - "id": "LectioL1" - }, - { - "body": "Allelúja.\n*Joannes 6:64*\nSpíritus est, qui vivíficat: caro autem non prodest quidquam.", - "id": "GradualeL1" - }, - { - "body": "Illo nos igne, quǽsumus, Dómine, Spíritus Sanctus inflámmet: quem Dóminus noster Jesus Christus misit in terram, et vólu", - "id": "OratioL1" - }, - { - "body": "Léctio libri Levítici\n*Lev 23:9-11; 23:15-17; 23:21*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: Lóquere fíl", - "id": "LectioL2" - }, - { - "body": "Allelúja.\n*Job 26:13*\nSpíritus ejus ornávit cœlos.", - "id": "GradualeL2" - }, - { - "body": "Deus, qui, ad animárum medélam, jejúnii devotióne castigári córpora præcepísti: concéde nobis propítius; et mente et cór", - "id": "OratioL2" - }, - { - "body": "Léctio libri Deuteronómii\n*Deut 26:1-3; 7-11.*\nIn diébus illis: Dixit Moyses fíliis Israël: Audi, Israël, quæ ego præcíp", - "id": "LectioL3" - }, - { - "body": "Allelúja.\n*Acts 2:1*\nCum compleréntur dies Pentecóstes, erant omnes páriter sedéntes.", - "id": "GradualeL3" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, salutáribus jejúniis erudíti, ab ómnibus étiam vítiis abstinéntes, propitiatiónem", - "id": "OratioL3" - }, - { - "body": "Léctio libri Levítici\n*Lev 26:3-12*\nIn diébus illis: Dixit Dóminus ad Móysen: Lóquere fíliis Israël, et dices ad eos: Si", - "id": "LectioL4" - }, - { - "body": "Allelúja.\n℣. (Hic genuflectitur) Veni, Sancte Spíritus, reple tuórum corda fidélium: et tui amóris in eis ignem accénde.", - "id": "GradualeL4" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: sic nos ab épulis carnálibus abstinére; ut a vítiis irruéntibus páriter jejunémus.\nPe", - "id": "OratioL4" - }, - { - "body": "Léctio Daniélis Prophétæ\n*Dan 3:47-51*\nIn diébus illis: Angelus Dómini descéndit cum Azaría et sóciis ejus in fornácem: ", - "id": "LectioL5" - }, - { - "body": "Allelúja.\n*Dan 3:52*\nBenedíctus es, Dómine, Deus patrum nostrórum, et laudábilis in sǽcula.", - "id": "GradualeL5" - }, - { - "body": "Deus, qui tribus púeris mitigásti flammas ígnium: concéde propítius; ut nos fámulos tuos non exúrat flamma vitiórum.\nPer", - "id": "OratioL5" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 5:1-5.*\nFratres: Justificáti ex fide, pacem habeámus ad Deum per Dó", - "id": "Lectio" - }, - { - "body": "*Ps 116:1-2*\nLaudáte Dóminum, omnes gentes: et collaudáte eum, omnes pópuli.\n℣. Quóniam confirmáta est super nos miseric", - "id": "Graduale" - }, - { - "body": "Veni, Sancte Spíritus,\net emítte cǽlitus\nlucis tuæ rádium.\n\nVeni, pater páuperum;\nveni, dator múnerum;\nveni, lumen córdi", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 4:38-44*\nIn illo témpore: Surgens Jesus de synagóga, introívit in domum", - "id": "Evangelium" - }, - { - "body": "*Ps 87:2-3.*\nDómine, Deus salútis meæ, in die clamávi et nocte coram te: intret orátio mea in conspéctu tuo, Dómine, all", - "id": "Offertorium" - }, - { - "body": "Ut accépta tibi sint, Dómine, nostra jejúnia: præsta nobis, quǽsumus; hujus múnere sacraménti purificátum tibi pectus of", - "id": "Secreta" - }, - { - "body": "*de Spiritu Sancto*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte", - "id": "Prefatio" - }, - { - "body": "*Joannes 3:8*\nSpíritus, ubi vult, spirat: et vocem ejus audis, allelúja, allelúja: sed nescis, unde véniat aut quo vadat", - "id": "Communio" - }, - { - "body": "Prǽbeant nobis, Dómine, divínum tua sancta fervórem: quo eórum páriter et actu delectémur et fructu.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-06-07": [ - { - "body": "*Tob 12:6*\nBenedícta sit sancta Trínitas atque indivísa Unitas: confitébimur ei, quia fecit nobíscum misericórdiam suam.", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui dedísti fámulis tuis in confessióne veræ fídei, ætérnæ Trinitátis glóriam agnóscere, et ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 11:33-36.*\nO altitúdo divitiárum sapiéntiæ et sciéntiæ Dei: quam in", - "id": "Lectio" - }, - { - "body": "*Dan 3:55-56*\nBenedíctus es, Dómine, qui intuéris abýssos, et sedes super Chérubim,\n℣. Benedíctus es, Dómine, in firmamé", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 28:18-20*\nIn illo témpore: Dixit Jesus discípulis suis: Data est mi", - "id": "Evangelium" - }, - { - "body": "*Tob 12:6.*\nBenedíctus sit Deus Pater, unigenitúsque Dei Fílius, Sanctus quoque Spíritus: quia fecit nobíscum misericórd", - "id": "Offertorium" - }, - { - "body": "Sanctífica, quǽsumus, Dómine, Deus noster, per tui sancti nóminis invocatiónem, hujus oblatiónis hóstiam: et per eam nos", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Tob 12:6*\nBenedícimus Deum cœli et coram ómnibus vivéntibus confitébimur ei: quia fecit nobíscum misericórdiam suam.", - "id": "Communio" - }, - { - "body": "Profíciat nobis ad salútem córporis et ánimæ, Dómine, Deus noster, hujus sacraménti suscéptio: et sempitérnæ sanctæ Trin", - "id": "Postcommunio" - } - ], - "2020-06-08": [ - { - "body": "*Ps 12:6*\nDómine, in tua misericórdia sperávi: exsultávit cor meum in salutári tuo: cantábo Dómino, qui bona tríbuit mih", - "id": "Introitus" - }, - { - "body": "Deus, in te sperántium fortitúdo, adésto propítius invocatiónibus nostris: et, quia sine te nihil potest mortális infírm", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Joánni Apóstoli\n*1 Joannnes 4:8-21*\nCaríssimi: Deus cáritas est. In hoc appáruit cáritas Dei in no", - "id": "Lectio" - }, - { - "body": "*Ps 40:5; 40:2*\nEgo dixi: Dómine, miserére mei: sana ánimam meam, quia peccávi tibi.\n℣. Beátus, qui intéllegit super egé", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 6:36-42*\nIn illo témpore: Dixit Jesus discípulis suis: Estóte misericór", - "id": "Evangelium" - }, - { - "body": "*Ps 5:3-4.*\nInténde voci orationis meæ, Rex meus et Deus meus: quóniam ad te orábo, Dómine.", - "id": "Offertorium" - }, - { - "body": "Hóstias nostras, quǽsumus, Dómine, tibi dicátas placátus assúme: et ad perpétuum nobis tríbue proveníre subsídium.\nPer D", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 9:2-3*\nNarrábo ómnia mirabília tua: lætábor et exsultábo in te: psallam nómini tuo, Altíssime.", - "id": "Communio" - }, - { - "body": "Tantis, Dómine, repléti munéribus: præsta, quǽsumus; ut et salutária dona capiámus, et a tua numquam laude cessémus.\nPer", - "id": "Postcommunio" - } - ], - "2020-06-09": [ - { - "body": "*Ps 12:6*\nDómine, in tua misericórdia sperávi: exsultávit cor meum in salutári tuo: cantábo Dómino, qui bona tríbuit mih", - "id": "Introitus" - }, - { - "body": "Deus, in te sperántium fortitúdo, adésto propítius invocatiónibus nostris: et, quia sine te nihil potest mortális infírm", - "id": "Oratio" - }, - { - "body": "*Commemoratio Ss. Primi et Feliciani Martyrum*\nFac nos, quǽsumus. Dómine, sanctórum Martyrum tuórum Primi et Feliciáni s", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Joánni Apóstoli\n*1 Joannnes 4:8-21*\nCaríssimi: Deus cáritas est. In hoc appáruit cáritas Dei in no", - "id": "Lectio" - }, - { - "body": "*Ps 40:5; 40:2*\nEgo dixi: Dómine, miserére mei: sana ánimam meam, quia peccávi tibi.\n℣. Beátus, qui intéllegit super egé", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 6:36-42*\nIn illo témpore: Dixit Jesus discípulis suis: Estóte misericór", - "id": "Evangelium" - }, - { - "body": "*Ps 5:3-4.*\nInténde voci orationis meæ, Rex meus et Deus meus: quóniam ad te orábo, Dómine.", - "id": "Offertorium" - }, - { - "body": "Hóstias nostras, quǽsumus, Dómine, tibi dicátas placátus assúme: et ad perpétuum nobis tríbue proveníre subsídium.\nPer D", - "id": "Secreta" - }, - { - "body": "*Commemoratio Ss. Primi et Feliciani Martyrum*\nFiat tibi, quǽsumus, Dómine, hóstia sacránda placábilis, pretiósi celebri", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 9:2-3*\nNarrábo ómnia mirabília tua: lætábor et exsultábo in te: psallam nómini tuo, Altíssime.", - "id": "Communio" - }, - { - "body": "Tantis, Dómine, repléti munéribus: præsta, quǽsumus; ut et salutária dona capiámus, et a tua numquam laude cessémus.\nPer", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Ss. Primi et Feliciani Martyrum*\nQuǽsumus, omnípotens Deus: ut sanctórum Mártyrum tuórum Primi et Felicián", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-10": [ - { - "body": "*Osee 2:14*\nDucam eum in solitúdinem: et loquar ad cor eius.\n*Ps 110:1*\n℣. Beáti immaculáti in via, qui ámbulant in lege", - "id": "Introitus" - }, - { - "body": "Exáudi, quǽsumus, Dómine, pópulum tuum tota mente tibi subiéctum: et beáti Bogumili Confessóris tui atque Pontíficis sup", - "id": "Oratio" - }, - { - "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", - "id": "Evangelium" - }, - { - "body": "*Ps 140:2*\nDirigátur, Dómine, orátio mea, sicut incénsum in conspéctu tuo.", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, preces et múnera: quæ, ut tuo sint digna conspéctu, sancti Confessóris tui atque Pontíficis Bogumili pr", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28-29*\nAmen dico vobis, quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam ætérna", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus, ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Bogumilo, Confessór", - "id": "Postcommunio" - } - ], - "2020-06-11": [ - { - "body": "*Ps 80:17.*\nCibávit eos ex ádipe fruménti, allelúja: et de petra, melle saturávit eos, allelúja, allelúja, allelúja.\n*Ps", - "id": "Introitus" - }, - { - "body": "Deus, qui nobis sub Sacraménto mirábili passiónis tuæ memóriam reliquísti: tríbue, quǽsumus, ita nos Córporis et Sánguin", - "id": "Oratio" - }, - { - "body": "Léctio Epistolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 11:23-29*\nFratres: Ego enim accépi a Dómino quod et trádidi vo", - "id": "Lectio" - }, - { - "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno,\n℣. Aperis tu manum tuam: ", - "id": "Graduale" - }, - { - "body": "*Thomæ de Aquino. (infra octavam ad libitum Celebrantis omitti potest, juxta Rubricas.)*\nLauda, Sion, Salvatórem,\nlauda ", - "id": "Sequentia" - }, - { - "body": "Sequéntia sancti Evangéli secúndum Joánnem.\n*Joann 6:56-59*\nIn illo témpore: Dixit Jesus turbis Judæórum: Caro mea vere ", - "id": "Evangelium" - }, - { - "body": "*Levit 21:6*\nSacerdótes Dómini incénsum et panes ófferunt Deo: et ideo sancti erunt Deo suo, et non pólluent nomen ejus,", - "id": "Offertorium" - }, - { - "body": "Ecclésiæ tuæ, quǽsumus, Dómine, unitátis et pacis propítius dona concéde: quæ sub oblátis munéribus mýstice designántur.", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*1 Cor 11:26-27*\nQuotiescúmque manducábitis panem hunc et cálicem bibétis, mortem Dómini annuntiábitis, donec véniat: it", - "id": "Communio" - }, - { - "body": "Fac nos, quǽsumus, Dómine, divinitátis tuæ sempitérna fruitióne repléri: quam pretiósi Corporis et Sanguinis tui tempora", - "id": "Postcommunio" - } - ], - "2020-06-12": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, auctor pacis et amátor caritátis, qui beátum Joánnem Confessórem tuum mirífica dissidéntes componéndi grátia decor", - "id": "Oratio" - }, - { - "body": "*Pro SS. Martyribus*\nSanctórum Mártyrum tuórum Basílidis, Cyríni, Nabóris atque Nazárii, quǽsumus, Dómine, natalítia nob", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Pro SS. Martyribus*\nPro sanctórum tuórum Basílidis, Cyríni, Nabóris atque Nazárii sánguine venerándo, hóstias tibi. Dóm", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", - "id": "Postcommunio" - }, - { - "body": "*Pro SS. Martyribus*\nSemper, Dómine, sanctórum Martyrum tuórum Basílidis, Cyríni, Nabóris atque Nazárii sollémnia celebr", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-13": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Ecclésiam tuam, Deus, beáti Antónii Confessóris tui sollémnitas votiva lætíficet: ut spirituálibus semper muniátur auxíl", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "Præsens oblátio fiat, Dómine, pópulo tuo salutáris: pro quo dignátus es Patri tuo te vivéntem hóstiam immoláre:\nQui cum ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Divínis, Dómine, munéribus satiáti: quǽsumus; ut, beáti Antónii Confessóris tui méritis et intercessióne, salutáris sacr", - "id": "Postcommunio" - } - ], - "2020-06-14": [ - { - "body": "*Ps 17:19-20*\nFactus est Dóminus protéctor meus, et edúxit me in latitúdinem: salvum me fecit, quóniam vóluit me.\n*Ps 17", - "id": "Introitus" - }, - { - "body": "Sancti nóminis tui, Dómine, timórem páriter et amórem fac nos habére perpétuum: quia numquam tua gubernatióne destítuis,", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 John 3:13-18*\nCaríssimi: Nolíte mirári, si odit vos mundus. Nos scimus, quónia", - "id": "Lectio" - }, - { - "body": "*Ps 119:1-2*\nAd Dóminum, cum tribulárer, clamávi, et exaudívit me.\n℣. Dómine, libera ánimam meam a lábiis iníquis, et a ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 14:16-24*\nIn illo témpore: Dixit Jesus pharisǽis parábolam hanc: Homo q", - "id": "Evangelium" - }, - { - "body": "*Ps 6:5*\nDómine, convértere, et éripe ánimam meam: salvum me fac propter misericórdiam tuam.", - "id": "Offertorium" - }, - { - "body": "Oblátio nos, Dómine, tuo nómini dicánda puríficet: et de die in diem ad cœléstis vitæ tránsferat actiónem.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 12:6*\nCantábo Dómino, qui bona tríbuit mihi: et psallam nómini Dómini altíssimi.", - "id": "Communio" - }, - { - "body": "Sumptis munéribus sacris, quǽsumus, Dómine: ut cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum", - "id": "Postcommunio" - } - ], - "2020-06-15": [ - { - "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui beátam Jolántam ab honóribus divitiísque misericórditer abstraxísti, et húmilem Fílii tu", - "id": "Oratio" - }, - { - "body": "*Commemoratio Ss. Viti, Modesti atque Crescentiæ Martyrum*\nDa Ecclésiæ tuæ, quǽsumus, Dómine, sanctis Martýribus tuis Vi", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Commemoratio Ss. Viti, Modesti atque Crescentiæ Martyrum*\nSicut glóriam divínæ poténtiæ múnera pro Sanctis obláta testá", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Ss. Viti, Modesti atque Crescentiæ Martyrum*\nRepléti, Dómine, benedictióne sollémni: quǽsumus; ut, per int", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-16": [ - { - "body": "*Ps 17:19-20*\nFactus est Dóminus protéctor meus, et edúxit me in latitúdinem: salvum me fecit, quóniam vóluit me.\n*Ps 17", - "id": "Introitus" - }, - { - "body": "Sancti nóminis tui, Dómine, timórem páriter et amórem fac nos habére perpétuum: quia numquam tua gubernatióne destítuis,", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Joánnis Apóstoli\n*1 John 3:13-18*\nCaríssimi: Nolíte mirári, si odit vos mundus. Nos scimus, quónia", - "id": "Lectio" - }, - { - "body": "*Ps 119:1-2*\nAd Dóminum, cum tribulárer, clamávi, et exaudívit me.\n℣. Dómine, libera ánimam meam a lábiis iníquis, et a ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 14:16-24*\nIn illo témpore: Dixit Jesus pharisǽis parábolam hanc: Homo q", - "id": "Evangelium" - }, - { - "body": "*Ps 6:5*\nDómine, convértere, et éripe ánimam meam: salvum me fac propter misericórdiam tuam.", - "id": "Offertorium" - }, - { - "body": "Oblátio nos, Dómine, tuo nómini dicánda puríficet: et de die in diem ad cœléstis vitæ tránsferat actiónem.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 12:6*\nCantábo Dómino, qui bona tríbuit mihi: et psallam nómini Dómini altíssimi.", - "id": "Communio" - }, - { - "body": "Sumptis munéribus sacris, quǽsumus, Dómine: ut cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum", - "id": "Postcommunio" - } - ], - "2020-06-17": [ - { - "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Gregórium Confessórem tuum atque Pontíficem pastoráli sollicitúdine, et páuperum miseratióne claréscere", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", - "id": "Offertorium" - }, - { - "body": "Sancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto N. Confessóre tuo a", - "id": "Postcommunio" - } - ], - "2020-06-18": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui Ecclésiam tuam beáti Ephræm Confessóris tui et Doctoris mira eruditióne et præcláris vitæ méritis illustráre v", - "id": "Oratio" - }, - { - "body": "*SS. Marci et Marcelliani Martyrum*\nPræsta, quǽsumus, omnípotens Deus: ut, qui sanctórum Mártyrum tuórum Marci et Marcel", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "Sancti Ephræm Confessóris tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et tua", - "id": "Secreta" - }, - { - "body": "*Pro SS. Marco et Marcelliano Martyribus*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedéntibus sanctis Martýribus", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Ephræm Conféssor tuus et Doctor egrégius, quǽsumus, precátor accéd", - "id": "Postcommunio" - }, - { - "body": "*Pro SS. Marco et Marcelliano Martyribus*\nSalutáris tui, Dómine, múnere satiáti, súpplices exorámus: ut, cujus lætámur g", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-19": [ - { - "body": "*Ps 32:11; 32:19*\nCogitatiónes Cordis ejus in generatióne et generatiónem: ut éruat a morte ánimas eórum et alat eos in ", - "id": "Introitus" - }, - { - "body": "Deus, qui nobis in Corde Fílii tui, nostris vulneráto peccátis, infinítos dilectiónis thesáuros misericórditer largíri d", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Eph 3:8-12, 14-19*\nFratres: Mihi, ómnium sanctórum mínimo, data est g", - "id": "Lectio" - }, - { - "body": "*Ps 24:8-9*\nDulcis et rectus Dóminus: propter hoc legem dabit delinquéntibus in via.\n℣. Díriget mansúetos in judício, do", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joannes 19:31-37*\nIn illo témpore: Judǽi - quóniam Parascéve erat, - ut ", - "id": "Evangelium" - }, - { - "body": "*Ps 68:21*\nImpropérium exspectávi Cor meum et misériam: et sustínui, qui simul mecum contristarétur, et non fuit: consol", - "id": "Offertorium" - }, - { - "body": "Réspice, quǽsumus, Dómine, ad ineffábilem Cordis dilécti Fílii tui caritátem: ut quod offérimus sit tibi munus accéptum ", - "id": "Secreta" - }, - { - "body": "*de sacratissimo Cordis Jesu*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dóm", - "id": "Prefatio" - }, - { - "body": "*Joannes 19:34*\nUnus mílitum láncea latus ejus apéruit, et contínuo exívit sanguis et aqua.", - "id": "Communio" - }, - { - "body": "Prǽbeant nobis, Dómine Jesu, divínum tua sancta fervórem: quo dulcíssimi Cordis tui suavitáte percépta; discámus terréna", - "id": "Postcommunio" - } - ], - "2020-06-20": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", - "id": "Introitus" - }, - { - "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Silverii Papæ et Martyri*\nGregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuu", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Silverii Papæ et Martyri*\nOblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Silverii Papæ et Martyri*\nRefectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésia", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-21": [ - { - "body": "*Ps. 24:16; 24:18*\nRéspice in me et miserére mei, Dómine: quóniam únicus et pauper sum ego: vide humilitátem meam et lab", - "id": "Introitus" - }, - { - "body": "Protéctor in te sperántium, Deus, sine quo nihil est válidum, nihil sanctum: multíplica super nos misericórdiam tuam; ut", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet. 5:6-11*\nCaríssimi: Humiliámini sub poténti manu Dei, ut vos exáltet in témp", - "id": "Lectio" - }, - { - "body": "*Ps. 54:23; 54:17; 54:19*\nJacta cogitátum tuum in Dómino: et ipse te enútriet.\n℣. Dum clamárem ad Dóminum, exaudívit voc", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 15:1-10*\nIn illo témpore: Erant appropinquántes ad Jesum publicáni et p", - "id": "Evangelium" - }, - { - "body": "*Ps. 9:11-12 9:13*\nSperent in te omnes, qui novérunt nomen tuum, Dómine: quóniam non derelínquis quæréntes te: psállite ", - "id": "Offertorium" - }, - { - "body": "Réspice, Dómine, múnera supplicántis Ecclésiæ: et salúti credéntium perpétua sanctificatióne suménda concéde.\nPer Dominu", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Luc 15:10.*\nDico vobis: gáudium est Angelis Dei super uno peccatóre pœniténtiam agénte.", - "id": "Communio" - }, - { - "body": "Sancta tua nos, Dómine, sumpta vivíficent: et misericórdiæ sempitérnæ prǽparent expiátos.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-06-22": [ - { - "body": "*Ps 131:9-10*\nSacerdótes tui, Dómine, índuant justítiam, et sancti tui exsúltent: propter David servum tuum, non avértas", - "id": "Introitus" - }, - { - "body": "Deus, qui ómnia pro te in hoc sǽculo relinquéntibus, céntuplum in futúro et vitam ætérnam promisísti: concéde propítius;", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*2 Cor 8:9-15*\nFratres: Scitis grátiam Dómini nostri Jesu Christi, q", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", - "id": "Offertorium" - }, - { - "body": "Da nobis, Dómine, perféctæ caritátis sacrifícium, exémplo sancti Pontíficis Paulíni, cum altáris oblatióne conjúngere: e", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Tríbue nobis per hæc sancta, Dómine, illum pietátis et humilitátis afféctum, quem ex hoc divíno fonte hausit sanctus Pón", - "id": "Postcommunio" - } - ], - "2020-06-23": [ - { - "body": "*Luc 1:13; 1:15; 1:14*\nNe tímeas, Zacharía, exaudíta est orátio tua: et Elísabeth uxor tua páriet tibi fílium, et vocábi", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut família tua per viam salútis incédat; et, beáti Joánnis Præcursóris hortaménta sec", - "id": "Oratio" - }, - { - "body": "Léctio Jeremíæ Prophétæ.\n*Jer 1:4-10*\nIn diébus illis: Factum est verbum Dómini ad me, dicens: Priúsquam te formárem in ", - "id": "Lectio" - }, - { - "body": "*Joann 1:6-7*\nFuit homo missus a Deo, cui nomen erat Joánnes.\n℣. Hic venit, ut testimónium perhibéret de lúmine, paráre ", - "id": "Graduale" - }, - { - "body": "Initium ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:5-17*\nFuit in diébus Heródis, regis Judææ, sacérdos quidam nómine Zach", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", - "id": "Offertorium" - }, - { - "body": "Múnera, Dómine, obláta sanctífica: et, intercedénte beáto Joánne Baptista, nos per hæc a peccatórum nostrórum máculis em", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 20:6*\nMagna est glória ejus in salutári tuo: glóriam et magnum decórem ímpones super eum, Dómine.", - "id": "Communio" - }, - { - "body": "Beáti Joánnis Baptístæ nos, Dómine, præclára comitétur orátio: et, quem ventúrum esse prædíxit, poscat nobis fore placát", - "id": "Postcommunio" - } - ], - "2020-06-24": [ - { - "body": "*Isa 49:1; 49:2*\nDe ventre matris meæ vocávit me Dóminus in nómine meo: et pósuit os meum ut gládium acútum: sub tegumén", - "id": "Introitus" - }, - { - "body": "Deus, qui præséntem diem honorábilem nobis in beáti Joánnis nativitáte fecísti: da pópulis tuis spirituálium grátiam gau", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ.\n*Isa 49:1-3; 49:5-7*\nAudíte, ínsulæ, et atténdite, pópuli, de longe: Dóminus ab útero vocavit me,", - "id": "Lectio" - }, - { - "body": "*Jer 1:5; 1:9*\nPriusquam te formárem in útero, novi te: et ántequam exíres de ventre, santificávi te.\n℣. Misit Dóminus m", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:57-68*\nElísabeth implétum est tempus pariéndi, et péperit fílium. Et ", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, munéribus altária cumulámus: illíus nativitátem honóre débito celebrántes, qui Salvatórem mundi et cécinit ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 1:76*\nTu, puer, Propheta Altíssimi vocaberis: præíbis enim ante fáciem Dómini paráre vias ejus.", - "id": "Communio" - }, - { - "body": "Sumat Ecclésia tua, Deus, beáti Joánnis Baptístæ generatióne lætítiam: per quem suæ regeneratiónis cognóvit auctórem, Dó", - "id": "Postcommunio" - } - ], - "2020-06-25": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui infirmitáti nostræ ad teréndam salútis viam in Sanctis tuis exémplum et præsídium collocásti: da nobis, ita be", - "id": "Oratio" - }, - { - "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", - "id": "Offertorium" - }, - { - "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus Guliélmus Abbas, quǽsumus, in salútem nobis proveníre depóscat.\nP", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus Guliélmus Abbas, pro nobis intercedéndo: ut et conversatióni", - "id": "Postcommunio" - } - ], - "2020-06-26": [ - { - "body": "*Ps 33:20-21*\nMultæ tribulatiónes justórum, et de his ómnibus liberávit eos Dóminus: Dóminus custódit ómnia ossa eórum: ", - "id": "Introitus" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut nos gemináta lætítia hodiérnæ festivitátis excípiat, quæ de beatórum Joánnis et Pauli glor", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:10-15*\nHi viri misericórdiæ sunt, quorum pietátes non defuérunt: cum semine eórum pérm", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:1-8*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ferm", - "id": "Evangelium" - }, - { - "body": "*Ps 5:12-13*\nGloriabúntur in te omnes, qui díligunt nomen tuum, quóniam tu, Dómine, benedíces justo: Dómine, ut scuto bo", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, sanctórum Martyrum tuórum Joánnis et Pauli dicátas méritis, benígnus assúme: et ad perpétuum nobis", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentavit eos: tamquam aurum in fornáce probávit eos, et quas", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, sanctórum Martyrum tuórum Joánnis et Pauli sollémnia celebrántes, sacraménta cœléstia: præsta, quǽsum", - "id": "Postcommunio" - } - ], - "2020-06-27": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", - "id": "Introitus" - }, - { - "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - } - ], - "2020-06-28": [ - { - "body": "*Ps 26:1; 26:2*\nDóminus illuminátio mea et salus mea, quem timebo? Dóminus defensor vitæ meæ, a quo trepidábo? qui tríbu", - "id": "Introitus" - }, - { - "body": "Da nobis, quǽsumus, Dómine: ut et mundi cursus pacífice nobis tuo órdine dirigátur; et Ecclésia tua tranquílla devotióne", - "id": "Oratio" - }, - { - "body": "*Commemoratio In Vigilia Ss. Petri et Pauli Apostolorum*\nPræsta, quǽsumus, omnípotens Deus: ut nullis nos permíttas pert", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:18-23*\nFratres: Exístimo, quod non sunt condígnæ passiónes hujus ", - "id": "Lectio" - }, - { - "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 5:1-11*\nIn illo témpore: Cum turbæ irrúerent in Jesum, ut audírent verb", - "id": "Evangelium" - }, - { - "body": "*Ps 12:4-5*\nIllúmina óculos meos, ne umquam obdórmiam in morte: ne quando dicat inimícus meus: Præválui advérsus eum.", - "id": "Offertorium" - }, - { - "body": "Oblatiónibus nostris, quǽsumus, Dómine, placáre suscéptis: et ad te nostras étiam rebélles compélle propítius voluntátes", - "id": "Secreta" - }, - { - "body": "*Commemoratio In Vigilia Ss. Petri et Pauli Apostolorum*\nMunus pópuli tui, quǽsumus, Dómine, apostólica intercessióne sa", - "id": "Commemoratio Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 17:3*\nDóminus firmaméntum meum, et refúgium meum, et liberátor meus: Deus meus, adjútor meus.", - "id": "Communio" - }, - { - "body": "Mystéria nos, Dómine, quǽsumus, sumpta puríficent: et suo múnere tueántur.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio In Vigilia Ss. Petri et Pauli Apostolorum*\nQuos cœlésti, Dómine, aliménto satiásti: apostólicis intercessi", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-29": [ - { - "body": "*Acts 12:11*\nNunc scio vere, quia misit Dóminus Angelum suum: et erípuit me de manu Heródis et de omni exspectatióne ple", - "id": "Introitus" - }, - { - "body": "Deus, qui hodiérnam diem Apostolórum tuórum Petri et Pauli martýrio consecrásti: da Ecclésiæ tuæ, eórum in ómnibus sequi", - "id": "Oratio" - }, - { - "body": "Léctio Actuum Apostolórum.\n*Act 12:1-11*\nIn diébus illis: Misit Heródes rex manus, ut afflígeret quosdam de ecclésia. Oc", - "id": "Lectio" - }, - { - "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro pátribus tuis nati ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philippi,", - "id": "Evangelium" - }, - { - "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine, in omni progénie et genera", - "id": "Offertorium" - }, - { - "body": "Hóstias, Dómine, quas nómini tuo sacrándas offérimus, apostólica prosequátur orátio: per quam nos expiári tríbuas et def", - "id": "Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nTu es Petrus, ei super hanc petram ædificabo Ecclésiam meam.", - "id": "Communio" - }, - { - "body": "Quos cœlésti, Dómine, aliménto satiásti: apostólicis intercessiónibus ab omni adversitáte custódi.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-06-30": [ - { - "body": "*2 Tim 1:12*\nScio, cui crédidi, et certus sum, quia potens est depósitum meum servare in illum diem, justus judex.\n*Ps 1", - "id": "Introitus" - }, - { - "body": "Deus, qui multitúdinem géntium beáti Pauli Apóstoli prædicatióne docuísti: da nobis, quǽsumus; ut, cujus natalícia cólim", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas\n*Gal 1:11-20*\nFratres: Notum vobis facio Evangélium, quod evangelizátum ", - "id": "Lectio" - }, - { - "body": "*Gal 2:8-9*\nQui operátus est Petro in apostolátum, operátus est et mihi inter gentes: et cognovérunt grátiam Dei, quæ da", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:16-22*\nIn illo témpore: Dixit Jesus discípulis suis: Ecce, ego m", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", - "id": "Offertorium" - }, - { - "body": "Apóstoli tui Pauli précibus, Dómine, plebis tuæ dona sanctífica: ut, quæ tibi tuo grata sunt institúto, gratióra fiant p", - "id": "Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28-29*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis et vitam ætér", - "id": "Communio" - }, - { - "body": "Percéptis, Dómine, sacraméntis: beáto Paulo Apóstolo tuo interveniénte, deprecámur; ut, quæ pro illíus celebráta sunt gl", - "id": "Postcommunio" - } - ], - "2020-07-01": [ - { - "body": "*Apoc 5:9-10*\nRedemísti nos, Dómine, in sánguine tuo, ex omni tribu et lingua et pópulo et natióne: et fecísti nos Deo n", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui unigénitum Fílium tuum mundi Redemptórem constituísti, ac ejus Sánguine placári voluísti", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos.\n*Hebr 9:11-15*\nFratres: Christus assístens Póntifex futurórum bonórum, ", - "id": "Lectio" - }, - { - "body": "*1 Joann 5:6; 5:7-8*\nHic est, qui venit per aquam et sánguinem, Jesus Christus: non in aqua solum, sed in aqua et sángui", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 19:30-35*\nIn illo témpore: Cum accepísset Jesus acétum, dixit: Con", - "id": "Evangelium" - }, - { - "body": "*1 Cor 10:16*\nCalix benedictiónis, cui benedícimus, nonne communicátio sánguinis Christi est? et panis, quem frángimus, ", - "id": "Offertorium" - }, - { - "body": "Per hæc divína mystéria, ad novi, quǽsumus, Testaménti mediatórem Jesum accedámus: et super altária tua, Dómine virtútum", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "*Hebr 9:28*\nChristus semel oblátus est ad multórum exhauriénda peccáta: secúndo sine peccáto apparébit exspectántibus se", - "id": "Communio" - }, - { - "body": "Ad sacram, Dómine, mensam admíssi, háusimus aquas in gáudio de fóntibus Salvatóris: sanguis ejus fiat nobis, quǽsumus, f", - "id": "Postcommunio" - } - ], - "2020-07-02": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cælum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", - "id": "Introitus" - }, - { - "body": "Fámulis tuis, quǽsumus, Dómine, cœléstis grátiæ munus impertíre: ut, quibus beátæ Vírginis partus éxstitit salútis exórd", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Cant 2:8-14*\nEcce, iste venit sáliens in móntibus, transíliens colles; símilis est diléctus meu", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:39-47*\nIn illo témpore: Exsúrgens María ábiit in montána cum festina", - "id": "Evangelium" - }, - { - "body": "Beáta es, Virgo María, quæ ómnium portásti Creatórem: genuísti, qui te fecit, et in ætérnum pérmanes Virgo.", - "id": "Offertorium" - }, - { - "body": "Unigéniti tui, Dómine, nobis succúrrat humánitas: ut, qui, natus de Vírgine, Matris integritátem non mínuit, sed sacrávi", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, celebritátis ánnuæ votíva sacraménta: præsta, quǽsumus; ut et temporális vitæ nobis remédia prǽbeant ", - "id": "Postcommunio" - } - ], - "2020-07-03": [ - { - "body": "*Malach 2:6*\nLex veritátis fuit in ore ejus, et iníquitas non est invénta in lábiis ejus: in pace et in æquitáte ambuláv", - "id": "Introitus" - }, - { - "body": "Deus, qui beáto Irenǽo Mártyri tuo atque Pontifici tribuísti, ut et veritate doctrínæ expugnáret hæreses, et pacem Ecclé", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 3:14-17; 4:1-5*\nCaríssime: Permane in iis, quæ didicísti et cré", - "id": "Lectio" - }, - { - "body": "*Ps 121:8*\nPropter fratres meos et próximos meos loquébar pacem de te.\n*Ps 36:37*\nCustódi innocéntiam et vide æquitátem:", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:28-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timé", - "id": "Evangelium" - }, - { - "body": "*Eccli 24:44*\nDoctrínam quasi ante lucánum illúmino ómnibus, et enarrábo illam usque ad longínquum.", - "id": "Offertorium" - }, - { - "body": "Deus, qui credéntes in te pópulos nullis sinis cóncuti terróribus: dignáre preces et hóstias dicátæ tibi plebis suscíper", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Eccli 24:47*\nVidéte, quóniam non soli mihi laborávi, sed ómnibus exquiréntibus veritátem.", - "id": "Communio" - }, - { - "body": "Deus, auctor pacis et amátor, quem nosse vívere, cui servíre regnáre est: prótege ab ómnibus impugnatiónibus súpplices t", - "id": "Postcommunio" - } - ], - "2020-07-04": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", - "id": "Introitus" - }, - { - "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - } - ], - "2020-07-05": [ - { - "body": "*Ps 26:7; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te: adjútor meus esto, ne derelínquas me neque despícias me, ", - "id": "Introitus" - }, - { - "body": "Deus, qui diligéntibus te bona invisibília præparásti: infúnde córdibus nostris tui amóris afféctum; ut te in ómnibus et", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 3:8-15*\nCaríssimi: Omnes unánimes in oratióne estóte, compatiéntes, fraterni", - "id": "Lectio" - }, - { - "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:20-24*\nIn illo témpore: Dixit Jesus discípulis suis: Nisi abundáv", - "id": "Evangelium" - }, - { - "body": "*Ps 15:7 et 8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Deum in conspéctu meo semper: quóniam a dextr", - "id": "Offertorium" - }, - { - "body": "Propitiáre, Dómine, supplicatiónibus nostris: et has oblatiónes famulórum famularúmque tuárum benígnus assúme; ut, quod ", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram: ut inhábitem in domo Dómini ómnibus diébus vitæ meæ.", - "id": "Communio" - }, - { - "body": "Quos cœlésti, Dómine, dono satiásti: præsta, quǽsumus; ut a nostris mundémur occúltis et ab hóstium liberémur insídiis.\n", - "id": "Postcommunio" - } - ], - "2020-07-06": [ - { - "body": "*Ps 26:7; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te: adjútor meus esto, ne derelínquas me neque despícias me, ", - "id": "Introitus" - }, - { - "body": "Deus, qui diligéntibus te bona invisibília præparásti: infúnde córdibus nostris tui amóris afféctum; ut te in ómnibus et", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 3:8-15*\nCaríssimi: Omnes unánimes in oratióne estóte, compatiéntes, fraterni", - "id": "Lectio" - }, - { - "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:20-24*\nIn illo témpore: Dixit Jesus discípulis suis: Nisi abundáv", - "id": "Evangelium" - }, - { - "body": "*Ps 15:7 et 8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Deum in conspéctu meo semper: quóniam a dextr", - "id": "Offertorium" - }, - { - "body": "Propitiáre, Dómine, supplicatiónibus nostris: et has oblatiónes famulórum famularúmque tuárum benígnus assúme; ut, quod ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram: ut inhábitem in domo Dómini ómnibus diébus vitæ meæ.", - "id": "Communio" - }, - { - "body": "Quos cœlésti, Dómine, dono satiásti: præsta, quǽsumus; ut a nostris mundémur occúltis et ab hóstium liberémur insídiis.\n", - "id": "Postcommunio" - } - ], - "2020-07-07": [ - { - "body": "*Ps 131:9-10*\nSacerdótes tui, Dómine, índuant justítiam, et sancti tui exsúltent: propter David servum tuum, non avértas", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui Slavóniæ gentes per beátos Confessóris tuos atque Pontífices Cyríllum et Methódium ad ag", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos\n*Hebr 7:23-27*\nFratres: Plures facti sunt sacerdótes, idcírco quod morte", - "id": "Lectio" - }, - { - "body": "*Ps 131:16-17*\nSacerdótes ejus índuam salutári: et sancti ejus exsultatióne exsultábunt.\n℣. Illuc prodúcam cornu David: ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et álios septuagínta duos:", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nMirábilis Deus in Sanctis suis: Deus Israël, ipse dabit virtútem et fortitúdinem plebi suæ: benedíctus Deus.", - "id": "Offertorium" - }, - { - "body": "Preces nostras, quǽsumus, Dómine, et tuórum réspice oblatiónes fidélium: ut tibi gratæ sint in tuórum festivitáte commem", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 10:27*\nQuod dico vobis in tenebris, dícite in lúmine, dicit Dóminus: et quod in aure audítis, prædicáte super tect", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, qui nobis múnera dignáris præbére cœléstia, intercedéntibus sanctis tuis Cyríllo et Methó", - "id": "Postcommunio" - } - ], - "2020-07-08": [ - { - "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", - "id": "Introitus" - }, - { - "body": "Clementíssime Deus, qui beátam Elisabeth regínam, inter céteras egrégias dotes, béllici furóris sedándi prærogatíva deco", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - } - ], - "2020-07-09": [ - { - "body": "*Ps 26:7; 26:9*\nExáudi, Dómine, vocem meam, qua clamávi ad te: adjútor meus esto, ne derelínquas me neque despícias me, ", - "id": "Introitus" - }, - { - "body": "Deus, qui diligéntibus te bona invisibília præparásti: infúnde córdibus nostris tui amóris afféctum; ut te in ómnibus et", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 3:8-15*\nCaríssimi: Omnes unánimes in oratióne estóte, compatiéntes, fraterni", - "id": "Lectio" - }, - { - "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:20-24*\nIn illo témpore: Dixit Jesus discípulis suis: Nisi abundáv", - "id": "Evangelium" - }, - { - "body": "*Ps 15:7 et 8*\nBenedícam Dóminum, qui tríbuit mihi intelléctum: providébam Deum in conspéctu meo semper: quóniam a dextr", - "id": "Offertorium" - }, - { - "body": "Propitiáre, Dómine, supplicatiónibus nostris: et has oblatiónes famulórum famularúmque tuárum benígnus assúme; ut, quod ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 26:4*\nUnam pétii a Dómino, hanc requíram: ut inhábitem in domo Dómini ómnibus diébus vitæ meæ.", - "id": "Communio" - }, - { - "body": "Quos cœlésti, Dómine, dono satiásti: præsta, quǽsumus; ut a nostris mundémur occúltis et ab hóstium liberémur insídiis.\n", - "id": "Postcommunio" - } - ], - "2020-07-10": [ - { - "body": "*Ps 112:1; 112:9*\nLaudáte, púeri, Dóminum, laudáte nomen Dómini: qui habitáre facit stérilem in domo, matrem filiórum læ", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, qui gloriósos Mártyres fortes in sua confessióne cognóvimus, pios apud te in nost", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Prov 31:10-31.*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confí", - "id": "Lectio" - }, - { - "body": "*Ps 123:7-8.*\nAnima nostra, sicut passer, erépta est de láqueo venántium.\n℣. Láqueus contrítus est, et nos liberáti sumu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 12:46-50.*\nIn illo témpore: Loquente Jesu ad turbas, ecce, Mater e", - "id": "Evangelium" - }, - { - "body": "*Ps 123:7*\nAnima nostra, sicut passer, erépta est de láqueo venántium: láqueus contrítus est, et nos liberáti sumus.", - "id": "Offertorium" - }, - { - "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, inténde placátus: et, intercedéntibus Sanctis tuis, devotióni nostræ profícia", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 12:50*\nQuicumque fecerit voluntátem Patris mei, qui in cælis est: ipse meus frater et soror et mater est, dicit Dó", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, intercedéntibus Sanctis tuis, illíus salutáris capiámus efféctum; cujus per heec mystéria", - "id": "Postcommunio" - } - ], - "2020-07-11": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", - "id": "Introitus" - }, - { - "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Pii I Papæ et Martyris*\nGregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Pii I Papæ et Martyris*\nOblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et g", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Pii I Papæ et Martyris*\nRefectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam:", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-12": [ - { - "body": "*Ps 27:8-9*\nDóminus fortitudo plebis suæ, et protéctor salutárium Christi sui est: salvum fac pópulum tuum, Dómine, et b", - "id": "Introitus" - }, - { - "body": "Deus virtútum, cujus est totum quod est óptimum: ínsere pectóribus nostris amórem tui nóminis, et præsta in nobis religi", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:3-11*\nFratres: Quicúmque baptizáti sumus in Christo Jesu, in mort", - "id": "Lectio" - }, - { - "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum\n*Marc 8:1-9*\nIn illo témpore: Cum turba multa esset cum Jesu, nec habérent,", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", - "id": "Offertorium" - }, - { - "body": "Propitiáre, Dómine, supplicatiónibus nostris, et has pópuli tui oblatiónes benígnus assúme: et, ut nullíus sit írritum v", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 26:6*\nCircuíbo et immolábo in tabernáculo ejus hóstiam jubilatiónis: cantábo et psalmum dicam Dómino.", - "id": "Communio" - }, - { - "body": "Repléti sumus, Dómine, munéribus tuis: tríbue, quǽsumus; ut eórum et mundémur efféctu et muniámur auxílio.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-07-13": [ - { - "body": "*Ps 104:3-4*\nLaetetur cor quaerentium Dominum: quaerite Dominum et confirmamini: quaerite faciem eius semper. (T. P. All", - "id": "Introitus" - }, - { - "body": "Clementissime Deus, qui beatos Andream et Benedictum mira abstinentia et assidua vitae austeritate tibi soli adhaerere f", - "id": "Oratio" - }, - { - "body": "Lectio libri Sapientiæ.\n*Eccli 2:7-13*\nMetuentes Dominum, sustinete misericordiam ejus: et non deflectatis ab illo, ne c", - "id": "Lectio" - }, - { - "body": "*Ps 30:24-25*\nDiligite Dominum, omnes Sancti eius, quoniam veritatem requiret Dominus, et retribuet abundanter facientib", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 67:4*\nIusti epulentur, et exsultent in conspectu Dei, et delectentur in laetitia. (T. P. Alleluia.)", - "id": "Offertorium" - }, - { - "body": "Hostias ad altare tuum offerentibus, Domine, da nobis illum pietatis affectum, quem beatis Andreae et Benedicto Confesso", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:37*\nBeati servi illi, quos, cum venerit Dominus, invenerit vigilantes: amen dico vobis, quod praecinget se, et f", - "id": "Communio" - }, - { - "body": "Tribuat nobis, omnipotens Deus, suffragantibus beatorum Andreae et Benedicti Confessorum tuorum precibus, refectio sacra", - "id": "Postcommunio" - } - ], - "2020-07-14": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Bonaventúram minístrum tribuísti: præsta, quǽsumus; ut, quem Doctórem vitæ ha", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2. Tim 4:1-8*\nCaríssime: Testificor coram Deo, et Jesu Christo, qui j", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Sancti Bonaventúræ Confessóris tui atque Pontíficis, quǽsumus, Dómine, ánnua sollémnitas pietáti tuæ nos reddat accéptos", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Deus, fidélium remunerátor animárum: præsta; ut beáti Bonaventúræ Confessóris tui, atque Pontíficis, cujus venerándam ce", - "id": "Postcommunio" - } - ], - "2020-07-15": [ - { - "body": "*Isa 42:6*\nEgo Dominus vocavi te in iustitia, et apprehendi manum tuam et dedi te in foedus populi, in lucem gentium, ut", - "id": "Introitus" - }, - { - "body": "Misericordissime Deus, pro cuius fidei propagatione beatus Bruno Episcopus et Martyr in his terris sanguinem liberaliter", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Henrici Imperatoris Confessoris*\nDeus, qui hodiérna die beátum Henrícum Confessórem tuum e terréni cúlm", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio libri Sapientiæ\n*Sap 6:10-22*\nAd vos ergo, reges, sunt hi sermones mei, ut discatis sapientiam, et non excidatis.", - "id": "Lectio" - }, - { - "body": "*Ps 118:46-47*\nLoquebar de testimoniis tuis in conspectu regum et non confundebar.\n℣. Et meditabar in mandatis tuis, qua", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 15:12-16*\nIn illo tempore: Dixit Jesus discipulis suis: «Hoc est p", - "id": "Evangelium" - }, - { - "body": "*Col 1:24-25*\nGaudeo in passionibus et adimpleo ea quae desunt passionum Christi in carne mea, pro corpore eius quod est", - "id": "Offertorium" - }, - { - "body": "Haec hostia, Domine, vincula nostri reatus absolvat, et intercedente beato Brunone Martyre tuo atque Pontifice, donum no", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Henrici Imperatoris Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctó", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Phil 1:20-21*\nMagnificabitur Christus in corpore meo, sive per vitam sive per mortem; mihi enim vivere Christus est et ", - "id": "Communio" - }, - { - "body": "Caelestibus epulis refecti, te, Domine, supplices deprecamur; ut ignem in nobis spiritus tui clementer accendas, qui bea", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Henrici Imperatoris Confessoris*\nRefécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-16": [ - { - "body": "*Ps 27:8-9*\nDóminus fortitudo plebis suæ, et protéctor salutárium Christi sui est: salvum fac pópulum tuum, Dómine, et b", - "id": "Introitus" - }, - { - "body": "Deus virtútum, cujus est totum quod est óptimum: ínsere pectóribus nostris amórem tui nóminis, et præsta in nobis religi", - "id": "Oratio" - }, - { - "body": "*Commemoratio In Commemoratione Beatæ Mariæ Virgine de Monte Carmelo.*\nDeus, qui beatíssimæ semper Vírginis et Genetríci", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:3-11*\nFratres: Quicúmque baptizáti sumus in Christo Jesu, in mort", - "id": "Lectio" - }, - { - "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum\n*Marc 8:1-9*\nIn illo témpore: Cum turba multa esset cum Jesu, nec habérent,", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", - "id": "Offertorium" - }, - { - "body": "Propitiáre, Dómine, supplicatiónibus nostris, et has pópuli tui oblatiónes benígnus assúme: et, ut nullíus sit írritum v", - "id": "Secreta" - }, - { - "body": "*Commemoratio In Commemoratione Beatæ Mariæ Virgine de Monte Carmelo.*\nSanctífica, Dómine, quǽsumus, obláta libámina: et", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 26:6*\nCircuíbo et immolábo in tabernáculo ejus hóstiam jubilatiónis: cantábo et psalmum dicam Dómino.", - "id": "Communio" - }, - { - "body": "Repléti sumus, Dómine, munéribus tuis: tríbue, quǽsumus; ut eórum et mundémur efféctu et muniámur auxílio.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio In Commemoratione Beatæ Mariæ Virgine de Monte Carmelo.*\nAdjuvet nos, quǽsumus, Dómine, gloriósæ tuæ Genet", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-17": [ - { - "body": "*Ps 27:8-9*\nDóminus fortitudo plebis suæ, et protéctor salutárium Christi sui est: salvum fac pópulum tuum, Dómine, et b", - "id": "Introitus" - }, - { - "body": "Deus virtútum, cujus est totum quod est óptimum: ínsere pectóribus nostris amórem tui nóminis, et præsta in nobis religi", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Alexii Confessoris*\nDeus, qui nos beáti N. Confessóris tui ánnua solemnitáte lætíficas: concéde propíti", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:3-11*\nFratres: Quicúmque baptizáti sumus in Christo Jesu, in mort", - "id": "Lectio" - }, - { - "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum\n*Marc 8:1-9*\nIn illo témpore: Cum turba multa esset cum Jesu, nec habérent,", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nPérfice gressus meos in sémitis tuis, ut non moveántur vestígia mea: inclína aurem tuam, et exáudi ver", - "id": "Offertorium" - }, - { - "body": "Propitiáre, Dómine, supplicatiónibus nostris, et has pópuli tui oblatiónes benígnus assúme: et, ut nullíus sit írritum v", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Alexii Confessoris*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus n", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 26:6*\nCircuíbo et immolábo in tabernáculo ejus hóstiam jubilatiónis: cantábo et psalmum dicam Dómino.", - "id": "Communio" - }, - { - "body": "Repléti sumus, Dómine, munéribus tuis: tríbue, quǽsumus; ut eórum et mundémur efféctu et muniámur auxílio.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Alexii Confessoris*\nRefécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-18": [ - { - "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus: qui beátum Simónem Confessórem tuum evangélicæ prædicatiónis grátiam sublimásti: concéde pro", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", - "id": "Offertorium" - }, - { - "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto N. Confessóre tuo, per hæc contra óm", - "id": "Postcommunio" - } - ], - "2020-07-19": [ - { - "body": "*Ps 46:2*\nOmnes gentes, pláudite mánibus: jubiláte Deo in voce exsultatiónis.\n*Ps 46:3*\nQuóniam Dóminus excélsus, terríb", - "id": "Introitus" - }, - { - "body": "Deus, cujus providéntia in sui dispositióne non fállitur: te súpplices exorámus; ut nóxia cuncta submóveas, et ómnia nob", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 6:19-23*\nFratres: Humánum dico, propter infirmitátem carnis vestræ:", - "id": "Lectio" - }, - { - "body": "*Ps 33:12; 33:6*\nVeníte, fílii, audíte me: timórem Dómini docébo vos.\n℣. Accédite ad eum, et illuminámini: et fácies ves", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 7:15-21*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ", - "id": "Evangelium" - }, - { - "body": "*Dan 3:40*\nSicut in holocáustis aríetum et taurórum, et sicut in mílibus agnórum pínguium: sic fiat sacrifícium nostrum ", - "id": "Offertorium" - }, - { - "body": "Deus, qui legálium differéntiam hostiárum unius sacrifícii perfectione sanxísti: accipe sacrifícium a devótis tibi fámul", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 30:3*\nInclína aurem tuam, accélera, ut erípias me.", - "id": "Communio" - }, - { - "body": "Tua nos, Dómine, medicinális operátio, et a nostris perversitátibus cleménter expédiat, et ad ea, quæ sunt recta, perdúc", - "id": "Postcommunio" - } - ], - "2020-07-20": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Cesláum virgíneo morum candóre prǽditum, et salútis animárum zelo succénsum, in divérsis natiónum pópul", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et alios septuagínta duos:", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muni", - "id": "Postcommunio" - } - ], - "2020-07-21": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui ad árdua quæque pro nóminis tui glória et animárum salúte beáto Lauréntio, Confessóri tuo atque Doctóri, spíri", - "id": "Oratio" - }, - { - "body": "*S. Praxedis Virginis*\nExáudi nos, Deus, salutáris noster: ut, sicut de beátæ Praxédis Vírginis tuæ festivitáte gaudémus", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "Sancti N. Confessóris tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et tuam no", - "id": "Secreta" - }, - { - "body": "*S. Praxedis Virginis*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis d", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus N. Conféssor tuus et Doctor egrégius, quǽsumus, precátor accédat.\n", - "id": "Postcommunio" - }, - { - "body": "*S. Praxedis Virginis*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-22": [ - { - "body": "*Ps 118:95-96*\nMe exspectavérunt peccatóres, ut pérderent me: testimónia tua, Dómine, intelléxi: omnis consummatiónis vi", - "id": "Introitus" - }, - { - "body": "Beátæ Maríæ Magdalénæ, quǽsumus, Dómine, suffrágiis adjuvémur: cujus précibus exorátus, quatriduánum fratrem Lázarum viv", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Cant 3:2-5; 8:6-7*\nSurgam, et circuíbo civitátem: per vicos et pláteas quæram, quem díligit áni", - "id": "Lectio" - }, - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:36-50*\nIn illo témpore: Rogábat Jesum quidam de pharisæis, ut manduc", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", - "id": "Offertorium" - }, - { - "body": "Múnera nostra, quǽsumus. Dómine, beátæ Maríæ Magdalénæ gloriósa mérita tibi reddant accépta: cujus oblatiónis obséquium ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 118:121; 118:122; 118:128*\nFeci judícium et justítiam, Dómine, non calumniéntur mihi supérbi: ad ómnia mandáta tua d", - "id": "Communio" - }, - { - "body": "Sumpto, quǽsumus, Dómine, único ac salutári remédio, Córpore et Sánguine tuo pretióso: ab ómnibus malis, sanctæ Maríæ Ma", - "id": "Postcommunio" - } - ], - "2020-07-23": [ - { - "body": "*Dan 3:84; 3:87*\nSacerdótes Dei, benedícite Dóminum: sancti et húmiles corde, laudáte Deum.\n*Dan 3:57*\nBenedícite, ómnia", - "id": "Introitus" - }, - { - "body": "Deus, fidélium remunerátor animárum, qui hunc diem beáti Apollináris Sacerdótis tui martýrio consecrásti: tríbue nobis, ", - "id": "Oratio" - }, - { - "body": "*S. Liborii Ep. et Conf.*\nDa, quǽsumus, omnípotens Deus: ut beáti Libórii Confessóris tui atque Pontíficis veneránda sol", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1 Petri 5:1-11*\nCaríssimi: Senióres, qui in vobis sunt, obsecro, consénior et tes", - "id": "Lectio" - }, - { - "body": "*Ps 88:21-23*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 22:24-30*\nIn illo témpore: Facta est conténtio inter discípulos, quis ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Réspice, Dómine, propítius super hæc múnera: quæ pro beáti Sacerdótis et Martyris tui Apollináris commemoratióne deférim", - "id": "Secreta" - }, - { - "body": "*Pro S. Liborio*\nSancti tui, quǽsumus, Dómine, nos úbique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiám", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 25:20; 20:21*\nDómine, quinque talénta tradidísti mihi, ecce, ália quinque superlucrátus sum. Euge, serve bone et f", - "id": "Communio" - }, - { - "body": "Tua sancta suméntes, quǽsumus, Dómine, ut beáti Apollináris nos fóveant continuáta præsídia: quia non désinis propítius ", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Liborio*\nPræsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Li", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-24": [ - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Introitus" - }, - { - "body": "Deus, qui beátam Cunegúndem dulcédinis tuæ benedictiónibus prævenísti, ac vírginem étiam in coniúgio conservásti: præsta", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", - "id": "Offertorium" - }, - { - "body": "Munéribus tibi, Dómine, pro beáte Vírginis tuæ Cunegúndis honóre dicátis, benedictiónem tuam propitiátus effúnde: ut per", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", - "id": "Communio" - }, - { - "body": "Sumpta mystéria, quǽsumus, Dómine, suffragántibus beáte Cunegúndis Vírginis tuæ méritis, íncitent nos iúgiter, et illúst", - "id": "Postcommunio" - } - ], - "2020-07-25": [ - { - "body": "*Ps 138:17*\nMihi autem nimis bonoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2*\nDómine", - "id": "Introitus" - }, - { - "body": "Esto, Dómine, plebi tuæ sanctificátor et custos: ut, Apóstoli tui Jacóbi muníta præsídiis, et conversatióne tibi pláceat", - "id": "Oratio" - }, - { - "body": "*S. Christophori Martyris*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti Christóphori Mártyris tui natalícia cólimus,", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 4:9-15*\nFratres: Puto, quod Deus nos Apóstolos novíssimos ost", - "id": "Lectio" - }, - { - "body": "*Ps 44:17; 44:18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro pátribus tuis n", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 20:20-23*\nIn illo témpore: Accessit ad Jesum mater filiórum Zebedæ", - "id": "Evangelium" - }, - { - "body": "*Ps 18:5*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.", - "id": "Offertorium" - }, - { - "body": "Oblatiónes pópuli tui, quǽsumus, Dómine, beáti Jacóbi Apóstoli pássio beáta concíliet: et, quæ nostris non aptæ sunt mér", - "id": "Secreta" - }, - { - "body": "*Pro S. Christophoro*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mystériis, et ", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël.", - "id": "Communio" - }, - { - "body": "Beáti Apóstoli tui Jacóbi, quǽsumus, Dómine, intercessióne nos ádjuva: pro cujus festivitáte percépimus tua sancta lætán", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Christophoro*\nDa, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-26": [ - { - "body": "*Ps 47:10-11*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tua in fi", - "id": "Introitus" - }, - { - "body": "Largíre nobis, quǽsumus, Dómine, semper spíritum cogitándi quæ recta sunt, propítius et agéndi: ut, qui sine te esse non", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Annæ Matris B.M.V. *\nDeus, qui beátæ Annæ grátiam conférre dignatus es, ut Genetrícis unigéniti Fílii t", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:12-17*\nFratres: Debitóres sumus non carni, ut secúndum carnem viv", - "id": "Lectio" - }, - { - "body": "*Ps 30:3*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias.\n*Ps 70:1*\n℣. Deus, in te sperávi: Dóm", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 16:1-9*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc: Ho", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28; 17:32*\nPópulum húmilem salvum fácies, Dómine, et óculos superbórum humiliábis: quóniam quis Deus præter te, D", - "id": "Offertorium" - }, - { - "body": "Súscipe, quǽsumus, Dómine, múnera, quæ tibi de tua largitáte deférimus: ut hæc sacrosáncta mystéria, grátiæ tuæ operánte", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Annæ Matris B.M.V. *\nSacrifíciis præséntibus, quǽsumus, Dómine, placatus inténde: ut per intercessiónem", - "id": "Commemoratio Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 33:9*\nGustáte et vidéte, quóniam suávis est Dóminus: beátus vir, qui sperat in eo.", - "id": "Communio" - }, - { - "body": "Sit nobis, Dómine, reparátio mentis et córporis cæléste mystérium: ut, cujus exséquimur cultum, sentiámus efféctum.\nPer ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Annæ Matris B.M.V. *\nCœléstibus sacraméntis vegetáti, quǽsumus, Dómine, Deus noster: ut, intercessióne ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-27": [ - { - "body": "*Ps 47:10-11*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tua in fi", - "id": "Introitus" - }, - { - "body": "Largíre nobis, quǽsumus, Dómine, semper spíritum cogitándi quæ recta sunt, propítius et agéndi: ut, qui sine te esse non", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Pantaleonis Martyris*\nPræsta, quǽsumus, omnípotens Deus: ut, intercedénte beáto Pantaleóne Mártyre tuo,", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:12-17*\nFratres: Debitóres sumus non carni, ut secúndum carnem viv", - "id": "Lectio" - }, - { - "body": "*Ps 30:3*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias.\n*Ps 70:1*\n℣. Deus, in te sperávi: Dóm", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 16:1-9*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc: Ho", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28; 17:32*\nPópulum húmilem salvum fácies, Dómine, et óculos superbórum humiliábis: quóniam quis Deus præter te, D", - "id": "Offertorium" - }, - { - "body": "Súscipe, quǽsumus, Dómine, múnera, quæ tibi de tua largitáte deférimus: ut hæc sacrosáncta mystéria, grátiæ tuæ operánte", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Pantaleonis Martyris*\nAccépta sit in conspéctu tuo, Dómine, nostra devótio: et ejus nobis fiat supplica", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 33:9*\nGustáte et vidéte, quóniam suávis est Dóminus: beátus vir, qui sperat in eo.", - "id": "Communio" - }, - { - "body": "Sit nobis, Dómine, reparátio mentis et córporis cæléste mystérium: ut, cujus exséquimur cultum, sentiámus efféctum.\nPer ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Pantaleonis Martyris*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus ex", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-28": [ - { - "body": "*Ps 78:11-12; 78:10*\nIntret in conspéctu tuo, Dómine, gémitus compeditórum: redde vicínis nostris séptuplum in sinu eóru", - "id": "Introitus" - }, - { - "body": "Sanctórum tuórum nos, Dómine, Nazárii, Celsi, Victóris et Innocéntii conféssio beáta commúniat: et fragilitáti nostræ su", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Sap 10:17-20*\nRéddidit Deus justis mercédem labórum suorum, et deduxit illos in via mirábili: e", - "id": "Lectio" - }, - { - "body": "*Exodi 15:11*\nGloriósus Deus in Sanctis suis: mirábilis in majestáte, fáciens prodígia.\n*Exodi 15:6*\n℣. Déxtera tua, Dóm", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 21:9-19*\nIn illo témpore: Dixit Jesus discípulis suis: Cum audiéritis ", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nMirábilis Deus in Sanctis suis: Deus Israël, ipse dabit virtútem et fortitúdinem plebi suæ: benedíctus Deus, ", - "id": "Offertorium" - }, - { - "body": "Concéde nobis, omnípotens Deus: ut his munéribus, quæ in sanctórum tuórum Nazarii, Celsi, Victóris et Innocéntii honóre ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Sap 3:4; 3:5; 3:6*\nEt si coram homínibus torménta passi sunt. Deus tentavit eos: tamquam aurum in fornáce probávit eos,", - "id": "Communio" - }, - { - "body": "Sanctórum Nazárii, Celsi, Victóris et Innocéntii, Dómine, intercessióne placátus: præsta, quǽsumus; ut, quod temporáli c", - "id": "Postcommunio" - } - ], - "2020-07-29": [ - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Introitus" - }, - { - "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ Marthæ Vírginis tuæ festivitáte gaudémus; ita piæ devotiónis erud", - "id": "Oratio" - }, - { - "body": "*Ss. Felicis, Simplicii, Faustini et Beatricis.*\nPræsta, quǽsumus, Dómine: ut, sicut pópulus christiánus Mártyrum tuórum", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11, 1-2.*\nFratres: Qui gloriátur, in Dómino gloriétu", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 10:38-42*\nIn illo témpore: Intrávit Jesus in quoddam castéllum: et múl", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Ss. Felicis, Simplicii, Faustini et Beatricis.*\nHóstias tibi, Dómine, pro sanctórum Mártyrum tuórum Felícis, Simplícii,", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - }, - { - "body": "*Ss. Felicis, Simplicii, Faustini et Beatricis.*\nPræsta, quǽsumus, omnípotens Deus: ut sanctórum Martyrum tuórum Felícis", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-30": [ - { - "body": "*Ps 47:10-11*\nSuscépimus, Deus, misericórdiam tuam in médio templi tui: secúndum nomen tuum, Deus, ita et laus tua in fi", - "id": "Introitus" - }, - { - "body": "Largíre nobis, quǽsumus, Dómine, semper spíritum cogitándi quæ recta sunt, propítius et agéndi: ut, qui sine te esse non", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Abdon et Sennen Martyrum*\nDeus, qui sanctis tuis Abdon et Sennen ad hanc glóriam veniéndi copiósum munu", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 8:12-17*\nFratres: Debitóres sumus non carni, ut secúndum carnem viv", - "id": "Lectio" - }, - { - "body": "*Ps 30:3*\nEsto mihi in Deum protectórem, et in locum refúgii, ut salvum me fácias.\n*Ps 70:1*\n℣. Deus, in te sperávi: Dóm", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 16:1-9*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc: Ho", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28; 17:32*\nPópulum húmilem salvum fácies, Dómine, et óculos superbórum humiliábis: quóniam quis Deus præter te, D", - "id": "Offertorium" - }, - { - "body": "Súscipe, quǽsumus, Dómine, múnera, quæ tibi de tua largitáte deférimus: ut hæc sacrosáncta mystéria, grátiæ tuæ operánte", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Abdon et Sennen Martyrum*\nHæc hóstia, quǽsumus, Dómine, quam sanctórum Mártyrum tuórum natalítia recens", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 33:9*\nGustáte et vidéte, quóniam suávis est Dóminus: beátus vir, qui sperat in eo.", - "id": "Communio" - }, - { - "body": "Sit nobis, Dómine, reparátio mentis et córporis cæléste mystérium: ut, cujus exséquimur cultum, sentiámus efféctum.\nPer ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Abdon et Sennen Martyrum*\nPer hujus, Dómine, operationem mystérii, et vitia nostra purgéntur: et, inter", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-31": [ - { - "body": "*Philipp 2:10-11*\nIn nómine Jesu omne genu flectátur, cœléstium, terréstrium et infernórum: et omnis lingua confiteátur,", - "id": "Introitus" - }, - { - "body": "Deus, qui ad majórem tui nóminis glóriam propagándam, novo per beátum Ignátium subsídio militántem Ecclésiam roborásti: ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 2:8-10; 3:10-12*\nCaríssime: Memor esto, Dóminum Jesum Christum ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annuntiá", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:1-9*\nIn illo témpore: Designávit Dóminus et álios septuagínta duos: ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Adsint, Dómine Deus, oblatiónibus nostris sancti Ignátii benígna suffrágia: ut sacrosáncta mystéria, in quibus omnis san", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:49*\nIgnem veni míttere in terram: et quid volo, nisi ut accendátur?", - "id": "Communio" - }, - { - "body": "Laudis hóstia, Dómine, quam pro sancto Ignátio grátias agentes obtúlimus: ad perpétuam nos majestátis tuæ laudatiónem, e", - "id": "Postcommunio" - } - ], - "2020-08-01": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", - "id": "Introitus" - }, - { - "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", - "id": "Oratio" - }, - { - "body": "*Commemoratio Ss. Martyrum Machabæorum*\nFratérna nos, Dómine, Mártyrum tuórum coróna lætíficet: quæ et fídei nostræ præb", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*Commemoratio Ss. Martyrum Machabæorum*\nMystéria tua, Dómine, pro sanctórum Mártyrum tuórum honóre, devóta mente tractém", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Ss. Martyrum Machabæorum*\nPræsta, quǽsumus, omnípotens Deus: ut, quorum memóriam sacraménti participatióne", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-02": [ - { - "body": "*Ps 53:6-7*\nEcce, Deus adjuvat me, et Dóminus suscéptor est ánimæ meæ: avérte mala inimícis meis, et in veritáte tua dis", - "id": "Introitus" - }, - { - "body": "Páteant aures misericórdiæ tuæ, Dómine, précibus supplicántium: et, ut peténtibus desideráta concédas; fac eos quæ tibi ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 10:6-13*\nFratres: Non simus concupiscéntes malórum, sicut et i", - "id": "Lectio" - }, - { - "body": "*Ps 8:2*\nDómine, Dóminus noster, quam admirábile est nomen tuum in universa terra!\n℣. Quóniam eleváta est magnificéntia ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:41-47*\nIn illo témpore: Cum appropinquáret Jesus Jerúsalem, videns c", - "id": "Evangelium" - }, - { - "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nJustítiæ Dómini rectæ, lætificántes corda, et judícia ejus dulcióra super mel et favum: n", - "id": "Offertorium" - }, - { - "body": "Concéde nobis, quǽsumus, Dómine, hæc digne frequentáre mystéria: quia, quóties hujus hóstiæ commemorátio celebrátur, opu", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Joann 6:57*\nQui mandúcat meam carnem et bibit meum sánguinem, in me manet et ego in eo, dicit Dóminus.", - "id": "Communio" - }, - { - "body": "Tui nobis, quǽsumus, Dómine, commúnio sacraménti, et purificatiónem cónferat, et tríbuat unitátem.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-08-03": [ - { - "body": "*Ps 53:6-7*\nEcce, Deus adjuvat me, et Dóminus suscéptor est ánimæ meæ: avérte mala inimícis meis, et in veritáte tua dis", - "id": "Introitus" - }, - { - "body": "Páteant aures misericórdiæ tuæ, Dómine, précibus supplicántium: et, ut peténtibus desideráta concédas; fac eos quæ tibi ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 10:6-13*\nFratres: Non simus concupiscéntes malórum, sicut et i", - "id": "Lectio" - }, - { - "body": "*Ps 8:2*\nDómine, Dóminus noster, quam admirábile est nomen tuum in universa terra!\n℣. Quóniam eleváta est magnificéntia ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:41-47*\nIn illo témpore: Cum appropinquáret Jesus Jerúsalem, videns c", - "id": "Evangelium" - }, - { - "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nJustítiæ Dómini rectæ, lætificántes corda, et judícia ejus dulcióra super mel et favum: n", - "id": "Offertorium" - }, - { - "body": "Concéde nobis, quǽsumus, Dómine, hæc digne frequentáre mystéria: quia, quóties hujus hóstiæ commemorátio celebrátur, opu", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Joann 6:57*\nQui mandúcat meam carnem et bibit meum sánguinem, in me manet et ego in eo, dicit Dóminus.", - "id": "Communio" - }, - { - "body": "Tui nobis, quǽsumus, Dómine, commúnio sacraménti, et purificatiónem cónferat, et tríbuat unitátem.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-08-04": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui Ecclésiam tuam beáti Domínici Confessóris tui illumináre dignátus es méritis et doctrínis: concéde; ut ejus in", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8.*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui j", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiándu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Múnera tibi, Dómine, dicáta sanctífica: ut, méritis beáti Domínici Confessóris tui, nobis profíciant ad medélam.\nPer Dom", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui peccatórum nostrórum póndere prémimur, beáti Domínici Confessóris tui patroc", - "id": "Postcommunio" - } - ], - "2020-08-05": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum. (Allelúja, allelú", - "id": "Introitus" - }, - { - "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16.*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, ", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28; 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium. (Allelúja.)", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - } - ], - "2020-08-06": [ - { - "body": "*Ps 76:19*\nIlluxérunt coruscatiónes tuæ orbi terræ: commóta est et contrémuit terra.\n*Ps 83:2-3*\nQuam dilécta tabernácul", - "id": "Introitus" - }, - { - "body": "Deus, qui fídei sacraménta in Unigéniti tui gloriósa Transfiguratióne patrum testimónio roborásti, et adoptiónem filióru", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*2 Petri 1:16-19*\nCaríssimi: Non doctas fábulas secúti notam fecimus vobis Dómini n", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:2*\nSpeciosus forma præ fíliis hóminum: diffúsa est grátia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 17:1-9*\nIn illo témpore: Assúmpsit Jesus Petrum, et Jacóbum, et Joá", - "id": "Evangelium" - }, - { - "body": "*Ps 111:3*\nGlória et divítiæ in domo ejus: et justítia ejus manet in sǽculum sǽculi, allelúja.", - "id": "Offertorium" - }, - { - "body": "Obláta, quǽsumus, Dómine, múnera gloriósa Unigéniti tui Transfiguratióne sanctífica: nosque a peccatórum máculis, splend", - "id": "Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Matt 17:9*\nVisiónem, quam vidístis, némini dixéritis, donec a mórtuis resúrgat Fílius hóminis.", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut sacrosáncta Fílii tui Transfiguratiónis mystéria, quæ sollemni celebrámus offício,", - "id": "Postcommunio" - } - ], - "2020-08-07": [ - { - "body": "*Ps 36:30-31.*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1", - "id": "Introitus" - }, - { - "body": "Deus, qui beáto Cajetáno Confessóri tuo apostólicam vivéndi formam imitári tribuísti: da nobis, ejus intercessióne et ex", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Donati, Episcopi et Martyris*\nDeus, tuórum glória sacerdótum: præsta, quǽsumus, ut sancti Martyris tui ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec speráv", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annuntiá", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 6:24-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo potest ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio, et pro tuórum tibi grata sit honóre Sanctórum, e", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Donati, Episcopi et Martyris*\nPræsta, quǽsumus, Dómine: ut sancti Martyris tui et Episcopi Donati inter", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus : ut, qui cæléstia aliménta percépimus, intercedénte beáto Caietáno Confessóre tuo, per hæc co", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Donati, Episcopi et Martyris*\nOmnípotens et miséricors Deus, qui nos sacramentórum tuórum et partícipes", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-08": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Omnípotens et miséricors Deus, qui sanctum Joánnem Maríam pastoráli stúdio et jugi oratiónis ac pœniténtiæ ardóre mirábi", - "id": "Oratio" - }, - { - "body": "*Commemoratio Ss. Cyriaci, Largi et Smaragdi Martyrum*\nDeus, qui nos ánnua sanctórum Mártyrum tuórum Cyriáci, Largi et S", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Commemoratio Ss. Cyriaci, Largi et Smaragdi Martyrum*\nAccépta sit in conspéctu tuo, Dómine, nostra devótio: et eórum no", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Ss. Cyriaci, Largi et Smaragdi Martyrum*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus nost", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-09": [ - { - "body": "*Ps 54:17-20; 54:23*\nDum clamárem ad Dóminum, exaudívit vocem meam, ab his, qui appropínquant mihi: et humiliávit eos, q", - "id": "Introitus" - }, - { - "body": "Deus, qui omnipoténtiam tuam parcéndo máxime et miserándo maniféstas: multíplica super nos misericórdiam tuam; ut, ad tu", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 12:2-11*\nFratres: Scitis, quóniam, cum gentes essétis, ad simu", - "id": "Lectio" - }, - { - "body": "*Ps 16:8; 16:2*\nCustódi me, Dómine, ut pupíllam óculi: sub umbra alárum tuárum prótege me.\n℣. De vultu tuo judícium meum", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:9-14*\nIn illo témpore: Dixit Jesus ad quosdam, qui in se confidébant", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", - "id": "Offertorium" - }, - { - "body": "Tibi, Dómine, sacrifícia dicáta reddántur: quæ sic ad honórem nóminis tui deferénda tribuísti, ut eadem remédia fíeri no", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nAcceptábis sacrificium justítiæ, oblatiónes et holocáusta, super altáre tuum, Dómine.", - "id": "Communio" - }, - { - "body": "Quǽsumus, Dómine, Deus noster: ut, quos divínis reparáre non désinis sacraméntis, tuis non destítuas benígnus auxíliis.\n", - "id": "Postcommunio" - } - ], - "2020-08-10": [ - { - "body": "*Ps 95:6*\nConféssio et pulchritúdo in conspéctu ejus: sánctitas et magnificéntia in sanctificatióne ejus.\n*Ps 95:1*\nCant", - "id": "Introitus" - }, - { - "body": "Da nobis, quǽsumus, omnípotens Deus: vitiórum nostrorum flammas exstínguere; qui beáto Lauréntio tribuísti tormentórum s", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 9:6-10.*\nFratres: Qui parce séminat, parce et metet: et qui sé", - "id": "Lectio" - }, - { - "body": "*Ps 16:3.*\nProbásti, Dómine, cor meum, et visitásti nocte.\n℣. Igne me examinásti, et non est invénta in me iníquitas. Al", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 12:24-26*\nIn illo témpore: Dixit Jesus discípulis suis: Amen, amen,", - "id": "Evangelium" - }, - { - "body": "*Ps 95:6*\nConféssio et pulchritúdo in conspéctu ejus: sánctitas, et magnificéntia in sanctificatióne ejus.", - "id": "Offertorium" - }, - { - "body": "Accipe, quǽsumus, Dómine, múnera dignánter obláta: et, beáti Lauréntii suffragántibus méritis, ad nostræ salútis auxíliu", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Joann 12:26.*\nQui mihi mínistrat, me sequátur: et ubi ego sum, illic et miníster meus erit.", - "id": "Communio" - }, - { - "body": "Sacro múnere satiáti, súpplices te, Dómine, deprecámur: ut, quod débitæ servitútis celebrámus offício, intercedénte beát", - "id": "Postcommunio" - } - ], - "2020-08-11": [ - { - "body": "*Ps 54:17-20; 54:23*\nDum clamárem ad Dóminum, exaudívit vocem meam, ab his, qui appropínquant mihi: et humiliávit eos, q", - "id": "Introitus" - }, - { - "body": "Deus, qui omnipoténtiam tuam parcéndo máxime et miserándo maniféstas: multíplica super nos misericórdiam tuam; ut, ad tu", - "id": "Oratio" - }, - { - "body": "*Commemoratio Ss. Tiburtii et Susannæ Virginum et Martyrum*\nSanctórum Martyrum tuórum Tiburtii et Susánnæ nos, Dómine, f", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 12:2-11*\nFratres: Scitis, quóniam, cum gentes essétis, ad simu", - "id": "Lectio" - }, - { - "body": "*Ps 16:8; 16:2*\nCustódi me, Dómine, ut pupíllam óculi: sub umbra alárum tuárum prótege me.\n℣. De vultu tuo judícium meum", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:9-14*\nIn illo témpore: Dixit Jesus ad quosdam, qui in se confidébant", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", - "id": "Offertorium" - }, - { - "body": "Tibi, Dómine, sacrifícia dicáta reddántur: quæ sic ad honórem nóminis tui deferénda tribuísti, ut eadem remédia fíeri no", - "id": "Secreta" - }, - { - "body": "*Commemoratio Ss. Tiburtii et Susannæ Virginum et Martyrum*\nAdésto, Dómine, précibus pópuli tui, adésto munéribus: ut, q", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nAcceptábis sacrificium justítiæ, oblatiónes et holocáusta, super altáre tuum, Dómine.", - "id": "Communio" - }, - { - "body": "Quǽsumus, Dómine, Deus noster: ut, quos divínis reparáre non désinis sacraméntis, tuis non destítuas benígnus auxíliis.\n", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Ss. Tiburtii et Susannæ Virginum et Martyrum*\nSúmpsimus, Dómine, pignus redemptiónis ætérnæ: quod sit nobi", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-12": [ - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Introitus" - }, - { - "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ N. Vírginis tuæ festivitáte gaudémus; ita piæ devotiónis erudiámu", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - } - ], - "2020-08-13": [ - { - "body": "*Ps 54:17-20; 54:23*\nDum clamárem ad Dóminum, exaudívit vocem meam, ab his, qui appropínquant mihi: et humiliávit eos, q", - "id": "Introitus" - }, - { - "body": "Deus, qui omnipoténtiam tuam parcéndo máxime et miserándo maniféstas: multíplica super nos misericórdiam tuam; ut, ad tu", - "id": "Oratio" - }, - { - "body": "*Commemoratio Ss. Hippolyti et Cassiani Martyrum*\nDa, quǽsumus, omnípotens Deus: ut beatórum Mártyrum tuórum Hippolýti e", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 12:2-11*\nFratres: Scitis, quóniam, cum gentes essétis, ad simu", - "id": "Lectio" - }, - { - "body": "*Ps 16:8; 16:2*\nCustódi me, Dómine, ut pupíllam óculi: sub umbra alárum tuárum prótege me.\n℣. De vultu tuo judícium meum", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 18:9-14*\nIn illo témpore: Dixit Jesus ad quosdam, qui in se confidébant", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nAd te, Dómine, levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: ", - "id": "Offertorium" - }, - { - "body": "Tibi, Dómine, sacrifícia dicáta reddántur: quæ sic ad honórem nóminis tui deferénda tribuísti, ut eadem remédia fíeri no", - "id": "Secreta" - }, - { - "body": "*Commemoratio Ss. Hippolyti et Cassiani Martyrum*\nRéspice, Dómine, múnera pópuli tui, Sanctórum festivitáte votíva: et t", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nAcceptábis sacrificium justítiæ, oblatiónes et holocáusta, super altáre tuum, Dómine.", - "id": "Communio" - }, - { - "body": "Quǽsumus, Dómine, Deus noster: ut, quos divínis reparáre non désinis sacraméntis, tuis non destítuas benígnus auxíliis.\n", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Ss. Hippolyti et Cassiani Martyrum*\nSacramentórum tuórum, Dómine, commúnio sumpta nos salvet: et in tuæ ve", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-14": [ - { - "body": "*Ps 44:13; 44:15; 44:16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus", - "id": "Introitus" - }, - { - "body": "Deus, qui virginálem aulam beátæ Maríæ, in qua habitáres, elígere dignátus es: da, quǽsumus; ut, sua nos defensióne muni", - "id": "Oratio" - }, - { - "body": "*Pro S. Eusebio Confessore*\nDeus, qui nos beáti Eusébii Confessóris tui ánnua sollemnitáte lætíficas: concéde propítius;", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:23-31*\nEgo quasi vitis fructificávi suavitátem odóris: et flores mei fructus honóris e", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem qu", - "id": "Evangelium" - }, - { - "body": "Beáta es, Virgo María, quæ ómnium portásti Creatórem: genuísti qui te fecit, et in ætérnum pérmanes Virgo.", - "id": "Offertorium" - }, - { - "body": "Múnera nostra, Dómine, apud cleméntiam tuam Dei Genetrícis comméndet orátio: quam idcírco de præsénti sǽculo transtulíst", - "id": "Secreta" - }, - { - "body": "*Pro S. Eusebio Confessore*\nLaudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", - "id": "Communio" - }, - { - "body": "Concéde, miséricors Deus, fragilitáti nostræ præsídium: ut, qui sanctæ Dei Genetrícis festivitátem prævénimus; intercess", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Eusebio Confessore*\nRefécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemora", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-15": [ - { - "body": "*Ap 12:1*\nSignum magnum appáruit in cœlo: múlier amicta sole, et luna sub pédibus ejus, et in cápite ejus coróna stellár", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui Immaculátam Vírginem Maríam, Fílii tui genitrícem, córpore et ánima ad cœléstem glóriam ", - "id": "Oratio" - }, - { - "body": "Léctio libri Judith.\n*Judith 13, 22-25; 15:10*\nBenedíxit te Dóminus in virtúte sua, quia per te ad níhilum redégit inimí", - "id": "Lectio" - }, - { - "body": "*Ps 44:11-12; 44:14*\nAudi, fília, et vide, et inclína aurem tuam, et concupíscit rex decórem tuum.\n℣. Omnis glória ejus ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:41-50*\nIn illo témpore: Repléta est Spíritu Sancto Elisabeth et excl", - "id": "Evangelium" - }, - { - "body": "*Gen 3:15*\nInimicítias ponam inter te et mulíerem, et semen tuum et semen illíus.", - "id": "Offertorium" - }, - { - "body": "Ascéndat ad te, Dómine, nostræ devotiónis oblátio, et, beatíssima Vírgine María in cœlum assumpta intercedénte, corda no", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "*Luc 1:48-49*\nBeátam me dicent omnes generatiónes, quia fecit mihi magna qui potens est.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salutáribus sacraméntis: da, quǽsumus; ut, méritis et intercessióne beátæ Vírginis Maríæ in cœlum assúm", - "id": "Postcommunio" - } - ], - "2020-08-16": [ - { - "body": "*Ps 67:6-7; 67:36*\nDeus in loco sancto suo: Deus qui inhabitáre facit unánimes in domo: ipse dabit virtútem et fortitúdi", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui, abundántia pietátis tuæ, et mérita súpplicum excédis et vota: effúnde super nos miseric", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Joachim Confessoris, Patris B. Mariæ Virginis*\nDeus, qui præ ómnibus Sanctis tuis beátum Jóachim Genetr", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 15:1-10*\nFratres: Notum vobis fácio Evangélium, quod prædicáv", - "id": "Lectio" - }, - { - "body": "*Ps 27:7 27:1*\nIn Deo sperávit cor meum, et adjútus sum: et reflóruit caro mea, et ex voluntáte mea confitébor illi.\n℣. ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 7:31-37*\nIn illo témpore: Exiens Jesus de fínibus Tyri, venit per Si", - "id": "Evangelium" - }, - { - "body": "*Ps 29:2-3*\nExaltábo te, Dómine, quóniam suscepísti me, nec delectásti inimícos meos super me: Dómine, clamávi ad te, et", - "id": "Offertorium" - }, - { - "body": "Réspice, Dómine, quǽsumus, nostram propítius servitútem: ut, quod offérimus, sit tibi munus accéptum, et sit nostræ frag", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Joachim Confessoris, Patris B. Mariæ Virginis*\nSúscipe, clementíssime Deus, sacrifícium in honórem sanc", - "id": "Commemoratio Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Prov 3:9-10*\nHónora Dóminum de tua substántia, et de prímitiis frugum tuárum: et implebúntur hórrea tua saturitáte, et ", - "id": "Communio" - }, - { - "body": "Sentiámus, quǽsumus, Dómine, tui perceptióne sacraménti, subsídium mentis et córporis: ut, in utróque salváti, cæléstis ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Joachim Confessoris, Patris B. Mariæ Virginis*\nQuǽsumus, omnípotens Deus: ut per hæc sacraménta, quæ sú", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-17": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui nos beáti Hyacínthi Confessóris tui ánnua solemnitáte lætíficas: concéde propítius; ut, cujus natalítia cólimu", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque coelésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muni", - "id": "Postcommunio" - } - ], - "2020-08-18": [ - { - "body": "*Ps 67:6-7; 67:36*\nDeus in loco sancto suo: Deus qui inhabitáre facit unánimes in domo: ipse dabit virtútem et fortitúdi", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui, abundántia pietátis tuæ, et mérita súpplicum excédis et vota: effúnde super nos miseric", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Agapiti Martyris*\nLætétur Ecclésia tua, Deus, beáti Agapíti Mártyris tui confísa suffrágiis: atque, eju", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 15:1-10*\nFratres: Notum vobis fácio Evangélium, quod prædicáv", - "id": "Lectio" - }, - { - "body": "*Ps 27:7 27:1*\nIn Deo sperávit cor meum, et adjútus sum: et reflóruit caro mea, et ex voluntáte mea confitébor illi.\n℣. ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 7:31-37*\nIn illo témpore: Exiens Jesus de fínibus Tyri, venit per Si", - "id": "Evangelium" - }, - { - "body": "*Ps 29:2-3*\nExaltábo te, Dómine, quóniam suscepísti me, nec delectásti inimícos meos super me: Dómine, clamávi ad te, et", - "id": "Offertorium" - }, - { - "body": "Réspice, Dómine, quǽsumus, nostram propítius servitútem: ut, quod offérimus, sit tibi munus accéptum, et sit nostræ frag", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Agapiti Martyris*\nSúscipe, Dómine, múnera, quæ in ejus tibi sollemnitáte deférimus: cujus nos confídimu", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Prov 3:9-10*\nHónora Dóminum de tua substántia, et de prímitiis frugum tuárum: et implebúntur hórrea tua saturitáte, et ", - "id": "Communio" - }, - { - "body": "Sentiámus, quǽsumus, Dómine, tui perceptióne sacraménti, subsídium mentis et córporis: ut, in utróque salváti, cæléstis ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Agapiti Martyris*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventión", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-19": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Joánnem, Confessórem tuum, ad cultum sacrórum Córdium Jesu et Maríæ rite promovéndum, mirabíliter infla", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", - "id": "Postcommunio" - } - ], - "2020-08-20": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Bernárdum minístrum tribuísti: præsta, quǽsumus; ut, quem Doctórem vitæ habúi", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 39:6-14*\nJustus cor suum tradet ad vigilándum dilúculo ad Dóminum, qui fecit illum, et in ", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", - "id": "Offertorium" - }, - { - "body": "Sancti Bernardi Confessóris tui atque Doctoris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et t", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Bernárdus Conféssor tuus et Doctor egrégius, quǽsumus, precátor ac", - "id": "Postcommunio" - } - ], - "2020-08-21": [ - { - "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", - "id": "Introitus" - }, - { - "body": "Omnípotens et miséricors Deus, qui beátam Joánnam Francíscam, tuo amóre succénsam, admirábili spíritus fortitúdine per o", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", - "id": "Offertorium" - }, - { - "body": "Illo nos amóris igne, quǽsumus. Dómine, hæc hóstia salutáris inflámmet: quo beátæ Joannæ Francíscæ cor veheménter incénd", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Communio" - }, - { - "body": "Spíritum nobis, Dómine, tuæ caritátis infúnde: ut, quos cœléstis panis virtúte satiásti, beáta Joánna Francisca interced", - "id": "Postcommunio" - } - ], - "2020-08-22": [ - { - "body": "*Hebr 4:16.*\nAdeámus cum fidúcia ad thronum grátiæ, ut misericórdiam consequámur, et grátiam inveniámus in auxílio oppor", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui in Corde beátæ Maríæ Vírginis dignum Spíritus Sancti habitáculum præparásti: concéde pro", - "id": "Oratio" - }, - { - "body": "*Pro Ss. Timotheo, Hippolyto et Symphoriano, Martyribus*\nAuxílium tuum nobis, Dómine, quǽsumus, placátus impénde: et, in", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:23-31*\nEgo quasi vitis fructificávi suavitátem odóris: et flores mei, fructus honóris ", - "id": "Lectio" - }, - { - "body": "*Ps 12:6*\nExsultábit cor meum in salutári tuo: cantábo Dómino, qui bona tríbuit mihi: et psallam nómini Dómini altíssimi", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 19:25-27*\nIn illo témpore: Stabant juxta crucem Jesu mater ejus, e", - "id": "Evangelium" - }, - { - "body": "*Luc 1:46; 1:49*\nExsultávit spíritus meus in Deo salutári meo; quia fecit mihi magna qui potens est, et sanctum nomen ej", - "id": "Offertorium" - }, - { - "body": "Majestáti tuæ, Dómine, Agnum immaculátum offeréntes, quǽsumus: ut corda nostra ignis ille divínus accéndat, cui Cor beát", - "id": "Secreta" - }, - { - "body": "*Pro Ss. Timotheo, Hippolyto et Symphoriano, Martyribus*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum hon", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "*Joann 19:27*\nDixit Jesus matri suæ: Múlier, ecce fílius tuus: deinde dixit discípulo: Ecce mater tua. Et ex illa hora a", - "id": "Communio" - }, - { - "body": "Divínis refécti munéribus te, Dómine, supplíciter exorámus: ut beátæ Maríæ Vírginis intercessióne, cujus immaculáti Cord", - "id": "Postcommunio" - }, - { - "body": "*Pro Ss. Timotheo, Hippolyto et Symphoriano, Martyribus*\nDivíni múneris largitáte satiáti, quǽsumus, Dómine, Deus noster", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-23": [ - { - "body": "*Ps 69:2-3*\nDeus, in adjutórium meum inténde: Dómine, ad adjuvándum me festína: confundántur et revereántur inimíci mei,", - "id": "Introitus" - }, - { - "body": "Omnípotens et miséricors Deus, de cujus múnere venit, ut tibi a fidélibus tuis digne et laudabíliter serviátur: tríbue, ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 3:4-9*\nFratres: Fidúciam talem habémus per Christum ad Deum: n", - "id": "Lectio" - }, - { - "body": "*Ps 33:2-3*\nBenedícam Dóminum in omni témpore: semper laus ejus in ore meo.\n℣. In Dómino laudábitur ánima mea: áudiant m", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 10:23-37*\nIn illo témpore: Dixit Jesus discípulis suis: Beáti óculi, qu", - "id": "Evangelium" - }, - { - "body": "*Exod 32:11 32:13; 32:14*\nPrecátus est Moyses in conspéctu Dómini, Dei sui, et dixit: Quare, Dómine, irásceris in pópulo", - "id": "Offertorium" - }, - { - "body": "Hóstias, quǽsumus, Dómine, propítius inténde, quas sacris altáribus exhibémus: ut, nobis indulgéntiam largiéndo, tuo nóm", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 103:13; 103:14-15*\nDe fructu óperum tuórum, Dómine, satiábitur terra: ut edúcas panem de terra, et vinum lætíficet c", - "id": "Communio" - }, - { - "body": "Vivíficet nos, quǽsumus, Dómine, hujus participátio sancta mystérii: et páriter nobis expiatiónem tríbuat et múnimen.\nPe", - "id": "Postcommunio" - } - ], - "2020-08-24": [ - { - "body": "*Ps 138:17.*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortatus est principatus eórum.\n*Ps 138:1-2*\nDómin", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui hujus diei venerándam sanctámque lætítiam in beáti Apóstoli tui Bartholomæi festivitáte ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 12:27-31*\nFratres: Vos estis corpus Christi et membra de membr", - "id": "Lectio" - }, - { - "body": "*Ps 44:17; 44:18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro patribus tuis n", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 6:12-19*\nIn illo témpore: Exiit Jesus in montem oráre, et erat pernóct", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", - "id": "Offertorium" - }, - { - "body": "Beáti Apóstoli tui Bartholomæi sollémnia recenséntes, quǽsumus, Dómine: ut ejus auxílio tua benefícia capiámus, pro quo ", - "id": "Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël, dicit Dóminus.", - "id": "Communio" - }, - { - "body": "Sumptum, Dómine, pignus redemptiónis ætérnæ: sit nobis, quǽsumus; interveniénte beáto Bartholomæo Apóstolo tuo, vitæ præ", - "id": "Postcommunio" - } - ], - "2020-08-25": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Ludovícum Confessórem tuum de terréno regno ad cœléstis regni glóriam transtulísti: ejus, quǽsumus, mér", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 10:10-14*\nJustum dedúxit Dóminus per vias rectas, et ostendit illi regnum Dei, et dedit illi", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiandu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 19:12-26*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc:", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, sicut beátus Ludovícus Conféssor tuus, spretis mundi oblectaméntis, soli Regi Chr", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", - "id": "Communio" - }, - { - "body": "Deus, qui beátum Confessórem tuum Ludovícum mirificásti in terris, et gloriósum in cœlis fecísti: eúndem, quǽsumus, Eccl", - "id": "Postcommunio" - } - ], - "2020-08-26": [ - { - "body": "*Ps 86:1-2*\nFundaménta eius in móntibus sanctis: díligit Dóminus portas Sion super ómnia tabernácula Jacob.\n*Ps 86:3*\nGl", - "id": "Introitus" - }, - { - "body": "Omnipotens et misericors Deus, qui ad defensionem populi Polonici in beatissima Virgine Maria perpetuum auxilium mirabli", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Prov 8:17-24; 8:32-35*\nEgo díligentés mé díligó et quí máne vigilant ad mé invenient mé. Mécum ", - "id": "Lectio" - }, - { - "body": "Porta cæli et stella maris es. Virgo Maria, Regis æterni Mater ac Regina nostra.\n℣. Gratos nos redde Filio tuo: quia omn", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 2:1-11*\nIn illo témpore: Núptiæ factæ sunt in Cana Galilǽæ: et era", - "id": "Evangelium" - }, - { - "body": "*Ps 47:13-15*\nCircumdate Sion, et complectimini eam, narrate in turribus eius: pronite corda vestra in virtute eius, et ", - "id": "Offertorium" - }, - { - "body": "Pro religiónis christiánæ triúmpho hóstias placatiónis tibi, Dómine, immolámus: quæ ut nobis profíciant, opem auxiliátri", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 86:3; 86:2*\nGloriosa dicta sunt de te, civitas Dei: diligit Dominus portas Sion super omnia tabernacula Iacob.", - "id": "Communio" - }, - { - "body": "Adésto, Dómine, pópulis, qui participatióne Córporis et Sánguinis tui reficiúntur: ut, sanctíssima tua Genetríce auxiliá", - "id": "Postcommunio" - } - ], - "2020-08-27": [ - { - "body": "*Ps 33:12*\nVeníte, fílii, audíte me: timorem Dómini docébo vos.\n*Ps 33:2*\nBenedícam Dóminum in omni témpore: semper laus", - "id": "Introitus" - }, - { - "body": "Deus, qui per sanctum Joséphum Confessórem tuum, ad erudiéndam spíritu intellegéntiæ ac pietátis juventútem, novum Ecclé", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 10:10-14*\nJustum dedúxit Dóminus per vias rectas, et ostendit illi regnum Dei, et dedit illi", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-5*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes:", - "id": "Evangelium" - }, - { - "body": "*Ps 9:17*\nDesidérium páuperum exaudívit Dóminus: præparatiónem cordis eórum audívit auris tua.", - "id": "Offertorium" - }, - { - "body": "Atáre tuum, Dómine, munéribus cumulamus oblatis: ut ejus nobis fiant supplicatione propitia, cujus nos donasti patrocíni", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Marc 10:14*\nSínite párvulos veníre ad me, et ne prohibuéritis eos: tálium est enim regnum Dei.", - "id": "Communio" - }, - { - "body": "Sanctificáti, Dómine, salutári mystério: quǽsumus; ut, intercedénte sancto Josépho Confessóre tuo, ad majus semper profi", - "id": "Postcommunio" - } - ], - "2020-08-28": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Adésto supplicatiónibus nostris, omnípotens Deus: et, quibus fidúciam sperándæ pietátis indúlges, intercedénte beáto Aug", - "id": "Oratio" - }, - { - "body": "*Pro S. Hermete Martyre*\nDeus, qui beátum Hermétem Mártyrem tuum virtúte constántiæ in passióne roborásti: ex ejus nobis", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis s", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", - "id": "Offertorium" - }, - { - "body": "Sancti Augustíni Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concíliet; et t", - "id": "Secreta" - }, - { - "body": "*Pro S. Hermete Martyre*\nSacrifícium tibi, Dómine, laudis offérimus in tuórum commemoratióne Sanctórum: da, quǽsumus; ut", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Augustínus Póntifex tuus et Doctor egrégius, quǽsumus, precátor ac", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Hermete Martyre*\nRepleti, Dómine, benedictióne cœlésti, quǽsumus cleméntiam tuam: ut, intercedénte beáto Herméte", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-29": [ - { - "body": "*Ps 118:46-47.*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ ", - "id": "Introitus" - }, - { - "body": "Sancti Joánnis Baptístæ Præcursóris et Martyris tui, quǽsumus, Dómine, veneránda festívitas: salutáris auxílii nobis præ", - "id": "Oratio" - }, - { - "body": "*Pro S. Sabina Martyre*\nDeus, qui inter cétera poténtiæ tuæ mirácula étiam in sexu frágili victóriam martýrii contulísti", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Jeremíæ Prophétæ.\n*Jer 1:17-19*\nIn diébus illis: Factum est verbum Dómini ad me, dicens: Accínge lumbos tuos, et ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiándu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 6:17-29*\nIn illo témpore: Misit Heródes, ac ténuit Joánnem, et vinxi", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", - "id": "Offertorium" - }, - { - "body": "Múnera, quæ tibi, Dómine, pro sancti Martyris tui Joánnis Baptístæ passióne deférimus: quǽsumus; ut ejus obténtu nobis p", - "id": "Secreta" - }, - { - "body": "*Pro S. Sabina Martyre*\nHóstias tibi, Dómine, beátæ Sabínæ Mártyris tuæ dicátas méritis, benígnus assúme: et ad perpétuu", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 20:4*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso.", - "id": "Communio" - }, - { - "body": "Cónferat nobis, Dómine, sancti Joánnis Baptístæ sollémnitas: ut et magnífica sacraménta, quæ súmpsimus, significáta vene", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Sabina Martyre*\nDivíni muneris largitáte satiáti, quǽsumus, Dómine, Deus noster: ut, intercedénte beáta Sabína M", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-30": [ - { - "body": "*Ps 73:20; 73:19; 73:23*\nRéspice, Dómine, in testaméntum tuum, et ánimas páuperum tuórum ne derelínquas in finem: exsúrg", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, da nobis fídei, spei et caritátis augméntum: et, ut mereámur asséqui quod promíttis, fac nos", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas\n*Gal 3:16-22*\nFratres: Abrahæ dictæ sunt promissiónes, et sémini ejus. N", - "id": "Lectio" - }, - { - "body": "*Ps 73:20; 73:19; 73:22*\nRéspice, Dómine, in testaméntum tuum: et ánimas páuperum tuórum ne obliviscáris in finem.\n℣. Ex", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 17:11-19*\nIn illo témpore: Dum iret Jesus in Jerúsalem, transíbat per m", - "id": "Evangelium" - }, - { - "body": "*Sap 30:15-16*\nIn te sperávi, Dómine; dixi: Tu es Deus meus, in mánibus tuis témpora mea.", - "id": "Offertorium" - }, - { - "body": "Propitiáre, Dómine, pópulo tuo, propitiáre munéribus: ut, hac oblatióne placátus, et indulgéntiam nobis tríbuas et postu", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Sap 16:20*\nPanem de cœlo dedísti nobis, Dómine, habéntem omne delectaméntum et omnem sapórem suavitátis.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, cœléstibus sacraméntis: ad redemptiónis ætérnæ, quǽsumus, proficiámus augméntum.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-08-31": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui in liberándis fidélibus tuis ab impiórum captivitáte beátum Raymúndum Confessórem tuum mirábilem effecísti: ej", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque cœlesti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", - "id": "Postcommunio" - } - ], - "2020-09-01": [ - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Introitus" - }, - { - "body": "Domine Iesu Christe, qui in humili tuæ Crucis sequela ascensiones ad te disposuisti; concede propitius; ut, exemplo beat", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", - "id": "Offertorium" - }, - { - "body": "Virginis tuæ Bronislavæ precibus Domine Iesu Christe, plebis tuæ dona sanctifica: ut, quæ tibi tuo grata sunt instituto,", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", - "id": "Communio" - }, - { - "body": "Corporis et Sanguinis tui sacra libatio, Domine, intercedente beata Virgine Bronislava, ab omnibus nos caducis rebus ave", - "id": "Postcommunio" - } - ], - "2020-09-02": [ - { - "body": "*Ps 36:30-31.*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1", - "id": "Introitus" - }, - { - "body": "Concéde, quǽsumus, Ecclésiæ tuæ, omnípotens Deus: ut beátum Stéphanum Confessórem tuum, quem regnántem in terris propaga", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 31:8-11*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiándu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:12-26*\nIn illo témpore: Dixit Jesus discípulis suis parábolam hanc: ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Réspice, quas offérimus, hóstias, omnípotens Deus: et præsta; ut, qui passiónis Dominicæ mystéria celebrámus, imitémur q", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut beáti Stephani Confessóris tui fidem cóngrua devotióne sectémur; qui, pro ejúsdem ", - "id": "Postcommunio" - } - ], - "2020-09-03": [ - { - "body": "*Ps 88:20-22*\nExtuli eléctum de pópulo, óleo sancto meo unxi eum: ut manus mea sit semper cum eo, et brácchium meum conf", - "id": "Introitus" - }, - { - "body": "Deus, qui ad tuéndam cathólicam fidem, et univérsa in Christo instauránda sanctum Pium, Summum Pontíficem, cælésti sapié", - "id": "Oratio" - }, - { - "body": "Lectio prima Sancti Pauli apóstoli ad Thessalonicénses\n*1 Thess 2:2-8*\nFratres: Fidúciam habúimus in Deo nostro, loqui a", - "id": "Lectio" - }, - { - "body": "*Ps 39:10-11*\nAnnuntiávi justítiam tuam in cœtu magno; ecce lábia mea non cohíbui: Dómine, tu nosti.\n℣. Justítiam tuam n", - "id": "Graduale" - }, - { - "body": "Sequéntia Sancti evangélii secúndum Joánnem\n*Joannes 21:15-17*\nIn illo témpore, dicit Jesus Simóni Petro: Simon Joánnis,", - "id": "Evangelium" - }, - { - "body": "*Ps 33:12*\nVeníte, fílii; audíte me: timórem Dómini docébo vos.", - "id": "Offertorium" - }, - { - "body": "Oblatiónibus nostris, quǽsumus, Dómine, benígne suscéptis, da nobis, ut hæc divína mystéria, sancto Pio Summo Pontífice ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Joannes 6:56-57*\nCaro enim mea vere est cibus: et sanguis meus, vere est potus; qui mandúcat meam carnem et bibit meum ", - "id": "Communio" - }, - { - "body": "Mensæ cæléstis virtúte refécti, quǽsumus, Dómine Deus noster: ut, interveniénte sancto Pio Summo Pontífice; fortes effic", - "id": "Postcommunio" - } - ], - "2020-09-04": [ - { - "body": "*Ps 73:20; 73:19; 73:23*\nRéspice, Dómine, in testaméntum tuum, et ánimas páuperum tuórum ne derelínquas in finem: exsúrg", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, da nobis fídei, spei et caritátis augméntum: et, ut mereámur asséqui quod promíttis, fac nos", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas\n*Gal 3:16-22*\nFratres: Abrahæ dictæ sunt promissiónes, et sémini ejus. N", - "id": "Lectio" - }, - { - "body": "*Ps 73:20; 73:19; 73:22*\nRéspice, Dómine, in testaméntum tuum: et ánimas páuperum tuórum ne obliviscáris in finem.\n℣. Ex", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 17:11-19*\nIn illo témpore: Dum iret Jesus in Jerúsalem, transíbat per m", - "id": "Evangelium" - }, - { - "body": "*Sap 30:15-16*\nIn te sperávi, Dómine; dixi: Tu es Deus meus, in mánibus tuis témpora mea.", - "id": "Offertorium" - }, - { - "body": "Propitiáre, Dómine, pópulo tuo, propitiáre munéribus: ut, hac oblatióne placátus, et indulgéntiam nobis tríbuas et postu", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Sap 16:20*\nPanem de cœlo dedísti nobis, Dómine, habéntem omne delectaméntum et omnem sapórem suavitátis.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, cœléstibus sacraméntis: ad redemptiónis ætérnæ, quǽsumus, proficiámus augméntum.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-09-05": [ - { - "body": "*Eccli 45:30*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.\n", - "id": "Introitus" - }, - { - "body": "Da, quǽsumus, omnípotens Deus: ut beáti Lauréntii Confessóris tui atque Pontíficis veneránda sollémnitas, et devotiónem ", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:16-27; 45:3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Ps 44:20*\nNon est invéntus símilis illi, qui conser", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam h", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", - "id": "Offertorium" - }, - { - "body": "Sancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Lauréntio Confessór", - "id": "Postcommunio" - } - ], - "2020-09-06": [ - { - "body": "*Ps 83:10-11.*\nProtéctor noster, áspice, Deus, et réspice in fáciem Christi tui: quia mélior est dies una in átriis tuis", - "id": "Introitus" - }, - { - "body": "Custódi, Dómine, quǽsumus, Ecclésiam tuam propitiatióne perpétua: et quia sine te lábitur humána mortálitas; tuis semper", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:16-24*\nFratres: Spíritu ambuláte, et desidéria carnis non perfic", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nBonum est confidére in Dómino, quam confidére in hómine.\n℣. Bonum est speráre in Dómino, quam speráre in pr", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 6:24-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo potest", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nImmíttet Angelus Dómini in circúitu timéntium eum, et erípiet eos: gustáte et vidéte, quóniam suávis est Dóm", - "id": "Offertorium" - }, - { - "body": "Concéde nobis, Dómine, quǽsumus, ut hæc hóstia salutáris et nostrórum fiat purgátio delictórum, et tuæ propitiátio potes", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Matt 6:33*\nPrimum quǽrite regnum Dei, et ómnia adjiciéntur vobis, dicit Dóminus.", - "id": "Communio" - }, - { - "body": "Puríficent semper et múniant tua sacraménta nos, Deus: et ad perpétuæ ducant salvatiónis efféctum.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-09-07": [ - { - "body": "*Ps 63:11.*\nLætábitur justus in Dómino, et sperábit in eo: et laudabúntur omnes recti corde.\n*Ps 63:2*\nExáudi, Deus, ora", - "id": "Introitus" - }, - { - "body": "Beati Martyris tui Melchioris, quǽsumus, Domine, precibus adiuvemur; ut, cuius gloriamur triumpho, fidei constantiam imi", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timotheum\n*2 Tim 2:8-10; 3:10-12.*\nCaríssime: Memor esto, Dóminum Jesum Christum", - "id": "Lectio" - }, - { - "body": "*Ps 36:24*\nJustus cum cecíderit, non collidétur: quia Dóminus suppónit manum suam.\n*Ps 36:26*\nTota die miserétur, et cóm", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:26-32*\nIn illo témpore: Dixit Jesus discípulis suis: Nihil est o", - "id": "Evangelium" - }, - { - "body": "*Ps 20:4-5*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso: vitam pétiit a te, et tribuísti ei, allelúja.", - "id": "Offertorium" - }, - { - "body": "Accépta sit in conspéctu tuo, Dómine, nostra devótio: et ejus nobis fiat supplicatióne salutáris, pro cujus sollemnitáte", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Joann 12:26*\nQui mihi mínistrat, me sequátur: et ubi sum ego, illic et miníster meus erit.", - "id": "Communio" - }, - { - "body": "Refécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséquimur cultum, intercedénte beáto N. ", - "id": "Postcommunio" - } - ], - "2020-09-08": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", - "id": "Introitus" - }, - { - "body": "Fámulis tuis, quǽsumus, Dómine, cœléstis grátiæ munus impertíre: ut, quibus beátæ Vírginis partus éxstitit salútis exórd", - "id": "Oratio" - }, - { - "body": "*Pro S. Adriani, Mart*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti Hadriáni Mártyris tui natalítia cólimus, interce", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Prov 8:22-35*\nDóminus possédit me in inítio viárum suárum, ántequam quidquam fáceret a princípi", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo Maria: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Initium ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 1:1-16*\nLiber generatiónis Jesu Christi, fílii David, fílii Abraham.", - "id": "Evangelium" - }, - { - "body": "Beáta es, Virgo María, quæ ómnium portásti Creatórem: genuísti qui te fecit, et in ætérnum pérmanes Virgo.", - "id": "Offertorium" - }, - { - "body": "Unigéniti tui, Dómine, nobis succúrrat humánitas: ut, qui natus de Vírgine, matris integritátem non mínuit, sed sacrávit", - "id": "Secreta" - }, - { - "body": "*Pro S. Hadriano*\nMunéribus nostris, quǽsumus, Dómine, precibúsque susceptis: et cœléstibus nos munda mystériis, et clem", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, celebritátis ánnuæ votíva sacraménta: præsta, quǽsumus; ut et temporális vitæ nobis remédia præbeant ", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Hadriano*\nDa, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur offí", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-09": [ - { - "body": "*Ps 83:10-11.*\nProtéctor noster, áspice, Deus, et réspice in fáciem Christi tui: quia mélior est dies una in átriis tuis", - "id": "Introitus" - }, - { - "body": "Custódi, Dómine, quǽsumus, Ecclésiam tuam propitiatióne perpétua: et quia sine te lábitur humána mortálitas; tuis semper", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Gorgonii Martyris*\nSanctus tuus, Dómine, Gorgónius sua nos intercessióne lætíficet: et pia fáciat solle", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:16-24*\nFratres: Spíritu ambuláte, et desidéria carnis non perfic", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nBonum est confidére in Dómino, quam confidére in hómine.\n℣. Bonum est speráre in Dómino, quam speráre in pr", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 6:24-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo potest", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nImmíttet Angelus Dómini in circúitu timéntium eum, et erípiet eos: gustáte et vidéte, quóniam suávis est Dóm", - "id": "Offertorium" - }, - { - "body": "Concéde nobis, Dómine, quǽsumus, ut hæc hóstia salutáris et nostrórum fiat purgátio delictórum, et tuæ propitiátio potes", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Gorgonii Martyris*\nGrata tibi sit, Dómine, nostræ servitútis oblátio: pro qua sanctus Gorgónius Martyr ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 6:33*\nPrimum quǽrite regnum Dei, et ómnia adjiciéntur vobis, dicit Dóminus.", - "id": "Communio" - }, - { - "body": "Puríficent semper et múniant tua sacraménta nos, Deus: et ad perpétuæ ducant salvatiónis efféctum.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Gorgonii Martyris*\nFamíliam tuam, Deus, suávitas ætérna contíngat et végetet: quæ in Mártyre tuo Gorgón", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-10": [ - { - "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", - "id": "Introitus" - }, - { - "body": "Adésto Dómine supplicatiónibus nostris quas in beáti Nicolái Confessóris tui solemnitáte deférimus: ut qui nostræ justít", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", - "id": "Offertorium" - }, - { - "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto N. Confessóre tuo, per hæc contra óm", - "id": "Postcommunio" - } - ], - "2020-09-11": [ - { - "body": "*Ps 83:10-11.*\nProtéctor noster, áspice, Deus, et réspice in fáciem Christi tui: quia mélior est dies una in átriis tuis", - "id": "Introitus" - }, - { - "body": "Custódi, Dómine, quǽsumus, Ecclésiam tuam propitiatióne perpétua: et quia sine te lábitur humána mortálitas; tuis semper", - "id": "Oratio" - }, - { - "body": "*Commemoratio Ss. Proti et Hyacinthi Martyrum*\nBeatórum Mártyrum tuórum Proti et Hyacínthi nos, Dómine, fóveat pretiósa ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:16-24*\nFratres: Spíritu ambuláte, et desidéria carnis non perfic", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nBonum est confidére in Dómino, quam confidére in hómine.\n℣. Bonum est speráre in Dómino, quam speráre in pr", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 6:24-33*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo potest", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nImmíttet Angelus Dómini in circúitu timéntium eum, et erípiet eos: gustáte et vidéte, quóniam suávis est Dóm", - "id": "Offertorium" - }, - { - "body": "Concéde nobis, Dómine, quǽsumus, ut hæc hóstia salutáris et nostrórum fiat purgátio delictórum, et tuæ propitiátio potes", - "id": "Secreta" - }, - { - "body": "*Commemoratio Ss. Proti et Hyacinthi Martyrum*\nPro sanctórum Mártyrum tuórum Proti et Hyacínthi commemoratióne, múnera t", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 6:33*\nPrimum quǽrite regnum Dei, et ómnia adjiciéntur vobis, dicit Dóminus.", - "id": "Communio" - }, - { - "body": "Puríficent semper et múniant tua sacraménta nos, Deus: et ad perpétuæ ducant salvatiónis efféctum.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Ss. Proti et Hyacinthi Martyrum*\nUt percépta nos, Dómine, tua sancta puríficent: beatórum Mártyrum tuórum ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-12": [ - { - "body": "*Ps 44:13; 44:15-16*\nVultum tuum deprecabúntur omnes dívites plebis: adducéntur Regi Vírgines post eam: próximæ ejus add", - "id": "Introitus" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut fidéles tui, qui sub sanctíssimæ Vírginis Maríæ Nómine et protectióne lætántur; e", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:23-31*\nEgo quasi vitis fructificávi suavitátem odóris: et flores mei fructus honóris e", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:26-38*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitáte", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28; 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta víscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos úbique protegi; in ", - "id": "Postcommunio" - } - ], - "2020-09-13": [ - { - "body": "*Ps 85:1; 85:2-3*\nInclína, Dómine, aurem tuam ad me, et exáudi me: salvum fac servum tuum, Deus meus, sperántem in te: m", - "id": "Introitus" - }, - { - "body": "Ecclésiam tuam, Dómine, miserátio continuáta mundet et múniat: et quia sine te non potest salva consístere; tuo semper m", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:25-26; 6:1-10*\nFratres: Si spíritu vívimus, spíritu et ambulémus", - "id": "Lectio" - }, - { - "body": "*Ps 91:2-3.*\nBonum est confitéri Dómino: et psallere nómini tuo, Altíssime.\n℣. Ad annuntiándum mane misericórdiam tuam, ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:11-16*\nIn illo témpore: Ibat Jesus in civitátem, quæ vocátur Naim: e", - "id": "Evangelium" - }, - { - "body": "*Ps 39:2; 39:3; 39:4*\nExspéctans exspectávi Dóminum, et respéxit me: et exaudívit deprecatiónem meam: et immísit in os m", - "id": "Offertorium" - }, - { - "body": "Tua nos, Dómine, sacramenta custodiant: et contra diabólicos semper tueántur incúrsus.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Joann 6:52*\nPanis, quem ego dédero, caro mea est pro sǽculi vita.", - "id": "Communio" - }, - { - "body": "Mentes nostras et córpora possídeat, quǽsumus, Dómine, doni cœléstis operátio: ut non noster sensus in nobis, sed júgite", - "id": "Postcommunio" - } - ], - "2020-09-14": [ - { - "body": "*Gal 6:14*\nNos autem gloriári opórtet in Cruce Dómini nostri Jesu Christi: in quo est salus, vita et resurréctio nostra:", - "id": "Introitus" - }, - { - "body": "Deus, qui nos hodiérna die Exaltatiónis sanctæ Crucis ánnua sollemnitáte lætíficas: præsta, quǽsumus; ut, cujus mystériu", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 2:5-11*\nFratres: Hoc enim sentíte in vobis, quod et in Chr", - "id": "Lectio" - }, - { - "body": "*Phil 2:8-9*\nChristus factus est pro nobis obœ́diens usque ad mortem, mortem autem crucis.\n℣. Propter quod et Deus exalt", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 12:31-36*\nIn illo témpore: Dixit Jesus turbis Judæórum: Nunc judíci", - "id": "Evangelium" - }, - { - "body": "Prótege, Dómine, plebem tuam per signum sanctæ Crucis ab ómnibus insídiis inimicórum ómnium: ut tibi gratam exhibeámus s", - "id": "Offertorium" - }, - { - "body": "Jesu Christi, Dómini nostri, Córpore et Sánguine saginándi, per quem Crucis est sanctificátum vexíllum: quǽsumus, Dómine", - "id": "Secreta" - }, - { - "body": "*de Sancta Cruce*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, ", - "id": "Prefatio" - }, - { - "body": "Per signum Crucis de inimícis nostris líbera nos, Deus noster.", - "id": "Communio" - }, - { - "body": "Adésto nobis, Dómine, Deus noster: et, quos sanctæ Crucis lætári facis honóre, ejus quoque perpétuis defénde subsídiis.\n", - "id": "Postcommunio" - } - ], - "2020-09-15": [ - { - "body": "*Joann 19:25*\nStabant juxta Crucem Jesu Mater ejus, et soror Matris ejus, María Cléophæ, et Salóme et María Magdaléne.\n*", - "id": "Introitus" - }, - { - "body": "Deus, in cujus passióne, secúndum Simeónis prophetíam, dulcíssimam ánimam gloriósæ Vírginis et Matris Maríæ dolóris glad", - "id": "Oratio" - }, - { - "body": "Léctio libri Judith.\n*Judith 13:22; 13:23-25*\nBenedíxit te Dóminus in virtúte sua, quia per te ad níhilum redégit inimíc", - "id": "Lectio" - }, - { - "body": "Dolorósa et lacrimábilis es, Virgo María, stans juxta Crucem Dómini Jesu, Fílii tui, Redemptóris.\n℣. Virgo Dei Génetrix,", - "id": "Graduale" - }, - { - "body": "Stabat Mater dolorósa\nJuxta Crucem lacrimósa,\nDum pendébat Fílius.\n\nCujus ánimam geméntem,\nContristátam et doléntem\nPert", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 19:25-27.*\nIn illo témpore: Stabant juxta Crucem Jesu Mater ejus, ", - "id": "Evangelium" - }, - { - "body": "*Jer 18:20*\nRecordáre, Virgo, Mater Dei, dum stéteris in conspéctu Dómini, ut loquáris pro nobis bona, et ut avértat ind", - "id": "Offertorium" - }, - { - "body": "Offérimus tibi preces et hóstias, Dómine Jesu Christe, humiliter supplicántes: ut, qui Transfixiónem dulcíssimi spíritus", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Felíces sensus beátæ Maríæ Vírginis, qui sine morte meruérunt martýrii palmam sub Cruce Dómini.", - "id": "Communio" - }, - { - "body": "Sacrifícia, quæ súmpsimus, Dómine Jesu Christe, Transfixiónem Matris tuæ et Vírginis devóte celebrántes: nobis ímpetrent", - "id": "Postcommunio" - } - ], - "2020-09-16": [ - { - "body": "*Ps 78:11-12; 78:10*\nIntret in conspéctu tuo, Dómine, gémitus compeditórum: redde vicínis nostris séptuplum in sinu eóru", - "id": "Introitus" - }, - { - "body": "Beatórum Mártyrum, paritérque Pontíficum Cornélii et Cypriáni nos quǽsumus Dómine festa tueántur: et eórum comméndet orá", - "id": "Oratio" - }, - { - "body": "*Pro S. Euphemia*\nPræsta, Dómine, précibus nostris cum exsultatióne provéntum: ut sanctórum Mártyrum Euphémiæ, Lúciæ et ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 3:1-8*\nJustorum ánimæ in manu Dei sunt, et non tanget illos torméntum mortis. Visi sunt ocul", - "id": "Lectio" - }, - { - "body": "*Exod 15:11*\nGloriósus Deus in Sanctis suis: mirábilis in majestáte, fáciens prodígia.\n*Exod 15:6*\n℣. Déxtera tua, Dómin", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 21:9-19*\nIn illo témpore: Dixit Jesus discípulis suis: Cum audieritis ", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nMirábilis Deus in Sanctis suis: Deus Israël, ipse dabit virtútem et fortitúdinem plebi suæ: benedíctus Deus, ", - "id": "Offertorium" - }, - { - "body": "Adésto, Dómine, supplicatiónibus nostris, quas in Sanctórum tuórum commemoratióne deférimus: ut, qui nostræ justítiæ fid", - "id": "Secreta" - }, - { - "body": "*Pro S. Euphemia*\nVota pópuli tui, quǽsumus, Dómine, propítius inténde: et, quorum nos tríbuis sollémnia celebráre, fac ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentávit eos: tamquam aurum in fornáce probávit eos, et quas", - "id": "Communio" - }, - { - "body": "Quǽsumus, Dómine, salutáribus repléti mystériis: ut, quorum sollémnia celebrámus, eórum oratiónibus adjuvémur.\nPer Domin", - "id": "Postcommunio" - }, - { - "body": "Exáudi, Dómine, preces nostras: et sanctórum Mártyrum tuórum Euphémiæ, Lúciæ et Geminiáni, quorum festa sollémniter cele", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-17": [ - { - "body": "*Ps 85:1; 85:2-3*\nInclína, Dómine, aurem tuam ad me, et exáudi me: salvum fac servum tuum, Deus meus, sperántem in te: m", - "id": "Introitus" - }, - { - "body": "Ecclésiam tuam, Dómine, miserátio continuáta mundet et múniat: et quia sine te non potest salva consístere; tuo semper m", - "id": "Oratio" - }, - { - "body": "*Commemoratio Impressionis Stigmatum S. Francisci*\nDómine Jesu Christe, qui, frigescénte mundo, ad inflammándum corda no", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Gálatas.\n*Gal 5:25-26; 6:1-10*\nFratres: Si spíritu vívimus, spíritu et ambulémus", - "id": "Lectio" - }, - { - "body": "*Ps 91:2-3.*\nBonum est confitéri Dómino: et psallere nómini tuo, Altíssime.\n℣. Ad annuntiándum mane misericórdiam tuam, ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:11-16*\nIn illo témpore: Ibat Jesus in civitátem, quæ vocátur Naim: e", - "id": "Evangelium" - }, - { - "body": "*Ps 39:2; 39:3; 39:4*\nExspéctans exspectávi Dóminum, et respéxit me: et exaudívit deprecatiónem meam: et immísit in os m", - "id": "Offertorium" - }, - { - "body": "Tua nos, Dómine, sacramenta custodiant: et contra diabólicos semper tueántur incúrsus.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Commemoratio Impressionis Stigmatum S. Francisci*\nMúnera tibi, Dómine, dicata sanctífica: et, intercedénte beáto Francí", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Joann 6:52*\nPanis, quem ego dédero, caro mea est pro sǽculi vita.", - "id": "Communio" - }, - { - "body": "Mentes nostras et córpora possídeat, quǽsumus, Dómine, doni cœléstis operátio: ut non noster sensus in nobis, sed júgite", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Impressionis Stigmatum S. Francisci*\nDeus, qui mira Crucis mystéria in beáto Francísco Confessóre tuo mult", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-18": [ - { - "body": "*Eccli 1:14-15*\nDiléctio Dei honorábilis sapiéntia: quibus autem apparúerit in visu, díligunt eam in visióne et in agnit", - "id": "Introitus" - }, - { - "body": "Deus, qui ad unigénitum Fílium tuum exaltátum a terra ómnia tráhere disposuísti: pérfice propítius; ut, méritis et exémp", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios.\n*1 Cor 13:1-8*\nFratres: Si linguis hóminum loquar et Angelorum, cari", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 22:1-14*\nIn illo témpore: Loquebátur Jesus princípibus sacerdótum ", - "id": "Evangelium" - }, - { - "body": "*Ps 34:13*\nEgo autem, cum mihi molésti essent, induébar cilício. Humiliábam in jejúnio ánimam meam: et orátio mea in sin", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 68:30-31*\nEgo sum pauper et dolens: salus tua, Deus, suscépit me. Laudábo nomen Dei cum cantico: et magnificábo eum ", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", - "id": "Postcommunio" - } - ], - "2020-09-19": [ - { - "body": "*Ps 36:39*\nSalus autem justórum a Dómino: et protéctor eórum est in témpore tribulatiónis.\n*Ps 36:1*\nNoli æmulári in mal", - "id": "Introitus" - }, - { - "body": "Deus, qui nos ánnua sanctórum Mártyrum tuórum Januárii et Sociórum ejus sollemnitáte lætíficas: concéde propítius; ut, q", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebraeos.\n*Hebr 10:32-38*\nFratres: Rememorámini prístinos dies, in quibus illumi", - "id": "Lectio" - }, - { - "body": "*Ps 33:18-19*\nClamavérunt justi, et Dóminus exaudívit eos: et ex ómnibus tribulatiónibus eórum liberávit eos.\n℣. Juxta e", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:3-13*\nIn illo témpore: Sedénte Jesu super montem Olivéti, access", - "id": "Evangelium" - }, - { - "body": "*Sap 3:1-3*\nJustórum ánimæ in manu Dei sunt, et non tanget illos torméntum malítiae: visi sunt óculis insipiéntium mori:", - "id": "Offertorium" - }, - { - "body": "Oblátis, quǽsumus, Dómine, placáre munéribus: et, intercedéntibus sanctis Martýribus tuis Januário et Sóciis ejus, a cun", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 10:27*\nQuod dico vobis in ténebris, dícite in lúmine, dicit Dóminus: et quod in aure audítis, prædicáte super tect", - "id": "Communio" - }, - { - "body": "Hæc nos commúnio, Dómine, purget a crímine: et, intercedéntibus sanctis Martýribus tuis Januário et Sóciis ejus, coelést", - "id": "Postcommunio" - } - ], - "2020-09-20": [ - { - "body": "*Ps 85:3; 85:5*\nMiserére mihi, Dómine, quóniam ad te clamávi tota die: quia tu, Dómine, suávis ac mitis es, et copiósus ", - "id": "Introitus" - }, - { - "body": "Tua nos, quǽsumus, Dómine, grátia semper et prævéniat et sequátur: ac bonis opéribus júgiter præstet esse inténtos.\nPer ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 3:13-21*\nFratres: Obsecro vos, ne deficiátis in tribulatiónibus ", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:1-11*\nIn illo témpore: Cum intráret Jesus in domum cujúsdam príncip", - "id": "Evangelium" - }, - { - "body": "*Ps 39:14; 39:15*\nDómine, in auxílium meum réspice: confundántur et revereántur, qui quærunt ánimam meam, ut áuferant ea", - "id": "Offertorium" - }, - { - "body": "Munda nos, quǽsumus, Dómine, sacrifícii præséntis efféctu: et pérfice miserátus in nobis; ut ejus mereámur esse partícip", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 70:16-17; 70:18*\nDómine, memorábor justítiæ tuæ solíus: Deus, docuísti me a juventúte mea: et usque in senéctam et s", - "id": "Communio" - }, - { - "body": "Purífica, quǽsumus, Dómine, mentes nostras benígnus, et rénova cœléstibus sacraméntis: ut consequénter et córporum præse", - "id": "Postcommunio" - } - ], - "2020-09-21": [ - { - "body": "*Ps 36:30-31.*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1", - "id": "Introitus" - }, - { - "body": "Beáti Apóstoli et Evangelístæ Matthæi, Dómine, précibus adjuvémur: ut, quod possibílitas nostra non óbtinet, ejus nobis ", - "id": "Oratio" - }, - { - "body": "Léctio Ezechiélis Prophétæ.\n*Ezech 1:10-14*\nSimilitúdo vultus quátuor animálium: fácies hóminis, et fácies leónis a dext", - "id": "Lectio" - }, - { - "body": "*Ps 111:1-2*\nBeátus vir, qui timet Dóminum: in mandátis ejus cupit nimis.\n℣. Potens in terra erit semen ejus: generátio ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 9:9-13*\nIn illo témpore: Vidit Jesus hóminem sedéntem in telónio, ", - "id": "Evangelium" - }, - { - "body": "*Ps 20:4-5.*\nPosuísti, Dómine, in cápite ejus corónam de lápide pretióso: vitam pétiit a te, et tribuísti ei, allelúja.", - "id": "Offertorium" - }, - { - "body": "Supplicatiónibus beáti Matthæi Apóstoli et Evangelístæ, quǽsumus, Dómine, Ecclésiæ tuæ commendétur oblátio: cujus magníf", - "id": "Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Ps 20:6*\nMagna est glória ejus in salutári tuo: glóriam et magnum deI córem ímpones super eum, Dómine.", - "id": "Communio" - }, - { - "body": "Percéptis, Dómine, sacraméntis, beáto Matthæo Apóstolo tuo et Evangelísta interveniénte, deprecámur: ut, quæ pro ejus ce", - "id": "Postcommunio" - } - ], - "2020-09-22": [ - { - "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Thomam Pontíficem insígnis in páuperes misericórdiæ virtúte decorásti: quǽsumus; ut, ejus intercessióne", - "id": "Oratio" - }, - { - "body": "*Pro Ss. Mauritio et Sociis*\nAnnue, quǽsumus, omnípotens Deus: ut sanctórum Martyrum tuórum Maurítii et Sociórum ejus no", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", - "id": "Offertorium" - }, - { - "body": "Sancti Thomæ Confessóris tui atque Pontíficis, quǽsumus, Dómine, ánnua sollémnitas pietáti tuæ nos reddat accéptos: ut, ", - "id": "Secreta" - }, - { - "body": "*Pro Ss. Mauritio et Sociis*\nRéspice, quǽsumus, Dómine, múnera, quæ in sanctórum Mártyrum tuórum Maurítii et Sociórum ej", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Deus, fidélium remunerátor animárum: præsta; ut beáti Thomæ Confessóris tui atque Pontíficis, cujus venerándam celebrámu", - "id": "Postcommunio" - }, - { - "body": "*Pro Ss. Mauritio et Sociis*\nCœléstibus refécti sacraméntis et gáudiis: súpplices te rogámus, Dómine; ut, quorum gloriám", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-23": [ - { - "body": "*Ps 80:2; 80:3; 80:4; 80:5*\nExsultáte Deo, adjutóri nostro: jubiláte Deo Jacob: súmite psalmum jucúndum cum cíthara: cán", - "id": "Introitus" - }, - { - "body": "Misericórdiæ tuæ remédiis, quǽsumus, Dómine, fragílitas nostra subsístat: ut, quæ sua conditióne attéritur, tua cleménti", - "id": "Oratio" - }, - { - "body": "Léctio Amos Prophétæ.\n*Amos 9:13-15*\nHæc dicit Dóminus Deus: Ecce, dies véniunt: et comprehéndet arátor messórem, et cal", - "id": "LectioL1" - }, - { - "body": "*Ps 112,5-7*\nQuis sicut Dóminus, Deus noster, qui in altis hábitat, et humilia réspicit in cœlo et in terra?\n℣. Súscitan", - "id": "GradualeL1" - }, - { - "body": "Præsta, quǽsumus, Dómine, famíliæ tuæ supplicánti: ut, dum a cibis corporálibus se ábstinet, a vítiis quoque mente jejún", - "id": "OratioL1" - }, - { - "body": "*Commemoratio S. Lini Papæ et Martyris*\nGregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum a", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Esdræ.\n*Neh 8:1-10*\nIn diébus illis: Congregátus est omnis pópulus quasi vir unus ad platéam, quæ est ante ", - "id": "Lectio" - }, - { - "body": "*Ps 32:12 ; 32:6*\nBeáta gens, cujus est Dóminus Deus eórum: pópulus, quem elégit Dóminus in hereditátem sibi.\n℣. Verbo D", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum.\n*Marc 9:16-28*\nIn illo témpore: Respóndens unus de turba, dixit ad Jesum: ", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47; 18:48*\nMeditábor in mandátis tuis, quæ diléxi valde: et levábo manus meas ad mandáta tua, quæ diléxi.", - "id": "Offertorium" - }, - { - "body": "Hæc hóstia, Dómine, quǽsumus, emúndet nostra delícta: et ad sacrifícium celebrándum, subditórum tibi córpora mentésque s", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Lini Papæ et Martyris*\nOblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gr", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Neh 8:10*\nComédite pínguia et bíbite mulsum, et míttite partes his, qui non præparavérunt sibi: sanctus enim dies Dómin", - "id": "Communio" - }, - { - "body": "Suméntes, Dómine, dona cœléstia, supplíciter deprecámur: ut, quæ sédula servitúte, donánte te, gérimus, dignis sénsibus ", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Lini Papæ et Martyris*\nRefectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-24": [ - { - "body": "*Ps 85:3; 85:5*\nMiserére mihi, Dómine, quóniam ad te clamávi tota die: quia tu, Dómine, suávis ac mitis es, et copiósus ", - "id": "Introitus" - }, - { - "body": "Tua nos, quǽsumus, Dómine, grátia semper et prævéniat et sequátur: ac bonis opéribus júgiter præstet esse inténtos.\nPer ", - "id": "Oratio" - }, - { - "body": "*Commemoratio Beatæ Mariæ Virginis de Mercede*\nDeus, qui per gloriosíssimam Fílii tui Matrem, ad liberandos Christi fidé", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 3:13-21*\nFratres: Obsecro vos, ne deficiátis in tribulatiónibus ", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nTimébunt gentes nomen tuum, Dómine, et omnes reges terræ glóriam tuam.\n℣. Quóniam ædificávit Dóminus Sion", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 14:1-11*\nIn illo témpore: Cum intráret Jesus in domum cujúsdam príncip", - "id": "Evangelium" - }, - { - "body": "*Ps 39:14; 39:15*\nDómine, in auxílium meum réspice: confundántur et revereántur, qui quærunt ánimam meam, ut áuferant ea", - "id": "Offertorium" - }, - { - "body": "Munda nos, quǽsumus, Dómine, sacrifícii præséntis efféctu: et pérfice miserátus in nobis; ut ejus mereámur esse partícip", - "id": "Secreta" - }, - { - "body": "*Commemoratio Beatæ Mariæ Virginis de Mercede*\nTua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne,", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 70:16-17; 70:18*\nDómine, memorábor justítiæ tuæ solíus: Deus, docuísti me a juventúte mea: et usque in senéctam et s", - "id": "Communio" - }, - { - "body": "Purífica, quǽsumus, Dómine, mentes nostras benígnus, et rénova cœléstibus sacraméntis: ut consequénter et córporum præse", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Beatæ Mariæ Virginis de Mercede*\nSumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semp", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-25": [ - { - "body": "*Ps 104:3-4*\nLætétur cor quæréntium Dóminum: quǽrite Dóminum, et confirmámini: quǽrite fáciem ejus semper.\n*Ps 104:1*\nCo", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, observatiónes sacras ánnua devotióne recoléntes, et córpore tibi placeámus et men", - "id": "Oratio" - }, - { - "body": "*Commemoratio B. Ladislai Confessoris*\nDeus, qui beatum Ladislaum religiosa perfectione voluisti omnibus prælucere: conc", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Osee Prophétæ.\n*Osee 14:2-10*\nHæc dicit Dóminus Deus: Convértere, Israël, ad Dóminum, Deum tuum: quóniam corruíst", - "id": "Lectio" - }, - { - "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 7:36-50*\nIn illo témpore: Rogábat Jesum quidam de pharisǽis, ut manduc", - "id": "Evangelium" - }, - { - "body": "*Ps 102:2; 102:5*\nBénedic, ánima mea, Dómino, et noli oblivísci omnes retributiónes ejus: et renovábitur, sicut áquilæ, ", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sint, Dómine, quǽsumus, nostri dona jejúnii: quæ et expiándo nos tua grátia dignos effíciant, et ad sempité", - "id": "Secreta" - }, - { - "body": "*Commemoratio B. Ladislai Confessoris*\nHostias ad altare tuum offerentibus, Domine, da nobis illum pietatis affectum, qu", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 118:22; 118:24*\nAufer a me oppróbrium et contémptum, quia mandáta tua exquisívi, Dómine: nam et testimónia tua medit", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, benefícia potióra sumámus.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio B. Ladislai Confessoris*\nTribuat nobis, omnipotens Deus, suffragantibus beati Ladislai Confessoris tui pre", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-26": [ - { - "body": "*Ps 94:6-7*\nVeníte, adorémus Deum et procidámus ante Dóminum, plorémus ante eum, qui fecit nos: quia ipse est Dóminus, D", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui per continéntiam salutárem corpóribus medéris et méntibus: majestátem tuam súpplices exo", - "id": "Oratio" - }, - { - "body": "Léctio libri Levítici.\n*Levit 23:26-32*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: Décimo die mensis hujus ", - "id": "LectioL1" - }, - { - "body": "*Ps 78:9; 78:10*\nPropítius esto, Dómine, peccátis nostris: ne quando dicant gentes: Ubi est Deus eórum?\n℣. Adjuva nos, D", - "id": "GradualeL1" - }, - { - "body": "Da nobis, quǽsumus, omnípotens Deus: ut, jejunándo, tua grátia satiémur; et, abstinéndo, cunctis efficiámur hóstibus for", - "id": "OratioL1" - }, - { - "body": "Léctio libri Levítici.\n*Levit 23:39-43*\nIn diébus illis: Locútus est Dóminus ad Móysen, dicens: A quintodécimo die mensi", - "id": "LectioL2" - }, - { - "body": "*Ps 83:10; 83:9*\nProtéctor noster, áspice, Deus, et réspice super servos tuos.\n℣. Dómine, Deus virtútum, exáudi preces s", - "id": "GradualeL2" - }, - { - "body": "Tuére, quǽsumus, Dómine, fámiliam tuam: ut salútis ætérnæ remédia, quæ te inspiránte requírimus, te largiénte consequámu", - "id": "OratioL2" - }, - { - "body": "Léctio Michææ Prophétæ.\n*Mich 7:14; 7:16; 7:18-20*\nDómine, Deus noster, pasce pópulum tuum in virga tua, gregem hereditá", - "id": "LectioL3" - }, - { - "body": "*Ps 89:13; 89:1*\nConvértere, Dómine, aliquántulum, et deprecáre super servos tuos.\n℣. Dómine, refúgium factus es nobis, ", - "id": "GradualeL3" - }, - { - "body": "Præsta, quǽsumus, Dómine, sic nos ab épulis abstinére carnálibus: ut a vítiis irruéntibus páriter jejunémus.\nPer Dominum", - "id": "OratioL3" - }, - { - "body": "Léctio Zacharíæ Prophétæ.\n*Zach 8:14-19*\nIn diébus illis: Factum est verbum Dómini ad me, dicens: Hæc dicit Dóminus exer", - "id": "LectioL4" - }, - { - "body": "*Ps 140:2*\nDirigátur orátio mea sicut incénsum in conspéctu tuo, Dómine.\n℣. Elevátio mánuum meárum sacrifícium vespertín", - "id": "GradualeL4" - }, - { - "body": "Ut nobis, Dómine, tríbuis sollémne tibi deférre jejúnium: sic nobis, quǽsumus, indulgéntiæ præsta subsídium.\nPer Dominum", - "id": "OratioL4" - }, - { - "body": "Léctio Daniélis Prophétæ.\n*Dan 3:49-51*\nIn diébus illis: Angelus Dómini descéndit cum Azaría et sóciis ejus in fornácem:", - "id": "LectioL5" - }, - { - "body": "Deus, qui tribus púeris mitigásti flammas ígnium: concéde propítius; ut nos fámulos tuos non exúrat flamma vitiórum.\nPer", - "id": "OratioL5" - }, - { - "body": "*Commemoratio Ss. Cypriani et Justinæ Martyrum*\nBeatórum Mártyrum Cypriáni et Justínæ nos, Dómine, fóveant continuáta pæ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebræos.\n*Hebr 9:2-12*\nFratres: Tabernáculum factum est primum, in quo erant can", - "id": "Lectio" - }, - { - "body": "*Ps 116:1-2*\nLaudáte Dóminum, omnes gentes: et collaudáte eum, omnes pópuli.\n℣. Quóniam confirmáta est super nos miseric", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 13:6-17*\nIn illo témpore: Dicébat Jesus turbis hanc similitúdinem: Arb", - "id": "Evangelium" - }, - { - "body": "*Ps 87:2-3*\nDómine, Deus salútis meæ, in die clamávi et nocte coram te: intret orátio mea in conspéctu tuo, Dómine.", - "id": "Offertorium" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut oculis tuæ majestátis munus oblátum et grátiam nobis devotiónis obtíneat, et effé", - "id": "Secreta" - }, - { - "body": "*Commemoratio Ss. Cypriani et Justinæ Martyrum*\nMúnera tibi, Dómine, nostræ devotiónis offérimus: quæ et pro tuórum tibi", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Levit 23:41; 23:43*\nMense séptimo festa celebrábitis, cum in tabernáculis habitáre fécerim fílios Israël, cum edúcerem ", - "id": "Communio" - }, - { - "body": "Perfíciant in nobis, Dómine, quǽsumus, tua sacraménta quod cóntinent: ut, quæ nunc spécie gérimus, rerum veritáte capiám", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Ss. Cypriani et Justinæ Martyrum*\nPræsta nobis, quǽsumus, Dómine: intercedéntibus sanctis Martýribus tuis ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-27": [ - { - "body": "*Ps 118:137; 118:124*\nJustus es, Dómine, et rectum judícium tuum: fac cum servo tuo secúndum misericórdiam tuam.\n*Ps 118", - "id": "Introitus" - }, - { - "body": "Da, quǽsumus, Dómine, pópulo tuo diabólica vitáre contágia: et te solum Deum pura mente sectári.\nPer Dominum…", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 4:1-6*\nFratres: Obsecro vos ego vinctus in Dómino, ut digne ambu", - "id": "Lectio" - }, - { - "body": "*Ps 32:12; 32:6*\nBeáta gens, cujus est Dóminus Deus eórum: pópulus, quem elégit Dóminus in hereditátem sibi.\n℣. Verbo Dó", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:34-46*\nIn illo témpore: Accessérunt ad Jesum pharisǽi: et interr", - "id": "Evangelium" - }, - { - "body": "*Dan 9:17; 9:18; 9:19*\nOrávi Deum meum ego Dániel, dicens: Exáudi, Dómine, preces servi tui: illúmina fáciem tuam super ", - "id": "Offertorium" - }, - { - "body": "Majestátem tuam, Dómine, supplíciter deprecámur: ut hæc sancta, quæ gérimus, et a prætéritis nos delictis éxuant et futú", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 75:12-13*\nVovéte et réddite Dómino, Deo vestro, omnes, qui in circúitu ejus affértis múnera: terríbili, et ei qui au", - "id": "Communio" - }, - { - "body": "Sanctificatiónibus tuis, omnípotens Deus, et vítia nostra curéntur, et remédia nobis ætérna provéniant.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-09-28": [ - { - "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus: et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Wencesláum per martýrii palmam a terréno principátu ad cœléstem glóriam transtulísti: ejus précibus nos", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Sap 10:10-14*\nJustum dedúxit Dóminus per vias rectas, et ostendit illi regnum Dei, et dedit illi", - "id": "Lectio" - }, - { - "body": "*Ps 111:1-2*\nBeátus vir, qui timet Dóminum: in mandátis ejus cupit nimis.\n℣. Potens in terra erit semen ejus: generátio ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 10:34-42*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte arbi", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nGlória et honóre coronásti eum: et constituísti eum super ópera mánuum tuárum, Dómine.", - "id": "Offertorium" - }, - { - "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mystériis, et cleménter exáudi.\nPer ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 16:24*\nQui vult veníre post me, ábneget semetípsum, et tollat crucem suam, et sequátur me.", - "id": "Communio" - }, - { - "body": "Da, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur offício; ita perpétuo ", - "id": "Postcommunio" - } - ], - "2020-09-29": [ - { - "body": "*Ps 102:20.*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus, ad audiéndam vocem sermón", - "id": "Introitus" - }, - { - "body": "Deus, qui, miro órdine, Angelórum ministéria hominúmque dispénsas: concéde propítius; ut, a quibus tibi ministrántibus i", - "id": "Oratio" - }, - { - "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli.\n*Apoc 1:1-5*\nIn diébus illis: Significávit Deus, quæ opórtet fíeri cito", - "id": "Lectio" - }, - { - "body": "*Ps 102:20; 102:1*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus.\n℣. Benedic, ánima m", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-10*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes", - "id": "Evangelium" - }, - { - "body": "*Apoc 8:3; 8:4*\nStetit Angelus juxta aram templi, habens thuríbulum áureum in manu sua, et data sunt ei incénsa multa: e", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, laudis offérimus, supplíciter deprecántes: ut easdem, angélico pro nobis interveniénte suffrágio, ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Dan 3:58*\nBenedícite, omnes Angeli Dómini, Dóminum: hymnum dícite et superexaltáte eum in sǽcula.", - "id": "Communio" - }, - { - "body": "Beáti Archángeli tui Michælis intercessióne suffúlti: súpplices te, Dómine, deprecámur; ut, quod ore prosequimur, contin", - "id": "Postcommunio" - } - ], - "2020-09-30": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui Ecclésiæ tuæ in exponéndis sacris Scriptúris beátum Hierónymum, Confessórem tuum, Doctórem máximum providére d", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "Donis cœléstibus da nobis, quǽsumus, Dómine, líbera tibi mente servíre: ut múnera, quæ deférimus, interveniénte beáto Hi", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Repleti alimónia cœlésti, quǽsumus, Dómine: ut, interveniénte beáto Hierónymo Confessóre tuo, misericórdiæ tuæ grátiam c", - "id": "Postcommunio" - } - ], - "2020-10-01": [ - { - "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", - "id": "Introitus" - }, - { - "body": "Deus, qui beatum Ioannem Confessorem tuum eximiæ humilitatis et patientiæ donis decorasti: concede propitius; ut, eiusde", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:9-14*\nFratres: Spectáculum facti sumus mundo et Angelis et h", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", - "id": "Offertorium" - }, - { - "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28 et 29.*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto N. Confessóre tuo, per hæc contra óm", - "id": "Postcommunio" - } - ], - "2020-10-02": [ - { - "body": "*Ps 102:20.*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus, ad audiéndam vocem sermón", - "id": "Introitus" - }, - { - "body": "Deus, qui ineffábili providéntia sanctos Angelos tuos ad nostram custódiam míttere dignáris: largíre supplícibus tuis; e", - "id": "Oratio" - }, - { - "body": "Léctio libri Exodi.\n*Exod 23:20-23*\nHæc dicit Dóminus Deus: Ecce, ego mittam Angelum meum, qui præcédat te, et custódiat", - "id": "Lectio" - }, - { - "body": "*Ps 90:11-12*\nAngelis suis Deus mandávit de te, ut custódiant te in ómnibus viis tuis.\n℣. In mánibus portábunt te, ne um", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-10*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes", - "id": "Evangelium" - }, - { - "body": "*Ps 102:20-21*\nBenedícite Dóminum, omnes Angeli ejus: minístri ejus, qui fácitis verbum ejus, ad audiéndam vocem sermónu", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, múnera, quæ pro sanctórum Angelórum tuórum veneratióne deférimus: et concéde propítius; ut, perpétuis e", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Dan 3:58*\nBenedícite, omnes Angeli Dómini, Dóminum: hymnum dícite et superexaltáte eum in sǽcula.", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, divína mystéria, sanctórum Angelórum tuórum festivitáte lætántes: quǽsumus; ut eórum protectióne ab h", - "id": "Postcommunio" - } - ], - "2020-10-03": [ - { - "body": "*Cant 4:8-9.*\nVeni de Líbano, sponsa mea, veni de Líbano, veni: vulnerásti cor meum, soror mea sponsa, vulnerásti cor me", - "id": "Introitus" - }, - { - "body": "Dómine, qui dixísti: Nisi efficiámini sicut párvuli, non intrábitis in regnum cœlórum: da nobis, quǽsumus: ita sanctæ Te", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ.\n*Is 66:12-14*\nHæc dicit Dóminus: Ecce, ego declinábo super eam quasi flúvium pacis, et quasi torr", - "id": "Lectio" - }, - { - "body": "*Matt 11:25*\nConfíteor tibi, Pater, Dómine cœli et terræ, quia abscondísti hæc a sapiéntibus, et prudéntibus, et revelás", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 18:1-4*\nIn illo témpore: Accessérunt discípuli ad Jesum, dicéntes:", - "id": "Evangelium" - }, - { - "body": "*Luc 1:46-49*\nMagníficat ánima mea Dóminum: et exsultávit spíritus meus in Deo salutári meo: quia respéxit humilitátem a", - "id": "Offertorium" - }, - { - "body": "Sacrifícium nostrum tibi, Dómine, quǽsumus, sanctæ Terésiæ Vírginis tuæ precátio sancta concíliet: ut, in cujus honóre s", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Deut 32:10-12*\nCircumdúxit eam, et dócuit: et custodívit quasi pupíllam óculi sui. Sicut aquila expándit alas suas, et ", - "id": "Communio" - }, - { - "body": "Illo nos, Dómine amóris igne cœléste mystérium inflámmet: quo sancta Teresia Virgo tua se tibi pro homínibus caritátis v", - "id": "Postcommunio" - } - ], - "2020-10-04": [ - { - "body": "*Eccli 36:18*\nDa pacem, Dómine, sustinéntibus te, ut prophétæ tui fidéles inveniántur: exáudi preces servi tui et plebis", - "id": "Introitus" - }, - { - "body": "Dírigat corda nostra, quǽsumus, Dómine, tuæ miseratiónis operátio: quia tibi sine te placére non póssumus.\nPer Dominum…", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 1:4-8*\nFratres: Grátias ago Deo meo semper pro vobis in grátia", - "id": "Lectio" - }, - { - "body": "*Ps 121:1; 121:7*\nLætátus sum in his, quæ dicta sunt mihi: in domum Dómini íbimus.\n℣. Fiat pax in virtúte tua: et abundá", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 9:1-8*\nIn illo témpore: Ascéndens Jesus in navículam, transfretávit", - "id": "Evangelium" - }, - { - "body": "*Exodi 24:4; 24:5*\nSanctificávit Móyses altáre Dómino, ófferens super illud holocáusta et ímmolans víctimas: fecit sacri", - "id": "Offertorium" - }, - { - "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes éfficis: præsta, quǽsumus; u", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 95:8-9*\nTóllite hóstias, et introíte in átria ejus: adoráte Dóminum in aula sancta ejus.", - "id": "Communio" - }, - { - "body": "Grátias tibi reférimus, Dómine, sacro múnere vegetáti: tuam misericórdiam deprecántes; ut dignos nos ejus participatióne", - "id": "Postcommunio" - } - ], - "2020-10-05": [ - { - "body": "*Eccli 36:18*\nDa pacem, Dómine, sustinéntibus te, ut prophétæ tui fidéles inveniántur: exáudi preces servi tui et plebis", - "id": "Introitus" - }, - { - "body": "Dírigat corda nostra, quǽsumus, Dómine, tuæ miseratiónis operátio: quia tibi sine te placére non póssumus.\nPer Dominum…", - "id": "Oratio" - }, - { - "body": "*Commemoratio Ss. Placidi et Sociorum Martyrum*\nDeus, qui nos concédis sanctórum Mártyrum tuórum N. et N. natalítia cóle", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corinthios\n*1 Cor 1:4-8*\nFratres: Grátias ago Deo meo semper pro vobis in grátia", - "id": "Lectio" - }, - { - "body": "*Ps 121:1; 121:7*\nLætátus sum in his, quæ dicta sunt mihi: in domum Dómini íbimus.\n℣. Fiat pax in virtúte tua: et abundá", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 9:1-8*\nIn illo témpore: Ascéndens Jesus in navículam, transfretávit", - "id": "Evangelium" - }, - { - "body": "*Exodi 24:4; 24:5*\nSanctificávit Móyses altáre Dómino, ófferens super illud holocáusta et ímmolans víctimas: fecit sacri", - "id": "Offertorium" - }, - { - "body": "Deus, qui nos, per hujus sacrifícii veneránda commércia, uníus summæ divinitátis partícipes éfficis: præsta, quǽsumus; u", - "id": "Secreta" - }, - { - "body": "*Commemoratio Ss. Placidi et Sociorum Martyrum*\nAdésto, Dómine, supplicatiónibus nostris, quas in Sanctórum tuórum comme", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 95:8-9*\nTóllite hóstias, et introíte in átria ejus: adoráte Dóminum in aula sancta ejus.", - "id": "Communio" - }, - { - "body": "Grátias tibi reférimus, Dómine, sacro múnere vegetáti: tuam misericórdiam deprecántes; ut dignos nos ejus participatióne", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Ss. Placidi et Sociorum Martyrum*\nPræsta nobis, quǽsumus, Dómine: intercedéntibus sanctis Martýribus tuis ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-06": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Sancti Brunónis Confessóris tui, quǽsumus, Dómine, intercessiónibus adjuvémur: ut, qui majestátem tuam gráviter delinqué", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, qui cœlestia aliménta percépimus, intercedénte beáto Brunóne Confessóre tuo, per hæc cont", - "id": "Postcommunio" - } - ], - "2020-10-07": [ - { - "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beátæ Maríæ Vírginis: de cujus sollemnitáte gaudent Angeli", - "id": "Introitus" - }, - { - "body": "Deus, cujus Unigénitus per vitam, mortem et resurrectiónem suam nobis salútis ætérnæ præmia comparávit: concéde, quǽsumu", - "id": "Oratio" - }, - { - "body": "*Pro S. Marco Papa et Conf.*\nExáudi, Dómine, preces nostras: et, interveniénte beáto Marco Confessóre tuo atque Pontífic", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Prov 8:22-24; 8:32-35*\nDóminus possédit me in inítio viárum suárum, ántequam quidquam fáceret a", - "id": "Lectio" - }, - { - "body": "*Ps 44:5; 44:11; 44:12*\nPropter veritátem et mansuetúdinem et justítiam, et dedúcet te mirabíliter déxtera tua.\n℣. Audi,", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 1:26-38*\nIn illo témpore: Missus est Angelus Gábriel a Deo in civitáte", - "id": "Evangelium" - }, - { - "body": "*Eccli 24:25; Eccli 39:17*\nIn me grátia omnis viæ et veritátis, in me omnis spes vitæ et virtútis: ego quasi rosa plantá", - "id": "Offertorium" - }, - { - "body": "Fac nos, quǽsumus, Dómine, his munéribus offeréndis conveniénter aptári: et per sacratíssimi Rosárii mystéria sic vitam,", - "id": "Secreta" - }, - { - "body": "*Pro S. Marco Papa et Conf.*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se mér", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "*Eccli 39:19*\nFloréte, flores, quasi lílium, et date odórem, et frondéte in grátiam, collaudáte cánticum, et benedícite ", - "id": "Communio" - }, - { - "body": "Sacratíssimæ Genetrícis tuæ, cujus Rosárium celebrámus, quǽsumus, Dómine, précibus adjuvémur: ut et mysteriórum, quæ cól", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Marco Papa et Conf.*\nDa, quǽsumus, Dómine, fidélibus pópulis Sanctórum tuórum semper veneratióne lætari: et eóru", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-08": [ - { - "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", - "id": "Introitus" - }, - { - "body": "Dómine, Deus noster, qui beátæ Birgíttæ per Fílium tuum unigénitum secreta cœléstia revelásti: ipsíus pia intercessióne ", - "id": "Oratio" - }, - { - "body": "*Pro Ss. Sergio, Baccho, Marcello et Apulejo Martyribus*\nSanctórum Martyrum tuórum nos, Dómine, Sérgii, Bacchi, Marcélli", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*1 Tim 5:3-10.*\nCaríssime: Víduas honóra, quæ vere víduæ sunt. Si qua ", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Pro Ss. Sergio, Baccho, Marcello et Apulejo Martyribus*\nMajestátem tuam nobis, Dómine, quǽsumus, hæc hóstia reddat immo", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - }, - { - "body": "*Pro Ss. Sergio, Baccho, Marcello et Apulejo Martyribus*\nSacraméntis, Dómine, muniámur accéptis: et sanctórum Mártyrum t", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-09": [ - { - "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", - "id": "Introitus" - }, - { - "body": "Deus, qui beatum Vincentium Confessorem tuum atque Pontificem, spretis saeculi pompis humilitatis gloria decorasti: prae", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Joannis Leonardi Confessoris*\nDeus, qui beátum Joánnem Confessórem tuum ad fidem in géntibus propagánda", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45, 3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", - "id": "Offertorium" - }, - { - "body": "Sancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Joannis Leonardi Confessoris*\nSúscipe, Dómine, oblatiónem mundam salutáris hóstiæ: et præsta; ut, inter", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto N. Confessóre tuo a", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Joannis Leonardi Confessoris*\nPretiósi córporis, et sánguinis tui sacris refécti mystériis, Dómine, adp", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-10": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Dómine Jesu Christe, veræ humilitátis et exémplar et præmium: quǽsumus; ut, sicut beátum Francíscum in terréni honóris c", - "id": "Oratio" - }, - { - "body": "*Commemoratio Victoriae Chocimensis*\nDeus, qui in summis regni nostri periculis, antiqua bracchii tui miracula renovasti", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", - "id": "Offertorium" - }, - { - "body": "Sacris altáribus, Dómine, hóstias superpósitas sanctus Francíscus, quǽsumus, in salútem nobis proveníre depóscat.\nPer Do", - "id": "Secreta" - }, - { - "body": "*Commemoratio Victoriae Chocimensis*\nOdorem, Domine, sacrificii huius cum gratiarum actionibus suscipe: et praesta; ut, ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Prótegat nos, Dómine, cum tui perceptióne sacraménti beátus Francíscus, pro nobis intercedéndo: ut et conversatiónis eju", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Victoriae Chocimensis*\nDeus, qui neminem in te sperantem, nimium affligi permittis, sed pium precibus prae", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-11": [ - { - "body": "Salus pópuli ego sum, dicit Dóminus: de quacúmque tribulatióne clamáverint ad me, exáudiam eos: et ero illórum Dóminus i", - "id": "Introitus" - }, - { - "body": "Omnípotens et miséricors Deus, univérsa nobis adversántia propitiátus exclúde: ut mente et córpore páriter expedíti, quæ", - "id": "Oratio" - }, - { - "body": "*Commemoratio Maternitatis Beatæ Mariæ Virginis*\nDeus, qui de beátæ Maríæ Vírginis útero Verbum tuum, Angelo nuntiánte, ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 4:23-28*\nFratres: Renovámini spíritu mentis vestræ, et indúite n", - "id": "Lectio" - }, - { - "body": "*Ps 140:2*\nDirigátur orátio mea, sicut incénsum in conspéctu tuo, Dómine.\n℣. Elevatio mánuum meárum sacrifícium vespertí", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:1-14*\nIn illo témpore: Loquebátur Jesus princípibus sacerdótum e", - "id": "Evangelium" - }, - { - "body": "*Ps 137:7*\nSi ambulávero in médio tribulatiónis, vivificábis me, Dómine: et super iram inimicórum meórum exténdes manum ", - "id": "Offertorium" - }, - { - "body": "Hæc múnera, quǽsumus, Dómine, quæ óculis tuæ majestátis offérimus, salutária nobis esse concéde.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Commemoratio Maternitatis Beatæ Mariæ Virginis*\nTua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis, Unigéniti t", - "id": "Commemoratio Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 118:4-5*\nTu mandásti mandáta tua custodíri nimis: útinam dirigántur viæ meæ, ad custodiéndas justificatiónes tuas.", - "id": "Communio" - }, - { - "body": "Tua nos, Dómine, medicinális operátio, et a nostris perversitátibus cleménter expédiat, et tuis semper fáciat inhærére m", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Maternitatis Beatæ Mariæ Virginis*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáta Vírg", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-12": [ - { - "body": "Salus pópuli ego sum, dicit Dóminus: de quacúmque tribulatióne clamáverint ad me, exáudiam eos: et ero illórum Dóminus i", - "id": "Introitus" - }, - { - "body": "Omnípotens et miséricors Deus, univérsa nobis adversántia propitiátus exclúde: ut mente et córpore páriter expedíti, quæ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 4:23-28*\nFratres: Renovámini spíritu mentis vestræ, et indúite n", - "id": "Lectio" - }, - { - "body": "*Ps 140:2*\nDirigátur orátio mea, sicut incénsum in conspéctu tuo, Dómine.\n℣. Elevatio mánuum meárum sacrifícium vespertí", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:1-14*\nIn illo témpore: Loquebátur Jesus princípibus sacerdótum e", - "id": "Evangelium" - }, - { - "body": "*Ps 137:7*\nSi ambulávero in médio tribulatiónis, vivificábis me, Dómine: et super iram inimicórum meórum exténdes manum ", - "id": "Offertorium" - }, - { - "body": "Hæc múnera, quǽsumus, Dómine, quæ óculis tuæ majestátis offérimus, salutária nobis esse concéde.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 118:4-5*\nTu mandásti mandáta tua custodíri nimis: útinam dirigántur viæ meæ, ad custodiéndas justificatiónes tuas.", - "id": "Communio" - }, - { - "body": "Tua nos, Dómine, medicinális operátio, et a nostris perversitátibus cleménter expédiat, et tuis semper fáciat inhærére m", - "id": "Postcommunio" - } - ], - "2020-10-13": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum regem Eduárdum Confessórem tuum æternitátis glória coronásti: fac nos, quǽsumus; ita eum venerári in te", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, eius muniá", - "id": "Postcommunio" - } - ], - "2020-10-14": [ - { - "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", - "id": "Introitus" - }, - { - "body": "Deus, qui nos cónspicis ex nostra infirmitáte defícere: ad amórem tuum nos misericórditer per Sanctórum tuórum exémpla r", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", - "id": "Offertorium" - }, - { - "body": "Mýstica nobis, Dómine, prosit oblátio: quæ nos et a reátibus nostris expédiat, et perpétua salvatióne confírmet.\nPer Dom", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut reátus nostros múnera sacráta puríficent, et recte vivéndi nobis operéntur efféctum.\nPer D", - "id": "Postcommunio" - } - ], - "2020-10-15": [ - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Introitus" - }, - { - "body": "Exáudi nos, Deus, salutáris noster: ut, sicut de beátæ Terésiæ Vírginis tuæ festivitáte gaudémus; ita cœléstis ejus doct", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - } - ], - "2020-10-16": [ - { - "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", - "id": "Introitus" - }, - { - "body": "Deus, qui beátam Hedwígem a sǽculi pompa ad húmilem tuæ Crucis sequélam toto corde transíre docuísti: concéde; ut ejus m", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - } - ], - "2020-10-17": [ - { - "body": "*Cant 2:3.*\nSub umbra illíus, quem desideráveram, sedi: et fructus ejus dulcis gútturi meo.\n*Ps 83:2-3*\nQuam dilécta tab", - "id": "Introitus" - }, - { - "body": "Dómine Jesu Christe, qui investigábiles divítias Cordis tui beátæ Margarítæ Maríæ Vírgini mirabíliter revelásti: da nobi", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Ephes 3:8-9; 14-19.*\nFratres: Mihi ómnium sanctórum mínimo data est g", - "id": "Lectio" - }, - { - "body": "*Cant 8:7.*\nAquæ multæ non potuérunt exstínguere caritátem, nec flúmina óbruent illam.\n*Ps 72:26*\nDefécit caro mea et co", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 11:25-30*\nIn illo témpore: Respóndens Jesus, dixit: Confíteor tibi", - "id": "Evangelium" - }, - { - "body": "*Zach 9:17*\nQuid bonum ejus est et quid pulchrum ejus, nisi fruméntum electórum et vinum gérminans vírgines?", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sint, Dómine, plebis tuæ múnera: et concéde; ut ignis ille divínus nos inflámmet, quo de Corde Fílii tui em", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Cant 6:2*\nEgo dilécto meo, et diléctus meus mihi, qui páscitur inter lília.", - "id": "Communio" - }, - { - "body": "Córporis et Sánguinis tui, Dómine Jesu, sumptis mystériis: concéde nobis, quǽsumus, beáta Margaríta María Vírgine interc", - "id": "Postcommunio" - } - ], - "2020-10-18": [ - { - "body": "*Dan 3:31; 31:29; 31:35*\nOmnia, quæ fecísti nobis, Dómine, in vero judício fecísti, quia peccávimus tibi et mandátis tui", - "id": "Introitus" - }, - { - "body": "Largíre, quǽsumus, Dómine, fidélibus tuis indulgéntiam placátus et pacem: ut páriter ab ómnibus mundéntur offénsis, et s", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Lucæ Evangelistæ*\nIntervéniat pro nobis, quǽsumus, Dómine, sanctus tuus Lucas Evangélista: qui crucis m", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 5:15-21*\nFratres: Vidéte, quómodo caute ambulétis: non quasi ins", - "id": "Lectio" - }, - { - "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno. ℣. Aperis tu manum tuam: ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 4:46-53*\nIn illo témpore: Erat quidam régulus, cujus fílius infir", - "id": "Evangelium" - }, - { - "body": "*Ps 136:1*\nSuper flúmina Babylónis illic sédimus et flévimus: dum recordarémur tui, Sion.", - "id": "Offertorium" - }, - { - "body": "Cœléstem nobis prǽbeant hæc mystéria, quǽsumus, Dómine, medicínam: et vítia nostri cordis expúrgent.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Lucæ Evangelistæ*\nDonis cœléstibus da nobis, quǽsumus, Dómine, líbera tibi mente servíre: ut múnera quæ", - "id": "Commemoratio Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 118:49-50*\nMeménto verbi tui servo tuo, Dómine, in quo mihi spem dedísti: hæc me consoláta est in humilitáte mea.", - "id": "Communio" - }, - { - "body": "Ut sacris, Dómine, reddámur digni munéribus: fac nos, quǽsumus, tuis semper obœdíre mandátis.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Lucæ Evangelistæ*\nPræsta, quǽsumus, omnípotens Deus: ut, quod de sancto altári tuo accépimus, précibus ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-19": [ - { - "body": "*Ps 91:13-14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur: plantátus in domo Dómini: in átriis domus D", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Petrum Confessórem tuum admirábilis pœniténtiæ et altíssimæ contemplatiónis múnere illustráre dignátus ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses.\n*Phil 3:7-12*\nFratres: Quæ mihi fuérunt lucra, hæc arbitrátus sum ", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:32-34*\nIn illo témpore: Dixit Jesus discípulis suis: Nolíte timére,", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nIn virtúte tua, Dómine, lætábitur justus, et super salutáre tuum exsultábit veheménter: desidérium ánimæ eju", - "id": "Offertorium" - }, - { - "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio et pro tuórum tibi grata sit honóre Sanctórum, et", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28; 19:29*\nAmen, dico vobis: quod vos, qui reliquístis ómnia et secúti estis me, céntuplum accipiétis, et vitam", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, qui cælestia aliménta percépimus, intercedénte beáto Petro Confessóre tuo, per hæc contra", - "id": "Postcommunio" - } - ], - "2020-10-20": [ - { - "body": "*Eccli 18:12-13*\nMiserátio hóminis circa próximum: misericórdia autem Dei super omnem carnem. Qui misericórdiam habet, d", - "id": "Introitus" - }, - { - "body": "Da, quǽsumus, omnípotens Deus: ut, sancti Joánnis Confessóris exémplo in sciéntia Sanctórum proficiéntes atque áliis mis", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Jacóbi Apóstoli\n*Jac 2:12-17*\nCarissimi: Sic loquímini, et sic fácite sicut per legem libertátis i", - "id": "Lectio" - }, - { - "body": "*Ps 106:8-9*\nConfiteántur Dómino misericórdiæ ejus: et mirabília ejus fíliis hóminum.\n℣. Quia satiávit ánimam inánem: et", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Job 29:14-16*\nJustítia indútus sum, et vestívi me, sicut vestiménto et diadémate, judício meo. Oculus fui cæco et pes c", - "id": "Offertorium" - }, - { - "body": "Has, quǽsumus, Dómine, hóstias sancti Joánnis Confessóris tui méritis benígnus assúme: et præsta; ut, te super ómnia et ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 6:38*\nDate, et dábitur vobis: mensúram bonam et confértam et coagitátam et supereffluéntem dabunt in sinum vestrum.", - "id": "Communio" - }, - { - "body": "Pretiósi Córporis et Sánguinis tui, Dómine, pasti delíciis, tuam súpplices deprecámur clementiam: ut, sancti Joánnis Con", - "id": "Postcommunio" - } - ], - "2020-10-21": [ - { - "body": "*Is 61:1*\nSpíritus Dómini super me, eo quod únxerit Dóminus me: ad annuntiándum mansuétis misit me.\n*Ps 131:1*\nMeménto, ", - "id": "Introitus" - }, - { - "body": "Deus, qui in beáto Iacóbo, Confessóre tuo atque Pontífice, apostólicum evangelizándi spíritum mirabíliter renovásti: præ", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Hilarionis Abbatis*\nIntercéssio nos, quǽsumus, Dómine, beáti N. Abbátis comméndet: ut, quod nostris mér", - "id": "Commemoratio Oratio" - }, - { - "body": "*Philipp 1:3-11*\nGrátias ago Deo meo in omni memória vestri, semper in cunctis oratiónibus meis pro ómnibus vobis, cum g", - "id": "Lectio" - }, - { - "body": "*Sir 44:16-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n℣. Non est invéntus símilis illi, qui conserváret l", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisǽis: Ego sum pastor bo", - "id": "Evangelium" - }, - { - "body": "Elégit eum Dóminus sacerdótem sibi, ad sacrificándum ei hóstiam laudis.", - "id": "Offertorium" - }, - { - "body": "Tua, quǽsumus, Dómine, múnera illas in nobis puríssimi amóris flammas éxcitent, quibus beátus Iacóbus éadem offeréndo ta", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Hilarionis Abbatis*\nSacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salút", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Mt 10:27*\nQuod dico vobis in ténebris, dícite in lúmine: et quod in aure audítis, prædicáte super tecta.", - "id": "Communio" - }, - { - "body": "Persevéret in córdibus nostris, piíssime Deus, percépti grátia sacraménti: ut ea roboráti, beáti Iacóbi exémplo, et host", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Hilarionis Abbatis*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus N. Abbas, pro nobis int", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-22": [ - { - "body": "*Dan 3:31; 31:29; 31:35*\nOmnia, quæ fecísti nobis, Dómine, in vero judício fecísti, quia peccávimus tibi et mandátis tui", - "id": "Introitus" - }, - { - "body": "Largíre, quǽsumus, Dómine, fidélibus tuis indulgéntiam placátus et pacem: ut páriter ab ómnibus mundéntur offénsis, et s", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 5:15-21*\nFratres: Vidéte, quómodo caute ambulétis: non quasi ins", - "id": "Lectio" - }, - { - "body": "*Ps 144:15-16*\nOculi ómnium in te sperant, Dómine: et tu das illis escam in témpore opportúno. ℣. Aperis tu manum tuam: ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joannes 4:46-53*\nIn illo témpore: Erat quidam régulus, cujus fílius infir", - "id": "Evangelium" - }, - { - "body": "*Ps 136:1*\nSuper flúmina Babylónis illic sédimus et flévimus: dum recordarémur tui, Sion.", - "id": "Offertorium" - }, - { - "body": "Cœléstem nobis prǽbeant hæc mystéria, quǽsumus, Dómine, medicínam: et vítia nostri cordis expúrgent.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 118:49-50*\nMeménto verbi tui servo tuo, Dómine, in quo mihi spem dedísti: hæc me consoláta est in humilitáte mea.", - "id": "Communio" - }, - { - "body": "Ut sacris, Dómine, reddámur digni munéribus: fac nos, quǽsumus, tuis semper obœdíre mandátis.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-10-23": [ - { - "body": "*Ps 131:9-10.*\nSacerdótes tui, Dómine, induántur justítiam, et sancti tui exsúltent. Propter David servum tuum non avért", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Antónium Maríam Confessórem tuum atque Pontíficem, apostólicis virtútibus sublimásti, et per eum novas ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebrǽos\n*Heb 7:23-27.*\nFratres : Plures facti sunt sacerdótes, idcírco quod mort", - "id": "Lectio" - }, - { - "body": "*Ps 131:16-17*\n℣. Sacerdótes ejus índuam salutári, et sancti ejus exsultatióne exsultábunt.\n℣. Illuc prodúcam cornu Davi", - "id": "Graduale" - }, - { - "body": "Lectio sancti Evangelii secundum Matthǽum\n*Matt 24:42-47.*\nIn illo témpore: Dixit Jesus discípulis suis: Vigiláte ergo, ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso, et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Sancti Antónii Maríæ Confessóris tui atque Pontíficis, quǽsumus, Dómine, ánnua solémnitas pietáti tuæ nos reddat accépto", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46 - 47.*\nBeátus ille servus, quem cum vénerit dóminus ejus, invénerit sic faciéntem.", - "id": "Communio" - }, - { - "body": "Deus, fidélium remunerátor animárum: præsta; ut beáti Antónii Maríæ Confessóris tui atque Pontíficis, cuius venerándam c", - "id": "Postcommunio" - } - ], - "2020-10-24": [ - { - "body": "*Ps 102:20*\nBenedícite Dóminum, omnes Angeli ejus: poténtes virtúte, qui fácitis verbum ejus, ad audiéndam vocem sermónu", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Raphaélem Archángelum Tobíæ fámulo tuo cómitem dedísti in via: concéde nobis fámulis tuis; ut ejúsdem s", - "id": "Oratio" - }, - { - "body": "Léctio libri Tobíæ\n*Tob 12:7-15*\nIn diébus illis: Dixit Angelus Ráphaël ad Tobíam: Sacraméntum regis abscóndere bonum es", - "id": "Lectio" - }, - { - "body": "*Tob 8:3*\nAngelus Dómini Raphaël apprehéndit et ligávit dæmonem.\n*Ps 146:5.*\n℣. Magnus Dóminus noster, et magna virtus e", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 5:1-4*\nIn illo témpore: Erat dies festus Judæórum, et ascéndit Jesu", - "id": "Evangelium" - }, - { - "body": "*Apoc 8:3; 8:4*\nStetit Angelus juxta aram templi, habens thuríbulum áureum in manu sua, et data sunt ei incénsa multa: e", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, laudis offérimus, supplíciter deprecántes: ut eásdem, angélico pro nobis interveniénte suffrágio, ", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Dan 3:58*\nBenedícite, omnes Angeli Dómini, Dóminum: hymnum dícite et superexaltáte eum in sǽcula.", - "id": "Communio" - }, - { - "body": "Dirigere dignáre, Dómine Deus, in adjutórium nostrum sanctum Raphaélem Archángelum: et, quem tuæ majestáti semper assíst", - "id": "Postcommunio" - } - ], - "2020-10-25": [ - { - "body": "*Apoc 5:12; 1:6*\nDignus est Agnus, qui occísus est, accípere virtútem, et divinitátem, et sapiéntiam, et fortitúdinem, e", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui in dilécto Fílio tuo, universórum Rege, ómnia instauráre voluísti: concéde propítius; ut", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses.\n*Col 1:12-20*\nFratres: Grátias ágimus Deo Patri, qui dignos nos fec", - "id": "Lectio" - }, - { - "body": "*Ps 71:8; 78:11*\nDominábitur a mari usque ad mare, et a flúmine usque ad términos orbis terrárum.\n℣. Et adorábunt eum om", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 18:33-37*\nIn illo témpore: Dixit Pilátus ad Jesum: Tu es Rex Judæó", - "id": "Evangelium" - }, - { - "body": "*Ps 2:8.*\nPóstula a me, et dabo tibi gentes hereditátem tuam, et possessiónem tuam términos terræ.", - "id": "Offertorium" - }, - { - "body": "Hóstiam tibi, Dómine, humánæ reconciliatiónis offérimus: præsta, quǽsumus; ut, quem sacrifíciis præséntibus immolámus, i", - "id": "Secreta" - }, - { - "body": "*de D.N. Jesu Christi Rege*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómin", - "id": "Prefatio" - }, - { - "body": "*Ps 28:10; 28:11*\nSedébit Dóminus Rex in ætérnum: Dóminus benedícet pópulo suo in pace.", - "id": "Communio" - }, - { - "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, qui sub Christi Regis vexíllis militáre gloriámur, cum ipso, i", - "id": "Postcommunio" - } - ], - "2020-10-26": [ - { - "body": "*Esth 13:9; 13:10-11*\nIn voluntáte tua, Dómine, univérsa sunt pósita, et non est, qui possit resístere voluntáti tuæ: tu", - "id": "Introitus" - }, - { - "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut a cunctis adversitátibus, te protegénte, sit líbera, et in", - "id": "Oratio" - }, - { - "body": "Lectio Epistolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 6:10-17*\nFratres: Confortámini in Dómino et in poténtia virtútis", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nDómine, refúgium factus es nobis, a generatióne et progénie.\n℣. Priúsquam montes fíerent aut formarétur terr", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 18:23-35*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Job 1.1*\nVir erat in terra Hus, nómine Job: simplex et rectus ac timens Deum: quem Satan pétiit ut tentáret: et data es", - "id": "Offertorium" - }, - { - "body": "Suscipe, Dómine, propítius hóstias: quibus et te placári voluísti, et nobis salútem poténti pietáte restítui.\nPer Dominu", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nIn salutári tuo ánima mea, et in verbum tuum sperávi: quando fácies de persequéntibus me jud", - "id": "Communio" - }, - { - "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, quod ore percépimus, pura mente sectémur.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-10-27": [ - { - "body": "*Esth 13:9; 13:10-11*\nIn voluntáte tua, Dómine, univérsa sunt pósita, et non est, qui possit resístere voluntáti tuæ: tu", - "id": "Introitus" - }, - { - "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut a cunctis adversitátibus, te protegénte, sit líbera, et in", - "id": "Oratio" - }, - { - "body": "Lectio Epistolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 6:10-17*\nFratres: Confortámini in Dómino et in poténtia virtútis", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nDómine, refúgium factus es nobis, a generatióne et progénie.\n℣. Priúsquam montes fíerent aut formarétur terr", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 18:23-35*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Job 1.1*\nVir erat in terra Hus, nómine Job: simplex et rectus ac timens Deum: quem Satan pétiit ut tentáret: et data es", - "id": "Offertorium" - }, - { - "body": "Suscipe, Dómine, propítius hóstias: quibus et te placári voluísti, et nobis salútem poténti pietáte restítui.\nPer Dominu", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nIn salutári tuo ánima mea, et in verbum tuum sperávi: quando fácies de persequéntibus me jud", - "id": "Communio" - }, - { - "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, quod ore percépimus, pura mente sectémur.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-10-28": [ - { - "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2*\nDómine", - "id": "Introitus" - }, - { - "body": "Deus, qui nos per beátos Apóstolos tuos Simónem et Judam ad agnitiónem tui nóminis veníre tribuísti: da nobis eórum glór", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios\n*Eph 4:7-13*\nFratres: Unicuíque nostrum data est grátia secúndum mensúr", - "id": "Lectio" - }, - { - "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro pátribus tuis nati ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 15:17-25*\nIn illo témpore: Dixit Jesus discípulis suis: Hæc mando v", - "id": "Evangelium" - }, - { - "body": "*Ps 18:5*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.", - "id": "Offertorium" - }, - { - "body": "Glóriam, Dómine, sanctórum Apostolórum tuórum Simónis et Judæ perpétuam venerántes: quǽsumus; ut eam, sacris mystériis e", - "id": "Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Matt 19:28*\nVos, qui secúti estis me, sedébitis super sedes, judicántes duódecim tribus Israël.", - "id": "Communio" - }, - { - "body": "Percéptis, Dómine, sacraméntis, supplíciter exorámus: ut, intercedéntibus beátis Apóstolis tuis Simóne et Juda, quæ pro ", - "id": "Postcommunio" - } - ], - "2020-10-29": [ - { - "body": "*Esth 13:9; 13:10-11*\nIn voluntáte tua, Dómine, univérsa sunt pósita, et non est, qui possit resístere voluntáti tuæ: tu", - "id": "Introitus" - }, - { - "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut a cunctis adversitátibus, te protegénte, sit líbera, et in", - "id": "Oratio" - }, - { - "body": "Lectio Epistolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 6:10-17*\nFratres: Confortámini in Dómino et in poténtia virtútis", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nDómine, refúgium factus es nobis, a generatióne et progénie.\n℣. Priúsquam montes fíerent aut formarétur terr", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 18:23-35*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Job 1.1*\nVir erat in terra Hus, nómine Job: simplex et rectus ac timens Deum: quem Satan pétiit ut tentáret: et data es", - "id": "Offertorium" - }, - { - "body": "Suscipe, Dómine, propítius hóstias: quibus et te placári voluísti, et nobis salútem poténti pietáte restítui.\nPer Dominu", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nIn salutári tuo ánima mea, et in verbum tuum sperávi: quando fácies de persequéntibus me jud", - "id": "Communio" - }, - { - "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, quod ore percépimus, pura mente sectémur.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-10-30": [ - { - "body": "*Esth 13:9; 13:10-11*\nIn voluntáte tua, Dómine, univérsa sunt pósita, et non est, qui possit resístere voluntáti tuæ: tu", - "id": "Introitus" - }, - { - "body": "Famíliam tuam, quǽsumus, Dómine, contínua pietáte custódi: ut a cunctis adversitátibus, te protegénte, sit líbera, et in", - "id": "Oratio" - }, - { - "body": "Lectio Epistolæ beáti Pauli Apóstoli ad Ephésios\n*Ephes 6:10-17*\nFratres: Confortámini in Dómino et in poténtia virtútis", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nDómine, refúgium factus es nobis, a generatióne et progénie.\n℣. Priúsquam montes fíerent aut formarétur terr", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 18:23-35*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Job 1.1*\nVir erat in terra Hus, nómine Job: simplex et rectus ac timens Deum: quem Satan pétiit ut tentáret: et data es", - "id": "Offertorium" - }, - { - "body": "Suscipe, Dómine, propítius hóstias: quibus et te placári voluísti, et nobis salútem poténti pietáte restítui.\nPer Dominu", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nIn salutári tuo ánima mea, et in verbum tuum sperávi: quando fácies de persequéntibus me jud", - "id": "Communio" - }, - { - "body": "Immortalitátis alimóniam consecúti, quǽsumus, Dómine: ut, quod ore percépimus, pura mente sectémur.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-10-31": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", - "id": "Introitus" - }, - { - "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - } - ], - "2020-11-01": [ - { - "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre Sanctórum ómnium: de quorum sollemnitáte gaudent Angeli et", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, qui nos ómnium Sanctórum tuórum mérita sub una tribuísti celebritáte venerári: quǽsumus; ut ", - "id": "Oratio" - }, - { - "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli.\n*Apoc 7:2-12*\nIn diébus illis: Ecce, ego Joánnes vidi álterum Angelum a", - "id": "Lectio" - }, - { - "body": "*Ps 33:10; 33:11*\nTiméte Dóminum, omnes Sancti ejus: quóniam nihil deest timéntibus eum.\n℣. Inquiréntes autem Dóminum, n", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 5:1-12*\nIn illo témpore: Videns Jesus turbas, ascéndit in montem, ", - "id": "Evangelium" - }, - { - "body": "*Sap 3:1; 3:2; 3:3*\nJustórum ánimæ in manu Dei sunt, et non tanget illos torméntum malítiæ: visi sunt óculis insipiéntiu", - "id": "Offertorium" - }, - { - "body": "Múnera tibi, Dómine, nostræ devotiónis offérimus: quæ et pro cunctórum tibi grata sint honóre Justórum, et nobis salutár", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 5:8-10*\nBeáti mundo corde, quóniam ipsi Deum vidébunt; beáti pacífici, quóniam filii Dei vocabúntur: beáti, qui pe", - "id": "Communio" - }, - { - "body": "Da, quǽsumus, Dómine, fidélibus pópulis ómnium Sanctórum semper veneratióne lætári: et eórum perpétua supplicatióne muní", - "id": "Postcommunio" - } - ], - "2020-11-02": [ - { - "body": "*4 Esdr 2:34; 2:35*\nRéquiem ætérnam dona eis, Dómine: et lux perpétua lúceat eis.\n*Ps 64:2-3*\nTe decet hymnus, Deus, in ", - "id": "Introitus" - }, - { - "body": "Fidélium, Deus, ómnium Cónditor et Redémptor: animábus famulórum famularúmque tuárum remissiónem cunctórum tríbue peccat", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 15:51-57*\nFratres: Ecce, mystérium vobis dico: Omnes quidem re", - "id": "Lectio" - }, - { - "body": "*4 Esdr 2:34 et 35.*\nRéquiem ætérnam dona eis, Dómine: et lux perpétua lúceat eis.\n*Ps 111:7.*\n℣. In memória ætérna erit", - "id": "Graduale" - }, - { - "body": "Dies iræ, dies illa\nSolvet sæclum in favílla:\nTeste David cum Sibýlla.\n\nQuantus tremor est futúrus,\nQuando judex est ven", - "id": "Sequentia" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 5:25-29*\nIn illo témpore: Dixit Jesus turbis Judæórum: Amen, amen, ", - "id": "Evangelium" - }, - { - "body": "Dómine Jesu Christe, Rex glóriæ, líbera ánimas ómnium fidélium defunctórum de pœnis inférni et de profúndo lacu: líbera ", - "id": "Offertorium" - }, - { - "body": "Hóstias, quǽsumus, Dómine, quas tibi pro animábus famulórum famularúmque tuárum offérimus, propitiátus inténde: ut, quib", - "id": "Secreta" - }, - { - "body": "*Defunctorum*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pate", - "id": "Prefatio" - }, - { - "body": "*4 Esdr 2:35; 2:34*\nLux ætérna lúceat eis, Dómine:\n* Cum Sanctis tuis in ætérnum: quia pius es.\n℣. Requiem ætérnam dona ", - "id": "Communio" - }, - { - "body": "Animábus, quǽsumus, Dómine, famulórum famularúmque tuárum orátio profíciat supplicántium: ut eas et a peccátis ómnibus é", - "id": "Postcommunio" - } - ], - "2020-11-03": [ - { - "body": "*Ps 129:3-4*\nSi iniquitátes observáveris, Dómine: Dómine, quis sustinébit? quia apud te propitiátio est, Deus Israël.\n*P", - "id": "Introitus" - }, - { - "body": "Deus, refúgium nostrum et virtus: adésto piis Ecclésiæ tuæ précibus, auctor ipse pietátis, et præsta; ut, quod fidéliter", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 1:6-11*\nFratres: Confídimus in Dómino Jesu, quia, qui cœpit i", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:15-21*\nIn illo témpore: Abeúntes pharisǽi consílium iniérunt, ut", - "id": "Evangelium" - }, - { - "body": "*Esth 14:12; 14:13*\nRecordáre mei, Dómine, omni potentátui dóminans: et da sermónem rectum in os meum, ut pláceant verba", - "id": "Offertorium" - }, - { - "body": "Da, miséricors Deus: ut hæc salutáris oblátio et a própriis nos reátibus indesinénter expédiat, et ab ómnibus tueátur ad", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 16:6*\nEgo clamávi, quóniam exaudísti me, Deus: inclína aurem tuam et exáudi verba mea.", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, sacri dona mystérii, humíliter deprecántes: ut, quæ in tui commemoratiónem nos fácere præcepísti, in ", - "id": "Postcommunio" - } - ], - "2020-11-04": [ - { - "body": "*Eccli 45:30*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.\n", - "id": "Introitus" - }, - { - "body": "Ecclésiam tuam, Dómine, sancti Caróli Confessóris tui atque Pontíficis contínua protectióne custódi: ut, sicut illum pas", - "id": "Oratio" - }, - { - "body": "*Pro Ss. Vitale et Agrícola Martyribus*\nPræsta, quǽsumus, omnípotens Deus: ut, qui sanctórum Mártyrum tuórum Vitális et ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 44:16-27; 45:3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est j", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\n℣. Non est invéntus símilis illi, qui ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:14-23*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", - "id": "Offertorium" - }, - { - "body": "Sancti tui, quǽsumus, Dómine, nos ubique lætíficent: ut, dum eórum mérita recólimus, patrocínia sentiámus.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Pro Ss. Vitale et Agrícola Martyribus*\nOblátis, quǽsumus, Dómine, placáre munéribus: et, intercedéntibus sanctis Martýr", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, de percéptis munéribus grátias exhibéntes, intercedénte beáto Cárolo Confessóre t", - "id": "Postcommunio" - }, - { - "body": "*Pro Ss. Vitale et Agrícola Martyribus*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedéntibus sanctis Martýrib", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-05": [ - { - "body": "*Ps 129:3-4*\nSi iniquitátes observáveris, Dómine: Dómine, quis sustinébit? quia apud te propitiátio est, Deus Israël.\n*P", - "id": "Introitus" - }, - { - "body": "Deus, refúgium nostrum et virtus: adésto piis Ecclésiæ tuæ précibus, auctor ipse pietátis, et præsta; ut, quod fidéliter", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 1:6-11*\nFratres: Confídimus in Dómino Jesu, quia, qui cœpit i", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:15-21*\nIn illo témpore: Abeúntes pharisǽi consílium iniérunt, ut", - "id": "Evangelium" - }, - { - "body": "*Esth 14:12; 14:13*\nRecordáre mei, Dómine, omni potentátui dóminans: et da sermónem rectum in os meum, ut pláceant verba", - "id": "Offertorium" - }, - { - "body": "Da, miséricors Deus: ut hæc salutáris oblátio et a própriis nos reátibus indesinénter expédiat, et ab ómnibus tueátur ad", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 16:6*\nEgo clamávi, quóniam exaudísti me, Deus: inclína aurem tuam et exáudi verba mea.", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, sacri dona mystérii, humíliter deprecántes: ut, quæ in tui commemoratiónem nos fácere præcepísti, in ", - "id": "Postcommunio" - } - ], - "2020-11-06": [ - { - "body": "*Ps 129:3-4*\nSi iniquitátes observáveris, Dómine: Dómine, quis sustinébit? quia apud te propitiátio est, Deus Israël.\n*P", - "id": "Introitus" - }, - { - "body": "Deus, refúgium nostrum et virtus: adésto piis Ecclésiæ tuæ précibus, auctor ipse pietátis, et præsta; ut, quod fidéliter", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 1:6-11*\nFratres: Confídimus in Dómino Jesu, quia, qui cœpit i", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 22:15-21*\nIn illo témpore: Abeúntes pharisǽi consílium iniérunt, ut", - "id": "Evangelium" - }, - { - "body": "*Esth 14:12; 14:13*\nRecordáre mei, Dómine, omni potentátui dóminans: et da sermónem rectum in os meum, ut pláceant verba", - "id": "Offertorium" - }, - { - "body": "Da, miséricors Deus: ut hæc salutáris oblátio et a própriis nos reátibus indesinénter expédiat, et ab ómnibus tueátur ad", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 16:6*\nEgo clamávi, quóniam exaudísti me, Deus: inclína aurem tuam et exáudi verba mea.", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, sacri dona mystérii, humíliter deprecántes: ut, quæ in tui commemoratiónem nos fácere præcepísti, in ", - "id": "Postcommunio" - } - ], - "2020-11-07": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", - "id": "Introitus" - }, - { - "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - } - ], - "2020-11-08": [ - { - "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", - "id": "Introitus" - }, - { - "body": "Absólve, quǽsumus, Dómine, tuórum delícta populórum: ut a peccatórum néxibus, quæ pro nostra fraglitáte contráximus, tua", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Phil 3:17-21; 4:1-3*\nFratres: Imitatóres mei estóte, et observáte ", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 9:18-26*\nIn illo témpore: Loquénte Jesu ad turbas, ecce, princeps u", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", - "id": "Offertorium" - }, - { - "body": "Pro nostræ servitútis augménto sacrifícium tibi, Dómine, laudis offérimus: ut, quod imméritis contulísti, propítius exse", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, quos divína tríbuis participatióne gaudére, humánis non sinas subjacére perículis.\nPer Do", - "id": "Postcommunio" - } - ], - "2020-11-09": [ - { - "body": "*Gen 28:17*\nTerríbilis est locus iste: hic domus Dei est et porta cœli: et vocábitur aula Dei. (T.P. Allelúja, allelúja.", - "id": "Introitus" - }, - { - "body": "Deus, qui nobis per síngulos annos hujus sancti templi tui consecratiónis réparas diem, et sacris semper mystériis repæs", - "id": "Oratio" - }, - { - "body": "*Pro S. Theodoro Mart.*\nDeus, qui nos beáti Theodóri Mártyris tui confessióne gloriósa circúmdas et prótegis: præsta nob", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli\n*Apoc 21:2-5*\nIn diébus illis: Vidi sanctam civitátem Jerúsalem novam de", - "id": "Lectio" - }, - { - "body": "Locus iste a Deo factus est, inæstimábile sacraméntum, irreprehensíbilis est.\n℣. Deus, cui astat Angelórum chorus, exáud", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:1-10*\nIn illo témpore: Ingréssus Jesus perambulábat Jéricho. Et ecce", - "id": "Evangelium" - }, - { - "body": "*1 Par 29:17-18*\nDómine Deus, in simplicitáte cordis mei lætus óbtuli univérsa; et pópulum tuum, qui repértus est, vidi ", - "id": "Offertorium" - }, - { - "body": "Annue, quǽsumus, Dómine, précibus nostris: ut, dum hæc vota præséntia réddimus, ad ætérna præmia, te adjuvánte, pervenír", - "id": "Secreta" - }, - { - "body": "*Pro S. Theodoro Mart.*\nSúscipe, Dómine, fidélium preces cum oblatiónibus hostiárum: et, intercedénte beáto Theodóro Már", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 21:13*\nDomus mea domus oratiónis vocábitur, dicit Dóminus: in ea omnis, qui petit, áccipit; et qui quærit, invénit", - "id": "Communio" - }, - { - "body": "Deus, qui de vivis et electis lapídibus ætérnum majestáti tuæ prǽparas habitáculum: auxiliáre pópulo tuo supplicánti; ut", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Theodoro Mart.*\nPræsta nobis, quǽsumus, Dómine: intercedénte beáto Theodóro Mártyre tuo; ut, quod ore contíngimu", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-10": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Deus, qui in corde beáti Andréæ Confessóris tui, per árduum cotídie in virtútibus proficiéndi votum, admirábiles ad te a", - "id": "Oratio" - }, - { - "body": "*Pro Ss. Tryphone, Respicio et Nympha Virg., Mm.*\nFac nos, quǽsumus, Dómine, sanctórum Mártyrum tuórum Tryphónis, Respíc", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 31:8-11.*\nBeátus vir, qui invéntus est sine mácula, et qui post aurum non ábiit, nec sperá", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Justus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\n℣. Ad annun", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 12:35-40*\nIn illo témpore: Dixit Jesus discípulis suis: Sint lumbi vest", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Laudis tibi, Dómine, hóstias immolámus in tuórum commemoratióne Sanctórum: quibus nos et præséntibus éxui malis confídim", - "id": "Secreta" - }, - { - "body": "*Pro Ss. Tryphone, Respicio et Nympha Virg., Mm.*\nMúnera tibi, Dómine, nostræ devotiónis offérimus: quæ et pro tuórum ti", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47.*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua ", - "id": "Communio" - }, - { - "body": "Refécti cibo potúque cœlésti, Deus noster, te súpplices exorámus: ut, in cujus hæc commemoratióne percépimus, ejus muniá", - "id": "Postcommunio" - }, - { - "body": "*Pro Ss. Tryphone, Respicio et Nympha Virg., Mm.*\nPræsta nobis, quǽsumus, Dómine: intercedéntibus sanctis Martýribus tui", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-11": [ - { - "body": "*Eccli 45:30.*\nStátuit ei Dóminus testaméntum pacis, et príncipem fecit eum: ut sit illi sacerdótii dígnitas in ætérnum.", - "id": "Introitus" - }, - { - "body": "Deus, qui cónspicis, quia ex nulla nostra virtúte subsístimus: concéde propítius; ut, intercessióne beáti Martíni Confes", - "id": "Oratio" - }, - { - "body": "*Pro S. Menna Martyre*\nPræsta, quǽsumus, omnípotens Deus: ut, qui beáti Mennæ Martyris tui natalítia cólimus, intercessi", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:16-27; 45:3-20*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo, et invéntus est ", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 11:33-36*\nIn illo témpore: Dixit Jesus discípulis suis: Nemo lucérnam ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Sanctífica, quǽsumus, Dómine Deus, hæc múnera, quæ in sollemnitáte sancti Antístitis tui Martíni offérimus: ut per ea vi", - "id": "Secreta" - }, - { - "body": "*Pro S. Menna Martyre*\nMunéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et cœléstibus nos munda mystériis, et", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, Dómine, Deus noster: ut, quorum festivitáte votíva sunt sacraménta, eórum intercessióne salutária nobi", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Menna Martyre*\nDa, quǽsumus, Dómine, Deus noster: ut, sicut tuórum commemoratióne Sanctórum temporáli gratulámur", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-12": [ - { - "body": "*Ps 33:20-21*\nMultæ tribulatiónes justórum, et de his ómnibus liberávit eos Dóminus: Dóminus custódit ómnia ossa eórum: ", - "id": "Introitus" - }, - { - "body": "Deus, qui primítias fídei apud Polonórum gentem sanctórum Mártyrum tuórum Benedícti, Ioánnis, Matthǽi, Isáaci atque Chri", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 44:10-15*\nHi viri misericórdiæ sunt, quorum pietátes non defuérunt: cum semine eórum pérm", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\nEcce, quam bonum et quam jucúndum, habitáre fratres in unum!\n℣. Sicut unguéntum in cápite, quod descéndit i", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam.\n*Luc 12:1-8*\nIn illo témpore: Dixit Jesus discípulis suis: Atténdite a ferm", - "id": "Evangelium" - }, - { - "body": "*Ps 5:12-13*\nGloriabúntur in te omnes, qui díligunt nomen tuum, quóniam tu, Dómine, benedíces justo: Dómine, ut scuto bo", - "id": "Offertorium" - }, - { - "body": "Hóstias tibi, Dómine, sanctórum Mártyrum tuórum dicátas méritis, benígnus assúme: et ad perpétuum nobis tríbue proveníre", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Sap 3:4-6*\nEt si coram homínibus torménta passi sunt, Deus tentavit eos: tamquam aurum in fornáce probávit eos, et quas", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, sanctórum Mártyrum tuórum Benedícti, Ioánnis, Matthǽi, Isáaci atque Christíni solémnia celebrántes, s", - "id": "Postcommunio" - } - ], - "2020-11-13": [ - { - "body": "*Sap 4:13-14*\nConsummatus in brevi explevit tempora multa: placita enim erat Deo anima illius: propter hoc properavit ed", - "id": "Introitus" - }, - { - "body": "Deus, qui inter cetera sapientiæ tuæ miracula, etiam in tenera ætate maturæ sanctitatis gratiam contulisti: da, quǽsumus", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Sap 4:7-18*\nIustus autem si morte præoccupatus fuerit in refrigerio erit. Senectus enim venerab", - "id": "Lectio" - }, - { - "body": "*Ps 20:3-4*\nDesiderium cordis eius tribuisti ei: et voluntate labiorum eius non fraudasti eum.\n℣. Quoniam prævenisti eum", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 19:13-21*\nTunc oblati sunt ei parvuli ut manus eis inponeret et or", - "id": "Evangelium" - }, - { - "body": "*Ps 42:4*\nIntroibo ad altare Dei: ad Deum, qui lætificat iuventutem meam.", - "id": "Offertorium" - }, - { - "body": "Angelorum pane, quǽsumus, Domine, beati Stanislai nos intercessio dignos efficiat, qui eo meruit angelica manu recreari.", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Eccli 15:3*\nCibavit illum Dominus pane vitæ et intellectus, et aqua sapientæ salutaris potavit illum.", - "id": "Communio" - }, - { - "body": "Ut nobis, Domine, cælestis, quem sumpsimus, panis sit vitæ: beato Stanislao Confessore tuo intercedente, quǽsumus; ut pa", - "id": "Postcommunio" - } - ], - "2020-11-14": [ - { - "body": "Gaudeámus omnes in Dómino, diem festum celebrántes sub honóre beáti Jósaphat Mártyris: de cujus passióne gaudent Angeli ", - "id": "Introitus" - }, - { - "body": "Excita, quǽsumus, Dómine, in Ecclésia tua Spíritum, quo replétus beátus Jósaphat Martyr et Póntifex tuus ánimam suam pro", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Hebræos.\n*Hebr 5:1-6*\nFratres: Omnis póntifex ex homínibus assúmptus, pro homíni", - "id": "Lectio" - }, - { - "body": "*Ps 88:21-23*\nInvéni David servum meum, óleo sancto meo unxi eum: manus enim mea auxiliábitur ei, et bráchium meum confo", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 10:11-16*\nIn illo témpore: Dixit Jesus pharisæis: Ego sum pastor b", - "id": "Evangelium" - }, - { - "body": "*Joann 15:13*\nMajórem caritátem nemo habet, ut ánimam suam ponat quis pro amícis suis.", - "id": "Offertorium" - }, - { - "body": "Clementíssime Deus, múnera hæc tua benedictióne perfunde, et nos in fide confírma: quam sanctus Jósaphat Martyr et Pónti", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Joann 10:14*\nEgo sum pastor bonus: et cognósco oves meas et cognóscunt me meæ.", - "id": "Communio" - }, - { - "body": "Spíritum, Dómine, fortitúdinis hæc nobis tríbuat mensa cœléstis: quæ sancti Jósaphat Mártyris tui atque Pontíficis vitam", - "id": "Postcommunio" - } - ], - "2020-11-15": [ - { - "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut, semper rationabília meditántes, quæ tibi sunt plácita, et dictis exsequámur et fa", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses\n*1 Thess 1:2-10*\nFratres: Grátias ágimus Deo semper pro ómnibus", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 13:31-35*\nIn illo témpore: Dixit Jesus turbis parábolam hanc: Sími", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", - "id": "Offertorium" - }, - { - "body": "Hæc nos oblátio, Deus, mundet, quǽsumus, et rénovet, gubérnet et prótegat.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", - "id": "Communio" - }, - { - "body": "Cœléstibus, Dómine, pasti delíciis: quǽsumus; ut semper éadem, per quæ veráciter vívimus, appétimus.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-11-16": [ - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Introitus" - }, - { - "body": "Deus, qui in corde beátæ Gertrudis Vírginis jucúndam tibi mansionem præparásti: ipsíus méritis et intercessióne; cordis ", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos refóve, cujus sollémnia celeb", - "id": "Postcommunio" - } - ], - "2020-11-17": [ - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Introitus" - }, - { - "body": "Deus, qui in beata Salomea terreni regni contemptum cum virginitatis condore in connubio sociasti: concede nobis, quaesu", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Gregorii Thaumaturgi Episcopi et Confessoris*\nDa, quǽsumus omnípotens Deus: ut beáti Gregórii Confessór", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*2 Cor 10:17-18; 11:1-2*\nFratres: Qui gloriátur, in Dómino gloriétur.", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nSpécie tua et pulchritúdine tua inténde, próspere procéde et regna.\n℣. Propter veritátem et mansuetúdinem et j", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nFíliæ regum in honóre tuo, ástitit regína a dextris tuis in vestítu deauráto, circúmdata varietáte.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Gregorii Thaumaturgi Episcopi et Confessoris*\nSancti tui, quǽsumus, Dómine, nos ubíque lætíficant: ut, ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 25:4; 25:6*\nQuinque prudéntes vírgines accepérunt óleum in vasis suis cum lampádibus: média autem nocte clamor fac", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Gregorii Thaumaturgi Episcopi et Confessoris*\nPræsta, quǽsumus, omnípotens Deus: ut, de percéptis munér", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-18": [ - { - "body": "*Gen 28:17*\nTerríbilis est locus iste: hic domus Dei est et porta cœli: et vocábitur aula Dei. (T.P. Allelúja, allelúja.", - "id": "Introitus" - }, - { - "body": "Deus, qui nobis per síngulos annos hujus sancti templi tui consecratiónis réparas diem, et sacris semper mystériis repæs", - "id": "Oratio" - }, - { - "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli\n*Apoc 21:2-5*\nIn diébus illis: Vidi sanctam civitátem Jerúsalem novam de", - "id": "Lectio" - }, - { - "body": "Locus iste a Deo factus est, inæstimábile sacraméntum, irreprehensíbilis est.\n℣. Deus, cui astat Angelórum chorus, exáud", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 19:1-10*\nIn illo témpore: Ingréssus Jesus perambulábat Jéricho. Et ecce", - "id": "Evangelium" - }, - { - "body": "*1 Par 29:17-18*\nDómine Deus, in simplicitáte cordis mei lætus óbtuli univérsa; et pópulum tuum, qui repértus est, vidi ", - "id": "Offertorium" - }, - { - "body": "*Extra Ecclesiam dedicatam*\nAnnue, quǽsumus, Dómine, précibus nostris: ut, dum hæc vota præséntia réddimus, ad ætérna pr", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 21:13*\nDomus mea domus oratiónis vocábitur, dicit Dóminus: in ea omnis, qui petit, áccipit; et qui quærit, invénit", - "id": "Communio" - }, - { - "body": "Deus, qui de vivis et electis lapídibus ætérnum majestáti tuæ prǽparas habitáculum: auxiliáre pópulo tuo supplicánti; ut", - "id": "Postcommunio" - } - ], - "2020-11-19": [ - { - "body": "*Ps 118:75; 118:120*\nCognóvi, Dómine, quia ǽquitas judícia tua, et in veritáte tua humiliásti me: confíge timóre tuo car", - "id": "Introitus" - }, - { - "body": "Tuórum corda fidélium, Deus miserátor, illústra: et, beátæ Elisabeth précibus gloriósis; fac nos próspera mundi despícer", - "id": "Oratio" - }, - { - "body": "*Pro S. Pontiano Papa et Martyre*\nInfirmitátem nostram réspice, omnípotens Deus: et, quia pondus própriæ actiónis gravat", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Prov 31:10-31*\nMulíerem fortem quis invéniet? Procul et de últimis fínibus prétium ejus. Confídi", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nDiffúsa est grátia in labiis tuis: proptérea benedíxit te Deus in ætérnum.\n℣. Propter veritátem et mansu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 13:44-52*\nIn illo témpore: Dixit Jesus discípulis suis parábolam ha", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nDiffúsa est grátia in lábiis tuis: proptérea benedíxit te Deus in ætérnum, et in sǽculum sǽculi, allelúja.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuórum honóre Sanctórum: quorum se méritis de tribulatióne percepís", - "id": "Secreta" - }, - { - "body": "*Pro S. Pontiano Papa et Martyre*\nHóstias tibi, Dómine, beáti N. Mártyris tui atque Pontíficis dicátas méritis, benígnus", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem: proptérea unxit te Deus, Deus tuus, óleo lætítiæ præ consórtibus t", - "id": "Communio" - }, - { - "body": "Satiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper interventióne nos réfove, cujus sollémnia celeb", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Pontiano Papa et Martyre*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, cujus exséqui", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-20": [ - { - "body": "*Joannes 21:15-17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine, quóniam", - "id": "Introitus" - }, - { - "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum atque) Summum Pontíficem, perpétua protec", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Felicis de Valois Confessoris*\nDeus, qui beátum Felícem Confessórem tuum ex erémo ad munus rediméndi ca", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior et", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", - "id": "Offertorium" - }, - { - "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Felicis de Valois Confessoris*\nPræsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio e", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", - "id": "Communio" - }, - { - "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Felicis de Valois Confessoris*\nQuǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, interce", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-21": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum. (Allelúja, allelú", - "id": "Introitus" - }, - { - "body": "Deus, qui beátam Maríam semper Vírginem, Spíritus Sancti habitáculum, hodiérna die in templo præsentári voluísti: præsta", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16.*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, ", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28; 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium. (Allelúja.)", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - } - ], - "2020-11-22": [ - { - "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", - "id": "Introitus" - }, - { - "body": "Excita, quǽsumus, Dómine, tuórum fidélium voluntátes: ut, divíni óperis fructum propénsius exsequéntes; pietátis tuæ rem", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 1:9-14*\nFratres: Non cessámus pro vobis orántes et postulántes,", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:15-35*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vidérit", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", - "id": "Offertorium" - }, - { - "body": "Propítius esto, Dómine, supplicatiónibus nostris: et, pópuli tui oblatiónibus precibúsque suscéptis, ómnium nostrum ad t", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", - "id": "Communio" - }, - { - "body": "Concéde nobis, quǽsumus, Dómine: ut per hæc sacraménta quæ súmpsimus, quidquid in nostra mente vitiósum est, ipsorum med", - "id": "Postcommunio" - } - ], - "2020-11-23": [ - { - "body": "*Is 59:21; 56:7*\nDicit Dóminus: Sermónes mei, quos dedi in os tuum, non defícient de ore tuo: et múnera tua accépta erun", - "id": "Introitus" - }, - { - "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum N. (Mártyrem tuum atque) Summum Pontíficem, perpétua protec", - "id": "Oratio" - }, - { - "body": "*Pro S. Felicitate*\nPræsta, quǽsumus, omnípotens Deus: ut, beátæ Felicitátis Martyris tuæ sollémnia recenséntes, méritis", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Philippénses.\n*Phil 3:17-21; 4:1-3*\nFratres: Imitatóres mei estóte, et observáte", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi, ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, et", - "id": "Offertorium" - }, - { - "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", - "id": "Secreta" - }, - { - "body": "*Pro S. Felicitate*\nVota pópuli tui, Dómine, propitiátus inténde: et, cujus nos tríbuis sollémnia celebráre, fac gaudére", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", - "id": "Communio" - }, - { - "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Felicitate*\nSúpplices te rogámus, omnípotens Deus: ut, intercedéntibus Sanctis tuis, et tua in nobis dona multíp", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-24": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui sanctum Joánnem Confessórem tuum atque Doctorem perféctæ sui abnegatiónis et Crucis amatórem exímium effecísti", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Chrysogoni Martyris*\nAdésto, Dómine, supplicatiónibus nostris: ut, qui ex iniquitáte nostra reos nos es", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timothéum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium.\n℣. Lex Dei ejus in corde ipsíus: et non", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur. (Allelúja.)", - "id": "Offertorium" - }, - { - "body": "Sancti Joánnis Confessóris tui atque Doctóris nobis, Dómine, pia non désit orátio: quæ et múnera nostra concíliet; et tu", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Chrysogoni Martyris*\nOblátis, quǽsumus, Dómine, placáre munéribus: et, intercedénte beáto Chrysógono Má", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Joánnes Confessor tuus et Doctor egrégius, quǽsumus, precátor accé", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Chrysogoni Martyris*\nTui, Dómine, perceptióne sacraménti, et a nostris mundémur occúltis, et ab hóstium", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-25": [ - { - "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", - "id": "Introitus" - }, - { - "body": "Deus, qui dedísti legem Móysi in summitáte montis Sínai, et in eódem loco per sanctos Angelos tuos corpus beátæ Catharín", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", - "id": "Lectio" - }, - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, múnera, quæ in beátæ Catharínæ Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus pa", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 118:78; 118:80*\nConfundántur supérbi, quia injúste iniquitátem fecérunt in me: ego autem in mandátis tuis exercébor,", - "id": "Communio" - }, - { - "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta Catharína Vírgine et Mártyre tua, sempitérna fáciant ", - "id": "Postcommunio" - } - ], - "2020-11-26": [ - { - "body": "*Ps 36:30-31*\nOs justi meditábitur sapiéntiam, et lingua ejus loquétur judícium: lex Dei ejus in corde ipsíus.\n*Ps 36:1*", - "id": "Introitus" - }, - { - "body": "Clementíssime Deus, qui sanctum Silvéstrum Abbátem, sǽculi hujus vanitátem in apérto túmulo pie meditántem, ad erémum vo", - "id": "Oratio" - }, - { - "body": "*Pro S. Petro Alexandrino Episcopo et Martyre*\nInfirmitátem nostram réspice, omnípotens Deus: et, quia pondus própria; a", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio libri Sapientiæ\n*Eccli 45:1-6*\nDiléctus Deo et homínibus, cujus memória in benedictióne est. Símilem illum fecit ", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nDómine, prævenísti eum in benedictiónibus dulcédinis: posuísti in cápite ejus corónam de lápide pretióso.\n℣.", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 19:27-29*\nIn illo témpore: Dixit Petrus ad Jesum: Ecce, nos relíqui", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3; 20:4*\nDesidérium ánimæ ejus tribuísti ei, Dómine, et voluntáte labiórum ejus non fraudásti eum: posuísti in cá", - "id": "Offertorium" - }, - { - "body": "Quǽsumus, Dómine: ut, dum hæc múnera divínæ majestáti tuæ reverénter offérimus; pia mentis præparatióne et cordis puritá", - "id": "Secreta" - }, - { - "body": "*Pro S. Petro Alexandrino Episcopo et Martyre*\nHóstias tibi, Dómine, beáti Petri Mártyris tui atque Pontíficis dicátas m", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Luc 12:42*\nFidélis servus et prudens, quem constítuit dóminus super famíliam suam: ut det illis in témpore trítici mens", - "id": "Communio" - }, - { - "body": "Divína dape reféctis tríbue, quǽsumus, Dómine: sancti Silvéstri Abbátis vestígiis ita inhærére; ut copiósam mercédem in ", - "id": "Postcommunio" - }, - { - "body": "*Pro S. Petro Alexandrino Episcopo et Martyre*\nRefécti participatióne múneris sacri, quǽsumus, Dómine, Deus noster: ut, ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-27": [ - { - "body": "*Jer 29:11; 29:12; 29:14*\nDicit Dóminus: Ego cógito cogitatiónes pacis, et non afflictiónis: invocábitis me, et ego exáu", - "id": "Introitus" - }, - { - "body": "Excita, quǽsumus, Dómine, tuórum fidélium voluntátes: ut, divíni óperis fructum propénsius exsequéntes; pietátis tuæ rem", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Colossénses\n*Col 1:9-14*\nFratres: Non cessámus pro vobis orántes et postulántes,", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nLiberásti nos, Dómine, ex affligéntibus nos: et eos, qui nos odérunt, confudísti.\n℣. In Deo laudábimur tota ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 24:15-35*\nIn illo témpore: Dixit Jesus discípulis suis: Cum vidérit", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nDe profúndis clamávi ad te, Dómine: Dómine, exáudi oratiónem meam: de profúndis clamávi ad te, Dómine.", - "id": "Offertorium" - }, - { - "body": "Propítius esto, Dómine, supplicatiónibus nostris: et, pópuli tui oblatiónibus precibúsque suscéptis, ómnium nostrum ad t", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Marc 11:24*\nAmen, dico vobis, quidquid orántes pétitis, crédite, quia accipiétis, et fiet vobis.", - "id": "Communio" - }, - { - "body": "Concéde nobis, quǽsumus, Dómine: ut per hæc sacraménta quæ súmpsimus, quidquid in nostra mente vitiósum est, ipsorum med", - "id": "Postcommunio" - } - ], - "2020-11-28": [ - { - "body": "*Sedulius.*\nSalve, sancta Parens, eníxa puérpera Regem: qui cœlum terrámque regit in sǽcula sæculórum.\n*Ps 44:2*\nEructáv", - "id": "Introitus" - }, - { - "body": "Concéde nos fámulos tuos, quǽsumus, Dómine Deus, perpétua mentis et córporis sanitáte gaudére: et, gloriósa beátæ Maríæ ", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ.\n*Eccli 24:14-16*\nAb inítio et ante sǽcula creáta sum, et usque ad futúrum sǽculum non désinam, e", - "id": "Lectio" - }, - { - "body": "Benedícta et venerábilis es, Virgo María: quæ sine tactu pudóris invénta es Mater Salvatóris.\n℣. Virgo, Dei Génetrix, qu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 11:27-28*\nIn illo témpore: Loquénte Jesu ad turbas, extóllens vocem quæ", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28 1:42*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Tua, Dómine, propitiatióne, et beátæ Maríæ semper Vírginis intercessióne, ad perpétuam atque præséntem hæc oblátio nobis", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "Beáta viscera Maríæ Vírginis, quæ portavérunt ætérni Patris Fílium, allelúja.", - "id": "Communio" - }, - { - "body": "Sumptis, Dómine, salútis nostræ subsídiis: da, quǽsumus, beátæ Maríæ semper Vírginis patrocíniis nos ubíque prótegi; in ", - "id": "Postcommunio" - } - ], - "2020-11-29": [ - { - "body": "*Ps 24:1-3*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim un", - "id": "Introitus" - }, - { - "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nostrórum perículis, te mereámur proteg", - "id": "Oratio" - }, - { - "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 13:11-14.*\nFratres: Sciéntes, quia hora est jam nos de somno súrger", - "id": "Lectio" - }, - { - "body": "*Ps 24:3; 24:4*\nUnivérsi, qui te exspéctant, non confundéntur, Dómine.\n℣. Vias tuas, Dómine, notas fac mihi: et sémitas ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 21:25-33.*\nIn illo témpore: Dixit Jesus discípulis suis: Erunt signa in", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3.*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim u", - "id": "Offertorium" - }, - { - "body": "Hæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princípium.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Ps 84:13.*\nDóminus dabit benignitátem: et terra nostra dabit fructum suum.", - "id": "Communio" - }, - { - "body": "Suscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ ventúra sollémnia cóngruis honóribus", - "id": "Postcommunio" - } - ], - "2020-11-30": [ - { - "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principatus eórum.\n*Ps 138:1-2*\nDómine", - "id": "Introitus" - }, - { - "body": "Majestátem tuam, Dómine, supplíciter exorámus: ut, sicut Ecclésiæ tuæ beátus Andréas Apóstolus éxstitit prædicátor et re", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 10:10-18*\nFratres: Corde enim créditur ad justítiam: ore autem conf", - "id": "Lectio" - }, - { - "body": "*Ps 44:17-18*\nConstítues eos príncipes super omnem terram: mémores erunt nóminis tui, Dómine.\n℣. Pro pátribus tuis nati ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 4:18-22*\nIn illo témpore: Ambulans Jesus juxta mare Galilǽæ, vidit ", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.", - "id": "Offertorium" - }, - { - "body": "Sacrificium nostrum tibi, Dómine, quǽsumus, beáti Andréæ Apóstoli precátio sancta concíliet: ut, in cujus honóre sollémn", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 4:19-20*\nVeníte post me: fáciam vos fíeri piscatóres hóminum; at illi contínuo, relíctis rétibus, secúti sunt Dómi", - "id": "Communio" - }, - { - "body": "Súmpsimus, Dómine, divína mystéria, beáti Andréæ Apóstoli festivitáte lætántes: quæ, sicut tuis Sanctis ad glóriam, ita ", - "id": "Postcommunio" - } - ], - "2020-12-01": [ - { - "body": "*Ps 24:1-3*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim un", - "id": "Introitus" - }, - { - "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nostrórum perículis, te mereámur proteg", - "id": "Oratio" - }, - { - "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 13:11-14.*\nFratres: Sciéntes, quia hora est jam nos de somno súrger", - "id": "Lectio" - }, - { - "body": "*Ps 24:3; 24:4*\nUnivérsi, qui te exspéctant, non confundéntur, Dómine.\n℣. Vias tuas, Dómine, notas fac mihi: et sémitas ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 21:25-33.*\nIn illo témpore: Dixit Jesus discípulis suis: Erunt signa in", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3.*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim u", - "id": "Offertorium" - }, - { - "body": "Hæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princípium.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 84:13.*\nDóminus dabit benignitátem: et terra nostra dabit fructum suum.", - "id": "Communio" - }, - { - "body": "Suscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ ventúra sollémnia cóngruis honóribus", - "id": "Postcommunio" - } - ], - "2020-12-02": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui beátum Petrum Chrysólogum Doctórem egrégium, divínitus præmonstrátum, ad regéndam et instruéndam Ecclésiam tua", - "id": "Oratio" - }, - { - "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est invéntus símilis illi, qui con", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nJustus ut palma florébit: sicut cedrus, quæ in Líbano est, multiplicábitur.", - "id": "Offertorium" - }, - { - "body": "Sancti Petri Chrysólogi Pontíficis tui atque Doctóris nobis, Dómine, pia non desit orátio: quæ et múnera nostra concílie", - "id": "Secreta" - }, - { - "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 25:20; 25:21*\nDómine, quinque talénta tradidísti mihi: ecce, ália quinque superlucrátus sum. Euge, serve bone et f", - "id": "Communio" - }, - { - "body": "Ut nobis, Dómine, tua sacrifícia dent salútem: beátus Petrus Chrysólogus Póntifex tuus et Doctor egrégius, quǽsumus, pre", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-03": [ - { - "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", - "id": "Introitus" - }, - { - "body": "Deus, qui Indiárum gentes beáti Francísci prædicatióne et miráculis Ecclésiæ tuæ aggregáre voluísti: concéde propítius; ", - "id": "Oratio" - }, - { - "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 10:10-18*\nFratres: Corde enim créditur ad justítiam: ore autem conf", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nJustus ut palma florébit: sicut cedrus Líbani multiplicábitur in domo Dómini.\n*Ps 91:3*\nAd annuntiándu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Marcum\n*Marc 16:15-18*\nIn illo témpore: Dixit Jesus discípulis suis: Eúntes in mun", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Præsta nobis, quǽsumus, omnípotens Deus: ut nostræ humilitátis oblátio, et pro tuórum tibi grata sit honóre Sanctórum, e", - "id": "Secreta" - }, - { - "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 24:46-47*\nBeátus servus, quem, cum vénerit dóminus, invénerit vigilántem: amen, dico vobis, super ómnia bona sua c", - "id": "Communio" - }, - { - "body": "Quǽsumus, omnípotens Deus: ut, qui cœléstia aliménta percépimus, intercedénte beáto Francísco Confessóre tuo, per hæc co", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-04": [ - { - "body": "*Ps 118:46-47*\nLoquébar de testimóniis tuis in conspéctu regum, et non confundébar: et meditábar in mandátis tuis, quæ d", - "id": "Introitus" - }, - { - "body": "Intercessio, quaesumus, Domine, beatae Barbarae Virginis et Martyris tuae ab omni nos adversitate protegat: ut per eius ", - "id": "Oratio" - }, - { - "body": "*Commemoratio Dominica I Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nost", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Eccli 51:1-8; 51:12*\nConfitébor tibi, Dómine, Rex, et collaudábo te Deum, Salvatórem meum. Confi", - "id": "Lectio" - }, - { - "body": "*Ps 44:8*\nDilexísti justítiam, et odísti iniquitátem.\n℣. Proptérea unxit te Deus, Deus tuus, óleo lætítiæ. Allelúja, all", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 25:1-13*\nIn illo témpore: Dixit Jesus discípulis suis parábolam han", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15; 44:16*\nAfferéntur Regi Vírgines post eam: próximæ ejus afferéntur tibi in lætítia et exsultatióne: adducéntur", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, múnera, quæ in beátæ N. Vírginis et Mártyris tuæ sollemnitáte deférimus: cujus nos confídimus patrocíni", - "id": "Secreta" - }, - { - "body": "*Commemoratio Dominica I Adventus*\nHæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 118:78; 118:80*\nConfundántur supérbi, quia injúste iniquitátem fecérunt in me: ego autem in mandátis tuis exercébor,", - "id": "Communio" - }, - { - "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáta N. Vírgine et Mártyre tua, sempitérna fáciant protect", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Dominica I Adventus*\nSuscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ v", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-05": [ - { - "body": "*Ps 24:1-3*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim un", - "id": "Introitus" - }, - { - "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: ut ab imminéntibus peccatórum nostrórum perículis, te mereámur proteg", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Sabbæ Abbatis*\nIntercéssio nos, quǽsumus. Dómine, beáti Sabbæ Abbátis comméndet: ut, quod nostris mérit", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Romános\n*Rom 13:11-14.*\nFratres: Sciéntes, quia hora est jam nos de somno súrger", - "id": "Lectio" - }, - { - "body": "*Ps 24:3; 24:4*\nUnivérsi, qui te exspéctant, non confundéntur, Dómine.\n℣. Vias tuas, Dómine, notas fac mihi: et sémitas ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 21:25-33.*\nIn illo témpore: Dixit Jesus discípulis suis: Erunt signa in", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3.*\nAd te levávi ánimam meam: Deus meus, in te confído, non erubéscam: neque irrídeant me inimíci mei: étenim u", - "id": "Offertorium" - }, - { - "body": "Hæc sacra nos, Dómine, poténti virtúte mundátos ad suum fáciant purióres veníre princípium.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Sabbæ Abbatis*\nSacris altáribus, Dómine, hóstias superpósitas sanctus N. Abbas, quǽsumus, in salútem no", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 84:13.*\nDóminus dabit benignitátem: et terra nostra dabit fructum suum.", - "id": "Communio" - }, - { - "body": "Suscipiámus, Dómine, misericórdiam tuam in médio templi tui: ut reparatiónis nostræ ventúra sollémnia cóngruis honóribus", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Sabbæ Abbatis*\nPrótegat nos, Dómine, cum tui perceptióne sacraménti beátus Sabbas, pro nobis intercedén", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-06": [ - { - "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", - "id": "Introitus" - }, - { - "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", - "id": "Oratio" - }, - { - "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", - "id": "Offertorium" - }, - { - "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", - "id": "Communio" - }, - { - "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", - "id": "Postcommunio" - } - ], - "2020-12-07": [ - { - "body": "*Eccli 15:5*\nIn médio Ecclésiæ apéruit os ejus: et implévit eum Dóminus spíritu sapiéntiæ et intelléctus: stolam glóriæ ", - "id": "Introitus" - }, - { - "body": "Deus, qui pópulo tuo ætérnæ salútis beátum Ambrósium minístrum tribuísti: præsta, quǽsumus; ut, quem Doctórem vitæ habúi", - "id": "Oratio" - }, - { - "body": "*Commemoratio Dominica II Adventus*\nExcita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntu", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Timótheum\n*2 Tim 4:1-8*\nCaríssime: Testíficor coram Deo, et Jesu Christo, qui ju", - "id": "Lectio" - }, - { - "body": "*Eccli 44:16*\nEcce sacérdos magnus, qui in diébus suis plácuit Deo.\n*Eccli 44:20*\nNon est inventus símilis illi, qui con", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 5:13-19*\nIn illo témpore: Dixit Jesus discípulis suis: Vos estis sa", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nVéritas mea et misericórdia mea cum ipso: et in nómine meo exaltábitur cornu ejus.", - "id": "Offertorium" - }, - { - "body": "Omnípotens sempitérne Deus, múnera tuæ majestáti obláta, per intercessiónem beáti Ambrósii Confessóris tui atque Pontífi", - "id": "Secreta" - }, - { - "body": "*Commemoratio Dominica II Adventus*\nPlacáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla sup", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 88:36-38*\nSemel jurávi in sancto meo: Semen ejus in ætérnum manébit, et sedes ejus sicut sol in conspéctu meo, et si", - "id": "Communio" - }, - { - "body": "Sacraménta salútis nostræ suscipiéntes, concéde, quǽsumus, omnípotens Deus: ut beáti Ambrósii Confessóris tui atque Pont", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Dominica II Adventus*\nRepléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus parti", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-08": [ - { - "body": "*Is 61:10*\nGaudens gaudébo in Dómino, et exsultábit ánima mea in Deo meo: quia índuit me vestiméntis salútis: et indumén", - "id": "Introitus" - }, - { - "body": "Deus, qui per immaculátam Vírginis Conceptiónem dignum Fílio tuo habitáculum præparásti: quǽsumus; ut, qui ex morte ejús", - "id": "Oratio" - }, - { - "body": "Léctio libri Sapiéntiæ\n*Prov 8:22-35*\nDóminus possedit me in inítio viárum suárum, ántequam quidquam fáceret a princípio", - "id": "Lectio" - }, - { - "body": "*Judith 13:23*\nBenedícta es tu. Virgo María, a Dómino, Deo excélso, præ ómnibus muliéribus super terram.\n*Judith 15:10*\n", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:26-28*\nIn illo témpore: Missus est Angelus Gábriël a Deo in civitátem", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28*\nAve, María, grátia plena; Dóminus tecum: benedícta tu in muliéribus, allelúja.", - "id": "Offertorium" - }, - { - "body": "Salutárem hóstiam, quam in sollemnitáte immaculátæ Conceptiónis beátæ Vírginis Maríæ tibi, Dómine, offérimus, súscipe et", - "id": "Secreta" - }, - { - "body": "*de Beata Maria Virgine*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine s", - "id": "Prefatio" - }, - { - "body": "*Ps 86:3, Luc 1:49*\nGloriósa dicta sunt de te, María: quia fecit tibi magna qui potens est.", - "id": "Communio" - }, - { - "body": "Sacraménta quæ súmpsimus, Dómine, Deus noster: illíus in nobis culpæ vúlnera réparent; a qua immaculátam beátæ Maríæ Con", - "id": "Postcommunio" - } - ], - "2020-12-09": [ - { - "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", - "id": "Introitus" - }, - { - "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", - "id": "Oratio" - }, - { - "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", - "id": "Offertorium" - }, - { - "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", - "id": "Communio" - }, - { - "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", - "id": "Postcommunio" - } - ], - "2020-12-10": [ - { - "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", - "id": "Introitus" - }, - { - "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Melchiadis Papæ et Mart*\nDeus, qui per immaculátam Vírginis Conceptiónem dignum Fílio tuo habitáculum p", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", - "id": "Offertorium" - }, - { - "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Melchiadis Papæ et Mart*\nSalutárem hóstiam, quam in sollemnitáte immaculátæ Conceptiónis beátæ Vírginis", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", - "id": "Communio" - }, - { - "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Melchiadis Papæ et Mart*\nSacraménta quæ súmpsimus, Dómine, Deus noster: illíus in nobis culpæ vúlnera r", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-11": [ - { - "body": "*Joann 21:15; 21:16; 21:17*\nSi díligis me, Simon Petre, pasce agnos meos, pasce oves meas.\n*Ps 29:2*\nExaltábo te, Dómine", - "id": "Introitus" - }, - { - "body": "Gregem tuum, Pastor ætérne, placátus inténde: et, per beátum Damásum Summum Pontíficem, perpétua protectióne custódi; qu", - "id": "Oratio" - }, - { - "body": "*Commemoratio Dominica II Adventus*\nExcita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntu", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Petri Apóstoli.\n*1 Pet 5:1-4; 5:10-11*\nCaríssimi: Senióres, qui in vobis sunt, obsécro consénior e", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nExáltent eum in Ecclésia plebis: et in cáthedra seniórum laudent eum.\n℣. Confiteántur Dómino miseric", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum.\n*Matt 16:13-19*\nIn illo témpore: Venit Jesus in partes Cæsaréæ Philíppi,", - "id": "Evangelium" - }, - { - "body": "*Jerem 1:9-10*\nEcce, dedi verba mea in ore tuo: ecce, constítui te super gentes et super regna, ut evéllas et destruas, ", - "id": "Offertorium" - }, - { - "body": "Oblátis munéribus, quǽsumus, Dómine, Ecclésiam tuam benígnus illúmina: ut, et gregis tui profíciat ubique succéssus, et ", - "id": "Secreta" - }, - { - "body": "*Commemoratio Dominica II Adventus*\nPlacáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla sup", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Matt 16:18*\nTu es Petrus, et super hanc petram ædificábo Ecclésiam meam.", - "id": "Communio" - }, - { - "body": "Refectióne sancta enutrítam gubérna, quǽsumus, Dómine, tuam placátus Ecclésiam: ut, poténti moderatióne dirécta, et incr", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Dominica II Adventus*\nRepléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus parti", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-12": [ - { - "body": "*Is 30:30*\nPópulus Sion, ecce, Dóminus véniet ad salvándas gentes: et audítam fáciet Dóminus glóriam vocis suæ in lætíti", - "id": "Introitus" - }, - { - "body": "Excita, Dómine, corda nostra ad præparándas Unigéniti tui vias: ut, per ejus advéntum, purificátis tibi méntibus servíre", - "id": "Oratio" - }, - { - "body": "Lectio Epístolæ beáti Pauli Apostoli ad Romános\n*Rom 15:4-13.*\nFratres: Quæcúmque scripta sunt, ad nostram doctrínam scr", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3; 49:5*\nEx Sion species decóris ejus: Deus maniféste véniet,\n℣. Congregáte illi sanctos ejus, qui ordinavérunt", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Matthǽum\n*Matt 11:2-10*\nIn illo tempore: Cum audísset Joánnes in vínculis ópera Ch", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", - "id": "Offertorium" - }, - { - "body": "Placáre, quǽsumus, Dómine, humilitátis nostræ précibus et hóstiis: et, ubi nulla suppétunt suffrágia meritórum, tuis nob", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nJerúsalem, surge et sta in excélso, et vide jucunditátem, quæ véniet tibi a Deo tuo.", - "id": "Communio" - }, - { - "body": "Repléti cibo spirituális alimóniæ, súpplices te, Dómine, deprecámur: ut, hujus participatióne mystérii, dóceas nos terré", - "id": "Postcommunio" - } - ], - "2020-12-13": [ - { - "body": "*Phil 4:4-6*\nGaudéte in Dómino semper: íterum dico, gaudéte. Modéstia vestra nota sit ómnibus homínibus: Dóminus enim pr", - "id": "Introitus" - }, - { - "body": "Aurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras, grátia tuæ visitatiónis illústra:\nQ", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Luciæ Virginis et Martyris*\nExáudi nos, Deus, salutáris noster: ut, sicut de beátæ Luciæ Vírginis tuæ f", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 4:4-7*\nFratres: Gaudéte in Dómino semper: íterum dico, gau", - "id": "Lectio" - }, - { - "body": "*Ps 79:2; 79:3; 79:2*\nQui sedes, Dómine, super Chérubim, éxcita poténtiam tuam, et veni.\n℣. Qui regis Israël, inténde: q", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 1:19-28*\nIn illo tempore: Misérunt Judǽi ab Jerosólymis sacerdótes ", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nBenedixísti, Dómine, terram tuam: avertísti captivitátem Jacob: remisísti iniquitatem plebis tuæ.", - "id": "Offertorium" - }, - { - "body": "Devotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri péragat institúta mystérii, et salutáre", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Luciæ Virginis et Martyris*\nAccépta tibi sit, Dómine, sacrátæ plebis oblátio pro tuorum honore Sanctóru", - "id": "Commemoratio Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Is 35:4.*\nDícite: pusillánimes, confortámini et nolíte timére: ecce, Deus noster véniet et salvábit nos.", - "id": "Communio" - }, - { - "body": "Implorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad festa ventúra nos prǽparent.\nPer Domi", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Luciæ Virginis et Martyris*\nSatiásti, Dómine, famíliam tuam munéribus sacris: ejus, quǽsumus, semper in", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-14": [ - { - "body": "*Phil 4:4-6*\nGaudéte in Dómino semper: íterum dico, gaudéte. Modéstia vestra nota sit ómnibus homínibus: Dóminus enim pr", - "id": "Introitus" - }, - { - "body": "Aurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras, grátia tuæ visitatiónis illústra:\nQ", - "id": "Oratio" - }, - { - "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 4:4-7*\nFratres: Gaudéte in Dómino semper: íterum dico, gau", - "id": "Lectio" - }, - { - "body": "*Ps 79:2; 79:3; 79:2*\nQui sedes, Dómine, super Chérubim, éxcita poténtiam tuam, et veni.\n℣. Qui regis Israël, inténde: q", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 1:19-28*\nIn illo tempore: Misérunt Judǽi ab Jerosólymis sacerdótes ", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nBenedixísti, Dómine, terram tuam: avertísti captivitátem Jacob: remisísti iniquitatem plebis tuæ.", - "id": "Offertorium" - }, - { - "body": "Devotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri péragat institúta mystérii, et salutáre", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Is 35:4.*\nDícite: pusillánimes, confortámini et nolíte timére: ecce, Deus noster véniet et salvábit nos.", - "id": "Communio" - }, - { - "body": "Implorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad festa ventúra nos prǽparent.\nPer Domi", - "id": "Postcommunio" - } - ], - "2020-12-15": [ - { - "body": "*Phil 4:4-6*\nGaudéte in Dómino semper: íterum dico, gaudéte. Modéstia vestra nota sit ómnibus homínibus: Dóminus enim pr", - "id": "Introitus" - }, - { - "body": "Aurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras, grátia tuæ visitatiónis illústra:\nQ", - "id": "Oratio" - }, - { - "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 4:4-7*\nFratres: Gaudéte in Dómino semper: íterum dico, gau", - "id": "Lectio" - }, - { - "body": "*Ps 79:2; 79:3; 79:2*\nQui sedes, Dómine, super Chérubim, éxcita poténtiam tuam, et veni.\n℣. Qui regis Israël, inténde: q", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 1:19-28*\nIn illo tempore: Misérunt Judǽi ab Jerosólymis sacerdótes ", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nBenedixísti, Dómine, terram tuam: avertísti captivitátem Jacob: remisísti iniquitatem plebis tuæ.", - "id": "Offertorium" - }, - { - "body": "Devotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri péragat institúta mystérii, et salutáre", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Is 35:4.*\nDícite: pusillánimes, confortámini et nolíte timére: ecce, Deus noster véniet et salvábit nos.", - "id": "Communio" - }, - { - "body": "Implorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad festa ventúra nos prǽparent.\nPer Domi", - "id": "Postcommunio" - } - ], - "2020-12-16": [ - { - "body": "*Is 45:8*\nRoráte, cœli, désuper, et nubes pluant justum: aperiátur terra, et gérminet Salvatórem\n*Ps 18:2.*\nCœli enárran", - "id": "Introitus" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut redemptiónis nostræ ventúra sollémnitas et præséntis nobis vitæ subsídia cónferat,", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 2:2-5.*\nIn diébus illis: Dixit Isaias Prophéta: Erit in novíssimis diébus præparátus mons domu", - "id": "LectioL1" - }, - { - "body": "*Ps 23:7; 23:3; 23:4*\nTóllite portas, principes, vestras: et elevámini, portæ æternáles: et introíbit Rex glóriæ.\n℣. Qui", - "id": "GradualeL1" - }, - { - "body": "Festína, quǽsumus, Dómine, ne tardáveris, et auxílium nobis supérnæ virtútis impénde: ut advéntus tui consolatiónibus su", - "id": "OratioL1" - }, - { - "body": "*Commemoratio S. Eusebii Episcopi et Martyris*\nDeus, qui nos beáti N. Mártyris tui atque Pontíficis ánnua sollemnitáte l", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio Isaíæ Prophétæ\n*Is 7:10-15*\nIn diébus illis: Locútus est Dóminus ad Achaz, dicens: Pete tibi signum a Dómino, Deo", - "id": "Lectio" - }, - { - "body": "*Ps 144:18; 144:21*\nPrope est Dóminus ómnibus invocántibus eum: ómnibus qui ínvocant eum in veritáte.\n℣. Laudem Dómini l", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 1:26-38*\nIn illo tempore: Missus est Angelus Gábriel a Deo in civitatem", - "id": "Evangelium" - }, - { - "body": "*Is 35:4.*\nConfortámini, et jam nolite timére: ecce enim, Deus noster retríbuet judícium: ipse véniet, et salvos nos fác", - "id": "Offertorium" - }, - { - "body": "Acépta tibi sint, quǽsumus, Dómine, nostra jejúnia: quæ et expiándo nos tua grátia dignos effíciant, et ad sempiterna pr", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Eusebii Episcopi et Martyris*\nMúnera tibi, Dómine, dicáta sanctífica: et, intercedénte beáto N. Mártyre", - "id": "Commemoratio Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel.", - "id": "Communio" - }, - { - "body": "Salutáris tui, Dómine, munere satiáti, súpplices deprecámur: ut, cujus lætámur gustu, renovémur efféctu.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Eusebii Episcopi et Martyris*\nHæc nos commúnio, Dómine, purget a crímine: et, intercedénte beáto N. Már", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-17": [ - { - "body": "*Phil 4:4-6*\nGaudéte in Dómino semper: íterum dico, gaudéte. Modéstia vestra nota sit ómnibus homínibus: Dóminus enim pr", - "id": "Introitus" - }, - { - "body": "Aurem tuam, quǽsumus, Dómine, précibus nostris accómmoda: et mentis nostræ ténebras, grátia tuæ visitatiónis illústra:\nQ", - "id": "Oratio" - }, - { - "body": "Lectio Epístolæ beáti Pauli Apóstoli ad Philippénses\n*Philipp 4:4-7*\nFratres: Gaudéte in Dómino semper: íterum dico, gau", - "id": "Lectio" - }, - { - "body": "*Ps 79:2; 79:3; 79:2*\nQui sedes, Dómine, super Chérubim, éxcita poténtiam tuam, et veni.\n℣. Qui regis Israël, inténde: q", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem\n*Joann 1:19-28*\nIn illo tempore: Misérunt Judǽi ab Jerosólymis sacerdótes ", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nBenedixísti, Dómine, terram tuam: avertísti captivitátem Jacob: remisísti iniquitatem plebis tuæ.", - "id": "Offertorium" - }, - { - "body": "Devotiónis nostræ tibi, quǽsumus, Dómine, hóstia júgiter immolétur: quæ et sacri péragat institúta mystérii, et salutáre", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Is 35:4.*\nDícite: pusillánimes, confortámini et nolíte timére: ecce, Deus noster véniet et salvábit nos.", - "id": "Communio" - }, - { - "body": "Implorámus, Dómine, cleméntiam tuam: ut hæc divína subsídia, a vítiis expiátos, ad festa ventúra nos prǽparent.\nPer Domi", - "id": "Postcommunio" - } - ], - "2020-12-18": [ - { - "body": "*Ps 118:151-152*\nPrope es tu, Dómine, et omnes viæ tuæ véritas: inítio cognóvi de testimóniis tuis, quia in ætérnum tu e", - "id": "Introitus" - }, - { - "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: ut hi, qui in tua pietáte confídunt, ab omni cítius adversitáte liber", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 11:1-5*\nHæc dicit Dóminus Deus: Egrediátur virga de radíce Jesse, et flos de radíce ejus ascén", - "id": "Lectio" - }, - { - "body": "*Ps 84:8; 84:2*\nOsténde nobis, Dómine, misericórdiam tuam: et salutáre tuum da nobis.\n℣. Benedixísti, Dómine, terram tua", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 1:39-47*\nIn illo tempore: Exsúrgens María ábiit in montána cum festinat", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nDeus, tu convérsus vivificábis nos, et plebs tua lætábitur in te: osténde nobis, Dómine, misericórdiam tuam,", - "id": "Offertorium" - }, - { - "body": "Munéribus nostris, quǽsumus, Dómine, precibúsque suscéptis: et coeléstibus nos munda mystériis, et cleménter exáudi.\nPer", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Zach 14:5*\nEcce, Dóminus véniet et omnes Sancti ejus cum eo: et erit in die illa lux magna.", - "id": "Communio" - }, - { - "body": "Tui nos, Dómine, sacraménti libátio sancta restáuret: et a vetustáte purgátos, in mystérii salutáris fáciat transíre con", - "id": "Postcommunio" - } - ], - "2020-12-19": [ - { - "body": "*Ps 79:4; 79:2*\nVeni, et osténde nobis fáciem tuam, Dómine, qui sedes super Chérubim: et salvi érimus.\n*Ps 79:2*\nQui reg", - "id": "Introitus" - }, - { - "body": "Deus, qui cónspicis, quia ex nostra pravitáte afflígimur: concéde propítius; ut ex tua visitatióne consolémur:\nQui vivis", - "id": "Oratio" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Isa 19:20-22*\nIn diebus illis: Clamábunt ad Dóminum a facie tribulántis, et mittet eis salvatórem", - "id": "LectioL1" - }, - { - "body": "*Ps 18:7; 18:2*\nA summo cœlo egréssio ejus: et occúrsus ejus usque ad summum ejus.\n℣. Cœli enárrant glóriam Dei: et oper", - "id": "GradualeL1" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut, qui sub peccáti jugo et vetústa servitúte deprímimur; exspectáta unigéniti Fílii", - "id": "OratioL1" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Isa 35:1-7*\nHæc dicit Dóminus: Lætábitur desérta et ínvia, ei exsultábit solitúdo, et florébit qu", - "id": "LectioL2" - }, - { - "body": "*Ps 18:6; 18:7*\nIn sole pósuit tabernáculum suum: et ipse tamquam sponsus procédens de thálamo suo.\n℣. A summo cœlo egré", - "id": "GradualeL2" - }, - { - "body": "Indígnos nos, quǽsumus, Dómine, fámulos tuos, quos actiónis própriæ culpa contrístat, unigéniti Fílii tui advéntu lætífi", - "id": "OratioL2" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 40:9-11*\nHæc dicit Dóminus: Super montem excélsum ascénde tu, qui evangelízas Sion: exálta in ", - "id": "LectioL3" - }, - { - "body": "*Ps 79:20; 79:3*\nDómine, Deus virtútum, convérte nos: et osténde fáciem tuam, et salvi érimus.\n℣. Excita, Dómine, potént", - "id": "GradualeL3" - }, - { - "body": "Prǽsta, quǽsumus, omnípotens Deus: ut Fílii tui ventúra sollémnitas et præséntis nobis vitæ remédia cónferat, et prǽmia ", - "id": "OratioL3" - }, - { - "body": "Léctio Isaíæ Prophétæ\n*Is 45:1-8.*\nHæc dicit Dóminus christo meo Cyro, cujus apprehéndi déxteram, ut subjíciam ante fáci", - "id": "LectioL4" - }, - { - "body": "*Ps 79:3,; 79:2; 79:3*\nExcita, Dómine, poténtiam tuam, et veni, ut salvos fácias nos.\n℣. Qui regis Israël, inténde: qui ", - "id": "GradualeL4" - }, - { - "body": "Preces pópuli tui, quǽsumus, Dómine, cleménter exáudi: ut, qui juste pro peccátis nostris afflígimur, pietátis tuæ visit", - "id": "OratioL4" - }, - { - "body": "Léctio Daniélis Prophétæ\n*Dan 3:47-51*\nIn diebus illis: Angelus Dómini descéndit cum Azaría et sóciis ejus in fornácem: ", - "id": "LectioL5" - }, - { - "body": "Deus, qui tribus púeris mitigásti flammas ignium: concéde propítius; ut nos fámulos tuos non exúrat flamma vitiórum.\nPer", - "id": "OratioL5" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Thessalonicénses\n*2 Thess 2:1-8*\nFratres: Rogámus vos per advéntum Dómini nostri", - "id": "Lectio" - }, - { - "body": "*Ps:79:2-3*\nQui regis Israël, inténde: qui dedúcis, velut ovem, Joseph.\n℣. Qui sedes super Chérubim, appáre coram Ephrai", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 3:1-6*\nAnno quintodécimo impérii Tibérii Cǽsaris, procuránte Póntio Pil", - "id": "Evangelium" - }, - { - "body": "*Zach 9:9*\nExsúlta satis, fília Sion, prǽdica, fília Jerúsalem: ecce, Rex tuus venit tibi sanctus et Salvátor.", - "id": "Offertorium" - }, - { - "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Ps 18:6-7*\nExsultávit ut gigas ad curréndam viam: a summo cœlo egréssio ejus, et occúrsus ejus usque ad summum ejus.", - "id": "Communio" - }, - { - "body": "Quǽsumus, Dómine, Deus noster: ut sacrosáncta mystéria, quæ pro reparatiónis nostræ munímine contulísti; et præsens nobi", - "id": "Postcommunio" - } - ], - "2020-12-20": [ - { - "body": "*Isa 45:8*\nRoráte, cœli, désuper, et nubes pluant justum: aperiátur terra, et gérminet Salvatórem\n*Ps 18:2*\nCœli enárran", - "id": "Introitus" - }, - { - "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: et magna nobis virtúte succúrre; ut per auxílium grátiæ tuæ, quod nos", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:1-5*\nFratres: Sic nos exístimet homo ut minístros Christi, e", - "id": "Lectio" - }, - { - "body": "*Ps 144:18; 144:21*\nPrope est Dóminus ómnibus invocántibus eum: ómnibus, qui ínvocant eum in veritáte.\n℣. Laudem Dómini ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 3:1-6*\nAnno quintodécimo impérii Tibérii Cǽsaris, procuránte Póntio Pil", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28*\nAve, María, gratia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*de sanctissima Trinitate*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine", - "id": "Prefatio" - }, - { - "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel.", - "id": "Communio" - }, - { - "body": "Sumptis munéribus, quǽsumus, Dómine: ut, cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-12-21": [ - { - "body": "*Ps 138:17.*\nMihi autem nimis honoráti sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n*Ps 138:1-2*\nDómin", - "id": "Introitus" - }, - { - "body": "Da nobis, quǽsumus, Dómine, beáti Apóstoli tui Thomæ sollemnitátibus gloriári: ut ejus semper et patrocíniis sublevémur;", - "id": "Oratio" - }, - { - "body": "*Commemoratio Dominica IV Adventus*\nExcita, quǽsumus, Dómine, poténtiam tuam, et veni: et magna nobis virtúte succúrre; ", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Ephésios.\n*Ephes 2:19-22*\nFratres: Jam non estis hóspites et ádvenæ: sed estis c", - "id": "Lectio" - }, - { - "body": "*Ps 138:17-18.*\nNimis honorati sunt amíci tui, Deus: nimis confortátus est principátus eórum.\n℣. Dinumerábo eos, et supe", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Joánnem.\n*Joann 20:24-29*\nIn illo témpore: Thomas, unus ex duódecim, qui dícitur D", - "id": "Evangelium" - }, - { - "body": "*Ps 18:5*\nIn omnem terram exívit sonus eórum: et in fines orbis terræ verba eórum.", - "id": "Offertorium" - }, - { - "body": "Débitum tibi, Dómine, nostræ réddimus servitútis, supplíciter exorántes: ut, suffrágiis beáti Thomæ Apóstoli, in nobis t", - "id": "Secreta" - }, - { - "body": "*Commemoratio Dominica IV Adventus*\nSacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni nostræ ", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Apostolis*\nVere dignum et justum est, æquum et salutáre: Te, Dómine, supplíciter exoráre, ut gregem tuum, Pastor æté", - "id": "Prefatio" - }, - { - "body": "*Joann 20:27*\nMitte manum tuam, et cognósce loca clavórum: et noli esse incrédulus, sed fidélis.", - "id": "Communio" - }, - { - "body": "Adésto nobis, miséricors Deus: et, intercedénte pro nobis beáto Thoma Apóstolo, tua circa nos propitiátus dona custódi.\n", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio Dominica IV Adventus*\nSumptis munéribus, quǽsumus, Dómine: ut, cum frequentatióne mystérii, crescat nostræ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-22": [ - { - "body": "*Isa 45:8*\nRoráte, cœli, désuper, et nubes pluant justum: aperiátur terra, et gérminet Salvatórem\n*Ps 18:2*\nCœli enárran", - "id": "Introitus" - }, - { - "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: et magna nobis virtúte succúrre; ut per auxílium grátiæ tuæ, quod nos", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:1-5*\nFratres: Sic nos exístimet homo ut minístros Christi, e", - "id": "Lectio" - }, - { - "body": "*Ps 144:18; 144:21*\nPrope est Dóminus ómnibus invocántibus eum: ómnibus, qui ínvocant eum in veritáte.\n℣. Laudem Dómini ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 3:1-6*\nAnno quintodécimo impérii Tibérii Cǽsaris, procuránte Póntio Pil", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28*\nAve, María, gratia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel.", - "id": "Communio" - }, - { - "body": "Sumptis munéribus, quǽsumus, Dómine: ut, cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-12-23": [ - { - "body": "*Isa 45:8*\nRoráte, cœli, désuper, et nubes pluant justum: aperiátur terra, et gérminet Salvatórem\n*Ps 18:2*\nCœli enárran", - "id": "Introitus" - }, - { - "body": "Excita, quǽsumus, Dómine, poténtiam tuam, et veni: et magna nobis virtúte succúrre; ut per auxílium grátiæ tuæ, quod nos", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beáti Pauli Apóstoli ad Corínthios\n*1 Cor 4:1-5*\nFratres: Sic nos exístimet homo ut minístros Christi, e", - "id": "Lectio" - }, - { - "body": "*Ps 144:18; 144:21*\nPrope est Dóminus ómnibus invocántibus eum: ómnibus, qui ínvocant eum in veritáte.\n℣. Laudem Dómini ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 3:1-6*\nAnno quintodécimo impérii Tibérii Cǽsaris, procuránte Póntio Pil", - "id": "Evangelium" - }, - { - "body": "*Luc 1:28*\nAve, María, gratia plena; Dóminus tecum: benedícta tu in muliéribus, et benedíctus fructus ventris tui.", - "id": "Offertorium" - }, - { - "body": "Sacrifíciis præséntibus, quǽsumus, Dómine, placátus inténde: ut et devotióni nostræ profíciant et salúti.\nPer Dominum…", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Is 7:14*\nEcce, Virgo concípiet et páriet fílium: et vocábitur nomen ejus Emmánuel.", - "id": "Communio" - }, - { - "body": "Sumptis munéribus, quǽsumus, Dómine: ut, cum frequentatióne mystérii, crescat nostræ salútis efféctus.\nPer Dominum…", - "id": "Postcommunio" - } - ], - "2020-12-24": [ - { - "body": "*Exod 16:6; 16:7*\nHódie sciétis, quia véniet Dóminus et salvábit nos: et mane vidébitis glóriam ejus.\n*Ps 23:1*\nDómini e", - "id": "Introitus" - }, - { - "body": "Deus, qui nos redemptiónis nostræ ánnua exspectatióne lætíficas: præsta; ut Unigénitum tuum, quem Redemptórem læti suscí", - "id": "Oratio" - }, - { - "body": "Lectio Epístolæ beati Pauli Apostoli ad Romános\n*Rom 1:1-6*\nPaulus, servus Jesu Christi, vocátus Apóstolus, segregátus i", - "id": "Lectio" - }, - { - "body": "*Exod 16:6; 16:7*\nHódie sciétis, quia véniet Dóminus et salvábit nos: et mane vidébitis glóriam ejus.\n*Ps 79:2-3*\nQui re", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Matthǽum.\n*Matt 1:18-21*\nCum esset desponsáta Mater Jesu Maria Joseph, ántequam co", - "id": "Evangelium" - }, - { - "body": "*Ps 23:7*\nTóllite portas, principes, vestras: et elevámini, portæ æternáles, et introíbit Rex glóriæ.", - "id": "Offertorium" - }, - { - "body": "Da nobis, quǽsumus, omnípotens Deus: ut, sicut adoránda Fílii tui natalítia prævenímus, sic ejus múnera capiámus sempité", - "id": "Secreta" - }, - { - "body": "*Communis*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine sancte, Pater o", - "id": "Prefatio" - }, - { - "body": "*Isa 40:5*\nRevelábitur glória Dómini: et vidébit omnis caro salutáre Dei nostri.", - "id": "Communio" - }, - { - "body": "Da nobis, quǽsumus, Dómine: unigéniti Fílii tui recensíta nativitáte respiráre; cujus cœlésti mystério páscimur et potám", - "id": "Postcommunio" - } - ], - "2020-12-25": [ - { - "body": "*Ps 2:7.*\nDóminus dixit ad me: Fílius meus es tu, ego hódie génui te.\n*Ps 2:1*\nQuare fremuérunt gentes: et pópuli meditá", - "id": "Introitus" - }, - { - "body": "Deus, qui hanc sacratíssimam noctem veri lúminis fecísti illustratióne claréscere: da, quǽsumus; ut, cujus lucis mystéri", - "id": "Oratio" - }, - { - "body": "Léctio Epístolæ beati Pauli Apóstoli ad Titum\n*Tit 2:11-15*\nCaríssime: Appáruit grátia Dei Salvatóris nostri ómnibus hom", - "id": "Lectio" - }, - { - "body": "*Ps 109:3; 109:1*\nTecum princípium in die virtútis tuæ: in splendóribus Sanctórum, ex útero ante lucíferum génui te.\n℣. ", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Lucam\n*Luc 2:1-14*\nIn illo témpore: Exiit edíctum a Cæsare Augústo, ut describerét", - "id": "Evangelium" - }, - { - "body": "*Ps 95:11; 95:13*\nLæténtur cœli et exsúltet terra ante fáciem Dómini: quóniam venit.", - "id": "Offertorium" - }, - { - "body": "Accépta tibi sit, Dómine, quǽsumus, hodiérnæ festivitátis oblátio: ut, tua gratia largiénte, per hæc sacrosáncta commérc", - "id": "Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Ps 109:3*\nIn splendóribus Sanctórum, ex útero ante lucíferum génui te.", - "id": "Communio" - }, - { - "body": "Da nobis, quǽsumus, Dómine, Deus noster: ut, qui Nativitátem Dómini nostri Jesu Christi mystériis nos frequentáre gaudém", - "id": "Postcommunio" - } - ], - "2020-12-26": [ - { - "body": "*Ps 118:23; 118:86; 118:23*\nSedérunt príncipes, et advérsum me loquebántur: et iníqui persecúti sunt me: ádjuva me, Dómi", - "id": "Introitus" - }, - { - "body": "Da nobis, quǽsumus, Dómine, imitári quod cólimus: ut discámus et inimícos dilígere; quia ejus natalícia celebrámus, qui ", - "id": "Oratio" - }, - { - "body": "*Pro Octava Nativitatis*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; quo", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio Actuum Apostolorum\n*Act 6:8-10; 7:54-59*\nIn diebus illis: Stéphanus, plenus grátia et fortitúdine, faciébat prodí", - "id": "Lectio" - }, - { - "body": "*Ps 118:23; 118:86*\nSedérunt príncipes, et advérsum me loquebántur: et iníqui persecúti sunt me.\n*Ps 6:5*\nAdjuva me, Dóm", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Matthǽum\n*Matt 23:34-39*\nIn illo témpore: Dicébat Jesus scribis et pharisæis: Ecce", - "id": "Evangelium" - }, - { - "body": "*Act 6:5; 7:59*\nElegérunt Apóstoli Stéphanum Levítam, plenum fide et Spíritu Sancto: quem lapidavérunt Judæi orántem, et", - "id": "Offertorium" - }, - { - "body": "Súscipe, Dómine, múnera pro tuórum commemoratióne Sanctórum: ut, sicut illos pássio gloriósos effécit; ita nos devótio r", - "id": "Secreta" - }, - { - "body": "*Pro Octava Nativitatis*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrorum", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Act 7:56; 7:59; 7:60*\nVídeo cælos apértos, et Jesum stantem a dextris virtútis Dei: Dómine Jesu, accipe spíritum meum, ", - "id": "Communio" - }, - { - "body": "Auxiliéntur nobis, Dómine, sumpta mystéria: et, intercedénte beáto Stéphano Mártyre tuo, sempitérna protectióne confírme", - "id": "Postcommunio" - }, - { - "body": "*Pro Octava Nativitatis*\nPræsta, quǽsumus, omnípotens Deus: ut natus hodie Salvátor mundi, sicut divínæ nobis generatión", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-27": [ - { - "body": "*Sap 18:14-15.*\nDum médium siléntium tenérent ómnia, et nox in suo cursu médium iter háberet, omnípotens Sermo tuus, Dóm", - "id": "Introitus" - }, - { - "body": "Omnípotens sempitérne Deus, dírige actus nostros in beneplácito tuo: ut in nómine dilécti Fílii tui mereámur bonis opéri", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Joannis Apostoli et Evangelistæ*\nEcclésiam tuam, Dómine, benígnus illústra: ut, beáti Joánnis Apóstoli ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio Epístolæ beati Pauli Apóstoli ad Gálatas.\n*Gal 4:1-7*\nFratres: Quanto témpore heres párvulus est, nihil differt a", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:2*\nSpeciósus forma præ filiis hóminum: diffúsa est gratia in lábiis tuis.\n℣. Eructávit cor meum verbum bonu", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Lucam.\n*Luc 2:33-40*\nIn illo témpore: Erat Joseph et María Mater Jesu, mirántes su", - "id": "Evangelium" - }, - { - "body": "*Ps 92:1-2*\nDeus firmávit orbem terræ, qui non commovébitur: paráta sedes tua, Deus, ex tunc, a sǽculo tu es.", - "id": "Offertorium" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut óculis tuæ majestátis munus oblátum, et grátiam nobis piæ devotiónis obtineat, et", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Joannis Apostoli et Evangelistæ*\nSúscipe, Dómine, múnera, quæ in ejus tibi sollemnitáte deférimus, cuju", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Matt 2:20*\nTolle Púerum et Matrem ejus, et vade in terram Israël: defúncti sunt enim, qui quærébant ánimam Púeri.", - "id": "Communio" - }, - { - "body": "Per hujus, Dómine, operatiónem mystérii, et vitia nostra purgéntur, et justa desidéria compleántur.\nPer Dominum…", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Joannis Apostoli et Evangelistæ*\nRefécti cibo potúque cœlésti, Deus noster, te súpplices deprecámur: ut", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-28": [ - { - "body": "*Ps 8:3.*\nEx ore infántium, Deus, et lacténtium perfecísti laudem propter inimicos tuos.\n*Ps 8:2*\nDómine, Dóminus noster", - "id": "Introitus" - }, - { - "body": "Deus, cujus hodierna die præcónium Innocéntes Mártyres non loquéndo, sed moriéndo conféssi sunt: ómnia in nobis vitiórum", - "id": "Oratio" - }, - { - "body": "*Pro Octava Nativitatis:*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; qu", - "id": "Commemoratio Oratio" - }, - { - "body": "Léctio libri Apocalýpsis beáti Joánnis Apóstoli.\n*Apoc 14:1-5*\nIn diébus illis: Vidi supra montem Sion Agnum stantem, et", - "id": "Lectio" - }, - { - "body": "*Ps 123:7-8*\nAnima nostra, sicut passer, erépta est de láqueo venántium.\n℣. Láqueus contrítus est, et nos liberáti sumus", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secundum Matthǽum\n*Matt 2:13-18*\nIn illo témpore: Angelus Dómini appáruit in somnis Joseph,", - "id": "Evangelium" - }, - { - "body": "*Ps 123:7*\nAnima nostra, sicut passer, erépta est de láqueo venántium: láqueus contrítus est, et nos liberáti sumus.", - "id": "Offertorium" - }, - { - "body": "Sanctórum tuórum, Dómine, nobis pia non desit orátio: quæ et múnera nostra concíliet, et tuam nobis indulgéntiam semper ", - "id": "Secreta" - }, - { - "body": "*Pro Octava Nativitatis:*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostróru", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Matt 2:18.*\nVox in Rama audíta est, plorátus, et ululátus: Rachel plorans fílios suos, et nóluit consolári, quia non su", - "id": "Communio" - }, - { - "body": "Votíva, Dómine, dona percépimus: quæ Sanctórum nobis précibus, et præséntis, quǽsumus, vitæ páriter et ætérnæ tríbue con", - "id": "Postcommunio" - }, - { - "body": "*Pro Octava Nativitatis:*\nPræsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatió", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-29": [ - { - "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", - "id": "Introitus" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; quos sub peccáti jugo vetúst", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Thomæ M.*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; q", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio Epístolæ beati Pauli Apostoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTui sunt cœli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium ", - "id": "Offertorium" - }, - { - "body": "Obláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer eúnd", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Thomæ M.*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrór", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatiónis est auctor; ita et imm", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Thomæ M.*\nPræsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generati", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-30": [ - { - "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", - "id": "Introitus" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; quos sub peccáti jugo vetúst", - "id": "Oratio" - }, - { - "body": "Lectio Epístolæ beati Pauli Apostoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTui sunt cœli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium ", - "id": "Offertorium" - }, - { - "body": "Obláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer eúnd", - "id": "Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatiónis est auctor; ita et imm", - "id": "Postcommunio" - } - ], - "2020-12-31": [ - { - "body": "*Isa 9:6*\nPuer natus est nobis, et fílius datus est nobis: cujus impérium super húmerum ejus: et vocábitur nomen ejus ma", - "id": "Introitus" - }, - { - "body": "Concéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; quos sub peccáti jugo vetúst", - "id": "Oratio" - }, - { - "body": "*Commemoratio S. Silvestri*\nConcéde, quǽsumus, omnípotens Deus: ut nos Unigéniti tui nova per carnem Natívitas líberet; ", - "id": "Commemoratio Oratio" - }, - { - "body": "Lectio Epístolæ beati Pauli Apostoli ad Titum\n*Tit 3:4-7*\nCaríssime: Appáruit benígnitas et humánitas Salvatóris nostri ", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nVidérunt omnes fines terræ salutare Dei nostri: jubiláte Deo, omnis terra.\n℣. Notum fecit Dominus saluta", - "id": "Graduale" - }, - { - "body": "Sequéntia ☩ sancti Evangélii secúndum Lucam\n*Luc 2:15-20*\nIn illo témpore: Pastóres loquebántur ad ínvicem: Transeámus u", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTui sunt cœli et tua est terra: orbem terrárum et plenitúdinem ejus tu fundásti: justítia et judícium ", - "id": "Offertorium" - }, - { - "body": "Obláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostrórum máculis emúnda.\nPer eúnd", - "id": "Secreta" - }, - { - "body": "*Commemoratio S. Silvestri*\nObláta, Dómine, múnera, nova Unigéniti tui Nativitáte sanctífica: nosque a peccatórum nostró", - "id": "Commemoratio Secreta" - }, - { - "body": "*de Nativitate Domini*\nVere dignum et justum est, æquum et salutáre, nos tibi semper et ubíque grátias ágere: Dómine san", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nVidérunt omnes fines terræ salutáre Dei nostri.", - "id": "Communio" - }, - { - "body": "Præsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generatiónis est auctor; ita et imm", - "id": "Postcommunio" - }, - { - "body": "*Commemoratio S. Silvestri*\nPræsta, quǽsumus, omnípotens Deus: ut natus hódie Salvátor mundi, sicut divínæ nobis generat", - "id": "Commemoratio Postcommunio" - } - ] -} \ No newline at end of file diff --git a/tests/fixtures/propers_pl.json b/tests/fixtures/propers_pl.json new file mode 100644 index 00000000..c6565000 --- /dev/null +++ b/tests/fixtures/propers_pl.json @@ -0,0 +1,34488 @@ +{ + "2024-01-01": [ + { + "body": "*Iz 9:6*\nMaleńki nam się narodził i Syn został nam dany; władza spoczęła na Jego ramionach, a imię Jego nazwano: Zwiastu", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + } + ], + "2024-01-02": [ + { + "body": "*Flp 2:10-11*\nNa imię Jezusa niechaj się zgina wszelkie kolano mieszkańców nieba, ziemi i podziemia: i wszelki język nie", + "id": "Introitus" + }, + { + "body": "Boże, któryś ustanowił jedynego Syna Twojego Zbawicielem rodzaju ludzkiego i kazałeś Mu nadać imię Jezus, spraw miłościw", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 4:8-12*\nW one dni: Piotr napełniony Duchem Świętym, rzekł do nich: «Przełożeni ludu", + "id": "Lectio" + }, + { + "body": "*Ps 105:47*\nRatuj nas Panie nasz Boże, zgromadź nas z krajów pogańskich, abyśmy wielbili święte imię Twoje i dumni byli ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", + "id": "Evangelium" + }, + { + "body": "*Ps 85:12; 85:5*\nPanie, mój Boże, będę Cię chwalił z całego serca mojego i na wieczność będę głosił imię Twoje. Ty bowie", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię najłaskawszy Boże, niech Twe błogosławieństwo, źródło życia całego stworzenia, uświęci ofiarę, którą składam", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 85:9-10*\nPrzyjdą wszystkie ludy, które uczyniłeś i będą Cię Panie wielbiły, i będą głosić Twe imię: boś Ty jest wiel", + "id": "Communio" + }, + { + "body": "Wszechmogący wieczny Boże, Tyś nas stworzył i odkupił, wejrzyj miłościwie na nasze prośby i racz łaskawie przyjąć tę zba", + "id": "Postcommunio" + } + ], + "2024-01-03": [ + { + "body": "*Iz 9:6*\nMaleńki nam się narodził i Syn został nam dany; władza spoczęła na Jego ramionach, a imię Jego nazwano: Zwiastu", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + } + ], + "2024-01-04": [ + { + "body": "*Iz 9:6*\nMaleńki nam się narodził i Syn został nam dany; władza spoczęła na Jego ramionach, a imię Jego nazwano: Zwiastu", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + } + ], + "2024-01-05": [ + { + "body": "*Iz 9:6*\nMaleńki nam się narodził i Syn został nam dany; władza spoczęła na Jego ramionach, a imię Jego nazwano: Zwiastu", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Telesfora, Papieża i Męczennika*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieust", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Telesfora, Papieża i Męczennika*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by t", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Telesfora, Papieża i Męczennika*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-06": [ + { + "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", + "id": "Introitus" + }, + { + "body": "Boże, w dniu dzisiejszym za przewodem gwiazdy objawiłeś narodom Jedynego Syna Twojego; skoro tedy poznaliśmy Ciebie prze", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\n*Jerozolima jest typem Kościoła katolickiego, do którego garną się wszys", + "id": "Lectio" + }, + { + "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:1-12*\nGdy się tedy narodził Jezus w Betlejem Judzkim za dni króla", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", + "id": "Offertorium" + }, + { + "body": "Wejrzyj miłościwie na dary Twojego Kościoła, który składa ci już nie złoto kadzidło i mirrę, lecz Tego, którego one wyob", + "id": "Secreta" + }, + { + "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", + "id": "Prefatio" + }, + { + "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli tajemnicę uroczyście dziś obchodzoną.\nPrzez Pa", + "id": "Postcommunio" + } + ], + "2024-01-07": [ + { + "body": "*Prz 23:24; 23:25*\nRaduje się bardzo Ojciec Sprawiedliwego. Niech się weseli Ojciec Twój i Matka Twoja; niech się raduje", + "id": "Introitus" + }, + { + "body": "Panie Jezu Chryste, Tyś w posłuszeństwie Maryi i Józefowi, życie rodzinne niewysłowionymi cnotami uświęcił, spraw za ich", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:12-17*\n*Wzajemna wyrozumiałość i wspólna modlitwa mają donio", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nO jedno proszę Pana, jednego pragnę, bym mógł przebywać w domu Pańskim po wszystkie dni życia mego.\n*Ps 83:5*\n", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:42-52*\nGdy Jezus miał lat dwanaście, udali się do Jerozolimy wedłu", + "id": "Evangelium" + }, + { + "body": "*Łk 2:22*\nPrzynieśli Jezusa Rodzice Jego do Jeruzalem, aby Go stawić przed Panem.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci Panie przebłagalną ofiarę i prosimy w pokorze, abyś za wstawiennictwem Bogarodzicy Dziewicy i świętego Józef", + "id": "Secreta" + }, + { + "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", + "id": "Prefatio" + }, + { + "body": "*Łk 2:51*\nWrócił Jezus z Nimi, przyszedł do Nazaretu i był im poddany.", + "id": "Communio" + }, + { + "body": "Panie Jezu, Ty nas posilasz niebiańskim Sakramentem: spraw, byśmy zawsze naśladowali wzór Twej świętej Rodziny, a przez ", + "id": "Postcommunio" + } + ], + "2024-01-08": [ + { + "body": "Na wyniosłym tronie widziałem siedzącego Męża, któremu hołd składa rzesza Aniołów, śpiewając jednogłośnie: Oto Ten, któr", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wspieraj łaską z nieba pragnienia błagającego ludu, daj mu poznać, co należy czynić, i umocnij do wy", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:1-5*\nBracia: Proszę was przez miłosierdzie Boże, abyście skł", + "id": "Lectio" + }, + { + "body": "*Ps 71:18 ; 71:3*\nBłogosławiony Pan Bóg Izraela: On jeden czyni cuda wielkie od wieków.\n℣. Góry przyniosą ludowi twojemu", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:42-52*\nGdy Jezus miał lat dwanaście, udali się do Jerozolimy wedłu", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1; 99:2*\nZ radością wykrzykujcie Bogu wszystkie ziemie; służcie Panu z weselem, wśród okrzyków radości stawajcie ", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 2:48; 2:49*\nSynu, cóżeś to nam uczynił? Oto ja i ojciec Twój, bolejąc, szukaliśmy Ciebie. Cóż jest, żeście mnie szuk", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz swoim Sakramentem, godnie Tobie służyli żyjąc w", + "id": "Postcommunio" + } + ], + "2024-01-09": [ + { + "body": "Na wyniosłym tronie widziałem siedzącego Męża, któremu hołd składa rzesza Aniołów, śpiewając jednogłośnie: Oto Ten, któr", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wspieraj łaską z nieba pragnienia błagającego ludu, daj mu poznać, co należy czynić, i umocnij do wy", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:1-5*\nBracia: Proszę was przez miłosierdzie Boże, abyście skł", + "id": "Lectio" + }, + { + "body": "*Ps 71:18 ; 71:3*\nBłogosławiony Pan Bóg Izraela: On jeden czyni cuda wielkie od wieków.\n℣. Góry przyniosą ludowi twojemu", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:42-52*\nGdy Jezus miał lat dwanaście, udali się do Jerozolimy wedłu", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1; 99:2*\nZ radością wykrzykujcie Bogu wszystkie ziemie; służcie Panu z weselem, wśród okrzyków radości stawajcie ", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 2:48; 2:49*\nSynu, cóżeś to nam uczynił? Oto ja i ojciec Twój, bolejąc, szukaliśmy Ciebie. Cóż jest, żeście mnie szuk", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz swoim Sakramentem, godnie Tobie służyli żyjąc w", + "id": "Postcommunio" + } + ], + "2024-01-10": [ + { + "body": "Na wyniosłym tronie widziałem siedzącego Męża, któremu hołd składa rzesza Aniołów, śpiewając jednogłośnie: Oto Ten, któr", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wspieraj łaską z nieba pragnienia błagającego ludu, daj mu poznać, co należy czynić, i umocnij do wy", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:1-5*\nBracia: Proszę was przez miłosierdzie Boże, abyście skł", + "id": "Lectio" + }, + { + "body": "*Ps 71:18 ; 71:3*\nBłogosławiony Pan Bóg Izraela: On jeden czyni cuda wielkie od wieków.\n℣. Góry przyniosą ludowi twojemu", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:42-52*\nGdy Jezus miał lat dwanaście, udali się do Jerozolimy wedłu", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1; 99:2*\nZ radością wykrzykujcie Bogu wszystkie ziemie; służcie Panu z weselem, wśród okrzyków radości stawajcie ", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 2:48; 2:49*\nSynu, cóżeś to nam uczynił? Oto ja i ojciec Twój, bolejąc, szukaliśmy Ciebie. Cóż jest, żeście mnie szuk", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz swoim Sakramentem, godnie Tobie służyli żyjąc w", + "id": "Postcommunio" + } + ], + "2024-01-11": [ + { + "body": "Na wyniosłym tronie widziałem siedzącego Męża, któremu hołd składa rzesza Aniołów, śpiewając jednogłośnie: Oto Ten, któr", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wspieraj łaską z nieba pragnienia błagającego ludu, daj mu poznać, co należy czynić, i umocnij do wy", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Hygina, Papieża i Męczennika*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustann", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:1-5*\nBracia: Proszę was przez miłosierdzie Boże, abyście skł", + "id": "Lectio" + }, + { + "body": "*Ps 71:18 ; 71:3*\nBłogosławiony Pan Bóg Izraela: On jeden czyni cuda wielkie od wieków.\n℣. Góry przyniosą ludowi twojemu", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:42-52*\nGdy Jezus miał lat dwanaście, udali się do Jerozolimy wedłu", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1; 99:2*\nZ radością wykrzykujcie Bogu wszystkie ziemie; służcie Panu z weselem, wśród okrzyków radości stawajcie ", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Hygina, Papieża i Męczennika*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzo", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 2:48; 2:49*\nSynu, cóżeś to nam uczynił? Oto ja i ojciec Twój, bolejąc, szukaliśmy Ciebie. Cóż jest, żeście mnie szuk", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz swoim Sakramentem, godnie Tobie służyli żyjąc w", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Hygina, Papieża i Męczennika*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez św", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-12": [ + { + "body": "Na wyniosłym tronie widziałem siedzącego Męża, któremu hołd składa rzesza Aniołów, śpiewając jednogłośnie: Oto Ten, któr", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wspieraj łaską z nieba pragnienia błagającego ludu, daj mu poznać, co należy czynić, i umocnij do wy", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:1-5*\nBracia: Proszę was przez miłosierdzie Boże, abyście skł", + "id": "Lectio" + }, + { + "body": "*Ps 71:18 ; 71:3*\nBłogosławiony Pan Bóg Izraela: On jeden czyni cuda wielkie od wieków.\n℣. Góry przyniosą ludowi twojemu", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:42-52*\nGdy Jezus miał lat dwanaście, udali się do Jerozolimy wedłu", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1; 99:2*\nZ radością wykrzykujcie Bogu wszystkie ziemie; służcie Panu z weselem, wśród okrzyków radości stawajcie ", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 2:48; 2:49*\nSynu, cóżeś to nam uczynił? Oto ja i ojciec Twój, bolejąc, szukaliśmy Ciebie. Cóż jest, żeście mnie szuk", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz swoim Sakramentem, godnie Tobie służyli żyjąc w", + "id": "Postcommunio" + } + ], + "2024-01-13": [ + { + "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", + "id": "Introitus" + }, + { + "body": "Boże, Twój Jednorodzony Syn objawił się w naszej cielesnej naturze; spraw, abyśmy zostali wewnętrznie przekształceni prz", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\nPowstań, Jeruzalem, i rozbłyśnij jasnością, bo przybywa światłość twoja ", + "id": "Lectio" + }, + { + "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:29-34*\nOnego czasu ujrzał Jan nadchodzącego Jezusa i rzekł: «Oto Baran", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiary ku uczczeniu objawienia się Syna Twojego, który stał się człowiekiem, i pokornie prosimy: aby", + "id": "Secreta" + }, + { + "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", + "id": "Prefatio" + }, + { + "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech nas uprzedza zawsze i wszędzie niebiańskie światło: abyśmy czystym wejrzeniem przeniknęli i z ", + "id": "Postcommunio" + } + ], + "2024-01-14": [ + { + "body": "*Ps 65:4*\nNiechaj Cię wielbi cała ziemia i niechaj śpiewa Tobie; niech imię Twoje opiewa, o Najwyższy.\n*Ps 65:1-2*\nZ rad", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który rządzisz niebem i ziemią, wysłuchaj łaskawie próśb ludu Twojego i racz obdarzyć nasze ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:6-16*\nBracia: Mamy dary według użyczonej nam łaski różne: Bą", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nPosłał Pan swe słowo, aby ich uleczyć i od zagłady ich wyrwać. Niech dzięki czynią Panu za Jego miłosierd", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 2:1-11*\nOnego czasu: odbywały się gody weselne w Kanie Galilejskiej i by", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nZ radością sławcie Boga wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się Bo", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, ofiarowane dary i oczyść nas ze zmazy naszych grzechów.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 2:7; 2:8; 2:9; 2:10-11*\nPan mówi: «Napełnijcie stągwie wodą i zanieście gospodarzowi wesela». A gdy gospodarz skoszto", + "id": "Communio" + }, + { + "body": "Niech wzrośnie w nas działanie Twojej mocy, prosimy Cię, Panie, aby łaska Twoja przygotowała nas do otrzymania dóbr wiek", + "id": "Postcommunio" + } + ], + "2024-01-15": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, który co roku uweselasz nas uroczystością św. Pawła, Twojego Wyznawcy, spraw łaskawie, abyśmy naśladowali czyny te", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Maura*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Maura Opata, abyśmy za jego p", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:7-12*\n*Celem wysiłków ascetów chrześcijańskich jest udział ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Sprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\n℣. By", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:25-30*\nOnego czasu: Odpowiadając Jezus rzekł: «Wysławiam Cię, Oj", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Maura*\nProsimy Cię, Panie, niech święty Maur, Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią.", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Maura*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Maura, Opata, ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-16": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wysłuchaj łaskawie próśb Swojego ludu: niech nas wspierają zasługi św. Marcelego, Twojego Męczennika", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + } + ], + "2024-01-17": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Antoniego, Opata, abyśmy za jego przyczyną otrzymali ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam ku zbawieni", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N., Opata, abyśmy naśladowali jego wzo", + "id": "Postcommunio" + } + ], + "2024-01-18": [ + { + "body": "*Ps 65:4*\nNiechaj Cię wielbi cała ziemia i niechaj śpiewa Tobie; niech imię Twoje opiewa, o Najwyższy.\n*Ps 65:1-2*\nZ rad", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który rządzisz niebem i ziemią, wysłuchaj łaskawie próśb ludu Twojego i racz obdarzyć nasze ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Pryski, Dziewicy*\nProsimy Cię, wszechmogący Boże, spraw, abyśmy obchodząc narodziny dla nieba św. Prysk", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:6-16*\nBracia: Mamy dary według użyczonej nam łaski różne: Bą", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nPosłał Pan swe słowo, aby ich uleczyć i od zagłady ich wyrwać. Niech dzięki czynią Panu za Jego miłosierd", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 2:1-11*\nOnego czasu: odbywały się gody weselne w Kanie Galilejskiej i by", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nZ radością sławcie Boga wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się Bo", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, ofiarowane dary i oczyść nas ze zmazy naszych grzechów.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Pryski, Dziewicy*\nProsimy Cię, Panie, niech ta ofiara, którą składamy wspominając narodziny dla nieba T", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 2:7; 2:8; 2:9; 2:10-11*\nPan mówi: «Napełnijcie stągwie wodą i zanieście gospodarzowi wesela». A gdy gospodarz skoszto", + "id": "Communio" + }, + { + "body": "Niech wzrośnie w nas działanie Twojej mocy, prosimy Cię, Panie, aby łaska Twoja przygotowała nas do otrzymania dóbr wiek", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Pryski, Dziewicy*\nNasyceni zbawiennym Sakramentem, prosimy Cię, Panie, aby wspomagały nas modlitwy tej,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-19": [ + { + "body": "*Ps 65:4*\nNiechaj Cię wielbi cała ziemia i niechaj śpiewa Tobie; niech imię Twoje opiewa, o Najwyższy.\n*Ps 65:1-2*\nZ rad", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który rządzisz niebem i ziemią, wysłuchaj łaskawie próśb ludu Twojego i racz obdarzyć nasze ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Mariusza, Marty, Audifaksa i Abachuma*\nWysłuchaj, Panie, ludu Twego, który Cię błaga przez wstawiennict", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:6-16*\nBracia: Mamy dary według użyczonej nam łaski różne: Bą", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nPosłał Pan swe słowo, aby ich uleczyć i od zagłady ich wyrwać. Niech dzięki czynią Panu za Jego miłosierd", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 2:1-11*\nOnego czasu: odbywały się gody weselne w Kanie Galilejskiej i by", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nZ radością sławcie Boga wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się Bo", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, ofiarowane dary i oczyść nas ze zmazy naszych grzechów.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Mariusza, Marty, Audifaksa i Abachuma*\nWejrzyj, Panie, na modły i ofiary Swoich wiernych: niech przy ur", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 2:7; 2:8; 2:9; 2:10-11*\nPan mówi: «Napełnijcie stągwie wodą i zanieście gospodarzowi wesela». A gdy gospodarz skoszto", + "id": "Communio" + }, + { + "body": "Niech wzrośnie w nas działanie Twojej mocy, prosimy Cię, Panie, aby łaska Twoja przygotowała nas do otrzymania dóbr wiek", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Mariusza, Marty, Audifaksa i Abachuma*\nPrzejednany wstawiennictwem Twoich Świętych, daj, prosimy Cię, P", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-20": [ + { + "body": "*Ps 78:11-12; 78:10*\nNiech jęk pojmanych dojdzie do Ciebie, Panie: naszym sąsiadom odpłać siedmiokroć w ich zanadrze, po", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wejrzyj na naszą słabość, a skoro nas obciąża brzemię własnej działalności, niech nas osłania dostojn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 11:33-39*\nBracia: Święci przez wiarę pokonali królestwa, ", + "id": "Lectio" + }, + { + "body": "*Wj 15:11*\nChwalebny jest Bóg w swoich Świętych; przedziwny w majestacie, dokonuje cudów.\n*Wj 15:6*\nPrawica Twoja, Panie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 6:17-23*\n*Msza Sapientiam została ułożona na uroczystość świętych le", + "id": "Evangelium" + }, + { + "body": "*Ps 31:11*\nSprawiedliwi, cieszcie się i weselcie w Panu, wszyscy prawego serca, głośno się radujcie.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie przez zasługi świętych Męczenników Twoich Fabiana i Sebastiana ofiarę, którą Ci składamy, i spr", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 6:18; 6:19*\nMnóstwo chorych i dręczonych przez duchy nieczyste przychodziło do Niego, albowiem wychodziła zeń moc i ", + "id": "Communio" + }, + { + "body": "Pokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie, Boże nasz, abyśmy za przyczyną świętych Męczenników Twoi", + "id": "Postcommunio" + } + ], + "2024-01-21": [ + { + "body": "*Ps 96:7-8*\nPokłon oddajcie Bogu, wszyscy Aniołowie Jego; słyszy o tym i cieszy się Syjon, i radują się miasta Judy.\n*Ps", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, wejrzyj łaskawie na naszą ułomność i wyciągnij w naszej obronie prawicę Twego majestatu.\nPrz", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:16-21*\n*Św. Paweł podaje szczegółowe wskazania jak wykonywać", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nPoganie będą czcili Imię Twoje, Panie, i wszyscy królowie ziemi Twoją chwałę.\n℣. Bo Pan odbuduje Syjon i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:1-13*\nOnego czasu: Gdy Jezus zstąpił z góry, szły za Nim rzesze w", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Nie umrę, ale będę żył i głosił dzieła Pa", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Łk 4:22*\nDziwili się wszyscy słowom, które wychodziły z ust Bożych.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, racz nas przysposobić do przyjęcia owoców wzniosłych misteriów, w których pozwalasz nam uczestniczyć", + "id": "Postcommunio" + } + ], + "2024-01-22": [ + { + "body": "*Ps 78:11-12; 78:10*\nNiech jęk pojmanych dojdzie do Ciebie, Panie: naszym sąsiadom odpłać siedmiokroć w ich zanadrze, po", + "id": "Introitus" + }, + { + "body": "Przychyl się, Panie, do naszych kornych próśb, a że obciążeni grzechami uświadamiamy sobie naszą winę, niech nas wyzwoli", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 3:1-8*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom gł", + "id": "Lectio" + }, + { + "body": "*Wj 15:11*\nChwalebny jest Bóg w Swoich Świętych, przedziwny w majestacie, dokonuje cudów.\n*Wj 15:6*\n℣. Prawica Twoja, Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:9-19*\n*Wszystkie prześladowania, jakich doznają męczennicy, stano", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nPrzedziwny jest Bóg w Swoich Świętych: Bóg Izraela, sam Swojemu ludowi daje potęgę i siłę: błogosławiony Bóg,", + "id": "Offertorium" + }, + { + "body": "Ofiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij je łaskawie ku chwale Twoich Świętych i spraw w Swoim", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył: jak złoto w piecu ich wypróbował, jak ofiarę", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, który przyjęliśmy za wstawiennictwem świętych Męczenników Twoich W", + "id": "Postcommunio" + } + ], + "2024-01-23": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który powołałeś św. Rajmunda na wybitnego Szafarza sakramentu Pokuty i cudownie przeprowadziłeś go po falach morsk", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Emercjanny*\nProsimy Cię, Panie, aby święta Emerencjana, Dziewica i Męczennica Twoja, wybłagała nam prze", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Emercjanny*\nPanie, wejrzyj łaskawie na ofiary, które Ci składamy, i za wstawiennictwem św. Emerencjanny", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Emerencjanny*\nDarem Bożym szczodrze nasyceni, prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem ś", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-24": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "*Starożytny Rzym przyznawał wybitnym obywatelom przywilej skutecznego wpływania na wyroki sądowe: intercessio gloriosa. ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*1 Tm 6:11-16*\nNajmilszy: Ubiegaj się o sprawiedliwość, pobożnoś", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\n*W czasie konsekracji biskup otrzymał namaszczenie Krzyżmem świętym na znak umocnienia do walki w obronie ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:26-33*\nOnego czasu: Mówił Jezus do rzesz: «Jeśli kto przychodzi d", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie przez zasługi świętego N., Męczennika i Biskupa ofiarę, którą Ci składamy, i spraw, aby się sta", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36; 88:37-38*\nRaz przysiągłem na świętość moją: potomstwo jego trwać będzie na wieki i jego tron będzie przede mn", + "id": "Communio" + }, + { + "body": "Pokrzepieni uczestnictwem w świętej uczcie prosimy Cię, Panie, Boże nasz, abyśmy za przyczyną świętego N., Twego Męczenn", + "id": "Postcommunio" + } + ], + "2024-01-25": [ + { + "body": "*2 Tm 1:12*\nWiem, komu zawierzyłem, i pewien jestem, że mocen jest przechować skarb mój aż do onego dnia, Sędzia sprawie", + "id": "Introitus" + }, + { + "body": "Boże, któryś cały świat pouczył słowem głoszonym przez św. Pawła Apostoła, daj nam, prosimy Cię, abyśmy czcząc jego nawr", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Piotra*\nBoże, powierzając Swojemu Apostołowi świętemu Piotrowi klucze Królestwa Niebieskiego, udzieliłe", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 9:1-22*\nW one dni: Szaweł dysząc jeszcze groźbami i pragnieniem mordu przeciw uczni", + "id": "Lectio" + }, + { + "body": "*Gal 2:8; 2:9*\nTen sam, który w Piotrze był sprawcą apostolstwa żydów, sprawił i we mnie apostolstwo wśród pogan, i pozn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.", + "id": "Offertorium" + }, + { + "body": "Dla próśb Twego Apostoła Pawła poświęć, Panie, dary ludu Twojego: miłe Ci są, boś je ustanowił, niech się staną milsze p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Piotra*\nProsimy Cię, Panie, niech modlitwa św. Piotra Apostoła zaleca prośby i ofiary Kościoła Twojego,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28; 19:29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i za mną poszli, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Uświęceni zbawiennym Sakramentem, prosimy Cię, Panie, aby nie brakło nam wstawiennictwa tego, pod którego opiekę i rządy", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Piotra*\nZłożona ofiara niech nam będzie źródłem radości, o Panie, a jako sławimy przedziwne Twe dary w ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-01-26": [ + { + "body": "*Dn 3:84; 3:87*\nKapłani Boży błogosławcie Pana: święci i pokornego serca, chwalcie Boga.\n*Dn 3:57*\nBłogosławcie Pana, ws", + "id": "Introitus" + }, + { + "body": "Boże, co roku uweselasz nas uroczystością świętego Polikarpa, Twojego Męczennika i Biskupa; spraw łaskawie, abyśmy ciesz", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 3:10-16*\n*Św. Polikarp wiernie urzeczywistnił wskazania swego mistrza św. ", + "id": "Lectio" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią.\n℣. Obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie. Alleluja, alleluja.\n", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:26-32*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nic nie ma zakry", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, złożone Ci dary i za przyczyną świętego Polikarpa Twego Męczennika i Biskupa, daj się nimi przebłagać i ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni.", + "id": "Communio" + }, + { + "body": "Panie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętego Polikarpa, Twego Męczennika i Biskupa, stanie się", + "id": "Postcommunio" + } + ], + "2024-01-27": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech łaska niebieska daje wzrost Twojemu Kościołowi, który raczyłeś oświecić nauką i chwalebnymi za", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\nNie znalazł się jemu podobny, który by ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Jana Złotoustego, Twego Biskupa i Doktora, która zaleci Tobi", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty Jan Złotousty, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiar", + "id": "Postcommunio" + } + ], + "2024-01-28": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nOgarnęły mnie boleści śmiertelne, męki piekielne mnie otoczyły. W mym utrapieniu Pana wezwałem, i ", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy ludu Twego i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miło", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 9:24-27; 10:1-5*\n*Aby osiągnąć zbawienie, nie wystarczy na", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nPan ucieczką dogodną w czasie utrapienia: zaufają Tobie znający Twe imię, bo nie opuszczasz, Panie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:1-16*\nOnego czasu rzekł Jezus uczniom swoim tę przypowieść: Podo", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nUkaż Twe pogodne oblicze słudze Twemu, wybaw mnie w swym miłosierdziu, Panie, niech się nie wstydzę, skoro", + "id": "Communio" + }, + { + "body": "Umocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je, nieustannie ich szukali, a szukając, bez końca je przy", + "id": "Postcommunio" + } + ], + "2024-01-29": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, z Twojej woli święty Franciszek, wyznawca Twój i Biskup, dla zbawienia dusz stał się wszystkim dla wszystkich; spr", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", + "id": "Postcommunio" + } + ], + "2024-01-30": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłam o Twej prawdzie wobec królów, a nie wstydziłam się, i rozważałam Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Boże, który między innymi cudami Twojej potęgi obdarzyłeś zwycięstwem w męczeństwie także płeć słabszą, spraw łaskawie, ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela.\nP", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość świętej N., Dziewicy i Męczennicy Twojej: ufamy, że jej wstawienn", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nNiech zawstydzą się pyszni, bo niewinnie mnie dręczą, ja będę rozmyślać o Twych przykazaniach, o pra", + "id": "Communio" + }, + { + "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej N., Twojej Dziewicy i Męczennicy, niech spraw", + "id": "Postcommunio" + } + ], + "2024-01-31": [ + { + "body": "*3 Krl 4:29*\nBóg mu dał mądrość i roztropność bardzo wielką, i przestronność serca jak piaszczyste wybrzeże morskie.\n*Ps", + "id": "Introitus" + }, + { + "body": "Boże, Tyś św. Jana, Twego Wyznawcę, powołał na ojca i nauczyciela młodzieży, a z woli Twojej, przy pomocy Maryi Panny, z", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-9*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", + "id": "Lectio" + }, + { + "body": "*Ps 60:4-6*\nPanie, dla mnie Ty jesteś obroną, wieżą warowną przeciwko wrogowi.\n℣. W przybytku Twoim obym zawsze mieszkał", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-5*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nPójdźcie, synowie, słuchajcie mnie: nauczę was Pańskiej bojaźni.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę czystą zbawczej Hostii i spraw, abyśmy miłując Ciebie we wszystkim i ponad wszystko, mogli żyć k", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Rz 4:18*\nPrzeciw nadziei uwierzył on w nadzieję, aby stał się ojcem wielu narodów według tego, co było mu powiedziane.", + "id": "Communio" + }, + { + "body": "Nasyceni Sakramentem Ciała i Krwi Twojej, prosimy Cię, Panie, abyśmy za wstawiennictwem św. Jana, Wyznawcy, zawsze trwal", + "id": "Postcommunio" + } + ], + "2024-02-01": [ + { + "body": "*Gal 6:14*\n*«Wolę umrzeć w Chrystusie Jezusie aniżeli królować po krańce ziemi. Szukam Tego, który umarł za nas, pragnę ", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wejrzyj na słabość naszą, a skoro nas obciąża brzemię własnej działalności, niech nas osłania dostojn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:35-39*\n*Pisząc do Rzymian św. Ignacy używa podobnych zwrotów ", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:24-26*\nOnego czasu: Rzekł Jezus uczniom swoim: «Zaprawdę, zaprawdę po", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie przez zasługi św. Ignacego, Twego Męczennika i Biskupa, ofiarę, którą Ci składamy, i spraw, aby", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Słowa św. Ignacego w Liście do Rzymian:*\nJestem pszenicą Chrystusową: niech zmielą mię zęby dzikich zwierząt, bym stał ", + "id": "Communio" + }, + { + "body": "Pokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie Boże nasz, abyśmy za przyczyną św. Ignacego, Twego Męczen", + "id": "Postcommunio" + } + ], + "2024-02-02": [ + { + "body": "*Jeśli poświęcenie świec oraz procesja nie mogą zostać odprawione w uroczystej formie, ze względu na brak wyświęconych d", + "id": "De Benedictione Candelarum" + }, + { + "body": "*Następnie starszy kleryk podchodzi do ołtarza i podaje świece celebransowi, który nie przyklęka ani nie całuje ręki kle", + "id": "De Distributione Candelarum" + }, + { + "body": "*Najpierw celebrans nakłada kadzidło do trybularza, następnie diakon odwraca się w stronę ludu i mówi:*\n℣. Idźmy w pokoj", + "id": "De Processione" + }, + { + "body": "*Ps 47:10-11*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak Imię Twe, Boże, tak i chwała Twoja si", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, błagamy pokornie Twój majestat, spraw, abyśmy stanęli przed Tobą z oczyszczonymi sercami, ja", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Malachiasza.\n*Ml 3:1-4*\n*Przyjście Chrystusa do świątyni rozpoczyna dzieło oczyszczenia i uświ", + "id": "Lectio" + }, + { + "body": "*Ps 47:10-11; 47:9*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak Imię Twe, Boże, tak i chwała Tw", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:22-32*\nOnego czasu: Gdy się wypełniły dni oczyszczenia Maryi wedłu", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Wysłuchaj, Panie, próśb naszych i użycz Swej miłościwej pomocy, by godnymi stały się dary, które przed oblicze majestatu", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Łk 2:26*\nSymeon otrzymał zapowiedź od Ducha Świętego, że nie umrze, dopóki by pierwej nie oglądał Chrystusa Pańskiego.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się nam, ", + "id": "Postcommunio" + } + ], + "2024-02-03": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Błażeja, Biskupa i Męczennika*\nBoże, co roku uweselasz nas uroczystością świętego Błażeja, Twojego Męcz", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "Szczęśliwa jesteś, święta Dziewico Maryjo, i wszelkiej chwały najgodniejsza, z Ciebie bowiem narodziło się Słońce sprawi", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Błażeja, Biskupa i Męczennika*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego Błażeja, Twego M", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Błażeja, Biskupa i Męczennika*\nPanie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętego B", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-04": [ + { + "body": "*Ps 43:23-26*\nOcknij się: dlaczego śpisz, Panie? Przebudź się! Nie odrzucaj na zawsze. Dlaczego Twe oblicze ukrywasz? Za", + "id": "Introitus" + }, + { + "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach; spraw miłościwie, aby opieka Nauczyciela Narodów broniła nas od", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 11:19-33; 12:1-9*\n*Broniąc się przeciw zarzutom św. Paweł ", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nNiech poznają Ciebie poganie i wiedzą, Pan Twoje imię, żeś sam jeden wzniesiony nad całą ziemię.\n℣. O ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 8:4-15*\nOnego czasu: Gdy zgromadziła się rzesza wielka i z miast zdą", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Twoim Sakramentem, godnie Tobie służyli według ", + "id": "Postcommunio" + } + ], + "2024-02-05": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci św. Agaty, Dziewicy i Męczennicy; z jej męczeństwa radują się ", + "id": "Introitus" + }, + { + "body": "Boże, który między innymi cudami Twojej potęgi obdarzyłeś zwycięstwem w męczeństwie także płeć słabszą, spraw łaskawie, ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 1:26-31*\n*Na pytanie pretora, czy nie wstydzi się być chrz", + "id": "Lectio" + }, + { + "body": "*Ps 45:6; 45:5*\nBóg ją wspomaga swoim wejrzeniem: Bóg jest w jej wnętrzu, będzie niewzruszona.\n℣. Prąd rzeki cieszy mias", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:3-12*\n*Powodem uwięzienia św. Agaty było stanowcze odrzucenie za", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą do Ciebie.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość św. Agaty, Dziewicy i Męczennicy Twojej: ufamy, że jej wstawienni", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Akta męczeństwa św. Agaty opowiadają, że w więzieniu ukazał się jej św. Piotr i uleczył cudownie jej rany.*\nTego wzywam", + "id": "Communio" + }, + { + "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem św. Agaty, Dziewicy i Męczennicy Twojej, niech sprawi", + "id": "Postcommunio" + } + ], + "2024-02-06": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, który ozdobiłeś św. Tytusa, Twego Wyznawcę i Biskupa, apostolskimi cnotami, spraw dla jego zasług i wstawiennictwa", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Doroty*\nProsimy Cię, Panie, aby święta N., Dziewica i Męczennica Twoja, wybłagała nam przebaczenie; ona", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Doroty*\nProsimy Cię, Panie, przyjmij łaskawie ofiarę, którą Ci składamy przez zasługi świętej Doroty, T", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Doroty*\nDarem Bożym szczodrze nasyceni, prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem świętej", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-07": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Romualda, Opata, abyśmy za jego przyczyną otrzymali t", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech święty Romuald, Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam ku zba", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Romualda, Opata, abyśmy naśladowali je", + "id": "Postcommunio" + } + ], + "2024-02-08": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, Tyś raczył za pośrednictwem świętego Jana cudownie ustanowić zakon Trójcy Przenajświętszej dla wykupu jeńców z nie", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Sprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\n℣. By", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2024-02-09": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, który uczyniłeś św. Cyryla, Twego Wyznawcę i Biskupa, niezłomnym bojownikiem prawdy o Boskim Macierzyństwie Najświ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie świętej Apolonii*\nBoże, który między innymi cudami Twej potęgi, obdarzyłeś zwycięstwem w męczeństwie także ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Wszechmogący Boże, wejrzyj miłościwie na nasze dary i spraw za przyczyną św. Cyryla, abyśmy do serc naszych godnie mogli", + "id": "Secreta" + }, + { + "body": "*Wspomnienie świętej Apolonii*\nPrzyjmij, Panie, dary, które Ci składamy w uroczystość świętej Apolonii, Dziewicy i Męcze", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Pokrzepieni Boskim Sakramentem pokornie błagamy Cię, Panie, abyśmy wsparci przykładem i zasługami św. Biskupa Cyryla, mo", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie świętej Apolonii*\nPanie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej Apolonii, Twoj", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-10": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Boże, który dla ukazania drogi niewinności sprawiłeś, że dusza św. Dziewicy Twojej Scholastyki wstąpiła do nieba w posta", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2024-02-11": [ + { + "body": "*Ps 30:3-4*\nBądź mi, Boże, obrońcą, bądź zamkiem warownym, abyś mnie ocalił; boś Ty jest skałą mą i twierdzą, wywiedzies", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy nasze, wyzwól nas z więzów grzechowych i zachowaj od wszelkiej przeciwn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 13:1-13*\n*Hymn św. Pawła o miłości to jedna z najpiękniejs", + "id": "Lectio" + }, + { + "body": "*Ps 76:15; 76:16*\nTyś jest Bogiem, który cuda działasz; potęgę Swoją ludom objawiłeś.\n℣. Ramieniem Swoim zbawiłeś Twój l", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:31-43*\nOnego czasu: Jezus wziąwszy z sobą dwunastu, mówił do nich", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich. Wargami moimi opowiadam wszystkie wyroki ust Twoich", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nJedli i nasycili się bardzo, i pożądanie ich Pan zaspokoił: nie zawiedli się w swych pragnieniach.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności.\nPrzez Pa", + "id": "Postcommunio" + } + ], + "2024-02-12": [ + { + "body": "*Mdr 10:20-21*\nSprawiedliwi wysławiali Twoje święte imię, Panie, i zwycięską rękę Twoją jednomyślnie wychwalali: bo mądr", + "id": "Introitus" + }, + { + "body": "Panie Jezu Chryste, który dla odnawiania pamięci o boleściach Najświętszej Matki Twojej przez siedmiu świętych Ojców obd", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Syr 44:1-15*\nWysławiajmy mężów znakomitych i naszych ojców co do pochodzenia. Pan (w nich) ", + "id": "Lectio" + }, + { + "body": "*Iz 65:23*\nWybrani moi nie będą trudzić się na próżno ani ich potomstwo nie ulegnie zagładzie, bo są pokoleniem błogosła", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Iz 56:7*\nPrzywiodę ich na świętą górę moją, i uweselę ich w moim domu modlitwy; ich całopalenia i ofiary będą mi przyje", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą Ci składamy i za wstawiennictwem Twoich świętych spraw, abyśmy służyli Tobie swobodnym um", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 15:16*\nJa was wybrałem ze świata, abyście poszli i owoc przynieśli, i żeby owoc wasz trwał.", + "id": "Communio" + }, + { + "body": "Gdyś nas, panie, zasilił niebieski Sakramentem, błagamy Cię, abyśmy naśladując przykład tych, których święto obchodzimy,", + "id": "Postcommunio" + } + ], + "2024-02-13": [ + { + "body": "*Ps 30:3-4*\nBądź mi, Boże, obrońcą, bądź zamkiem warownym, abyś mnie ocalił; boś Ty jest skałą mą i twierdzą, wywiedzies", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy nasze, wyzwól nas z więzów grzechowych i zachowaj od wszelkiej przeciwn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 13:1-13*\n*Hymn św. Pawła o miłości to jedna z najpiękniejs", + "id": "Lectio" + }, + { + "body": "*Ps 76:15; 76:16*\nTyś jest Bogiem, który cuda działasz; potęgę Swoją ludom objawiłeś.\n℣. Ramieniem Swoim zbawiłeś Twój l", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:31-43*\nOnego czasu: Jezus wziąwszy z sobą dwunastu, mówił do nich", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich. Wargami moimi opowiadam wszystkie wyroki ust Twoich", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nJedli i nasycili się bardzo, i pożądanie ich Pan zaspokoił: nie zawiedli się w swych pragnieniach.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności.\nPrzez Pa", + "id": "Postcommunio" + } + ], + "2024-02-14": [ + { + "body": "*Antyfona*\n*Ps 68:17*\nWysłuchaj nas, Panie, gdyż łaskawe jest miłosierdzie Twoje, w wielkiej litości swojej wejrzyj na n", + "id": "Benedictio cinerum" + }, + { + "body": "*Mdr 11:24 11:25; 11:27*\nWszystkim okazujesz miłosierdzie, Panie, i żadnego ze swych stworzeń nie masz w nienawiści. Dar", + "id": "Introitus" + }, + { + "body": "Udziel, Panie, wiernym Twoim łaski, aby rozpoczęli ten czcigodny i uroczysty post z należną pobożnością i przebyli go sł", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Joela.\n*Jl 2:12-19*\n*Słowami proroka Joela Kościół wzywa nas do postu i wewnętrznego nawróceni", + "id": "Lectio" + }, + { + "body": "*Ps 56:2; 56:4*\nZmiłuj się nade mną, Boże, zmiłuj się nade mną, bo Tobie ufa dusza moja.\n℣. Sięgnął nieba i wybawił mnie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:16-21*\nOnego czasu: Mówił Jezus uczniom swoim: «Gdy pościcie, nie", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nSławić Cię będę, Panie, bo mnie wybawiłeś i nie sprawiłeś ze mnie uciechy mym wrogom. Panie, do Ciebie wołał", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy należycie się usposobili do ofiarowania Tobie tych darów, przez które obchodzimy począ", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 1:2,3*\nKto rozważa Prawo Pańskie dniem i nocą, ten wyda owoc w swym czasie.", + "id": "Communio" + }, + { + "body": "Niech nas wspomaga, Panie, przyjęty Sakrament, aby nasze posty były miłe Tobie, a nam przyniosły wyleczenie.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\n*Diakon, jeżeli służy do Mszy, zwrócony w stronę ludu, ze złączonymi rękoma mówi. W przeciwnym razie mówi C", + "id": "Super populum" + } + ], + "2024-02-15": [ + { + "body": "*Ps 54:17-23*\nKiedy wołałem do Pana, wysłuchał głosu mego przeciw tym, co na mnie nastają; i poniżył ich Ten, który król", + "id": "Introitus" + }, + { + "body": "Boże, którego obraża występek, a przejednywa pokuta, wejrzyj miłościwie na błagania ludu Twojego i odwróć od nas chłostę", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Faustyna i Jowity, Męczenników*\nBoże, Ty co roku uweselasz nas uroczystością świętych Męczenników Twoic", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 38:1-6*\n*Gdy król Ezechiasz śmiertelnie zachorował, zwrócił się do Boga z gorącą", + "id": "Lectio" + }, + { + "body": "*Ps 54:23, 17, 18, 19*\nZłóż troskę swoją na Pana, On sam cię podtrzyma.\n℣. Kiedy wołałem do Pana, wysłuchał głosu mego p", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:5-13*\nOnego czasu, gdy Jezus wszedł do Kafarnaum, przystąpił do n", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże, mój, Tobie ufam, niech nie doznam wstydu; niech się nie śmieją ze ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Faustyna i Jowity, Męczenników*\nWysłuchaj, Panie, prośby nasze, które zanosimy czcząc pamięć Twych Świę", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nPrzyjmiesz ofiary prawe, dary i całopalenia na ołtarzu Twoim, Panie.", + "id": "Communio" + }, + { + "body": "Po przyjęciu błogosławionego daru niebieskiego, pokornie Cię prosimy, wszechmogący Boże, aby ten dar stał się źródłem ła", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Faustyna i Jowity, Męczenników*\nNasyceni zbawiennym Sakramentem prosimy Cię, Panie, aby wspierały nas m", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPrzepuść, Panie, przepuść ludowi Twojemu, aby po odcierpieniu słusznej ", + "id": "Super populum" + } + ], + "2024-02-16": [ + { + "body": "*Ps 29:11*\nPan mnie wysłuchał i zmiłował się nade mną; Pan stał się moim wspomożycielem.\n*Ps 29:2*\nSławić Cię będę, Pani", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wspieraj łaskawie rozpoczęte posty, abyśmy szczerze przestrzegali w duszy wyrzeczenia, które cieleśn", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 58:1-9*\nTo mówi Pan: Wołaj, nie ustawaj, jak trąba podnieś głos twój, a opowiada", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję; bym w domu Pańskim przebywał po wszystkie dni mego życia.\n℣. Abym zażywał", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:43-48; 6:1-4*\nOnego czasu rzekł Jezus uczniom swoim: «Słyszeliści", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154; 118:125*\nPanie, obdarz mnie życiem według Twojej obietnicy, abym poznał Twe ustawy.", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, Panie, aby ofiara czterdziestodniowego postu, którą składamy, uczyniła nasze dusze miłymi Tobie, a n", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nSłużcie Panu w bojaźni, sławcie Go z lękiem, nabierzcie karności, byście nie zeszli z drogi prawej.", + "id": "Communio" + }, + { + "body": "Tchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zjednocz tych, których posiliłeś jednym chlebem niebiesk", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nZachowaj, Panie, lud Twój i oczyść go łaskawie od wszystkich grzechów, ", + "id": "Super populum" + } + ], + "2024-02-17": [ + { + "body": "*Ps 29:11*\nPan mnie wysłuchał i zmiłował się nade mną; Pan stał się moim wspomożycielem.\n*Ps 29:2*\nSławić Cię będę, Pani", + "id": "Introitus" + }, + { + "body": "Przychyl się, Panie, ku prośbom naszym i spraw, abyśmy w posłusznym oddaniu się Tobie obchodzili ten uroczysty post, ust", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 58:9-14*\nTo mówi Pan: Jeśli usuniesz spośród siebie łańcuch, a przestaniesz wyci", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję: bym w domu Pańskim przebywał po wszystkie dni mego życia.\n℣. Abym zażywał", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 6:47-56*\nOnego czasu, gdy nadszedł wieczór, łódź była na pełnym morzu,", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154; 118:125*\nPanie, obdarz mnie życiem według Twojej obietnicy, abym poznał Twe ustawy.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, tę ofiarę, którą uznałeś za godną, aby Cię przebłagać, i spraw, abyśmy oczyszczeni jej mocą, mogli Ci z", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nSłużcie Panu w bojaźni, sławcie Go z lękiem, nabierzcie karności, byście nie zeszli z drogi prawej.", + "id": "Communio" + }, + { + "body": "Pokrzepieni życiodajnym darem z nieba, prosimy Cię, Panie, aby to, co w obecnym życiu jest dla nas tajemnicą, stało się ", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nUmocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je nieust", + "id": "Super populum" + } + ], + "2024-02-18": [ + { + "body": "*Ps 90:15; 90:16*\nBędzie mnie wzywał, a Ja go wysłucham. Wyzwolę go i obdarzę sławą, nasycę go długimi dniami.\n*Ps 90:1*", + "id": "Introitus" + }, + { + "body": "Boże, który co roku oczyszczasz swój Kościół przez czterdziestodniowy post, spraw, aby rodzina Twoja wykorzystała przez ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 6:1-10*\nBracia: Napominamy was, abyście nadaremno łaski Bo", + "id": "Lectio" + }, + { + "body": "*Ps 90,11-12*\nSwoim Aniołom Bóg dał rozkaz o tobie, aby cię strzegli na wszystkich twych drogach.\n℣. Na rękach swoich bę", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 4:1-11*\n*«Wypadało, aby Chrystus zatriumfował nad naszymi pokusami,", + "id": "Evangelium" + }, + { + "body": "*Ps 90:4-5*\nPiórami swymi Pan cię okryje i pod skrzydła Jego się schronisz, wierność Jego za tarczę ci stanie.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, uroczystą ofiarę na rozpoczęcie czterdziestodniowego postu i błagamy, abyśmy ujmując pożywienia ciał", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 90:4-5*\nPiórami swymi Pan cię okryje i pod skrzydła Jego się schronisz, wierność Jego za tarczę ci stanie.", + "id": "Communio" + }, + { + "body": "Niech nas odrodzi, o Panie, święta uczta, na której pożywamy Twój Sakrament, i po oczyszczeniu ze starej przewiny, niech", + "id": "Postcommunio" + } + ], + "2024-02-19": [ + { + "body": "*Ps 122:2*\nJak oczy sług zwracają się ku rękom ich panów, tak oczy nasze ku Panu, Bogu naszemu, aż się zmiłuje nad nami.", + "id": "Introitus" + }, + { + "body": "Nawróć nas, Boże, Zbawicielu nasz, i oświeć nasze umysły niebieską nauką, aby post czterdziestodniowy przyniósł nam poży", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 34:11-16*\nTo mówi Pan Bóg: Oto ja sam będę szukał owiec moich i nawiedzę je. Ja", + "id": "Lectio" + }, + { + "body": "*Ps 88:10; 88:9*\nSpojrzyj, obrońco nasz, Boże, i wejrzyj na sługi Swoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:31-46*\nOnego czasu rzekł Jezus uczniom swoim: Gdy przyjdzie Syn ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:18; 118:26; 118:73*\nPodniosę oczy moje i będę rozważał, Panie, dziwy Twoje. Naucz mnie Twego prawa, daj mi rozum", + "id": "Offertorium" + }, + { + "body": "Uświęć, Panie, złożone Ci dary i oczyść nas ze zmazy naszych grzechów.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Mt 25:40; 25:34*\nZaprawdę powiadam wam, coście uczynili jednemu z tych moich braci najmniejszych, mnieście uczynili. Pó", + "id": "Communio" + }, + { + "body": "Nasyceni zbawiennym darem, pokornie prosimy Cię, Panie, abyśmy ciesząc się jego pożywaniem zostali odnowieni jego mocą.\n", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nRozwiąż, prosimy Cię, Panie, więzy naszych grzechów i odwróć łaskawie k", + "id": "Super populum" + } + ], + "2024-02-20": [ + { + "body": "*Ps 89:1; 89:2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie. Ty jesteś od wieków i na wieki.\n*Ps 89:2*\nZanim ", + "id": "Introitus" + }, + { + "body": "Wejrzyj, Panie, na rodzinę Twoją i spraw, aby dusza nasza poprawiona przez umartwienie ciała, jaśniała w Twoich oczach p", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 55:6-11*\nW one dni rzekł Izajasz prorok mówiąc: Szukajcie Pana, póki może być zn", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna.", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 21:10-17*\nOnego czasu: Gdy Jezus wszedł do Jerozolimy, poruszyło si", + "id": "Evangelium" + }, + { + "body": "*Ps 30:15-16*\nTobie ufam, o Panie; mówię: Ty jesteś Bogiem moim, w Twoim ręku losy moje.", + "id": "Offertorium" + }, + { + "body": "Daj się przebłagać, Panie, złożonymi darami i broń nas od wszelkich niebezpieczeństw.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 4:2*\nKiedy Cię wezwę, wysłuchaj mnie, Boże, co sprawiedliwość mi wymierzasz; Tyś w utrapieniu mnie podniósł; zmiłuj ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, abyśmy osiągnęli zbawienie, którego zadatek otrzymaliśmy w tych tajemnicach.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nNiechaj nasze modlitwy wzniosą się do Ciebie, Panie, Ty zaś oddal od sw", + "id": "Super populum" + } + ], + "2024-02-21": [ + { + "body": "*Ps 24:6; 24:3; 24:22*\nWspomnij na zmiłowania Twe, Panie, na miłosierdzie, które trwa od wieków, niech nie panują nad na", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, nasze modlitwy i przeciw wszystkiemu, co jest nam wrogie, wyciągnij prawicę Tweg", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Wyjścia.\n*Wj 24:12-18*\nW one dni rzekł Pan do Mojżesza: «Wstąp do mnie na górę i bądź tam: dam ci tabl", + "id": "LectioL1" + }, + { + "body": "*Ps 24:17-18*\nUlżyj uciskom serca mojego, wyrwij mnie z moich udręczeń, Panie.\n℣. Wejrzyj na nędzę moją i na mój trud i ", + "id": "GradualeL1" + }, + { + "body": "Wejrzyj łaskawie, prosimy, Panie, na oddanie Twojego ludu, aby umartwiając ciało postem, wzmocnił ducha owocem dobrych u", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*3 Krl 19:3-8*\nW one dni: Przybył Eliasz do judzkiego Bersabee i zostawił tam sługę swego", + "id": "Lectio" + }, + { + "body": "*Ps 24:17; 24:18; 24:1-4*\nWyrwij mnie z moich udręczeń, Panie, wejrzyj na nędzę moją i na mój trud i odpuść wszystkie me", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 12:38-50*\nOnego czasu: Odpowiedzieli Jezusowi niektórzy z uczonych ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 118:48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnę do przykazań Twoich, które umił", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiary przebłagalne, abyś miłosiernie odpuścił nasze grzechy i sam pokierował chwiejnymi sercami.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nZważ na moje wołanie, zwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", + "id": "Communio" + }, + { + "body": "Panie, niech przyjęcie Twego Sakramentu oczyści nas z ukrytych grzechów i wybawi od zasadzek nieprzyjacielskich.\nPrzez P", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\n℣. Oświeć, Panie, umysły nasze blaskiem Twej światłości, abyśmy mogli w", + "id": "Super populum" + } + ], + "2024-02-22": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, powierzając Swojemu Apostołowi świętemu Piotrowi klucze Królestwa Niebieskiego, udzieliłeś mu arcykapłańskiej wład", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Czwartek po 1 Niedzieli Wielkiego Postu*\nWejrzyj łaskawie, prosimy, Panie, na oddanie Twojego ludu, aby uma", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 1:1-7*\n*Pierwszy list św. Piotra to pierwsze ogniwo łańcucha encyklik pa", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\n*Ewangelia ze Mszy wspólnej nr 8 Si diligis*\nOnego czasu:", + "id": "Evangelium" + }, + { + "body": "*Mt 16:18-19*\nTy jesteś Opoką, a na tej Opoce zbuduje Kościół mój i bramy piekielne nie zwycięża go. I tobie dam klucze ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech modlitwa świętego Piotra Apostoła poleca prośby i ofiary Kościoła Twojego, a co sprawujemy ku ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Czwartek po 1 Niedzieli Wielkiego Postu*\nProsimy Cię, Panie, niech te ofiary, składane wśród uzdrawiającego", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Złożona ofiara niech nam będzie źródłem radości, o Panie; a jako sławimy przedziwne Twe dary w Apostole Twoim Piotrze, t", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Czwartek po 1 Niedzieli Wielkiego Postu*\nRacz, Panie, obfitością Twoich darów dźwigać nas w życiu doczesnym", + "id": "Commemoratio Postcommunio" + } + ], + "2024-02-23": [ + { + "body": "*Ps 24:17; 24:18*\nWyrwij mnie z moich udręczeń, Panie, wejrzyj na nędzę moją i na mój trud i odpuść wszystkie me występk", + "id": "Introitus" + }, + { + "body": "Bądź miłościw, Panie, ludowi Twojemu, który czynisz sobie oddanym, i w miłosierdziu swoim pokrzep go łaskawą pomocą.\nPrz", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Piotra Damiana, Biskupa, Wyznawcy i Doktora Kościoła*\nProsimy Cię, wszechmogący Boże, daj nam iść za pr", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 18:20-28*\nTo mówi Pan Bóg: Człowiek, który zgrzeszy, sam śmierć poniesie: syn n", + "id": "Lectio" + }, + { + "body": "*Ps 85:2; 85:6*\nRatuj, mój Boże, sługę swego, który Ci zaufał.\n℣. Usłysz, Panie, modlitwę moją.\n\n*Ps 102:10*\nPanie, nie ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 5:1-15*\n*Paralityk oczekujący uzdrowienia od 38 lat to obraz nałogowego ", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2; 102:5*\nBłogosław, duszo moja, Pana i nie zapominaj wszystkich dobrodziejstw Jego, a młodość twoja odnowi się ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij ofiary złożone przy naszej posłudze i uświęć dary, które od Ciebie pochodzą.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Piotra Damiana, Biskupa, Wyznawcy i Doktora Kościoła*\nPanie, niech nam nie zabraknie serdecznej modlitw", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 6:11*\nNiech się zawstydzą i zatrwożą wszyscy wrogowie moi, niech zawstydzą się i odstąpią co prędzej.", + "id": "Communio" + }, + { + "body": "Panie, niech działanie Twego Sakramentu oczyści nas ze złych skłonności i spełni nasze godziwe pragnienia.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Piotra Damiana, Biskupa, Wyznawcy i Doktora Kościoła*\nProsimy Cię, Panie, niech święty Piotr, Twój Bisk", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWysłuchaj nas, miłosierny Boże, i ukaż naszym duszom światło Twojej łas", + "id": "Super populum" + } + ], + "2024-02-24": [ + { + "body": "*Ps 87:3*\nNiech dojdzie do Ciebie moja modlitwa, nakłoń ucha Swego na prośbę moją, Panie.\n*Ps 87:2*\nPanie Boże, Zbawicie", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj miłościwie na Twój lud i odwróć odeń chłostę Twego zagniewania.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Powtórzonego Prawa.\n*Pp 26:12-19*\nW one dni mówił Mojżesz do ludu: Gdy dopełnisz dziesięciny z wszystk", + "id": "LectioL1" + }, + { + "body": "*Ps 78:9; 78:10*\nO Panie, przebacz nam grzechy, aby poganie z nas nie drwili: «Gdzież jest ich Bóg?»\n℣. Wspomóż nas, Boż", + "id": "GradualeL1" + }, + { + "body": "Boże, obrońco nasz, wejrzyj na nas przygniecionych ciężarem własnych grzechów, abyśmy doznawszy Twego miłosierdzia służy", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Powtórzonego Prawa.\n*Pp 11:22-25*\n*Życie katolików zgodne z prawem Bożym zapewnia Kościołowi moc promi", + "id": "LectioL2" + }, + { + "body": "*Ps 83:10; 83:9*\nSpojrzyj, obrońco nasz, Boże, i wejrzyj na sługi Swoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług ", + "id": "GradualeL2" + }, + { + "body": "Przychyl się, Panie, ku prośbom naszym, abyśmy za łaską Twoją byli pokorni w powodzeniu i bezpieczni wśród przeciwności.", + "id": "OratioL2" + }, + { + "body": "Czytanie z Księgi Machabejskiej.\n*2 Mch 1:23-26; 1:27*\n*W Kościele, podobnie jak w Starym Testamencie, składanie ofiar i", + "id": "LectioL3" + }, + { + "body": "*Ps 89:13; 89:1*\nZwróć się ku nam, Panie, na chwilę i daj się ubłagać sługom Swoim.\n℣. Panie, Tyś był ucieczką naszą z p", + "id": "GradualeL3" + }, + { + "body": "Prosimy Cię, Panie, wysłuchaj łaskawie modlitwy Twego ludu i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miłoś", + "id": "OratioL3" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 36:1-10*\n*Lud Boży, świadomy, że jego grzechy są powodem trudności w spełnieniu Bożeg", + "id": "LectioL4" + }, + { + "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna.", + "id": "GradualeL4" + }, + { + "body": "Prosimy Cię, Panie, uprzedzaj czyny nasze Twoim natchnieniem i pomocą wspieraj, aby każda nasza modlitwa i praca zawsze ", + "id": "OratioL4" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:47-51*\n*Poważną przeszkodą do zbawienia są nasze namiętności, które wykorzystuj", + "id": "LectioL5" + }, + { + "body": "Boże, któryś złagodził płomień ognia dla trzech młodzieńców, spraw łaskawie, aby nas, sług Twoich, nie pożarł płomień na", + "id": "OratioL5" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 5:14-23*\n*W oczekiwaniu na przyjście Chrystusa chrześci", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nChwalcie Pana, wszystkie narody, wysławiajcie Go, wszystkie ludy.\n℣. Bo miłosierdzie Jego, nad nami utwierd", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 17:1-9*\n*Ewangelia jak w następną niedzielę.*\nOnego czasu: Wziął Je", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nPanie Boże, Zbawicielu mój, podczas dnia wołam i w nocy żalę się przed Tobą, niech moja modlitwa dojdzie do ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uświęć przez tę ofiarę nasze posty, aby w naszym wnętrzu dokonało się to, co wyrażają nasze zewnętrz", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 7:2*\nPanie, Boże mój, w Tobie pokładam nadzieję, wybaw mnie od wszystkich wrogów moich i ratuj mnie.", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, niech Twoje uświęcające tajemnice uleczą nasze wady i staną się dla nas rękojmią życia wiecznego.\nPrz", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPanie, niech upragnione błogosławieństwo umocni Twoich wiernych, aby ni", + "id": "Super populum" + } + ], + "2024-02-25": [ + { + "body": "*Ps 24:6; 24:3; 24:22*\nWspomnij na zmiłowania Twe, Panie, na miłosierdzie Twoje, które trwa od wieków, niech nie panują ", + "id": "Introitus" + }, + { + "body": "Boże, Ty widzisz, że jesteśmy zupełnie pozbawieni sił. Strzeż naszej duszy i ciała, aby ciało nasze było wolne od wszelk", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 4:1-7*\n*«Wolą Bożą jest nasze uświęcenie». Bóg powołał ", + "id": "Lectio" + }, + { + "body": "*Ps 24:17-18*\nUlżyj uciskom serca mojego, wyrwij mnie z moich udręczeń, Panie.\n℣. Wejrzyj na nędzę moją i na mój trud, i", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 17:1-9*\nOnego czasu: Wziął Jezus Piotra i Jakuba, i Jana brata jego", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 118:48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnę do przykazań Twoich, które umił", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nZważ na moje wołanie, zwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Swoim sakramentem, godnie Tobie służyli życiem ", + "id": "Postcommunio" + } + ], + "2024-02-26": [ + { + "body": "*Ps 25:11-12*\nWyzwól mię, Panie, i zmiłuj się nade mną, na drodze równej stoi stopa moja; na zgromadzeniach będę błogosł", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, niech rodzina Twoja, która dla umartwiania ciała powstrzymuje się od pokarmów, za", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 9:15-19*\nW one dni modlił się Daniel do Pana, mówiąc: «Panie Boże nasz, który wyw", + "id": "Lectio" + }, + { + "body": "*Ps 69:6; 69:3*\nBądź wspomożycielem i wybawcą moim, nie zwlekaj, o Panie.\n℣. Niech się zawstydzą, okryją rumieńcem, któr", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:21-29*\nOnego czasu mówił Jezus do rzesz żydowskich: «Ja odchodzę, wy z", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7; 15:8*\nBłogosławię Panu, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy,", + "id": "Offertorium" + }, + { + "body": "Panie, niech ta ofiara przebłagalna i pochwalna uczyni nas godnymi Twojej opieki.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 8:2*\nO Panie, Panie nasz, jak przedziwne Twe imię po wszystkiej ziemi.", + "id": "Communio" + }, + { + "body": "Panie, niech ta komunia oczyści nas z grzechów i udzieli nam niebieskiej pomocy.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPrzychyl się ku prośbom naszym, wszechmogący Boże, a skoro pozwalasz na", + "id": "Super populum" + } + ], + "2024-02-27": [ + { + "body": "*Ps 26:8; 26:9*\nDo Ciebie mówi serce moje, oblicze moje Cię szuka, szukam, o Panie, Twojego oblicza; oblicza Twego nie k", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wspomagaj nas miłościwie w zachowaniu świętej wstrzemięźliwości, abyśmy poznawszy za Twoją sprawą, c", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*1 Krl 17:8-16*\nW one dni: Stało się słowo Pańskie do Eliasza Tesbitczyka mówiąc: «Wstań ", + "id": "Lectio" + }, + { + "body": "*Ps 54:23; 54:17; 54:18; 54:19*\nZłóż troskę swoją na Pana, On sam cię podtrzyma.\n℣. Kiedy wołałem do Pana, wysłuchał gło", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 23:1-12*\nOnego czasu rzekł Jezus do rzesz i do uczniów swoich, mówi", + "id": "Evangelium" + }, + { + "body": "*Ps 50:3*\nZmiłuj się nade mną, Panie, w wielkim miłosierdziu Twoim; zgładź, Panie, nieprawość moją.", + "id": "Offertorium" + }, + { + "body": "Panie, dokonaj w nas łaskawie przez te tajemnice dzieła uświęcenia: oczyść nas z błędów ziemskich i doprowadź do nagrody", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nOpowiem wszystkie cudowne dzieła Twoje, będę się cieszyć i radować Tobą, śpiewać imieniu Twemu, o Najwyższy.", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy przez wierne posłuszeństwo Twoim przykazaniom stali się godnymi świętych darów.\nPrzez ", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj się przejednać, Panie, naszymi modłami i ulecz choroby dusz naszych", + "id": "Super populum" + } + ], + "2024-02-28": [ + { + "body": "*Ps 37:22-23*\nNie opuszczaj mnie, Panie, Boże mój, nie odstępuj ode mnie, spiesz mi na pomoc, Panie, zbawienie moje.\n*Ps", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na Twój lud i spraw, aby ci, którym nakazałeś wstrzemięźliwość od pokarmów mięsnych", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Gabriela od Matki Bożej Bolesnej*\nBoże, Tyś św. Gabriela nauczył wytrwale rozważać boleści Najsłodszej ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Estery.\n*Est 13:8-11; 13:15-17*\nW one dni: Mardocheusz modlił się do Pana pamiętając o wszystkich spra", + "id": "Lectio" + }, + { + "body": "*Ps 27:9; 27:1*\nOcal lud Twój, o Panie, i błogosław Twojemu dziedzictwu.\n℣. Do Ciebie, Panie, wołam, Boże mój, nie milcz", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:17-28*\nOnego czasu: Jezus wstępując do Jeruzalem wziął dwunastu ", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże mój, Tobie ja ufam: niech nie doznam wstydu, niech się nie śmieją z", + "id": "Offertorium" + }, + { + "body": "*Msza święta jest wymianą między niebem a ziemią, spotkaniem Kościoła z Bogiem, który przyjmuje ofiarę i udziela łaski.*", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Gabriela od Matki Bożej Bolesnej*\nSkładamy Ci, Panie, ofiarę zbawienia, czcząc pamięć św. Gabriela. Spr", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 10:8*\nSprawiedliwy jest Pan i sprawiedliwość miłuje, uczciwi zobaczą twarz Jego.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, aby przez przyjęcie Sakramentu wzrastała w nas łaska wiecznego Odkupienia.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Gabriela od Matki Bożej Bolesnej*\nPanie, składamy Ci dzięki za dary udzielone nam w uroczystość święteg", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBoże, odnowicielu i miłośniku niewinności, kieruj ku sobie serca sług T", + "id": "Super populum" + } + ], + "2024-02-29": [ + { + "body": "*Ps 69:2; 69:3*\nBoże, wejrzyj ku wspomożeniu memu, Panie, pośpiesz ku ratunkowi memu. Niech się zawstydzą i okryją rumie", + "id": "Introitus" + }, + { + "body": "Udziel nam, prosimy Cię, Panie, pomocy łaski Twojej, abyśmy gorliwie trwając w poście i modlitwie, zostali wybawieni od ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 17:5-10*\nTo mówi Pan Bóg: Przeklęty człowiek, który ufa w człowieku i czyni c", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nPrzebacz nam, o Panie, grzechy, aby nie drwili z nas poganie: «Gdzie jest ich Bóg»?\n℣. Wspomóż nas, Boż", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 16:19-31*\nOnego czasu rzekł Jezus do faryzeuszów: Był człowiek pewie", + "id": "Evangelium" + }, + { + "body": "*Wj 32:11; 32:13; 32:14*\nMojżesz modlił się do Pana, Boga swego, mówiąc: Czemuż, Panie, gniewasz się na lud Swój? Niech ", + "id": "Offertorium" + }, + { + "body": "Panie, niechaj uświęcą nas posty, które składamy Ci wraz z tą ofiarą na chwałę Twojego imienia, aby w naszym wnętrzu dok", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*J 6:57*\nKto pożywa Ciało moje i pije Krew moją, we mnie mieszka, a ja w nim, mówi Pan.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech nas nie opuszcza Twoja łaska, lecz niech nas utwierdza w Twojej świętej służbie i zapewnia nam", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWspieraj, Panie, sługi Swoje i proszącym okazuj nieustannie Twoją dobro", + "id": "Super populum" + } + ], + "2024-03-01": [ + { + "body": "*Ps 16:15*\nJa zaś w sprawiedliwości ukażę się przed Twoim obliczem, nasycę się, gdy się objawi chwała Twoja.\n*Ps 16:1*\nW", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, abyśmy oczyszczeni świętym postem mogli się doczekać zbliżających się świąt.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Rodzaju.\n*Rdz 37:6-22*\n*Dzieje Józefa to jeden z najbardziej wyrazistych typów biblijnych męki i zmart", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nDo Pana wołałem, gdym był w utrapieniu, a On mnie wysłuchał.\n℣. Wybaw mnie, Panie, od ust kłamliwych i od p", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 21:33-46*\nOnego czasu powiedział Jezus do rzesz żydowskich i do prz", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14; 39:15*\nPanie, pośpiesz mi z pomocą; niech się zawstydzą i okryją rumieńcem ci, którzy dybią na życie moje, by", + "id": "Offertorium" + }, + { + "body": "Boże, niech trwa w nas działanie tej ofiary i umacniają się jej skutki.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 11:8*\nTy, Panie, zachowasz nas i na wieki ustrzeżesz nas od tego plemienia (grzeszników).", + "id": "Communio" + }, + { + "body": "Otrzymawszy zadatek zbawienia wiecznego, prosimy Cię, Panie, daj nam tak gorliwie do niego dążyć, abyśmy mogli je osiągn", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj, Panie, ludowi Twojemu zdrowie duszy i ciała, aby oddając się dobry", + "id": "Super populum" + } + ], + "2024-03-02": [ + { + "body": "*Ps 18:8.*\nPrawo Pańskie doskonałe i krzepiące ducha; przykazanie Pańskie niezmienne, poucza prostaczków.\n*Ps 18:2*\nNieb", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, daj zbawienną skuteczność naszym postom, aby podjęte przez nas umartwienie ciała dodało żywotnych si", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Wyjścia.\n*Wj 27:6-40*\n*Utrata pierworodztwa przez Ezawa to zapowiedź utraty przywilejów przez naród wy", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.\n℣. Głosić z rana miłosierdzie Twoje, a wier", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 15:11-32*\nOnego czasu powiedział Jezus do faryzeuszów i uczonych tę ", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nOświeć me oczy, bym nie zasnął w śmierci, by wróg mój nie mówił: Ja go zwyciężyłem.", + "id": "Offertorium" + }, + { + "body": "Przebłagany tą ofiarą, racz sprawić, Panie, aby nie obciążały nas cudze winy, gdy prosimy o odpuszczenie własnych grzech", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Łk 15:32*\nSynu, winieneś weselić się, gdyż brat twój był umarły, a ożył, zaginął był, a odnalazł się.", + "id": "Communio" + }, + { + "body": "Panie, niech sakramentalna ofiara Boskiej Krwi przeniknie do głębi nasze serca i swoją potężną mocą zjednoczy nas ze sob", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nProsimy Cię, Panie, strzeż nieustannie rodziny Twojej z ojcowską dobroc", + "id": "Super populum" + } + ], + "2024-03-03": [ + { + "body": "*Ps 24:15-16*\nOczy moje zawsze ku Panu, gdyż On sam oswobodzi z sideł moje nogi. Wejrzyj na mnie i zmiłuj się nade mną, ", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wejrzyj, prosimy, na pokorne modły i wyciągnij w naszej obronie prawicę Twego majestatu.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 5:1-9*\nBracia: Bądźcież naśladowcami Bożymi jako synowie najmil", + "id": "Lectio" + }, + { + "body": "*Ps 9:20; 9:4*\nPowstań, o Panie, by człowiek nie przemógł, pozwij narody przed Twój trybunał.\n℣. Wrogowie moi cofnęli si", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:14-28*\nOnego czasu: Wyrzucał Jezus czarta, a ten był niemy. A gdy", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9, 10, 11, 12*\nPrzykazania Pańskie słuszne, radują serca, sądy Pańskie słodsze od miodu płynącego z plastrów, prz", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 83:4-5*\nWróbel znajduje sobie dom i jaskółka gniazdo, gdzie złoży swoje pisklęta: Twoje ołtarze, Panie Zastępów, mój", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, uwolnij nas łaskawie od wszelkich przewinień i niebezpieczeństw, skoro pozwalasz nam uczestniczyć w ", + "id": "Postcommunio" + } + ], + "2024-03-04": [ + { + "body": "*Ps 55:5*\nBogu, którego słowem się chlubię, Panu, którego obietnicą się chlubię, Bogu ufam, nie będę się bał, cóż mi ucz", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wiej miłościwie łaskę Twoją w nasze serca, abyśmy wstrzymując się od pokarmów mięsnych, powściągali ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Kazimierza, Wyznawcy*\nBoże, który umocniłeś świętego Kazimierza cnotą stałości wśród rozkoszy dworu kró", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*4 Krl 5:1-15*\n*Oczyszczenie Naamana z trądu w wodach Jordanu to obraz oczyszczenia duszy", + "id": "Lectio" + }, + { + "body": "*Ps 55:9, 2*\nWyznałem Tobie, Boże, życie moje, położyłeś łzy moje przed sobą.\n℣. Zmiłuj się nade mną, Boże, bo depcze mn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 4:23-30*\nOnego czasu rzekł Jezus do faryzeuszów: «Pewnie mi powiecie", + "id": "Evangelium" + }, + { + "body": "*Ps 54:2-3*\nBoże, usłysz modlitwę moją i nie odsuwaj się od mojej prośby, zwróć się ku mnie i wysłuchaj mnie.", + "id": "Offertorium" + }, + { + "body": "Przemień, Panie, dar, który Ci składamy jako Twoi słudzy, w Sakrament niosący nam zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Kazimierza, Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wyb", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 13:7*\nNiech przyjdzie ze Syjonu zbawienie Izraela. Gdy Pan odmieni los swego narodu, Jakub się uraduje, Izrael ucies", + "id": "Communio" + }, + { + "body": "Wszechmogący i miłosierny Boże, spraw, abyśmy czystą duszą przyjęli to, co spożyliśmy ustami.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Kazimierza, Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nNiechaj miłosierdzie Twoje, Panie, przyjdzie nam z pomocą i niech Twoja", + "id": "Super populum" + } + ], + "2024-03-05": [ + { + "body": "*Ps 16:6, 8*\nWzywam Cię, Boże, bo Ty mnie wysłuchasz: nakłoń ku mnie Twe ucho, usłysz słowo moje; strzeż mnie jak źrenic", + "id": "Introitus" + }, + { + "body": "Wysłuchaj nas, wszechmocny i miłosierny Boże, i udziel nam łaskawie daru zbawiennej wstrzemięźliwości.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*4 Krl 4:1-7*\nW one dni: Niewiasta jedna wołała do Elizeusza mówiąc: «Sługa twój, mąż mój", + "id": "Lectio" + }, + { + "body": "*Ps 18:13-14*\nOczyść mnie, Panie, od błędów, co przede mną skryte. Także od pychy broń sługę Twego.\n℣. Niechaj nade mną ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:15-22*\n*Do uczynków miłosierdzia zaliczamy również upominanie gr", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16, 17*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Nie umrę, ale będę żył i głosił dzieła Pana.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech przez ten Sakrament spłyną na nas skutki Odkupienia, aby nas stale powstrzymywać od wykroczeń ", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 14:1-2*\nKto będzie przebywał w przybytku Twym, Panie, kto na górze Twej świętej zamieszka? Ten, co żyje bez skazy i ", + "id": "Communio" + }, + { + "body": "Oczyszczeni przez święte tajemnice, prosimy Cię, Panie, racz nam udzielić przebaczenia i obdarzyć nas Swoją łaską.\nPrzez", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nOchraniaj nas, Panie, Swoją opieką i strzeż zawsze od wszelkiej niepraw", + "id": "Super populum" + } + ], + "2024-03-06": [ + { + "body": "*Ps 30:7-8*\nJa zaś pokładam nadzieję w Panu: weselić się będę i cieszyć z Twego zmiłowania, boś wejrzał na moją nędzę.\n*", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy wyćwiczeni przez zbawienne posty, powstrzymywali się od zgubnych występków i tym łatwi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Perpetui i Felicyty, Męczennic*\nProsimy Cię, Panie Boże nasz, daj nam zawsze z nabożeństwem czcić trium", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Wyjścia.\n*Wj 20:12-24*\nTo mówi Pan Bóg: Czcij ojca twego i matkę twoją, aby dni twoje były przedłużone", + "id": "Lectio" + }, + { + "body": "*Ps 6:3-4*\nZmiłuj się nade mną, Panie, bom słaby; ulecz mnie, Panie.\n℣. Kości moje znękane i dusza moja wielce jest strw", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 15:1-20*\nOnego czasu: Przystąpili do Jezusa uczeni w Piśmie i faryz", + "id": "Evangelium" + }, + { + "body": "*Ps 108:21*\nPanie, postąp ze mną litościwie dla chwały Twego imienia, bo łaskawe jest Twe miłosierdzie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich składane, a gdy sprawujemy Twoje tajemnice, broń nas ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Perpetui i Felicyty, Męczennic*\nWejrzyj, prosimy Cię, Panie, na dary złożone na Twoim ołtarzu w uroczys", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 15:10*\nTy mi ukażesz ścieżkę żywota, obfitość radości u Ciebie, o Panie.", + "id": "Communio" + }, + { + "body": "Panie, niech nas uświęci Boska uczta, którąśmy się posilili, i oczyściwszy ze wszystkich błędów niech nas uczyni godnymi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Perpetui i Felicyty, Męczennic*\nNapełnieni duchowymi pragnieniami i radością, prosimy Cię, Panie, spraw", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWszechmogący Boże, dozwól, abyśmy zabiegając o Twoją łaskawą opiekę, zo", + "id": "Super populum" + } + ], + "2024-03-07": [ + { + "body": "Jam jest zbawieniem ludu, mówi Pan. W jakimkolwiek ucisku wołać będą do mnie, ja wysłucham ich i będę ich Panem na wieki", + "id": "Introitus" + }, + { + "body": "Panie, niech Ci przyniesie chwałę uroczystość Twoich świętych Męczenników Kosmy i Damiana, w którą dzięki Twej niewymown", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Tomasza z Akwinu, Wyznawcy i Doktora Kościoła*\nBoże, Ty oświecasz Swój Kościół przedziwną nauką św. Tom", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 7:1-7*\n*Modlitwy wielkopostne nie przyniosą owocu, jeżeli nie będzie im towar", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOczy wszystkich w Tobie, Panie, pokładają nadzieję, a Ty im dajesz pokarm we właściwym czasie.\n℣. Ty otwi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 4:38-44*\nOnego czasu: Wyszedłszy Jezus z synagogi, wstąpił do domu S", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nGdy chodzę wśród utrapienia, Ty mnie trzymasz przy życiu, o Panie; swą rękę wyciągasz na przekór gniewowi myc", + "id": "Offertorium" + }, + { + "body": "Dla uczczenia chwalebnej śmierci Świętych Twoich składamy Ci, Panie, tę ofiarę, z której wszelkie męczeństwo wzięło swój", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Tomasza z Akwinu, Wyznawcy i Doktora Kościoła*\nPanie, niech nam nie zabraknie serdecznej modlitwy święt", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nTy wydałeś Swoje przykazania, by pilnie ich przestrzegano. Oby me drogi były niezawodne ku przestrzeganiu T", + "id": "Communio" + }, + { + "body": "Przez zasługi świętych Męczenników Twoich Kosmy i Damiana prosimy Cię, Panie, aby Twój Sakrament zapewnił nam zbawienie.", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Tomasza z Akwinu, Wyznawcy i Doktora Kościoła*\nProsimy Cię, Panie, niech święty Tomasz, Twój Biskup i z", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nNiechaj zmiłowanie Twoje, Panie, pomnoży liczbę poddanego Ci ludu i nau", + "id": "Super populum" + } + ], + "2024-03-08": [ + { + "body": "*Ps 85:17*\nDaj mi znak łaski Twojej, aby ci, którzy mnie nienawidzą, widzieli ku zawstydzeniu swojemu, żeś Ty mi pomógł ", + "id": "Introitus" + }, + { + "body": "Niech łaska Twoja, Panie, towarzyszy naszym postom, abyśmy odmawiając pokarmu ciału, powstrzymywali naszego ducha od grz", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Jana Bożego, Wyznawcy*\nBoże, Ty świętego Jana, gorejącego miłością Twoją, przeprowadziłeś bez szkody wś", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Liczb.\n*Lb 20:1, 3, 6-13*\n*Skała, z której wypłynęła cudowna woda, jest typem Chrystusa, od którego pł", + "id": "Lectio" + }, + { + "body": "*Ps 27:7, 1*\nBogu zaufało me serce i doznałem pomocy; raduje się przeto serce moje i pieśnią moją Go sławię.\n℣. Do Ciebi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:5-42*\nOnego czasu: Przybył Jezus do miasta samarytańskiego, zwanego Sy", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4*\nZwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na dary, które Ci składamy w ofierze, niech będą Tobie miłe, a nam zawsze przynoszą", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Jana Bożego, Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wy", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*J 4:13, 14*\nGdy kto napije się wody, którą ja mu dam, mówi Pan, stanie się ona w nim źródłem wody wytryskującej ku żywo", + "id": "Communio" + }, + { + "body": "Panie, niechaj przyjęcie tego Sakramentu oczyści nas z grzechu i doprowadzi do Królestwa Niebieskiego.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Jana Bożego, Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niec", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWszechmogący Boże, zaufaliśmy Twojej opiece, spraw, prosimy, abyśmy za ", + "id": "Super populum" + } + ], + "2024-03-09": [ + { + "body": "*Ps 5:2-3*\nPochwyć uszami słowa moje, Panie, zważ na moje wołanie; zwróć się na głos modlitwy mojej, mój Królu i Boże.\n*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, niech rodzina Twoja, która dla umartwienia ciała wstrzymuje się od pokarmów, zabi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Franciszki Rzymianki, Wdowy*\nBoże, Ty między innymi darami Swej łaski zaszczyciłeś służebnicę Twoją świ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 13:1-9, 15-17, 19-30, 33-62*\n*Przez Chrzest Bóg zachowuje dusze od wpływu szatana", + "id": "Lectio" + }, + { + "body": "*Ps 22:4*\nChociażbym chodził ciemną doliną, zła się nie ulęknę, bo Ty jesteś ze mną, Panie.\n℣. Kij Twój i Twoja łaska: t", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:1-11*\n*Miłosierdzie Boże winno nas pobudzać do głębszej skruchy i popr", + "id": "Evangelium" + }, + { + "body": "*Ps 118:133*\nKrokami mymi kieruj według mowy Twojej, niech żadna niegodziwość we mnie nie panuje.", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby ten dar złożony w ofierze, nieustannie oczyszczał i zachowywał od wszelkiego ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Franciszki Rzymianki, Wdowy*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świę", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*J 8:10, 11*\nNikt cię nie potępił, niewiasto? Nikt, Panie. I ja cię nie potępię. Idź, a nie grzesz więcej.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, racz nas zaliczyć do członków Tego, którego Ciała i Krwi jesteśmy uczestnikami:\nKtóry z ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Franciszki Rzymianki, Wdowy*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za ws", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPodaj, Panie, wiernym Twoim prawicę niebieskiej pomocy, aby Cię całym s", + "id": "Super populum" + } + ], + "2024-03-10": [ + { + "body": "*Iz 66:10-11*\nWesel się, Jeruzalem! A wszyscy, którzy je miłujecie, śpieszcie tu gromadnie; bierzcie udział w jego radoś", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, abyśmy wśród utrapień, które znosimy za nasze występki, zostali pokrzepieni pocie", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 4:22-31*\n*Wypadki z życia Abrahama były rzeczowym proroctwem i ", + "id": "Lectio" + }, + { + "body": "*Ps 121:1, 7*\nUradowałem się, bo mi powiedziano: Pójdziemy do domu Pańskiego.\n℣. Niech pokój będzie w murach twoich, a b", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 6:1-15*\nOnego czasu: Oddalił się Jezus za Morze Galilejskie, czyli Tyber", + "id": "Evangelium" + }, + { + "body": "*Ps 134:3, 6*\nChwalcie Pana, bo Pan jest dobry; śpiewajcie Jego imieniu, bo słodkie, cokolwiek zechce, to uczyni na nieb", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas ona utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 121:3-4*\nO Jeruzalem, coś zbudowane jak miasto, zupełnie w sobie skupione. Tam wstępują pokolenia, pokolenia Pańskie", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię, miłosierny Boże, abyśmy zbliżali się z prawdziwą czcią do świętych tajemnic Twoich, z których pełni ", + "id": "Postcommunio" + } + ], + "2024-03-11": [ + { + "body": "*Ps 53:3-4*\nBoże, zbaw mnie w imię Swoje, i mocą Swoją broń mej sprawy. Boże, słuchaj modlitwy mojej, skłoń ucho na słow", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy Cię, abyśmy wiernie obchodząc doroczny post, podobali się Tobie duszą i ciałem.\nPrzez ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*3 Krl 3:16-28.*\nW one dni: przyszły dwie niewiasty wszetecznice do króla i stanęły przed", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nBądź mi, Boże, obrońcą, bądź zamkiem warownym, abyś mnie ocalił.\n*Ps 70:1.*\n℣. Boże, do Ciebie się uciekam: Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 2:13-25*\nOnego czasu: Zbliżała się Pascha żydowska i Jezus przyszedł do ", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1-2*\nZ radością wykrzykujcie Bogu, wszystkie ziemie; służcie Panu z weselem! Wśród okrzyków radości stawajcie prz", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara przez nas złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 18:13, 14*\nOczyść mnie, Panie, od błędów, co przede mną skryte. Także od pychy broń sługę Twego.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, aby przez przyjęcie zbawiennego Sakramentu wzrastała w nas łaska wiecznego Odkupienia.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWysłuchaj łaskawie nasze błagania, prosimy Cię, Panie, a skoro pobudzas", + "id": "Super populum" + } + ], + "2024-03-12": [ + { + "body": "*Ps 54:2-3*\nBoże, usłysz modlitwę moją i nie odsuwaj się od mojej prośby: zwróć się ku mnie i wysłuchaj mnie.\n*Ps 54:3-4", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech wierne zachowanie Wielkiego Postu wyjedna nam postęp w pobożnym życiu i stałą pomoc Twojego mi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Grzegorza Wielkiego, Papieża, Wyznawcy i Doktora Kościoła*\nBoże, który udzieliłeś nagrody wiecznej szcz", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Wyjścia.\n*Wj 32:7-14*\nW one dni: Rzekł Pan do Mojżesza mówiąc: «Idź, zstąp, zgrzeszył lud twój, któryś", + "id": "Lectio" + }, + { + "body": "*Ps 43:26, 2*\nOcknij się, Panie, na pomoc nam powstań i wyzwól nas dla chwały imienia Twego.\n℣. Na własne uszy słyszeliś", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 7:14-31*\nOnego czasu: Gdy upłynęła już połowa świąt, wszedł Jezus do świ", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2-4*\nUfałem, Panu ufałem, a schylił się nade mną i wysłuchał mego wołania, i w usta moje włożył śpiew nowy, pieśń", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Grzegorza Wielkiego, Papieża, Wyznawcy i Doktora Kościoła*\nSpraw, prosimy Cię, Panie, aby za wstawienni", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 19:6*\nObyśmy się cieszyli z Twojego zwycięstwa i w imię Boga naszego podnieśli sztandary.", + "id": "Communio" + }, + { + "body": "Panie, niechaj przyjęcie tego Sakramentu oczyści nas z grzechu i doprowadzi do Królestwa Niebieskiego.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Grzegorza Wielkiego, Papieża, Wyznawcy i Doktora Kościoła*\nBoże, któryś sprawił, że święty Papież Grzeg", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nZmiłuj się, Panie, nad ludem Twoim i pozwól mu łaskawie odetchnąć wśród", + "id": "Super populum" + } + ], + "2024-03-13": [ + { + "body": "*Ez 36:23-26*\nGdy zajaśnieje świętość moja w was, zgromadzę was ze wszystkich ziem i wyleję na was wodę czystą, i będzie", + "id": "Introitus" + }, + { + "body": "Boże, który nagradzasz sprawiedliwych, a grzesznikom poszczącym udzielasz przebaczenia, zmiłuj się nad nami, którzy Cię ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 36:23-28*\nTo mówi Pan Bóg: Zajaśnieje świętość mego wielkiego imienia, które je", + "id": "LectioL1" + }, + { + "body": "*Ps 38:12, 6*\nPójdźcie, synowie, słuchajcie mnie: nauczę was bojaźni Pańskiej.\n℣. Na Niego patrzcie, abyście się cieszyl", + "id": "GradualeL1" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, niech święta służba napełnia nas radością, gdy umartwiamy się zachowując nakazane pos", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 1:16-19*\nTo mówi Pan Bóg: Obmyjcie się, oczyśćcie się, zabierzcie sprzed oczu mo", + "id": "Lectio" + }, + { + "body": "*Ps 32:12, 6*\nBłogosławiony lud, którego Bogiem jest Pan: naród, który On sobie wybrał na dziedzictwo.\n℣. Przez słowo Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 9:1-38*\nOnego czasu: Przechodząc ujrzał Jezus człowieka ślepego od urodz", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9, 20*\nBłogosławcie, ludy, Panu Bogu naszemu i sławę Jego chwały rozgłoście, bo On dał duszy naszej życie, a no", + "id": "Offertorium" + }, + { + "body": "Pokornie Cię prosimy, wszechmogący Boże, niech ta ofiara oczyści nas z grzechów, przez to bowiem udzielasz nam prawdziwe", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*J 9:11*\nPan uczynił błoto ze śliny i pomazał nim moje oczy i poszedłem, umyłem się i przejrzałem, i uwierzyłem Bogu.", + "id": "Communio" + }, + { + "body": "Panie, Boże nasz, niech Sakrament, który przyjęliśmy, nasyci nas pokarmem duchowym i udzieli doczesnej pomocy.\nPrzez Pan", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPanie, nakłoń miłosierne uszy Twoje na modlitwy błagających Cię i abyś ", + "id": "Super populum" + } + ], + "2024-03-14": [ + { + "body": "*Ps 104:3-4*\nNiech się weseli serce szukających Pana, szukajcie Pana i umacniajcie się, szukajcie zawsze Jego oblicza.\n*", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, niech święta służba napełnia nas radością, gdy umartwiamy się, zachowując nakazane po", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*4 Krl 4:25-38*\n*Elizeusz kładący się na zwłoki zmarłego chłopca, by go wskrzesić, jest t", + "id": "Lectio" + }, + { + "body": "*Ps 73:20, 19, 22*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki.\n℣. Powstań, o Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:11-16*\n*Boleść Matki-Kościoła, który opłakuje swe dzieci pogrążone", + "id": "Evangelium" + }, + { + "body": "*Ps 69:2-4*\nPanie, pośpiesz mi na pomoc; niech się okryją wstydem ci, którzy godzą na Twe sługi.", + "id": "Offertorium" + }, + { + "body": "Oczyść nas, miłosierny Boże, aby modlitwy Twego Kościoła, które są Tobie miłe, gdy towarzyszą pobożnej ofierze, stały si", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nPanie, tylko Twą sprawiedliwość będę głosił, Boże, Ty mnie uczyłeś od mojej młodości: a i w starości, i w ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, nie dozwól, aby niebieskie dary stały się przyczyną\npotępienia dla tych, którzy je przyjęli, skoro u", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBoże, Stwórco i Rządco Swojego ludu, racz oddalić od niego grzechy, któ", + "id": "Super populum" + } + ], + "2024-03-15": [ + { + "body": "*Ps 18:15*\nMyśli serca mojego zawsze przed Tobą, Panie, Obrońco mój i Odkupicielu.\n*Ps 18:2*\nNiebiosa głoszą chwalę Boga", + "id": "Introitus" + }, + { + "body": "Boże, który odnawiasz świat przez niewysłowione tajemnice, spraw, prosimy, aby Kościół Twój rozwijał się przez to, co us", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Klemensa Marii Dworzaka (Hofbauera)*\nBoże, który ozdobiłeś świętego Klemensa Marię przedziwną mocą wiar", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*3 Krl 17:17-24*\nW one dni: Zachorował syn owej kobiety, pani domu, a choroba była tak si", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nLepiej się uciec do Pana, niż ufność położyć w człowieku.\n℣. Lepiej się uciec do Pana, niż zaufać książętom", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 11:1-45*\nOnego czasu: Zachorował niejaki Łazarz z Betanii, miasteczka Ma", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28, 32*\nTy wybawiasz naród uniżony, a pognębiasz oczy wyniosłe, bo któż prócz Pana jest Bogiem?", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech nas oczyszczą złożone Ci dary i wyjednają nam Twoją stałą łaskawość.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Klemensa Marii Dworzaka (Hofbauera)*\nProsimy Cię, Panie, niech nas rozpali ten ogień pobożności, którym", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*J 11:33, 35, 43, 44, 39*\nGdy ujrzał Pan siostry Łazarza płaczące u grobu, zapłakał wobec żydów, i zawołał: Łazarzu, wyj", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech uczestnictwo w tym Sakramencie zawsze nas wyzwala od naszych grzechów i broni we wszelkich prz", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Klemensa Marii Dworzaka (Hofbauera)*\nWszechmogący Boże, dozwól nam, pokrzepionym chlebem niebieskim, ab", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj nam, prosimy Cię, wszechmogący Boże, abyśmy będąc świadomi własnej ", + "id": "Super populum" + } + ], + "2024-03-16": [ + { + "body": "*Iz 55:1*\nWszyscy, co pragniecie, zbliżcie się do wód, mówi Pan: a którzy srebra nie macie, chodźcie i pijcie w radości.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nasze gorliwe oddanie przynosi owoce dzięki Twojej łasce: wtedy bowiem podjęte posty przyniosą", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 49:8-15*\n*Izajasz zapowiada Izraelitom wybawienie z niewoli i powrót do Ziem Obi", + "id": "Lectio" + }, + { + "body": "*Ps 9:14, 1-2*\nTobie, o Panie, biedny się poleca: sierocie Tyś pomocnikiem.\n℣. Dlaczego z dala stoisz, o Panie, w czasac", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:12-20*\n*Na Wielkanoc wołanie «Lumen Christi – Światłość Chrystusa» wyr", + "id": "Evangelium" + }, + { + "body": "*Ps 17:3*\nPan stał się opoką moją i ucieczką, moim wybawicielem, będę mu ufał.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij nasze ofiary i przebłagany przez nie zwróć łaskawie ku Sobie nawet oporną naszą wolę.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 22:1-2*\nPan jest moim Pasterzem: nie brak mi niczego; na zielonych pastwiskach pozwala mi leżeć; prowadzi mnie nad w", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech nas oczyści Twój Sakrament i mocą swego działania uczyni miłymi Tobie.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBoże, Ty okazujesz ufającym Tobie raczej miłosierdzie niż gniew; daj na", + "id": "Super populum" + } + ], + "2024-03-17": [ + { + "body": "*Ps 42:1-2*\nWymierz mi, Boże, sprawiedliwość i broń mojej sprawy przeciw niezbożnemu ludowi, wybaw mię od człowieka pods", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, wejrzyj łaskawie na rodzinę sług Twoich i w Swojej hojności rządź ich ciałami oraz strze", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 9:11-15*\n*Ofiara Chrystusa, która zastąpiła ofiary Stareg", + "id": "Lectio" + }, + { + "body": "*Ps 142:9, 10*\nOcal mnie, Panie, od mych nieprzyjaciół: naucz mię pełnić wolę Twoją.\n*Ps 17:48-49*\nO Panie, mój wybawici", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:46-59*\nOnego czasu: Mówił Jezus rzeszom żydowskim: «Kto z was dowiedzi", + "id": "Evangelium" + }, + { + "body": "*Ps 118:17, 107*\nZ całego serca będę Cię chwalił, Panie: czyń dobrze słudze Twojemu, aby żył i słów Twych przestrzegał. ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię Panie, niech ta ofiara oswobodzi nas z więzów naszych nałogów i wyjedna nam dary Twojego miłosierdzia.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*1 Kor 11:24, 25*\nTo jest Ciało moje, które za was będzie wydane; ten jest kielich Nowego Przymierza we Krwi mojej. To c", + "id": "Communio" + }, + { + "body": "Przybądź nam z pomocą Panie, Boże nasz i otaczaj nieustanną opieką tych, których pokrzepiłeś przez Twoje tajemnice.\nPrze", + "id": "Postcommunio" + } + ], + "2024-03-18": [ + { + "body": "*Ps 55:2*\nZmiłuj się nade mną, Boże, bo depcze mnie człowiek, uciska mnie w nieustannej walce.\n*Ps 55:3*\nWrogowie moi ni", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, uświęć nasze posty i udziel nam miłościwie odpuszczenia wszystkich win.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Cyryla Jerozolimskiego, Biskupa, Wyznawcy i Doktora Kościoła*\nProsimy Cię, wszechmogący Boże, przez wst", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jonasza.\n*Jon 3:1-10*\nW one dni: Stało się słowo Pańskie do Jonasza po wtóre, mówiąc: «Wstań, ", + "id": "Lectio" + }, + { + "body": "*Ps 53:4, 3*\nBoże, słuchaj modlitwy mojej, podaj ucho na słowa ust moich.\n℣. Boże, zbaw mnie w imię Swoje, mocą Swoją br", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 7:32-39*\nOnego czasu: posłali arcykapłani i faryzeusze sługi, aby pojmać", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nPowróć, o Panie, wyrwij duszę moją, przez miłosierdzie Twoje mnie wybaw.", + "id": "Offertorium" + }, + { + "body": "Panie, Boże nasz, spraw, aby ta zbawienna ofiara oczyściła nas z grzechów i wyjednała nam przychylność Twego majestatu.\n", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Cyryla Jerozolimskiego, Biskupa, Wyznawcy i Doktora Kościoła*\nWejrzyj, Panie, na niepokalaną ofiarę, kt", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 23:10*\nPan Zastępów: On sam Królem chwały.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech nas oczyści i uleczy zbawienne uczestnictwo w Twoim Sakramencie.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Cyryla Jerozolimskiego, Biskupa, Wyznawcy i Doktora Kościoła*\nPanie Jezu Chryste, niech na prośby św. B", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj, Panie, ludowi Twemu zdrowie duszy i ciała, aby oddając się dobrym ", + "id": "Super populum" + } + ], + "2024-03-19": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nas wspomagają zasługi Oblubieńca Twojej Najświętszej Rodzicielki, abyśmy za jego wstawiennict", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Wtorek po Niedzieli Męki Pańskiej*\nPrzyjmij, prosimy Cię, Panie, nasze posty; niech oczyszczając nas z grze", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 1:18-21*\nGdy poślubiona była Matka Jezusa Maryja Józefowi, pierwej ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie. (O. W. Alleluja.)", + "id": "Offertorium" + }, + { + "body": "Oddajemy Ci, Panie, hołd naszego poddaństwa, pokornie błagając, byś strzegł w nas swoich darów za wstawiennictwem św. Jó", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Wtorek po Niedzieli Męki Pańskiej*\nPrzynosimy Ci, Panie, dary ofiarne; niech będą one dla nas znakiem pocie", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o św. Józefie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali ", + "id": "Prefatio" + }, + { + "body": "*Mt 1:20*\nJózefie, Synu Dawidów, nie bój się przyjąć Maryi, małżonki swojej, albowiem co się w Niej poczęło z Ducha Świę", + "id": "Communio" + }, + { + "body": "Przyjdź nam z pomocą, miłosierny Boże, a za wstawiennictwem św. Józefa, Wyznawcy, strzeż w nas łaskawie Swoich darów.\nPr", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Wtorek po Niedzieli Męki Pańskiej*\nWszechmogący Boże, spraw, prosimy, abyśmy pełniąc nieustannie służbę Boż", + "id": "Commemoratio Postcommunio" + } + ], + "2024-03-20": [ + { + "body": "*Ps 17:48-49*\nWybawicielu od gniewnych narodów: Ty mnie wywyższysz ponad przeciwników moich, od gwałtownika mię wyrwiesz", + "id": "Introitus" + }, + { + "body": "Boże, uświęć ten post i oświeć miłościwie serca Twoich wiernych, a w dobroci Twojej wysłuchaj łaskawie próśb tych, który", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 19:1-2, 11-19, 25*\nW one dni: Rzekł Pan do Mojżesza, mówiąc: «Mów do całego zgromadz", + "id": "Lectio" + }, + { + "body": "*Ps 29:2-4*\nSławić Cię będę, Panie, bo mnie wybawiłeś i nie sprawiłeś ze mnie uciechy mym wrogom.\n℣. Panie, Boże mój, do", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:22-38*\nOnego czasu: Przypadła w Jerozolimie uroczystość Poświęcenia Ś", + "id": "Evangelium" + }, + { + "body": "*Ps 58:2*\nOd nieprzyjaciół moich wyrwij mnie, mój Boże, zachowaj mię, Panie, od powstających na mnie.", + "id": "Offertorium" + }, + { + "body": "Spraw, miłosierny Boże, abyśmy Ci złożyli ofiarę przebłagania i chwały ze szczerym oddaniem.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 25:6-7*\nRęce moje umywam na znak niewinności i ołtarz Twój, Panie, obchodzę, by jawnie ogłaszać chwałę i rozpowiadać", + "id": "Communio" + }, + { + "body": "Po przyjęciu błogosławionego daru niebieskiego, pokornie Cię prosimy, wszechmogący Boże, aby ten dar stał się źródłem ła", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPrzychyl się ku prośbom naszym, wszechmogący Boże, a skoro pozwalasz na", + "id": "Super populum" + } + ], + "2024-03-21": [ + { + "body": "*Dn 3:31*\nWszystko, coś na nas dopuścił, o Panie, według sprawiedliwego wyroku nas spotkało; bośmy zgrzeszyli przeciw To", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, aby godność natury ludzkiej zraniona przez nieumiarkowanie została przywrócona przez ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Benedykta, Opata*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Benedykta, Opata, ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:25, 34-45*\nW one dni Azariasz modlił się do Pana, mówiąc: Prosimy Cię, Panie, B", + "id": "Lectio" + }, + { + "body": "*Ps 95:8-9*\nOfiary nieście i wchodźcie do Jego przedsieni: uczcijcie Pana w świętym Jego majestacie.\n*Ps 28:9*\nGłos Pana", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:36-50*\nOnego czasu: Pewien faryzeusz zaprosił Jezusa na posiłek ze", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nNad rzekami Babilonu, tam siedzieliśmy i płakali, gdyśmy wspominali ciebie, Syjonie.", + "id": "Offertorium" + }, + { + "body": "Panie, Boże nasz, Twoją jest wolą, abyśmy składali ofiary imieniu Twojemu z tego, coś stworzył dla podtrzymania naszej u", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Benedykta, Opata*\nProsimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na święty", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nPomnij, Panie, na Twoje słowo dla sługi Twojego, przez które mi dałeś nadzieję: w ucisku moim to pociechą", + "id": "Communio" + }, + { + "body": "Cośmy ustami spożyli, daj, Panie, przyjąć czystą duszą, a ten dar doczesny niech się nam stanie lekarstwem na wieczność.", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Benedykta, Opata*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N.,", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBądź miłościw ludowi Twojemu, prosimy, Panie, aby odrzuciwszy to, co si", + "id": "Super populum" + } + ], + "2024-03-22": [ + { + "body": "*Ps 30:10, 16, 18*\n*Psalm 30 to proroctwo o agonii Chrystusa i Jego niewzruszonej ufności. Słowa Jezusowe, «Ojcze w ręce", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wlej w serca nasze Twą łaskę, abyśmy poskramiając nasze wady dobrowolną pokutą, raczej za życia się ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nBoże, podczas Twej męki, według przepowiedni Symeona, miecz boleści przeszył najs", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 17:13-18*\nW one dni rzekł Jeremiasz: Panie, wszyscy, co zapominają o Tobie, b", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nWprawdzie przyjaźnie odzywają się do mnie wrogowie moi, a przecież w zawziętości swojej gotują mi zdradę.", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 11:47-54*\nOnego czasu: Zebrali przedniejsi kapłani i faryzeusze Radę prz", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich; nie wydaj mnie moim ciemiężcom, a dam odpowie", + "id": "Offertorium" + }, + { + "body": "Miłosierny Boże, spraw, abyśmy zawsze służyli godnie Twoim ołtarzom i przez stałe w nich uczestnictwo osiągnęli zbawieni", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nPrzedkładamy Ci, Panie Jezu Chryste, modlitwy i ofiary i pokornie błagamy, abyśmy", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nNie wydawaj mnie, Panie, na łup złej woli moich prześladowców, bo świadkowie fałszywi przeciw mnie powstali, ", + "id": "Communio" + }, + { + "body": "Panie, niech nas nie opuszcza stała opieka spożytej ofiary i niech zawsze oddala od nas wszelkie niebezpieczeństwa.\nPrze", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nPanie Jezu Chryste, niech ofiara, z której pożywaliśmy czcząc z oddaniem przebici", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWszechmogący Boże, dozwól, abyśmy zabiegając o Twoją łaskawą opiekę, zo", + "id": "Super populum" + } + ], + "2024-03-23": [ + { + "body": "*Ps 30:10, 16, 18*\n*Psalm 30 to proroctwo o agonii Chrystusa i Jego niewzruszonej ufności. Słowa Jezusowe, «Ojcze w ręce", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech lud Tobie oddany wzrasta w dziecięcej uległości, aby oświecony przez święte czynności w tym wi", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 18:18-23*\n*Jeremiasz jest typem biblijnym niesłusznie prześladowanego Chrystu", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nWprawdzie przyjaźnie odzywają się do mnie wrogowie moi, a przecież w zawziętości swojej gotują mi zdradę.", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:10-36*\n*Uroczysty wjazd Pana Jezusa do Jeruzalem jest dla narodu żydo", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich; nie wydaj mnie moim ciemiężcom, a dam odpowie", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uwolnij nas łaskawie od wszelkich przewinień i niebezpieczeństw, skoro pozwalasz nam uczestniczyć w ", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nNie wydawaj mnie, Panie, na łup złej woli moich prześladowców, bo świadkowie fałszywi przeciw mnie powstali, ", + "id": "Communio" + }, + { + "body": "Darem Bożym szczodrze nasyceni prosimy Cię, Panie, Boże nasz, abyśmy zawsze czerpali zeń życie.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nNiech prawica Twoja, Panie, ochrania lud błagający, niech go łaskawie o", + "id": "Super populum" + } + ], + "2024-03-24": [ + { + "body": "*Kapłan, pomijając aspersję, podchodzi wraz z asystą by pobłogosławić palmy lub gałązki oliwne lub gałązki innych drzew,", + "id": "Benedictio Palmorum" + }, + { + "body": "*Celebrans rozdaje poświęcone palmy najpierw duchowieństwu, potem ministrantom, w końcu wiernym lub ich przedstawicielom", + "id": "De distributione ramorum" + }, + { + "body": "*Po rozdaniu palm diakon kładzie księgę Ewangelii na ołtarzu, a Kapłan nakłada kadzidło do kadzielnicy, po czym diakon ś", + "id": "De lectione Evangelica" + }, + { + "body": "*Po nałożeniu przez Kapłana kadzidła do kadzielnicy, diakon zwraca się do wiernych i śpiewa:*\n\n℣. Idźmy w pokoju.\n\n*Wier", + "id": "De processione cum ramis benedictis" + }, + { + "body": "\n*Chór:*\nHołd Tobie, sława i cześć, o Chryste Królu i Zbawco: Któremu niegdyś chłopięcy chór nabożnie śpiewał Hosanna.\n*", + "id": "Hymnus ad Christum Regem" + }, + { + "body": "*Ps 21:20,22*\nO Panie, nie stój w oddaleniu: Pomocy moja, spiesz mi na ratunek. Wybaw mnie z lwiej paszczy i mnie biedne", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, chcąc dać rodzajowi ludzkiemu do naśladowania przykład pokory, sprawiłeś, że Zbawiciel nasz ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 2:5-11*\nBracia: To bowiem rozumiejcie, co i w Chrystusie Jezu", + "id": "Lectio" + }, + { + "body": "*Ps 72:24, 1-3*\nTyś ujął mą prawicę; po myśli Twojej wyprowadzisz mnie i wreszcie przyjmiesz mnie do chwały.\n℣. Jak dobr", + "id": "Graduale" + }, + { + "body": "Pasja Pana naszego Jezusa Chrystusa według Mateusza.\n*Mt 26:36-75; 27:1-60*\n*J = słowa Chrystusa; C = opowiadanie Ewange", + "id": "Evangelium" + }, + { + "body": "*Ps 68:21-22*\nUrąganiem złamane me serce i sił mi zabrakło. Na współczującego czekałem, ale go nie było, i na pocieszają", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, dozwól, by dar złożony przed obliczem Twego majestatu wyjednał nam łaskę gorliwości w służbie Twojej", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Mt 26:42*\nOjcze, jeżeli ten kielich nie może Mnie minąć, ale mam Go wypić, niech się dzieje wola Twoja.", + "id": "Communio" + }, + { + "body": "Działanie tego Sakramentu, o Panie, niechaj oczyści nas z grzechów i spełni nasze słuszne pragnienia.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-03-25": [ + { + "body": "*Ps 34:1-2*\nRozpraw się, Panie, z tymi, co mnie krzywdzą, uderz na tych, co na mnie natarli, chwyć broń i tarczę, a pows", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wśród tak licznych przeciwności upadamy wskutek własnej niemocy; prosimy Cię, spraw, abyśmy otrzymali", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 50:5-10*\n*Izajasz przepowiada biczowanie i znieważanie Chrystusa. Wszystkie te u", + "id": "Lectio" + }, + { + "body": "*Ps 34:23,3*\nPrzebudź się, o Panie, powstań ku mojej obronie, wglądnij w mą sprawę, Boże mój i Panie.\n℣. Dobądź miecza i", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:1-9*\nNa sześć dni przed Paschą przyszedł Jezus do Betanii, gdzie umar", + "id": "Evangelium" + }, + { + "body": "*Ps 142:9-10*\nOcal mnie od nieprzyjaciół moich, Panie, do Ciebie się uciekam. Naucz mnie pełnić wolę Twoją, albowiem jes", + "id": "Offertorium" + }, + { + "body": "Panie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej czystości dojść do ich Stwórcy.\nP", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 34:26*\nNiech się zmieszają i zawstydzą wszyscy, którzy się cieszą z mego nieszczęścia, niech się okryją wstydem i wz", + "id": "Communio" + }, + { + "body": "Panie, niech Twoje święte tajemnice obudzą w nas Boży zapał, abyśmy czerpali radość zarówno z ich sprawowania, jak z owo", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWspomóż nas, Boże, Zbawicielu nasz, i daj, abyśmy z radością doczekali ", + "id": "Super populum" + } + ], + "2024-03-26": [ + { + "body": "*Ga 6:14*\nA myśmy się chlubić powinni Krzyżem Pana naszego Jezusa Chrystusa; w Nim jest zbawienie, życie i zmartwychwsta", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, daj nam tak sprawować misteria Męki Pańskiej, abyśmy mogli otrzymać przebaczenie.\nPrzez tego", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 11:18-20*\nW one dni: Rzekł Jeremiasz: Panie, ukazałeś mi, a poznałem: wtedy o", + "id": "Lectio" + }, + { + "body": "*Ps 34:13; 34:1-2*\nJa zaś, gdy mi dokuczali, wdziewałem wór pokutny i duszę moją trapiłem postem, i w sercu zanosiłem mo", + "id": "Graduale" + }, + { + "body": "\n\n \nPasja Pana naszego Jezusa Chrystusa według Marka.\n\n*Mk 14:32-72; 15, 1-46*\n*J = słowa Chrystusa; C = opowiadanie Ewa", + "id": "Evangelium" + }, + { + "body": "*Ps 139:5*\nZachowaj mnie, Panie, od ręki grzesznika, strzeż mnie od ludzi okrutnych.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech te ofiary składane wśród uzdrawiającego postu, skutecznie przyczynią się do naszego zbawienia.", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 68:13-14*\nSiedzący w bramach wyglądają na mnie i lżą mnie pijący wino, ja zaś modły zanoszę do Ciebie, Panie, gdyś p", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, niech Twoje uświęcające tajemnice uleczą nasze wady i staną się dla nas rękojmią życia wiecznego.\nPrz", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBoże, niech Twoje miłosierdzie oczyści nas ze wszystkich ukrytych pozos", + "id": "Super populum" + } + ], + "2024-03-27": [ + { + "body": "*Flp 2:10,8,11*\nNa imię Jezusa niech zgina się wszelkie kolano mieszkańców niebios, ziemi i podziemia, gdyż Pan stał się", + "id": "Introitus" + }, + { + "body": "Dręczeni nieusatnnie naszymi występkami prosimy Cię, wszechmogący Boże, aby nas wyzwoliła męka Jednorodzonego Syna Twego", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 63:1-7*\n*Proroctwo zawarte w lekcji jest dialogiem między zbroczonym krwią wojow", + "id": "LectioL1" + }, + { + "body": "*Ps 68:18; 68:2-3*\nNie kryj oblicza Twego przed Swym sługą, rychło mnie wysłuchaj, bo jestem w ucisku.\n℣. Wybaw mnie, Bo", + "id": "GradualeL1" + }, + { + "body": "Boże, z Twojej woli Twój Syn poniósł za nas śmierć na drzewie Krzyża, aby uwolnić nas spod władzy szatana; dozwól nam, s", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 53:1-12*\n*Izajasz tak dokładnie przepowiedział szczegóły Męki Pańskiej, że nazwa", + "id": "Lectio" + }, + { + "body": "*Ps 101:2-5,14*\nPanie, wysłuchaj modlitwę moją, a wołanie moje niech do Ciebie przyjdzie.\n℣. Nie kryj przede mną Twego o", + "id": "Graduale" + }, + { + "body": "\n\n \nPasja Pana naszego Jezusa Chrystusa według Łukasza.\n\n*Łk 22:39-71; 23:1-53*\n*J = słowa Chrystusa; C = opowiadanie Ew", + "id": "Evangelium" + }, + { + "body": "*Ps 101:2-3*\nPanie, wysłuchaj modlitwę moją, a wołanie moje niech do Ciebie przyjdzie: nie kryj przede mną Twojego oblic", + "id": "Offertorium" + }, + { + "body": "*Sekreta i pokomunia przypominają, że we Mszy świętej odnawia się w sakramentalny sposób Męka Pańska.*\nProsimy Cię, Pani", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 10:13,14*\nNapój mój mieszam ze łzami, boś mnie podniósł i strącił, a ja usycham jak trawa, Ty zaś, o Panie, trwasz n", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, wlej w serca nasze niezłomną wiarę, że przez doczesną śmierć Twojego Syna, której znakiem są czcigodn", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWejrzyj łaskawie, prosimy Cię, Panie, na tę rodzinę Twoją, za którą Pan", + "id": "Super populum" + } + ], + "2024-03-28": [ + { + "body": "*Ga 6:14*\nA myśmy się chlubić powinni Krzyżem Pana naszego Jezusa Chrystusa; w Nim jest zbawienie, życie i zmartwychwsta", + "id": "Introitus" + }, + { + "body": "Boże, od Ciebie Judasz otrzymał karę za swoją zbrodnię, a łotr nagrodę za wyznanie winy; daj nam doznać skutków miłosier", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 11:20-32*\nBracia: Gdy się tedy wespół schodzicie, nie jest", + "id": "Lectio" + }, + { + "body": "*Flp 2:8-9*\nChrystus stał się dla nas posłuszny aż do śmierci, a była to śmierć krzyżowa.\n℣. Dlatego i Bóg wywyższył Go:", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 13:1-15*\nPrzed świętym dniem Paschy Jezus, wiedząc, że nadeszła godzina ", + "id": "Evangelium" + }, + { + "body": "*Po kazaniu odbywa się obrzęd umywania nóg, Celebrans zdejmuje ornat, przepasuje się ręcznikiem i umywa nogi dwunastu mę", + "id": "Maundi" + }, + { + "body": "*Ps 117:16-17*\nPrawica Pańska moc okazała, prawica Pańska mnie dźwignęła; nie umrę, lecz będę żył i głosił dzieła Pana.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, Ojcze święty, wszechmogący, wieczny Boże, niech ofiarę naszą uczyni Ci przyjemną Ten, który w dniu d", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "Zjednoczeni w świętych obcowaniu obchodzimy uroczyście prześwięty dzień, w którym Pan nasz Jezus Chrystus został za nas ", + "id": "Communicantes" + }, + { + "body": "*J 13:12,13,15*\nPan Jezus, gdy skończył wieczerzę z uczniami swoimi, umył nogi ich i rzekł: «Czy wiecie, com wam uczynił", + "id": "Communio" + }, + { + "body": "Posileni życiodajnym pokarmem prosimy Cię, Panie Boże nasz, aby najświętsza tajemnica, którą sprawujemy w doczesności, d", + "id": "Postcommunio" + }, + { + "body": "*Po skończeniu Mszy św. kapłan zmienia ornat na kapę i okadziwszy Najświętszy Sakrament przenosi Go w uroczystej procesj", + "id": "Post Missam" + }, + { + "body": "\n*W pierwszych wiekach Kościoła zawsze po skończeniu Mszy św. zdejmowano z ołtarza obrusy. Dzisiaj jednak czynność ta ma", + "id": "Denudatione altaris" + } + ], + "2024-03-29": [ + { + "body": "\n*Celebrans i asystujący, ubrani w alby i czarne stuły, w zupełnej ciszy udają się do ołtarza i padają przed nim na twar", + "id": "Lectiones" + }, + { + "body": "*Następnie czyta się lub śpiewa opis Męki Pańskiej według św. Jana, który był naocznym świadkiem śmierci krzyżowej Zbawi", + "id": "Passio" + }, + { + "body": "*W starożytności «modlitwa wiernych», to jest ochrzczonych, odbywała się po odesłaniu katechumenów i stanowiła zakończen", + "id": "Oratio Fidelium" + }, + { + "body": "\n*Po skończeniu modlitw celebrans zdejmuje kapę, asystujący zaś swoje szaty liturgiczne. Diakon udaje się do zakrystii, ", + "id": "Crucis Adoratione" + }, + { + "body": "*Po przybyciu do głównego ołtarza diakon umieszcza Najświętszy Sakrament na korporale, a ministranci stawiają świece obo", + "id": "CommunioQ" + } + ], + "2024-03-30": [ + { + "body": "*Aby nam dopomóc w poznaniu rzeczy niewidzialnych, Kościół zwykle posługuje się znakami materialnymi; gdy mamy przeżyć f", + "id": "Benedictio ignis" + }, + { + "body": "*Jeden z ministrantów przynosi przed celebransa paschał. Celebrans żłobi rylcem na świecy paschalnej krzyż, pierwszą i o", + "id": "De benedictione cerei Paschalis" + }, + { + "body": "*Do ciemnego kościoła wnosi się paschał – symbol Chrystusa zmartwychwstałego. Procesja ze światłem to obrazowe przedstaw", + "id": "De solemni processione" + }, + { + "body": "*Teraz diakon bierze księgę i prosi o błogosławieństwo celebransa:*\n\nRacz pobłogosławić, ojcze.\n\n*Celebrans odpowiada:*\n", + "id": "De praeconio paschali" + }, + { + "body": "*Następują czytania przygotowujące nas do poświęcenia wody chrzcielnej i odnowienia przyrzeczeń złożonych na Chrzcie świ", + "id": "De lectionibus" + }, + { + "body": "*W najważniejszych swoich obrzędach Kościół wzywa zawsze wstawiennictwa Wszystkich Świętych. Czyni to również przystępuj", + "id": "De prima parte Litaniarum" + }, + { + "body": "℣. Pan z wami. \n\r℟. I z duchem twoim.\nMódlmy się.\nWszechmogący, wiekuisty Boże, bądź obecny w tych tajemnicach Twej w", + "id": "De benedictione aquae baptismalis" + }, + { + "body": "*Celebrans wkłada białą kapę i okadziwszy paschał stojąc przed nim lub na kazalnicy przemawia do wiernych:*\n\n\n\n\nNajmilsi", + "id": "De renovatione promissionum baptismatis" + }, + { + "body": "*Po odnowieniu przyrzeczeń Chrztu świętego kantorzy śpiewają drugą część litanii do Wszystkich Świętych. Wierni klęcząc ", + "id": "De altera parte Litaniarum" + }, + { + "body": "*Odnowiwszy w sobie łaskę Chrztu, który nas wszczepił w misterium śmierci i Zmartwychwstania Pańskiego, składamy ofiarę ", + "id": "De Missa solemni Vigiliae paschalis" + }, + { + "body": "℣. Pan z wami. \n\r℟. I z duchem twoim.\nMódlmy się.\nBoże, który tę najświętszą noc uświetniasz chwałą Zmartwychwstania ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:1-4*\nBracia: Jeżeli razem z Chrystusem powstaliście z martwy", + "id": "Lectio" + }, + { + "body": "*Ps 116*\n℣. Chwalcie Pana, wszystkie narody, wysławiajcie Go, wszystkie ludy.\n℣. Bo Jego miłosierdzie nad nami utwierdzo", + "id": "Tractus" + }, + { + "body": "*Do śpiewania ewangelii nie niesie się świec, ponieważ przyświeca paschał.*\n\nCiąg dalszy ☩ Ewangelii świętej według Mate", + "id": "Evangelium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych wraz z darami ofiarnymi: aby ofiara, która wzięła początek w misterium pa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Po Komunii wiernych chór zaczyna śpiewać Laudes: poranną modlitwę Kościoła, skróconą do jednego psalmu i kantyku.*\n\n\nAn", + "id": "Pro Laudibus" + }, + { + "body": "℣. Pan z wami. \n\r℟. I z duchem twoim.\nMódlmy się.\nTchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zje", + "id": "Postcommunio" + }, + { + "body": "℣. Idźcie, ofiara spełniona, alleluja, alleluja.\n℟. Bogu dzięki, alleluja, alleluja.", + "id": "Conclusio" + } + ], + "2024-03-31": [ + { + "body": "*Ps 138:18,5-6*\n*Zmartwychwstały Chrystus zwraca się do Ojca Niebieskiego w akcie adoracji i miłości:*\nZmartwychwstałem ", + "id": "Introitus" + }, + { + "body": "Boże, Ty w dniu dzisiejszym pokonałeś śmierć i otworzyłeś nam bramy wieczności przez Jednorodzonego Syna Twego; racz wsp", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 5:7-8*\n*W Starym Testamencie przed Wielkanocą usuwano z do", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24; 117:1*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Dziękujcie Panu, bo je", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:1-7*\nOnego czasu: Maria Magdalena i Maria Jakubowa, i Salome nakupi", + "id": "Evangelium" + }, + { + "body": "*Ps 75:9-10*\n*Wspominamy trzęsienie ziemi, które towarzyszyło Zmartwychwstaniu Chrystusa.*\nPrzelękła się ziemia i zamilk", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych wraz z darami ofiarnymi: aby ofiara, która wzięła początek w misterium pa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*1 Kor 5:7-8*\nNa Paschę naszą został ofiarowany Chrystus, alleluja; świętujmy tedy w przaśnikach szczerości i prawdy, al", + "id": "Communio" + }, + { + "body": "Tchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zjednocz tych, których nasyciłeś wielkanocnym Sakramente", + "id": "Postcommunio" + } + ], + "2024-04-01": [ + { + "body": "*Wj 13:5; 13:9*\nWprowadził was Pan do ziemi opływającej mlekiem i miodem, alleluja: aby też prawo Pańskie zawsze było na", + "id": "Introitus" + }, + { + "body": "Boże, który w uroczystość paschalną zgotowałeś światu uzdrowienie, prosimy Cię, obdarz Swój lud darami niebieskimi, aby ", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 10:37-43*\nW one dni: Piotr, stojąc pośród rzeszy, rzekł: «Mężowie, bracia! Wiecie, ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24; 117:2*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Teraz niech mówi dom I", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 24:13-35*\nOnego czasu: Dwaj z uczniów Jezusa tegoż dnia szli do mias", + "id": "Evangelium" + }, + { + "body": "*Mt 28:2; 28:5-6*\nAnioł Pański zstąpił z nieba i rzekł niewiastom: Ten, którego szukacie, zmartwychwstał, jak zapowiedzi", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych wraz z darami ofiarnymi; aby ofiara, która wzięła początek w misterium pa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Łk 24:34*\nPowstał Pan z martwych i ukazał się Piotrowi, alleluja.", + "id": "Communio" + }, + { + "body": "Tchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zjednocz tych, których nasyciłeś wielkanocnym Sakramente", + "id": "Postcommunio" + } + ], + "2024-04-02": [ + { + "body": "*Syr 15:3-4*\nPan ich napoił wodą mądrości, alleluja, alleluja; tak ich umocni, że się nie zachwieją, alleluja; i na wiek", + "id": "Introitus" + }, + { + "body": "Boże, który ciągle wzbogacasz Swój Kościół nowym potomstwem, daj sługom Twoim, aby przestrzegali w życiu zobowiązań płyn", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 13:16; 13:26-33*\nW one dni: Powstał Paweł i nakazując ręką milczenie rzekł: «Mężowi", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24;106:2*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n*Ps 106:2*\n℣. Niechaj mówi", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 24:36-47*\nOnego czasu: Stanął Jezus w pośrodku uczniów swoich i rzek", + "id": "Evangelium" + }, + { + "body": "*Ps 17:14; 17:16*\nZagrzmiał Pan na niebiosach, Najwyższy dał słyszeć swój głos; i otworzyły się źródła wody, alleluja.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich złożone, a nabożne sprawowanie służby Twojej niech na", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Kol 3:1-2*\nJeżeli razem z Chrystusem powstaliście z martwych, szukajcie tego, co w górze jest, gdzie Chrystus siedzi po", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, aby skutki Komunii wielkanocnej przetrwały na zawsze w naszych duszach.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-04-03": [ + { + "body": "*Mt 25:34*\nPójdźcie, błogosławieni Ojca mego, i posiądźcie Królestwo, alleluja, zgotowane wam od założenia świata, allel", + "id": "Introitus" + }, + { + "body": "Boże, który co roku uweselasz nas obchodem Zmartwychwstania Pańskiego, spraw miłościwie, abyśmy obchodząc doczesne urocz", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 3:13-15; 3:17-19*\nW one dni: Piotr otwierając swe usta rzekł: «Mężowie izraelscy i ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24; 117:16*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Prawica Pańska moc ok", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 21:1-14*\nOnego czasu: Ukazał się znowu Jezus uczniom nad Morzem Tyberiad", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nPan otworzył bramy nieba; jak deszcz im spuścił mannę na pokarm; obdarzył ich chlebem niebieskim; chleb An", + "id": "Offertorium" + }, + { + "body": "Wśród radości wielkanocnych składamy Ci, Panie, tę ofiarę, którą Kościół Twój cudownie karmi się i odżywia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Rz 6:9*\n*W Komunii świętej przyjmujemy Ciało Chrystusa zmartwychwstałego, które jest zadatkiem naszego życia wiecznego.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niechaj pełne czci przyjęcie Twojego Sakramentu oczyści nas z pozostałości starego człowieka i przem", + "id": "Postcommunio" + } + ], + "2024-04-04": [ + { + "body": "*Mdr 10:20-21*\nZwycięską rękę Twą, Panie, jednomyślnie wychwalali, alleluja, bo mądrość otworzyła usta niemych, a języki", + "id": "Introitus" + }, + { + "body": "Boże, który zjednoczyłeś różne narody w wyznawaniu Twojego imienia, daj, aby ci, co się odrodzili w wodzie Chrztu, zacho", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 8:26-40*\n*Bez pomocy diakona Filipa Etiopczyk nigdy by nie rozumiał proroctw Izajas", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24; 117:22-23*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Kamień, odrzucony ", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:11-18*\nOnego czasu: Maria stała u grobu zewnątrz i płakała. płacząc n", + "id": "Evangelium" + }, + { + "body": "*Wj 13:5*\nW dniu uroczystości waszej, mówi Pan, wprowadzę was do ziemi opływającej mlekiem i miodem, alleluja.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij łaskawie dary Swoich ludów, aby odrodzone przez wyznanie Twojego imienia i Chrzest osiągnęł", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*1 P 2:9*\nLudu nabyty, opowiadaj wielkie sprawy Jego, alleluja: On ciebie wezwał z ciemności ku swojej przedziwnej świat", + "id": "Communio" + }, + { + "body": "Wysłuchaj, Panie, modlitwy nasze, aby to święte i zbawienne zjednoczenie było nam pomocą w życiu doczesnym i wyjednało r", + "id": "Postcommunio" + } + ], + "2024-04-05": [ + { + "body": "*Ps 77:53*\nPan wiódł ich bezpiecznie, alleluja, a wrogów ich morze pokryło, alleluja, alleluja, alleluja.\n*Ps 77:1*\nSłuc", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który ustanowiłeś misterium paschalne zawierając z ludzkością przymierze przebaczenia, udzie", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 3:18-22*\n*Chrystus zstąpił do otchłani, aby sprawiedliwym Starego Testam", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24; 117:26-27*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Błogosławiony, któ", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 28:16-20*\nOnego czasu: Jedenastu uczniów poszło do Galilei, na górę", + "id": "Evangelium" + }, + { + "body": "*Wj 12:14*\nTen dzień będzie wam na pamiątkę, alleluja, i będziecie go obchodzić jako święto uroczyste dla Pana przez wsz", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij miłościwie dary, które składamy jako wynagrodzenie za grzechy odrodzonych przez Chrzest ora", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 28:18-19*\n*Każda Komunia wkłada na nas obowiązek niesienia w świat Chrystusa i Jego nauki.*\nDana mi jest wszelka wła", + "id": "Communio" + }, + { + "body": "Wejrzyj, prosimy Cię, Panie, na lud Swój, a skoro raczyłeś go odrodzić przez wiekuiste tajemnice, racz mu odpuścić winy ", + "id": "Postcommunio" + } + ], + "2024-04-06": [ + { + "body": "*Ps 4:43*\nPan wyprowadził lud swój z radością, alleluja, z weselem swoich wybranych, alleluja, alleluja.\n*Ps 4:1*\nChwalc", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy mocą uroczystości paschalnych, które ze czcią obchodziliśmy, mogli dojść d", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:1-10*\nNajmilsi: Usunąwszy wszelką złość oraz wszelki podstęp, obłudę, ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*7:24*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy, alleluja.\n*Ps 112:1*\nChwalcie, o dzie", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:1-9*\nOnego czasu: Pierwszego dnia tygodnia rankiem, gdy jeszcze był m", + "id": "Evangelium" + }, + { + "body": "*Ps 7:26-27*\nBłogosławiony, który przybywa w imię Pańskie; błogosławimy wam z Pańskiego domu. Pan jest Bogiem i zajaśnia", + "id": "Offertorium" + }, + { + "body": "Dozwól nam, prosimy Cię, Panie, radować się zawsze tajemnicą paschalną, a trwałe działanie łaski Odkupienia niech nas pr", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Ga 3:27*\nWszyscy, którzyście zostali ochrzczeni w Chrystusie, przyoblekliście się w Chrystusa, alleluja.", + "id": "Communio" + }, + { + "body": "Umocnieni darem naszego Odkupienia prosimy Cię, Panie, aby dzięki temu Sakramentowi wiecznego zbawienia prawdziwa wiara ", + "id": "Postcommunio" + } + ], + "2024-04-07": [ + { + "body": "*1 P 2:2*\nJako dopiero narodzone niemowlęta, alleluja, pożądajcie duchowego, czystego mleka, alleluja, alleluja alleluja", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy ukończywszy obchód świąt wielkanocnych, za łaską Twoją zachowali ich ducha", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 5:4-10*\n*Chrystus żyje i działa w nas przez trzy elementy: wodę Chrztu, Kr", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Mt 28:7*\nW dzień mojego Zmartwychwstania – mówi Pan – pójdę przed wami do Galilei. Alleluja.\n*J 20:", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:19-31*\nOnego czasu: Wieczorem dnia owego, pierwszego po szabacie, gdy", + "id": "Evangelium" + }, + { + "body": "*Mt 28:2; 28:5-6*\nAnioł Pański zstąpił z nieba i rzekł niewiastom: Ten, którego szukacie zmartwychwstał jak zapowiedział", + "id": "Offertorium" + }, + { + "body": "Przyjmij prosimy Cię, Panie, dary weselącego się Kościoła i skoro dałeś mu powód do tak wielkiej radości, udziel mu jako", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 20:27*\nWłóż rękę twoją i rozpoznaj miejsce gwoździ, alleluja i nie bądź niewiernym lecz wierzącym, alleluja, alleluja", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się leka", + "id": "Postcommunio" + } + ], + "2024-04-08": [ + { + "body": "*Ps 44:13,15-16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Niego z ra", + "id": "Introitus" + }, + { + "body": "Boże, któryś zrządził, że za zwiastowaniem anielskim w żywocie Najświętszej Maryi Panny Słowo Twoje Ciałem się stało, po", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 7:10-15*\nW one dni: Rzekł Pan do Achaza, mówiąc: «Proś Pana Boga twego o znak dl", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Łk 1:28*\nZdrowaś, Maryjo, łaski pełna; Pan z Tobą; błogosławionaś Ty między niewiastami. Alleluja.\n*", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28,42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą: błogosławionaś Ty między niewiastami, i błogosławiony owoc żywota", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, utwierdź w duszach naszych tajemnice prawdziwej wiary, abyśmy wyznając prawdziwe bóstwo i człowiecze", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*Iz 7:14*\nOto Panna pocznie i porodzi Syna i nazwą imię Jego Emmanuel. (O. W. Alleluja.)", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, wlej w nasze serca swoją łaskę, abyśmy poznawszy za zwiastowaniem anielskim wcielenie Chrystusa, Syn", + "id": "Postcommunio" + } + ], + "2024-04-09": [ + { + "body": "*1 P 2:2*\nJako dopiero narodzone niemowlęta, alleluja, pożądajcie duchowego, czystego mleka, alleluja, alleluja alleluja", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy ukończywszy obchód świąt wielkanocnych, za łaską Twoją zachowali ich ducha", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 5:4-10*\n*Chrystus żyje i działa w nas przez trzy elementy: wodę Chrztu, Kr", + "id": "Lectio" + }, + { + "body": "\n*Mt 28:7*\nW dzień mojego Zmartwychwstania – mówi Pan – pójdę przed wami do Galilei. \n*J 20:26*\nPo ośmiu dniach, mimo dr", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:19-31*\nOnego czasu: Wieczorem dnia owego, pierwszego po szabacie, gdy", + "id": "Evangelium" + }, + { + "body": "*Mt 28:2; 28:5-6*\nAnioł Pański zstąpił z nieba i rzekł niewiastom: Ten, którego szukacie zmartwychwstał jak zapowiedział", + "id": "Offertorium" + }, + { + "body": "Przyjmij prosimy Cię, Panie, dary weselącego się Kościoła i skoro dałeś mu powód do tak wielkiej radości, udziel mu jako", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 20:27*\nWłóż rękę twoją i rozpoznaj miejsce gwoździ, alleluja i nie bądź niewiernym lecz wierzącym, alleluja, alleluja", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się leka", + "id": "Postcommunio" + } + ], + "2024-04-10": [ + { + "body": "*1 P 2:2*\nJako dopiero narodzone niemowlęta, alleluja, pożądajcie duchowego, czystego mleka, alleluja, alleluja alleluja", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy ukończywszy obchód świąt wielkanocnych, za łaską Twoją zachowali ich ducha", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 5:4-10*\n*Chrystus żyje i działa w nas przez trzy elementy: wodę Chrztu, Kr", + "id": "Lectio" + }, + { + "body": "\n*Mt 28:7*\nW dzień mojego Zmartwychwstania – mówi Pan – pójdę przed wami do Galilei. \n*J 20:26*\nPo ośmiu dniach, mimo dr", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:19-31*\nOnego czasu: Wieczorem dnia owego, pierwszego po szabacie, gdy", + "id": "Evangelium" + }, + { + "body": "*Mt 28:2; 28:5-6*\nAnioł Pański zstąpił z nieba i rzekł niewiastom: Ten, którego szukacie zmartwychwstał jak zapowiedział", + "id": "Offertorium" + }, + { + "body": "Przyjmij prosimy Cię, Panie, dary weselącego się Kościoła i skoro dałeś mu powód do tak wielkiej radości, udziel mu jako", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 20:27*\nWłóż rękę twoją i rozpoznaj miejsce gwoździ, alleluja i nie bądź niewiernym lecz wierzącym, alleluja, alleluja", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się leka", + "id": "Postcommunio" + } + ], + "2024-04-11": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego Leona, Papieża, ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Mt 16:18*\n℣. Ty jesteś Opoką, a na tej Opoce zbuduję Kościół mój. Alleluja.\n*Ps 44:17-18*\nUstanowis", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + } + ], + "2024-04-12": [ + { + "body": "*1 P 2:2*\nJako dopiero narodzone niemowlęta, alleluja, pożądajcie duchowego, czystego mleka, alleluja, alleluja alleluja", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy ukończywszy obchód świąt wielkanocnych, za łaską Twoją zachowali ich ducha", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 5:4-10*\n*Chrystus żyje i działa w nas przez trzy elementy: wodę Chrztu, Kr", + "id": "Lectio" + }, + { + "body": "\n*Mt 28:7*\nW dzień mojego Zmartwychwstania – mówi Pan – pójdę przed wami do Galilei. \n*J 20:26*\nPo ośmiu dniach, mimo dr", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:19-31*\nOnego czasu: Wieczorem dnia owego, pierwszego po szabacie, gdy", + "id": "Evangelium" + }, + { + "body": "*Mt 28:2; 28:5-6*\nAnioł Pański zstąpił z nieba i rzekł niewiastom: Ten, którego szukacie zmartwychwstał jak zapowiedział", + "id": "Offertorium" + }, + { + "body": "Przyjmij prosimy Cię, Panie, dary weselącego się Kościoła i skoro dałeś mu powód do tak wielkiej radości, udziel mu jako", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 20:27*\nWłóż rękę twoją i rozpoznaj miejsce gwoździ, alleluja i nie bądź niewiernym lecz wierzącym, alleluja, alleluja", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się leka", + "id": "Postcommunio" + } + ], + "2024-04-13": [ + { + "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Boże, Ty nauczyłeś świętego Hermenegilda niżej cenić ziemskie królestwo od niebieskiego: daj nam, abyśmy za jego przykła", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 5:1-5*\nSprawiedliwi staną z wielką stanowczością naprzeciw tych, którzy ich uciskali i ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:26-33*\nOnego czasu: Mówił Jezus do rzesz: «Jeśli kto przychodzi d", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią, alleluja, alleluja", + "id": "Communio" + }, + { + "body": "Daj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Świętych Twoich w wieczności, jak z radością czcimy ", + "id": "Postcommunio" + } + ], + "2024-04-14": [ + { + "body": "*Ps 32:5-6*\nPełna jest ziemia łaskawości Pana, alleluja, przez słowo Pana stały się niebiosa, alleluja, alleluja.\n*Ps 32", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez uniżenie się Syna Twojego podźwignął upadły świat, napełnij wiernych Twoich nieustannym weselem, aby ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:21-25*\nNajmilsi: Chrystus cierpiał zostawiając wam przykład, abyście w", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Łk 24:35*\nPoznali uczniowie Pana Jezusa przy łamaniu chleba. Alleluja.\n*J 10:14*\nJam jest Pasterz do", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nBoże, moim jesteś Bogiem, pilnie Ciebie szukam; i w imię Twoje będę wznosił me ręce, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niech święta ofiara zawsze sprowadza na nas zbawienne błogosławieństwo, i swoją mocą urzeczywistnia to, co się do", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest Pasterz dobry, alleluja: znam owce moje i znają mnie moje, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię wszechmogący Boże, spraw, abyśmy otrzymawszy Twoją życiodajną łaskę, zawsze szczycili się z Twojego daru.\nPr", + "id": "Postcommunio" + } + ], + "2024-04-15": [ + { + "body": "*Ps 32:5-6*\nPełna jest ziemia łaskawości Pana, alleluja, przez słowo Pana stały się niebiosa, alleluja, alleluja.\n*Ps 32", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez uniżenie się Syna Twojego podźwignął upadły świat, napełnij wiernych Twoich nieustannym weselem, aby ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:21-25*\nNajmilsi: Chrystus cierpiał zostawiając wam przykład, abyście w", + "id": "Lectio" + }, + { + "body": "\n*Łk 24:35*\nPoznali uczniowie Pana Jezusa przy łamaniu chleba. \n*J 10:14*\nJam jest Pasterz dobry. Znam owce swoje i znaj", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nBoże, moim jesteś Bogiem, pilnie Ciebie szukam; i w imię Twoje będę wznosił me ręce, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niech święta ofiara zawsze sprowadza na nas zbawienne błogosławieństwo, i swoją mocą urzeczywistnia to, co się do", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest Pasterz dobry, alleluja: znam owce moje i znają mnie moje, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię wszechmogący Boże, spraw, abyśmy otrzymawszy Twoją życiodajną łaskę, zawsze szczycili się z Twojego daru.\nPr", + "id": "Postcommunio" + } + ], + "2024-04-16": [ + { + "body": "*Ps 32:5-6*\nPełna jest ziemia łaskawości Pana, alleluja, przez słowo Pana stały się niebiosa, alleluja, alleluja.\n*Ps 32", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez uniżenie się Syna Twojego podźwignął upadły świat, napełnij wiernych Twoich nieustannym weselem, aby ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:21-25*\nNajmilsi: Chrystus cierpiał zostawiając wam przykład, abyście w", + "id": "Lectio" + }, + { + "body": "\n*Łk 24:35*\nPoznali uczniowie Pana Jezusa przy łamaniu chleba. \n*J 10:14*\nJam jest Pasterz dobry. Znam owce swoje i znaj", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nBoże, moim jesteś Bogiem, pilnie Ciebie szukam; i w imię Twoje będę wznosił me ręce, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niech święta ofiara zawsze sprowadza na nas zbawienne błogosławieństwo, i swoją mocą urzeczywistnia to, co się do", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest Pasterz dobry, alleluja: znam owce moje i znają mnie moje, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię wszechmogący Boże, spraw, abyśmy otrzymawszy Twoją życiodajną łaskę, zawsze szczycili się z Twojego daru.\nPr", + "id": "Postcommunio" + } + ], + "2024-04-17": [ + { + "body": "*Ps 32:5-6*\nPełna jest ziemia łaskawości Pana, alleluja, przez słowo Pana stały się niebiosa, alleluja, alleluja.\n*Ps 32", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez uniżenie się Syna Twojego podźwignął upadły świat, napełnij wiernych Twoich nieustannym weselem, aby ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Aniceta, Papieża i Męczennika*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustan", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:21-25*\nNajmilsi: Chrystus cierpiał zostawiając wam przykład, abyście w", + "id": "Lectio" + }, + { + "body": "\n*Łk 24:35*\nPoznali uczniowie Pana Jezusa przy łamaniu chleba. \n*J 10:14*\nJam jest Pasterz dobry. Znam owce swoje i znaj", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nBoże, moim jesteś Bogiem, pilnie Ciebie szukam; i w imię Twoje będę wznosił me ręce, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niech święta ofiara zawsze sprowadza na nas zbawienne błogosławieństwo, i swoją mocą urzeczywistnia to, co się do", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Aniceta, Papieża i Męczennika*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trz", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest Pasterz dobry, alleluja: znam owce moje i znają mnie moje, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię wszechmogący Boże, spraw, abyśmy otrzymawszy Twoją życiodajną łaskę, zawsze szczycili się z Twojego daru.\nPr", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Aniceta, Papieża i Męczennika*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez ś", + "id": "Commemoratio Postcommunio" + } + ], + "2024-04-18": [ + { + "body": "*Ps 32:5-6*\nPełna jest ziemia łaskawości Pana, alleluja, przez słowo Pana stały się niebiosa, alleluja, alleluja.\n*Ps 32", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez uniżenie się Syna Twojego podźwignął upadły świat, napełnij wiernych Twoich nieustannym weselem, aby ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:21-25*\nNajmilsi: Chrystus cierpiał zostawiając wam przykład, abyście w", + "id": "Lectio" + }, + { + "body": "\n*Łk 24:35*\nPoznali uczniowie Pana Jezusa przy łamaniu chleba. \n*J 10:14*\nJam jest Pasterz dobry. Znam owce swoje i znaj", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nBoże, moim jesteś Bogiem, pilnie Ciebie szukam; i w imię Twoje będę wznosił me ręce, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niech święta ofiara zawsze sprowadza na nas zbawienne błogosławieństwo, i swoją mocą urzeczywistnia to, co się do", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest Pasterz dobry, alleluja: znam owce moje i znają mnie moje, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię wszechmogący Boże, spraw, abyśmy otrzymawszy Twoją życiodajną łaskę, zawsze szczycili się z Twojego daru.\nPr", + "id": "Postcommunio" + } + ], + "2024-04-19": [ + { + "body": "*Ps 32:5-6*\nPełna jest ziemia łaskawości Pana, alleluja, przez słowo Pana stały się niebiosa, alleluja, alleluja.\n*Ps 32", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez uniżenie się Syna Twojego podźwignął upadły świat, napełnij wiernych Twoich nieustannym weselem, aby ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:21-25*\nNajmilsi: Chrystus cierpiał zostawiając wam przykład, abyście w", + "id": "Lectio" + }, + { + "body": "\n*Łk 24:35*\nPoznali uczniowie Pana Jezusa przy łamaniu chleba. \n*J 10:14*\nJam jest Pasterz dobry. Znam owce swoje i znaj", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nBoże, moim jesteś Bogiem, pilnie Ciebie szukam; i w imię Twoje będę wznosił me ręce, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niech święta ofiara zawsze sprowadza na nas zbawienne błogosławieństwo, i swoją mocą urzeczywistnia to, co się do", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest Pasterz dobry, alleluja: znam owce moje i znają mnie moje, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię wszechmogący Boże, spraw, abyśmy otrzymawszy Twoją życiodajną łaskę, zawsze szczycili się z Twojego daru.\nPr", + "id": "Postcommunio" + } + ], + "2024-04-20": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Lb 17:8*\nZakwitła różdżka Jessego: Dziewica zrodziła Boga-Człowieka. Bóg światu przywrócił pokój, j", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:25-27*\nOnego czasu: Pod krzyżem Jezusowym stała Matka Jego i siostra ", + "id": "Evangelium" + }, + { + "body": "Błogosławiona jesteś, Panno Maryjo, któraś nosiła Stwórcę wszechrzeczy. Porodziłaś Tego, który Cię stworzył, i na wieki ", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2024-04-21": [ + { + "body": "*Ps 65:1-2*\nZ radością sławcie Boga, wszystkie ziemie, alleluja, opiewajcie chwałę Jego imienia, alleluja, alleluja, all", + "id": "Introitus" + }, + { + "body": "Boże, Ty ukazujesz błądzącym światło Twej prawdy, aby mogli wrócić na drogę sprawiedliwości; spraw, niech wszyscy uważaj", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:11-19*\nNajmilsi: Proszę was, abyście jako przychodnie i goście powstrz", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 110:9*\nPan zesłał odkupienie swojemu ludowi. Alleluja.\n*Łk 24:46*\nTrzeba było, aby Chrystus cierp", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:16-22*\nOnego czasu rzekł Jezus uczniom swoim: «Już niedługo, a nie bę", + "id": "Evangelium" + }, + { + "body": "*Ps 145:2*\nChwal, duszo moja, Pana! Boga wielbić pragnę przez całe me życie; śpiewać Mu będę, dopóki będę żył, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, przez te misteria udziel nam pomocy abyśmy poskramiali ziemskie pragnienia i nauczyli się miłować rzeczy niebiesk", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 16:16*\nJuż niedługo, a nie będziecie Mnie oglądać, alleluja; i znowu niedługo, a ujrzycie Mnie, bo idę do Ojca, allel", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech Sakrament, który przyjęliśmy, nasyci nas pokarmem duchowym i udzieli pomocy doczesnej.\nPrzez P", + "id": "Postcommunio" + } + ], + "2024-04-22": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego N., (Twojego Męc", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Mt 16:18*\n℣. Ty jesteś Opoką, a na tej Opoce zbuduję Kościół mój. Alleluja.\n*Ps 44:17-18*\nUstanowis", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + } + ], + "2024-04-23": [ + { + "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech św. Wojciech, Biskup i Męczennik, wyjedna nam Twoje miłosierdzie, abyś łaskawie odpuścił nam g", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 5:1-6*\nBracia: Każdy arcykapłan, spośród ludzi wzięty, dl", + "id": "Lectio" + }, + { + "body": "*J 10:14*\nJam jest pasterz dobry: znam swoje owce i one mnie znają. Alleluja.\n*Ps 109:4*\n℣. Tyś kapłanem na wieki na wzó", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni; błagał Cię o życie, a Tyś go nim obdarzył, alleluja.", + "id": "Offertorium" + }, + { + "body": "Racz, Panie, łaskawie przyjąć złożoną ofiarę: niech nam wyjedna odpuszczenie win, gdy składamy ją imieniu Twemu w uroczy", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest pasterz dobry, alleluja; znam swoje owce i one mnie znają, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Pokrzepieni świętymi darami, kornie błagamy Cię, Panie, aby orędownictwo św. Wojciecha, Męczennika Twego i Biskupa, zaws", + "id": "Postcommunio" + } + ], + "2024-04-24": [ + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie jeg", + "id": "Introitus" + }, + { + "body": "Boże, Ty św. Fidelisa, gorejącego seraficzną żarliwością ducha, ozdobiłeś palmą męczeństwa i sławą cudów przy głoszeniu ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 10: 10-14*\n*Opatrzność Boża kierowała losami prześladowanego patriarchy Jakuba i Józefa", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:34-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie mniemajcie, ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 16:24*\nJeśli kto chce za mną iść, niech się zaprze samego siebie i weźmie krzyż swój, i naśladuje mnie.", + "id": "Communio" + }, + { + "body": "Daj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wieczności, jak z radością czcimy ", + "id": "Postcommunio" + } + ], + "2024-04-25": [ + { + "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Boże, który zaszczyciłeś św. Marka, Twego Ewangelistę, łaską przepowiadania Ewangelii; daj, prosimy, abyśmy zawsze odnos", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Dni Krzyżowych*\nWszechmogący Boże, w naszym utrapieniu ufamy Twojej dobroci; spraw, prosimy, aby Twoja opie", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 1:10-14*\n*Proroctwo Ezechiela rozpoczyna się wizją tronu Bożego, unoszonego prz", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", + "id": "Offertorium" + }, + { + "body": "Składając Ci dary w uroczystość św. Marka Twego Ewangelisty, prosimy Cię, Panie, aby jego orędownictwo tak uczyniło nas ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Dni Krzyżowych*\nProsimy Cię, Panie, niech ta ofiara oswobodzi nas z więzów naszych nałogów i wyjedna nam da", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią, alleluja, alleluja", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech Twój Sakrament stanie się dla nas źródłem nieustannej pomocy, a dzięki modłom św. Marka, Ewang", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Dni Krzyżowych*\nProsimy Cię, Panie, przyjmij nasze modlitwy z ojcowską dobrocią, a gdy wśród utrapień otrzy", + "id": "Commemoratio Postcommunio" + } + ], + "2024-04-26": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego N., (Twojego Męc", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Mt 16:18*\n℣. Ty jesteś Opoką, a na tej Opoce zbuduję Kościół mój. Alleluja.\n*Ps 44:17-18*\nUstanowis", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + } + ], + "2024-04-27": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, który dla obrony prawdziwej wiary uzbroiłeś cnotą i nauką św. Piotra, Twego Wyznawcę, spraw łaskawie, niech błądzą", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Syr 45:9*\nUmiłował go Pan i przyozdobił, przyodział go szatą chwały. Alleluja.\n*Oz 14:6*\nSprawiedli", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Piotra Kanizjusza, Twego Biskupa i Doktora, która zaleci Tob", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty Piotr Kanizjusz, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofi", + "id": "Postcommunio" + } + ], + "2024-04-28": [ + { + "body": "*Ps 97:1; 97:2*\nŚpiewajcie Panu pieśń nową, alleluja, albowiem Pan uczynił cuda, alleluja,\nw oczach pogan okazał swoją s", + "id": "Introitus" + }, + { + "body": "Boże, który sprawiasz, że dusze Twych wiernych mają jedno dążenie, daj ludom Twoim to miłować, co nakazujesz, tego pragn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 1:17-21*\nNajmilsi: Wszelki dar dobry i każda wzniosła łaska z wysoka poch", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:16*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Alleluja.\n*Rz 6:9*\nChrystus po", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:5-14*\nOnego czasu: rzekł Jezus uczniom swoim: «Idę do Tego, który mni", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 85:16*\nZ radością sławcie Boga, wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się B", + "id": "Offertorium" + }, + { + "body": "Boże, który przez przedziwną wymianę dokonującą się w tej ofierze czynisz nas uczestnikami jedynego i najwyższego Bóstwa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 16:8*\nGdy przyjdzie Pocieszyciel, Duch prawdy, przekona świat o grzechu, o sprawiedliwości i o sądzie, alleluja, alle", + "id": "Communio" + }, + { + "body": "Przybądź nam z pomocą, Panie, Boże nasz, aby Sakrament, któryśmy z wiarą przyjęli, oczyścił nas z wad i uchronił od wszy", + "id": "Postcommunio" + } + ], + "2024-04-29": [ + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie jeg", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, abyśmy z należną gorliwością naśladowali wiarę świętego Piotra, Twego Męczennika,", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 2:8-10; 3:10-12*\nNajmilszy: Pamiętaj, że Pan Jezus Chrystu", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:34-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie mniemajcie, ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, łaskawie wysłuchaj naszych próśb, które do Ciebie zanosimy za wstawiennictwem świętego Piotra, Twego Męczennika, ", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 16:24*\nJeśli kto chce za mną iść, niech się zaprze samego siebie i weźmie krzyż swój, i naśladuje mnie.", + "id": "Communio" + }, + { + "body": "Panie, niech Sakrament, któryśmy przyjęli, strzeże wiernych Twoich, i za wstawiennictwem św. Piotra, Twego Męczennika, b", + "id": "Postcommunio" + } + ], + "2024-04-30": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy N., nabyli uczu", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Ps 44:15-16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą do niego z radością. Alleluja.\n*Ps", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2024-05-01": [ + { + "body": "*Mdr 10:17*\nMądrość oddała sprawiedliwym nagrodę za ich pracę i prowadziła ich przedziwną drogą, i była im we dnie zasło", + "id": "Introitus" + }, + { + "body": "Boże, Stwórco wszechrzeczy, który nałożyłeś na rodzaj ludzki obowiązek pracy, spraw łaskawie, abyśmy za przykładem i pod", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:14-15, 17, 23-24*\nBracia: Miejcie miłość, która jest węzłem ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\nW jakimkolwiek nieszczęściu wzywać mnie będą, wysłucham ich, i będę ich opiekunem. Alleluja.\n℣. Spraw", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:54-58*\nOnego czasu: Jezus przyszedłszy do ojczyzny swojej naucza", + "id": "Evangelium" + }, + { + "body": "*Ps 89:17*\nDobroć Pana Boga naszego niechaj będzie nad nami; szczęść nam w pracy rąk naszych i poszczęść dziełu rąk nasz", + "id": "Offertorium" + }, + { + "body": "Dary, które składamy Ci, Panie, z pracy rąk naszych, niech się staną za przyczyną św. Józefa zadatkiem naszej jedności i", + "id": "Secreta" + }, + { + "body": "*Prefacja o św. Józefie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali ", + "id": "Prefatio" + }, + { + "body": "*Mt 13:54-55*\nSkądże Mu ta mądrość i moc? Czyż nie jest to syn cieśli i czyż matki Jego nie zwą Maryja? (O. W. Alleluja.", + "id": "Communio" + }, + { + "body": "Panie, niech te święte dary, które spożyliśmy, dopełnią za wstawiennictwem św. Józefa nasze działanie i zapewnią nam nag", + "id": "Postcommunio" + } + ], + "2024-05-02": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Wysłuchaj, prosimy Cię, Panie, naszych modlitw, które zanosimy w uroczystość św. Atanazego, Twego wyznawcy i Biskupa, a ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 4:5-14*\nBracia: Nie samych siebie głosimy, ale Jezusa Chry", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Ps 109:4*\n℣. Tyś kapłanem na wieki na wzór Melchizedeka. Alleluja.\n*Jk 1:12*\nBłogosławiony człowiek", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:23-28*\nOnego czasu: Rzekł Jezus uczniom swoim: «Gdy was prześlad", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech doroczna uroczystość św. Atanazego, Twego Wyznawcy i Biskupa, uczyni nas godnymi Twojej miłośc", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 10:27*\nCo wami mówię w ciemności, opowiadajcie na świetle, mówi Pan; i co usłyszycie na ucho, głoście na dachach, al", + "id": "Communio" + }, + { + "body": "Boże, Ty nagradzasz dusze wierne; spraw, abyśmy dostąpili przebaczenia przez prośby św. Atanazego, Twego Wyznawcy i Bisk", + "id": "Postcommunio" + } + ], + "2024-05-03": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci Najświętszej Maryi Panny; z Jej uroczystości radują się Anioło", + "id": "Introitus" + }, + { + "body": "Wszechmogący i miłosierny Boże, któryś dał nam w Najświętszej Maryi Pannie przedziwną pomoc dla obrony naszego narodu, s", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Judyty.\n*Jdt 13:22; 13:23-25*\nPobłogosławił Cię Pan w mocy swojej, bo przez Cię wniwecz obrócił naszyc", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Pnp 6:3; 6:9*\n℣. Cała piękna jesteś i pełna wdzięku, córko syjońska! Piękna jak księżyc, wybrana jak", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:25-27*\nOnego czasu: Pod krzyżem Jezusowym stała Matka Jego i siostra ", + "id": "Evangelium" + }, + { + "body": "*Jer 18:20*\nPamiętaj o nas, Matko Dziewico, przed obliczem Boga, abyś prosiła o dobra dla nas i aby od nas odwrócił swój", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, jaką Ci składamy czcząc pamięć najłaskawszej Dziewicy Maryi, która nas pociesza w każdym utrapi", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Najdostojniejsza Królowo świata, Maryjo, zawsze Dziewico, któraś porodziła Chrystusa Pana, Zbawiciela wszystkich ludzi, ", + "id": "Communio" + }, + { + "body": "Boże, któryś dał nam Najświętszą Dziewicę Maryję za szczególną Patronkę, spraw łaskawie, abyśmy zasileni Twoim świętym d", + "id": "Postcommunio" + } + ], + "2024-05-04": [ + { + "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Boże, który sprawiasz nam radość z uroczystości św. Floriana, Twego Męczennika, daj łaskawie, byśmy czcząc chwalebne jeg", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Moniki, Wdowy*\nBoże, pocieszycielu zasmuconych i nadziejo ufających Tobie, któryś miłosiernie przyjął r", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 5:1-5*\nSprawiedliwi staną z wielką stanowczością naprzeciw tych, którzy ich uciskali i ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:1-7*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jam jest prawdziwy krze", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Boże, niech zaleci Tobie ten dar ofiarny dostojna modlitwa św. Floriana, Twego Męczennika, który, zniewolon", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Moniki, Wdowy*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią, alleluja, alleluja", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech uczestnictwo w niebieskim Sakramencie chroni nas od podstępnej napaści wroga i za przyczyną św", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Moniki, Wdowy*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-05": [ + { + "body": "*Iz 48:20*\nRadosną nowinę głoście, niech będzie słyszana, alleluja, po krańce ziemi rozpowiadajcie, iż Pan swój naród wy", + "id": "Introitus" + }, + { + "body": "Boże, od Ciebie pochodzi wszystko, co dobre; pokornie Cię prosimy, aby z Twojego natchnienia myśli nasze były prawe i po", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 1:22-27*\nNajmilsi: Bądźcie wykonawcami słowa, a nie tylko słuchaczami, os", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n℣. Powstał Chrystus z martwych i zajaśniał nam, których Krwią swoją odkupił. Alleluja.\n*J 16:28*\nWysz", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:23-30*\n*Związek chrześcijan z Chrystusem jest tak ścisły, że ich modl", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9; 65:20*\n*Przez Chrzest święty zostaliśmy przeznaczeni do życia.*\nBłogosławcie, ludy, naszemu Bogu i sławę Jeg", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich złożone, a nabożne sprawowanie służby Twojej niech na", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Ps 95:2*\nŚpiewajcie Panu, alleluja; śpiewajcie Panu i błogosławcie Jego imieniu; z dnia na dzień zwiastujcie zbawienie ", + "id": "Communio" + }, + { + "body": "Spraw, Panie, abyśmy posileni niebieskim pokarmem, pragnęli tego, co prawe i osiągnęli to, czego pragniemy.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-05-06": [ + { + "body": "*Dz 1:11*\nMężowie Galilejscy, czemu stoicie zapatrzeni w niebo? Alleluja. Jak widzieliście Go wstępującego do nieba, tak", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wierzymy, że Twój Syn Jednorodzony, nasz Zbawiciel, w dniu dzisiejszym wstąpił do nieba; spraw prosim", + "id": "Oratio" + }, + { + "body": "Czytania z Dziejów Apostolskich\n*Dz 1:1-11*\n*Wstęp do księgi Dziejów Apostolskich to równocześnie wstęp do dziejów Kości", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. \n*Ps 67:18-19*\n℣. Pan z Synaju zdąża ku świątyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:14-20*\nOnego czasu: Ukazał się Jezus jedenastu, gdy siedzieli u sto", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. Alleluja.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, te dary, które Ci składamy dla uczczenia chwalebnego Wniebowstąpienia Syna Twojego i pozwól łaskawie, a", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nŚpiewajcie psalm Panu, który wstępuje ponad najwyższe niebiosa odwieczne, alleluja.", + "id": "Communio" + }, + { + "body": "Wszechmogący i miłosierny Boże, Ciebie prosimy, daj nam osiągnąć niewidzialny skutek tego, cośmy widomie w sakramencie s", + "id": "Postcommunio" + } + ], + "2024-05-07": [ + { + "body": "*Dz 1:11*\nMężowie Galilejscy, czemu stoicie zapatrzeni w niebo? Alleluja. Jak widzieliście Go wstępującego do nieba, tak", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wierzymy, że Twój Syn Jednorodzony, nasz Zbawiciel, w dniu dzisiejszym wstąpił do nieba; spraw prosim", + "id": "Oratio" + }, + { + "body": "Czytania z Dziejów Apostolskich\n*Dz 1:1-11*\n*Wstęp do księgi Dziejów Apostolskich to równocześnie wstęp do dziejów Kości", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. \n*Ps 67:18-19*\n℣. Pan z Synaju zdąża ku świątyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:14-20*\nOnego czasu: Ukazał się Jezus jedenastu, gdy siedzieli u sto", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. Alleluja.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, te dary, które Ci składamy dla uczczenia chwalebnego Wniebowstąpienia Syna Twojego i pozwól łaskawie, a", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nŚpiewajcie psalm Panu, który wstępuje ponad najwyższe niebiosa odwieczne, alleluja.", + "id": "Communio" + }, + { + "body": "Wszechmogący i miłosierny Boże, Ciebie prosimy, daj nam osiągnąć niewidzialny skutek tego, cośmy widomie w sakramencie s", + "id": "Postcommunio" + } + ], + "2024-05-08": [ + { + "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Boże, za Twój Kościół zginął pod mieczami bezbożnych chwalebny Biskup Stanisław; spraw, prosimy, aby wszyscy, którzy wzy", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 5:1-6*\nBracia: Każdy arcykapłan, spośród ludzi wzięty, dl", + "id": "Lectio" + }, + { + "body": "*J 10:14*\nJam jest pasterz dobry: znam swoje owce i one mnie znają. Alleluja.\n*Ps 109:4*\n℣. Tyś kapłanem na wieki na wzó", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni; błagał Cię o życie, a Tyś go nim obdarzył, alleluja.", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, złożone Ci dary, i za przyczyną św. Stanisława, Twego Męczennika i Biskupa, daj się przez nie przebłagać", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest pasterz dobry, alleluja; znam swoje owce i one mnie znają, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną św. Stanisława, Twego Męczennika i Biskupa, stanie się ", + "id": "Postcommunio" + } + ], + "2024-05-09": [ + { + "body": "*Dz 1:11*\nMężowie Galilejscy, czemu stoicie zapatrzeni w niebo? Alleluja. Jak widzieliście Go wstępującego do nieba, tak", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wierzymy, że Twój Syn Jednorodzony, nasz Zbawiciel, w dniu dzisiejszym wstąpił do nieba; spraw prosim", + "id": "Oratio" + }, + { + "body": "Czytania z Dziejów Apostolskich\n*Dz 1:1-11*\n*Wstęp do księgi Dziejów Apostolskich to równocześnie wstęp do dziejów Kości", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. Alleluja.\n*Ps 67:18-19*\n℣. Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:14-20*\nOnego czasu: Ukazał się Jezus jedenastu, gdy siedzieli u sto", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. Alleluja.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, te dary, które Ci składamy dla uczczenia chwalebnego Wniebowstąpienia Syna Twojego i pozwól łaskawie, a", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nŚpiewajcie psalm Panu, który wstępuje ponad najwyższe niebiosa odwieczne, alleluja.", + "id": "Communio" + }, + { + "body": "Wszechmogący i miłosierny Boże, Ciebie prosimy, daj nam osiągnąć niewidzialny skutek tego, cośmy widomie w sakramencie s", + "id": "Postcommunio" + } + ], + "2024-05-10": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Panie, niech nas wspomagają zasługi św. Antonina, Twego Wyznawcy i Biskupa, abyśmy tak wielbili Twoje miłosierdzie wobec", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Gordiana i Epimacha*\nDaj, prosimy Cię, wszechmogący Boże, abyśmy obchodząc uroczystość świętych Męczenn", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Ps 109:4*\nTyś kapłanem na wieki na wzór Melchizedeka. Alleluja.\n℣. Oto kapłan, którego uwieńczył Pa", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Gordiana i Epimacha*\nPanie, przyjmij łaskawie przez zasługi świętych Męczenników Twoich Gordiana i Epim", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Gordiana i Epimacha*\nProsimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, za wstawi", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-11": [ + { + "body": "*Neh 9:27*\nCzasu utrapienia swego wołali do Cienie, Panie, a Ty wysłuchiwałeś ich z nieba, alleluja, alleluja.\n*Ps 32:1*", + "id": "Introitus" + }, + { + "body": "Boże, Ty co roku uweselasz nas uroczystością świętych Apostołów Twoich Filipa i Jakuba; spraw łaskawie, abyśmy zapalali ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 5:1-5*\nSprawiedliwi staną z wielką stanowczością naprzeciw tych, którzy ich uciskali i ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*J 14", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 14:1-13*\n*Po Ostatniej Wieczerzy Chrystus poucza św. Filipa i innych Apo", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie dary, które składamy w uroczystość Apostołów Twoich Filipa i Jakuba, i odwróć od nas wszelkie n", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*J 14:9; 14:10*\n*Przyjmując w Eucharystii Chrystusa, jednoczymy się z Trójcą Przenajświętszą.*\nTak długo jestem z wami, ", + "id": "Communio" + }, + { + "body": "Nasyceni zbawiennym Sakramentem prosimy Cię, Panie, aby wspierały nas modły tych, których uroczystość obchodzimy.\nPrzez ", + "id": "Postcommunio" + } + ], + "2024-05-12": [ + { + "body": "*Ps 26:7; 26:8; 26:9*\nUsłysz, Panie, głos mój, którym wołam, alleluja, do Ciebie mówi serce moje, oblicze moje Cię szuka", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, spraw, aby nasza wola zawsze była Ci oddana i abyśmy szczerym sercem służyli Twojemu majesta", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 4:7-11*\nNajmilsi: Bądźcie roztropni i czuwajcie w modlitwach. A nade wsz", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 46:9*\n℣. Pan króluje nad narodami, Bóg zasiada na swym świętym tronie. Alleluja.\n*J 14:18*\n℣. Nie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:26-27; 16:1-4*\n*Duch Święty zawsze udziela Kościołowi sił potrzebnych", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nWstępuje Bóg wśród radosnych okrzyków, wstępuje Pan przy dźwięku trąby, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niechaj niepokalana ofiara oczyści nas i umocni nasze dusze łaską niebieską.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*J 17:12-13; 17:15*\nOjcze, gdy byłem z nimi, strzegłem tych, których mi dałeś, alleluja: a teraz idę do Ciebie. Nie pros", + "id": "Communio" + }, + { + "body": "Nasyceni świętymi darami, prosimy Cię, Panie, abyśmy zawsze trwali w dziękczynieniu.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-05-13": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś dla usunięcia podstępnych błędów i dla obrony praw Stolicy Apostolskiej ozdobił św. Roberta, Twego Biskupa i D", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 7:7-14*\nPragnąłem, a dano mi zrozumienie; i błagałem, a spłynął na mnie duch mądrości. ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n℣. Uczeni będą świecić jak światłość sklepienia. Alleluja.\n℣. Którzy ku sprawiedliwości wprawiają wi", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 72:28*\nMnie zaś dobrze jest być blisko Boga, w Panu Bogu pokładać nadzieję i głosić wszystkie dzieła Twoje w bramach", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, dary ofiarne jako miłą wonność; spraw, abyśmy pouczeni nauką i przykładem św. Roberta z radosnym ser", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Mt 5:14; 5:16*\nWy jesteście światłością świata. Tak niechaj świeci światłość wasza przed ludźmi, aby widzieli dobre czy", + "id": "Communio" + }, + { + "body": "Panie Boże nasz, niech przyjęty przez nas Sakrament podtrzymuje w nas żar miłości, którym rozpalony św. Robert poświęcał", + "id": "Postcommunio" + } + ], + "2024-05-14": [ + { + "body": "*Ps 26:7; 26:8; 26:9*\nUsłysz, Panie, głos mój, którym wołam, alleluja, do Ciebie mówi serce moje, oblicze moje Cię szuka", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, spraw, aby nasza wola zawsze była Ci oddana i abyśmy szczerym sercem służyli Twojemu majesta", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Bonifacego, Męczennika*\nDaj, prosimy Cię, wszechmogący Boże, abyśmy obchodząc uroczystość św. Męczennik", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 4:7-11*\nNajmilsi: Bądźcie roztropni i czuwajcie w modlitwach. A nade wsz", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:9*\n℣. Pan króluje nad narodami, Bóg zasiada na swym świętym tronie. \n*J 14:18*\n℣. Nie pozostawię was sierotami, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:26-27; 16:1-4*\n*Duch Święty zawsze udziela Kościołowi sił potrzebnych", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nWstępuje Bóg wśród radosnych okrzyków, wstępuje Pan przy dźwięku trąby, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niechaj niepokalana ofiara oczyści nas i umocni nasze dusze łaską niebieską.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Bonifacego, Męczennika*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieski", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*J 17:12-13; 17:15*\nOjcze, gdy byłem z nimi, strzegłem tych, których mi dałeś, alleluja: a teraz idę do Ciebie. Nie pros", + "id": "Communio" + }, + { + "body": "Nasyceni świętymi darami, prosimy Cię, Panie, abyśmy zawsze trwali w dziękczynieniu.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Bonifacego, Męczennika*\nPokrzepieni uczestnictwem w świętej uczcie prosimy Cię, Panie, Boże nasz, abyśm", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-15": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, Tyś powołał świętego Wyznawcę Jana Chrzciciela do chrześcijańskiego wychowania ubogich i umacniania młodzieży na d", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Jk 1:12.*\nBłogosławiony człowiek, który zniesie pokusę, bo utwierdziwszy się, otrzyma wieniec żywota", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-5*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2024-05-16": [ + { + "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Boże, który świętego Andrzeja udręczonego rozlicznymi katuszami za wyznawanie prawdziwej wiary uwieńczyłeś świetnym męcz", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Ubalda, Biskupa i Wyznawcy*\nPanie, udziel nam łaskawie Twej pomocy i za wstawiennictwem św. Wyznawcy Tw", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 2:8-10; 3:10-12*\nNajmilszy: Pamiętaj, że Pan Jezus Chrystu", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:1-7*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jam jest prawdziwy krze", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, niepokalaną ofiarę Jednorodzonego Syna Twego, usilnie błagając, abyśmy przez modlitwę i orędownictwo", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Ubalda, Biskupa i Wyznawcy*\nPanie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią, alleluja, alleluja", + "id": "Communio" + }, + { + "body": "Panie, gdyśmy spożyli te święte dary z ołtarza ku czci św. Męczennika Twego Andrzeja, udziel nam łaskawie, abyśmy poucze", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Ubalda, Biskupa i Wyznawcy*\nWszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-17": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który ozdobiłeś św. Paschalisa, Twego Wyznawcę, cudownym umiłowaniem świętej tajemnicy Twojego Ciała i Krwi, daj n", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Jk 1:12.*\nBłogosławiony człowiek, który zniesie pokusę, bo utwierdziwszy się, otrzyma wieniec żywota", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2024-05-18": [ + { + "body": "*Ez 36:23; 36:24; 36:25-26*\nGdy zajaśnieje świętość moja w was, zgromadzę was ze wszystkich ziem i wyleję na was wodę cz", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, spraw, niech zabłyśnie nad nami blask Twojej chwały, a światło Twej jasności niechaj umocni oświeceni", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 19:1-8*\nW one dni: Gdy Apollo bawił w Koryncie, stało się, iż Paweł obszedłszy wyże", + "id": "Lectio" + }, + { + "body": "Alleluja\n*Ps 106:1*\n℣. Sławcie Pana, bo dobry, bo na wieki miłosierdzie Jego.\n*Ps 116:1-2*\nChwalcie Pana, wszystkie naro", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 14:15-21*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli mnie miłujecie,", + "id": "Evangelium" + }, + { + "body": "*Ps 103:30-31*\nZeślij Ducha Twojego, a powstanie życie i odnowisz oblicze ziemi: niech chwała Pańska trwa na wieki, alle", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uświęć złożone dary i oczyść nasze serca światłem Ducha Świętego.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 7:37-39*\nW ostatnim dniu święta mówił Jezus: Kto wierzy we mnie, rzeki wody żywej popłyną z jego wnętrza. A to mówił ", + "id": "Communio" + }, + { + "body": "Panie, niech tchnienie Ducha Świętego oczyści nasze serca i użyźni je rosą Jego łaski.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-05-19": [ + { + "body": "*Mdr 1:7*\nDuch Pański napełnił okrąg ziemi, alleluja: A Ten, który wszystko obejmuje, zna każde słowo, alleluja, alleluj", + "id": "Introitus" + }, + { + "body": "Boże, któryś w dniu dzisiejszym pouczył serca wiernych światłem Ducha Świętego, daj nam w tymże Duchu poznać co jest pra", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 2:1-11*\n*Dar języków jest potwierdzeniem powszechnej misji Kościoła. Wszystkie naro", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 103:30*\nZeślij Ducha Twojego, a powstanie życie i odnowisz oblicze ziemi, alleluja. (Tu się przyk", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 14:23-31*\nOnego czasu rzekł Jezus uczniom swoim: «Jeśli mnie kto miłuje,", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nUtwierdź to, Boże, czegoś w nas dokonał. Przez wzgląd na Twoją świątynię, która jest w Jeruzalem, niech kr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uświęć złożone dary i oczyść nasze serca światłem Ducha Świętego.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*Dz 2:2; 2:4*\nNagle dał się słyszeć z nieba szum jakby nadchodzącego wichru gwałtownego tam gdzie przebywali, alleluja. ", + "id": "Communio" + }, + { + "body": "Panie, niech tchnienie Ducha Świętego oczyści nasze serca, i użyźni je rosą Jego łaski.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-05-20": [ + { + "body": "*Ps 80:17*\nNakarmił ich wyborną pszenicą, alleluja, alleluja, i nasycił miodem z opoki, alleluja, alleluja.\n*Ps 80:2*\nRa", + "id": "Introitus" + }, + { + "body": "Boże, Tyś zesłał Ducha Świętego na Swoich Apostołów; spełnij pobożne prośby Swego ludu i racz obdarzyć pokojem tych, któ", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 10:34; 10:42-48*\n*Św. Piotr pouczony widzeniem udał się do domu oficera rzymskiego,", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Dz 2:4*\nOpowiadali Apostołowie rozmaitymi językami wielkie dzieła Boże. Alleluja. (Tu się przyklęka)", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 3:16-21*\n*Wiara w Jezusa Zbawiciela świata jest koniecznym warunkiem zba", + "id": "Evangelium" + }, + { + "body": "*Ps 17:14; 17:16*\nZagrzmiał Pan na niebiosach, Najwyższy dał słyszeć swój głos; i otworzyły się źródła wody, alleluja.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uświęć miłościwie te dary, a przyjmując złożoną Ci ofiarę duchową spraw, byśmy sami stali się wieczy", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 14:26*\nDuch Święty nauczy was, alleluja, wszystkiego, cokolwiek wam powiedziałem, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Panie, przyjdź z pomocą ludowi Twojemu, który pouczyłeś niebieskimi tajemnicami, i broń go przed zaciekłością wrogów.\nPr", + "id": "Postcommunio" + } + ], + "2024-05-21": [ + { + "body": "*Ezd 2:36 2:37*\nWielce się radujcie z chwały waszej, alleluja, i dzięki czyńcie Bogu, alleluja, że was powołał do Króles", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niechaj zstąpi na nas moc Ducha Świętego, aby oczyścić miłościwie nasze serca i strzec nas od wszelk", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 8:14-17*\n*Apostołowie udzielają sakramentu Bierzmowania Samarytanom ochrzczonym prz", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 14:26*\nDuch Święty nauczy was wszystkiego, cokolwiek wam powiedziałem. Alleluja. (Tu się przyklęk", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:1-10*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Zaprawdę, zaprawdę po", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nBramy nieba Pan otworzył; jak deszcz im spuścił mannę na pokarm; obdarzył ich chlebem niebieskim; chleb An", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niechaj nas oczyści złożona dzisiaj ofiara i czyni godnymi uczestnictwa w świętych tajemnicach.\nPrze", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 15:26; 16:14*\nDuch, który od Ojca pochodzi, alleluja, On mnie uwielbi, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech Duch Święty odnowi nasze dusze przez ten Boski Sakrament, gdyż On sam jest odpuszczeniem wszys", + "id": "Postcommunio" + } + ], + "2024-05-22": [ + { + "body": "*Ps 67:8 67:9*\nO Boże, gdyś wyruszał wobec ludu swego, wskazując im drogę i wśród nich mieszkając, alleluja, ziemia zadr", + "id": "Introitus" + }, + { + "body": "Panie, niech Pocieszyciel, który od Ciebie pochodzi, oświeci nasze umysły i doprowadzi je do wszelkiej prawdy, jak to ob", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 2:14-21*\nW one dni: Powstawszy Piotr Wraz z jedenastoma podniósł głos swój i przemó", + "id": "LectioL1" + }, + { + "body": "Alleluja.\n*Ps 32:6*\nPrzez słowo Pana powstały niebiosa i wszystkie ich zastępy przez tchnienie ust Jego.", + "id": "GradualeL1" + }, + { + "body": "Wszechmogący i miłosierny Boże, spraw, prosimy, aby Duch Święty przez swe zamieszkanie raczył uczynić z nas świątynię sw", + "id": "OratioL1" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 5:12-16*\nW one dni: Przez ręce Apostołów działy się wśród ludu liczne znaki i cuda.", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n℣. (Tu się przyklęka) Przyjdź, Duchu Święty, napełnij serca Twych wiernych i zapal w nich ogień Twoj", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 6:44-52*\nOnego czasu: Mówił Jezus rzeszom żydowskim: «Nikt nie może przy", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnę do przykazań Twoich, które umiłowałe", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij złożony dar ofiarny i spraw łaskawie, abyśmy zbożnymi czynami uczcili to, co sprawujemy w t", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 14:27*\nPokój zostawiam wam, alleluja: pokój mój daję wam, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Przyjmując niebieski Sakrament, błagamy łaskawość Twoją, Panie, abyśmy w wieczności cieszyli się tym, co sprawujemy w do", + "id": "Postcommunio" + } + ], + "2024-05-23": [ + { + "body": "*Mdr 1:7*\nDuch Pański napełnił okrąg ziemi, alleluja: A Ten, który wszystko obejmuje, zna każde słowo, alleluja, alleluj", + "id": "Introitus" + }, + { + "body": "Boże, któryś w dniu dzisiejszym pouczył serca wiernych światłem Ducha Świętego, daj nam w tymże Duchu poznać co jest pra", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 8:5-8*\nW one dni: Filip zaszedłszy do miasta Samarii głosił im Chrystusa. I rzesze ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 103:30*\nZeślij Ducha Twojego, a powstanie życie i odnowisz oblicze ziemi, alleluja. (Tu się przyk", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 9:1-6*\nOnego czasu: Jezus wezwawszy dwunastu Apostołów dał im władzę", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nUtwierdź to, Boże, czegoś w nas dokonał. Przez wzgląd na Twoją świątynię, która jest w Jeruzalem, niech kr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uświęć złożone dary i oczyść nasze serca światłem Ducha Świętego.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*Dz 2:2; 2:4*\nNagle dał się słyszeć z nieba szum jakby nadchodzącego wichru gwałtownego tam gdzie przebywali, alleluja. ", + "id": "Communio" + }, + { + "body": "Panie, niech tchnienie Ducha Świętego oczyści nasze serca, i użyźni je rosą Jego łaski.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-05-24": [ + { + "body": "*Ps 70:8 70:23*\nPełne niech będą me usta chwały Twojej, alleluja, ażebym mógł śpiewać, alleluja; a gdy się rozśpiewam, r", + "id": "Introitus" + }, + { + "body": "Miłosierny Boże, prosimy Cię, spraw, aby Kościół Twój zjednoczony przez Ducha Świętego nigdy nie został zaniepokojony pr", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Joela.\n*Jl 2:23-24; 2:26-27*\nTo mówi Pan Bóg: Synowie Syjonu weselcie się i radujcie się w Pan", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 12:1*\nO jak dobry i słodki jest dla nas Duch Twój, o Panie. Alleluja. (Tu się przyklęka)\n℣. Przyj", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 5:17-26*\nOnego czasu: Stało się dnia jednego, że Jezus siedział nauc", + "id": "Evangelium" + }, + { + "body": "*Mdr 145:2*\nChwal, duszo moja, Pana! Boga wielbić pragnę przez całe me życie; śpiewać Mu będę, dopóki będę żył, alleluja", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiary złożone przed Twoim obliczem strawi ów Boski ogień, którym Duch Święty zapalił serca uczniów Chrystu", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 14:18*\nNie zostawię was sierotami; przyjdę do was, i radować się będzie serce wasze, alleluja.", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, dary świętego misterium pokornie błagając, aby to, co kazałeś nam czynić na Twoją pamiątkę, przynios", + "id": "Postcommunio" + } + ], + "2024-05-25": [ + { + "body": "*Rz 5:5*\nMiłość Boża rozlana jest w sercach naszych, alleluja, przez Ducha Świętego, mieszkającego w nas, alleluja, alle", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wlej łaskawie Ducha Świętego w dusze nasze; Jego bowiem mądrość nas stworzyła, a Opatrzność nami rzą", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Joela.\n*Jl 2:28-32*\n*Na proroctwo Joela powołał się św. Piotr w dniu Zesłania Ducha Świętego.*", + "id": "LectioL1" + }, + { + "body": "Alleluja.\n*J 6:64*\nDuch jest tym, który ożywia, ciało nic nie pomoże.", + "id": "GradualeL1" + }, + { + "body": "Prosimy Cię, Panie, niech Duch Święty zapali nas tym ogniem, który Pan nasz Jezus Chrystus zesłał na ziemię, pragnąc, by", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 23:9-11; 23:15-17; 23:21*\n*W Starym Testamencie w Pięćdziesiątnicę składano na ofiar", + "id": "LectioL2" + }, + { + "body": "Alleluja\n*Job 26:13*\nDuch Jego ozdobił niebiosa.", + "id": "GradualeL2" + }, + { + "body": "Boże, który nakazałeś dla zdrowia dusz umartwiać ciało nasze postem, spraw łaskawie, abyśmy zawsze duszą i ciałem byli T", + "id": "OratioL2" + }, + { + "body": "Czytanie z Księgi Powtórzonego Prawa.\n*Pp 26:1-11*\n*Żydzi składali Panu Bogu pierwociny w dowód wdzięczności za wyzwolen", + "id": "LectioL3" + }, + { + "body": "Alleluja\n*Dz 2:1*\nGdy nadeszły dni Pięćdziesiątnicy, siedzieli wszyscy razem.", + "id": "GradualeL3" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy wyćwiczeni przez zbawienne posty powstrzymywali się od wszelkich występków", + "id": "OratioL3" + }, + { + "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 26:3-12*\n*Wierność Panu Bogu zapewnia Jego szczególną opiekę.*\nW one dni: Rzekł Pan ", + "id": "LectioL4" + }, + { + "body": "Alleluja\n℣. (Tu się przyklęka) Przyjdź, Duchu Święty, napełnij serca Twych wiernych i zapal w nich ogień Twojej miłości.", + "id": "GradualeL4" + }, + { + "body": "Wszechmogący Boże, prosimy Cię, daj nam tak wstrzymywać się od pokarmów mięsnych, abyśmy również powstrzymywali się od n", + "id": "OratioL4" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:47-51*\nW one dni: Anioł Pański zstąpił z Azariaszem i towarzyszami jego w piec ", + "id": "LectioL5" + }, + { + "body": "Alleluja.\n*Dn 3:52*\nBłogosławiony jesteś Panie, Boże ojców naszych, i chwalebny na wieki.", + "id": "GradualeL5" + }, + { + "body": "Boże, któryś złagodził płomienie ognia dla trzech młodzieńców, spraw łaskawie, aby nas, sług Twoich, nie strawił płomień", + "id": "OratioL5" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 5:1-5*\n*Wiara w Chrystusa i obecność Ducha Świętego zamieniają ", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nChwalcie Pana, wszystkie narody, wysławiajcie Go, wszystkie ludy.\n℣. Bo miłosierdzie Jego nad nami utwierdz", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 4:38-44*\n*Za przykładem Zbawiciela Kościół spieszy z pomocą w każdej", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nPanie, Boże, Zbawicielu mój, podczas dnia wołam i w nocy żalę się przed Tobą, niech moja modlitwa dojdzie do", + "id": "Offertorium" + }, + { + "body": "Aby nasze posty podobały się Tobie, Panie, daj nam złożyć Ci w ofierze serca oczyszczone mocą tej tajemnicy.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 3:8*\nDuch tchnie, kędy chce: i głos Jego słyszysz, alleluja, alleluja, ale nie wiesz, skąd przychodzi ani dokąd idzie", + "id": "Communio" + }, + { + "body": "Panie, niech Twoje święte tajemnice obudzą w nas Boży zapał, abyśmy czerpali radość zarówno z ich sprawowania, jak z owo", + "id": "Postcommunio" + } + ], + "2024-05-26": [ + { + "body": "*Tob 12:6*\nBłogosławiona Niech będzie Święta Trójca i nierozdzielna Jedność. Uwielbiajmy ją, albowiem okazała nad nami m", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który przez wyznawanie prawdziwej wiary dałeś poznać sługom Twoim chwałę przedwiecznej Trójc", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 11:33-36*\n*Tajemnica Trójcy Przenajświętszej, podobnie jak wszy", + "id": "Lectio" + }, + { + "body": "*Dn 3:55-56*\nBłogosławiony jesteś, Panie, który wzrokiem zgłębiasz przepaści, a siedzisz na Cherubinach.\n℣. Błogosławion", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 28:18-20*\n*Chrzest święty czyni nas przybranymi dziećmi Bożymi i uc", + "id": "Evangelium" + }, + { + "body": "*Tob 12:6*\nBłogosławiony niech będzie Bóg Ojciec i Jednorodzony Syn Boży, a także i Duch Święty: gdyż okazał nad nami mi", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie Boże nasz, uświęć przez wezwanie świętego imienia Twojego, ofiarę, którą Ci składamy, i przez nią ucz", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Tob 12:6*\nBłogosławimy Boga niebios, i wobec wszystkich istot żyjących dziękować Mu będziemy, gdyż okazał nad nami miło", + "id": "Communio" + }, + { + "body": "Panie, Boże nasz, niech przyjęcie tego sakramentu oraz wyznanie Przedwiecznej i Świętej Trójcy oraz Jej nierozdzielnej j", + "id": "Postcommunio" + } + ], + "2024-05-27": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, który wsławiłeś Swój Kościół nauką św. Bedy, Twego Wyznawcy i Doktora, spraw miłościwie, niech sługi Twoje oświeca", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Jana I*\nBoże, co roku uweselasz nas uroczystością świętego N., Twojego Męczennika i Biskupa; spraw łask", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Jana I*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego N., Twego Męczennika i Biskupa, daj się", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Jana I*\nPanie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętego N., Twego Męczennika i B", + "id": "Commemoratio Postcommunio" + } + ], + "2024-05-28": [ + { + "body": "*Ps 131,9-10*\nNiech kapłani Twoi odzieją się w sprawiedliwość, a święci Twoi niech się radują; przez wzgląd na Dawida, s", + "id": "Introitus" + }, + { + "body": "Boże, który raczyłeś oświecić ludy Anglii światłem prawdziwej wiary przez nauczanie i cuda św. Augustyna, Twego Wyznawcy", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 2:2-9*\nBracia: Zaufawszy Bogu naszemu głosiliśmy wam Ew", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\nKapłanów Syjonu odzieję zbawienną pomocą, a jego święci radośnie będą się weselić.\n℣. Tam dla Dawida wzbu", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie ofiarę w uroczystość św. Augustyna, Twego Wyznawcy i Biskupa, prosząc pokornie, by zbłąkane owieczki,", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Posileni zbawienną ofiarą, pokornie błagamy Cię, Panie, aby dzięki orędownictwu św. Augustyna na każdym miejscu nieustan", + "id": "Postcommunio" + } + ], + "2024-05-29": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Boże, miłośniku dziewictwa, który ozdobiłeś niebieskimi darami św. Dziewicę Marię Magdalenę, gorejącą miłością ku Tobie,", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2024-05-30": [ + { + "body": "*Ps 80:17*\nNakarmił ich pszenicą przewyborną, alleluja. A z opoki miodem nasycił ich, alleluja, alleluja, alleluja.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Boże, który w przedziwnym Sakramencie zostawiłeś nam pamiątkę Swej męki, dozwól, prosimy, taką czcią otaczać święte taje", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 11:23-29*\n*Św. Paweł zapewnia nas, że udział we Mszy święt", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOczy wszystkich w Tobie, Panie, pokładają nadzieję, a Ty im dajesz pokarm we właściwym czasie.\n℣. Ty otwi", + "id": "Graduale" + }, + { + "body": "Zbawiciela chwal, Syjonie,\nW hymnów i kantyków tonie,\nWodza i pasterza.\n\nZ całej duszy chwal Go śmiało,\nGdyż przewyższa ", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 6:56-59*\nOnego czasu: Rzekł Jezus rzeszom żydowskim: «Ciało moje prawdzi", + "id": "Evangelium" + }, + { + "body": "*Kpł 21:6*\nKapłani Pańscy kadzenie i chleb składają Bogu w ofierze, przeto świętymi być powinni wobec Boga swego, by nie", + "id": "Offertorium" + }, + { + "body": "Prosimy Ciebie, Panie, użycz łaskawie Kościołowi Twemu darów jedności i pokoju, które mistycznie wyraża ofiara przez nas", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*1 Kor 11:26-27*\nIlekroć ten chleb pożywać, a kielich pić będziecie, śmierć Pańską będziecie zwiastować, aż przybędzie. ", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię Panie, aby w wieczności napełniała nas radość z posiadania Bóstwa Twojego, co wyobraża już doczesne s", + "id": "Postcommunio" + } + ], + "2024-05-31": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci Najświętszej Maryi Panny Królowej; z Jej uroczystości radują s", + "id": "Introitus" + }, + { + "body": "Przy obchodzie uroczystości Najświętszej Maryi Panny, Królowej naszej, prosimy Cię, Panie, spraw, abyśmy wsparci Jej opi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Petroneli, Dziewicy*\nWysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości ś", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:5; 24:7; 24:9-11; 24:30-31*\n*Przywileje Maryi zostały przewidziane w odwiecznym pl", + "id": "Lectio" + }, + { + "body": "*Ap 19:16*\nNa szacie i na biodrze swoim ma on wypisane: Król królów i Pan panujących.\n*Ps 44:10*\nKrólowa po prawicy Twoj", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-33*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "Maryja jaśnieje pochodzeniem z królewskiego rodu; sercem i duszą pobożnie prosimy, by nas wspierała swymi modlitwami. (O", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij dary rozradowanego Kościoła i spraw, niech przez zasługi Najświętszej Maryi Panny Królowej ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Petroneli, Dziewicy*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uz", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Najdostojniejsza Królowo świata, Maryjo zawsze Dziewico, któraś porodziła Zbawcę wszystkich, Chrystusa Pana, proś o pokó", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, by uroczysta ofiara, złożona dla uczczenia święta Najświętszej Maryi, naszej Królowej, posłużyła nam", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Petroneli, Dziewicy*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawienni", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-01": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2024-06-02": [ + { + "body": "*Ps 17:19-20*\nPan stał się moją obroną; wywiódł mnie na pole rozległe: zbawił mnie bo mnie miłuje.\n*Ps 17:2-3*\nMiłuję Ci", + "id": "Introitus" + }, + { + "body": "Racz nas obdarzyć Panie ustawiczną bojaźnią i miłością świętego imienia Twojego, albowiem nigdy opieki Swej nie odmawias", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 3:13-18*\nNajmilsi: Nie dziwcie się, jeśli świat was nienawidzi. My wiemy, ", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nDo Pana wołałem, gdym był w utrapieniu, a On mnie wysłuchał.\n℣. Wybaw mnie Panie od ust kłamliwych, i od po", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:16-24*\nOnego czasu: Powiedział Jezus faryzeuszom tę przypowieść: ", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nPowróć, o Panie, wyrwij duszę moją, przez miłosierdzie Twoje mnie wybaw.", + "id": "Offertorium" + }, + { + "body": "Panie, ofiara, którą mamy złożyć Twojemu imieniu, niech nas oczyszcza, i z dnia na dzień doskonali w prowadzeniu życia g", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 12:6*\nBędę śpiewał Panu, który darzy mnie dobrem, zanucę psalm imieniu Najwyższego Pana.", + "id": "Communio" + }, + { + "body": "Przyjąwszy Twoje święte dary, prosimy Cię, Panie, aby poprzez częste uczestnictwo w tym Sakramencie, wzrastał w nas jego", + "id": "Postcommunio" + } + ], + "2024-06-03": [ + { + "body": "*Ps 17:19-20*\nPan stał się moją obroną; wywiódł mnie na pole rozległe: zbawił mnie bo mnie miłuje.\n*Ps 17:2-3*\nMiłuję Ci", + "id": "Introitus" + }, + { + "body": "Racz nas obdarzyć Panie ustawiczną bojaźnią i miłością świętego imienia Twojego, albowiem nigdy opieki Swej nie odmawias", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 3:13-18*\nNajmilsi: Nie dziwcie się, jeśli świat was nienawidzi. My wiemy, ", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nDo Pana wołałem, gdym był w utrapieniu, a On mnie wysłuchał.\n℣. Wybaw mnie Panie od ust kłamliwych, i od po", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:16-24*\nOnego czasu: Powiedział Jezus faryzeuszom tę przypowieść: ", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nPowróć, o Panie, wyrwij duszę moją, przez miłosierdzie Twoje mnie wybaw.", + "id": "Offertorium" + }, + { + "body": "Panie, ofiara, którą mamy złożyć Twojemu imieniu, niech nas oczyszcza, i z dnia na dzień doskonali w prowadzeniu życia g", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 12:6*\nBędę śpiewał Panu, który darzy mnie dobrem, zanucę psalm imieniu Najwyższego Pana.", + "id": "Communio" + }, + { + "body": "Przyjąwszy Twoje święte dary, prosimy Cię, Panie, aby poprzez częste uczestnictwo w tym Sakramencie, wzrastał w nas jego", + "id": "Postcommunio" + } + ], + "2024-06-04": [ + { + "body": "*Ps 68:10*\nJak wosk stało się me serce: topnieje w moich wnętrznościach, bo gorliwość o dom Twój pożera mnie (O. W. Alle", + "id": "Introitus" + }, + { + "body": "Boże, który św. Franciszka, założyciela nowego zakonu, ozdobiłeś żarliwością w modlitwie i umiłowaniem pokuty, daj sługo", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 4:7-14*\nSprawiedliwy, jeśli umrze przedwcześnie, dozna ochłody. Czcigodna bowiem staroś", + "id": "Lectio" + }, + { + "body": "*Ps 41:2*\nJak jeleń spragniony dąży do strumieni wody, tak dusza ma tęskni za Tobą, Boże.\n*Ps 41:3*\n℣. Tęskni ma dusza z", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie. (O. W. Alleluja.)", + "id": "Offertorium" + }, + { + "body": "Spraw, najłaskawszy Jezu, abyśmy rozpaleni tym samym ogniem miłości co św. Franciszek, którego chwalebne zasługi wspomin", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 30:20*\nJakże jest wielka Twoja dobroć, Panie, Tyś ją zachował dla tych, co się boją Ciebie. (O. W. Alleluja.)", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, aby w sercach naszych na zawsze pozostała wdzięczna pamięć i owoce Najświętszej Ofiary, którąśmy dzi", + "id": "Postcommunio" + } + ], + "2024-06-05": [ + { + "body": "*Iz 65:19; 65:23*\nRadować się będę z Jeruzalem i będę się weselić z powodu mego ludu; odtąd nie będzie w nim słychać gło", + "id": "Introitus" + }, + { + "body": "Boże, który wiele narodów raczyłeś powołać do poznania Twego imienia dzięki gorliwości św. Bonifacego, Twego Męczennika ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Syr 44:1-15*\nWysławiajmy mężów znakomitych i naszych ojców co do pochodzenia. Pan (w nich) ", + "id": "Lectio" + }, + { + "body": "*1 P 4:13-14*\nBędąc uczestnikami cierpień Chrystusa radujcie się, abyście z chwilą objawienia się chwały Jego radowali s", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:1-12*\nOnego czasu: Jezus, widząc rzesze, wstąpił na górę i gdy us", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7-8*\nBłogosławię Panu, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy, aby", + "id": "Offertorium" + }, + { + "body": "Niechaj zstąpi, prosimy Cię, Panie, obfite błogosławieństwo Twoje na te dary ofiarne, niechaj nas łaskawie uświęci i roz", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ap 3:21*\nKto zwycięży, dozwolę mu z sobą zasiąść na tronie moim, jakom i ja zwyciężył i zasiadł z Ojcem moim na tronie ", + "id": "Communio" + }, + { + "body": "Uświęceni zbawiennym misterium, prosimy Cię, Panie, aby nie brakło nam troskliwego wstawiennictwa św. Bonifacego, Twego ", + "id": "Postcommunio" + } + ], + "2024-06-06": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, który uczyniłeś świętego Norberta, Twego Wyznawcę i Biskupa, znakomitym głosicielem Twojego słowa i przez niego wz", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + } + ], + "2024-06-07": [ + { + "body": "*Ps 32:11; 32:19*\nZamysły Jego serca trwają poprzez pokolenia, by wyrwać ich dusze od śmierci i w czasie głodu ich żywić", + "id": "Introitus" + }, + { + "body": "Boże, w Sercu Twojego Syna zranionym naszymi grzechami darzysz nad niewyczerpanymi skarbami miłości; spraw, prosimy, aby", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:8-12, 14-19*\nBracia: Mnie najmniejszemu ze wszystkich świętyc", + "id": "Lectio" + }, + { + "body": "*Ps 24:8-9*\nPan jest dobry i prawy: dlatego o drodze poucza grzeszników.\n℣. W sprawiedliwości rządzi pokornymi, pokornyc", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:11-37*\nOnego czasu: Żydzi (ponieważ był to dzień Przygotowania), aby ", + "id": "Evangelium" + }, + { + "body": "*Ps 68:21*\nUrąganiem złamane me serce i sił mi zabrakło: Na współczującego czekałem, ale go nie było, i na pocieszającyc", + "id": "Offertorium" + }, + { + "body": "Wejrzyj, prosimy Cię, Panie, na niewymowną miłość Serca umiłowanego Syna Twojego i spraw, aby ofiara nasza była miłą dla", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszym Sercu Jezusowym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzi", + "id": "Prefatio" + }, + { + "body": "*J 19:34*\nJeden z żołnierzy włócznią otworzył bok Jego, a natychmiast wypłynęła krew i woda.", + "id": "Communio" + }, + { + "body": "Panie Jezu, niech Twoje święte tajemnice obudzą w nas Boży zapał, abyśmy skosztowawszy słodyczy najmilszego Serca Twojeg", + "id": "Postcommunio" + } + ], + "2024-06-08": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2024-06-09": [ + { + "body": "*Ps 24:16; 24:18*\nWejrzyj na mnie Panie i zlituj się nade mną, bo sam jestem i biedny. Zobacz moją nędzę i utrudzenie, i", + "id": "Introitus" + }, + { + "body": "Obrońco ufających w Tobie, Boże, bez którego nic mocnym, nic świętym nie jest, pomnóż nad nami miłosierdzie Twoje, abyśm", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:6-11*\nNajmilsi: Uniżajcie się pod możną ręką Bożą, aby Was wywyższył w", + "id": "Lectio" + }, + { + "body": "*Ps 54:23; 54:17; 54:19*\nPorucz swą troskę Panu, On sam o tobie mieć będzie pieczę.\n℣. Kiedy wołałem do Pana, On wysłuch", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 15:1-10*\nOnego czasu: Zbliżali się do Jezusa celnicy i grzesznicy, a", + "id": "Evangelium" + }, + { + "body": "*Ps 9:11-12 9:13*\nTobie ufać winni wyznawcy Twego Imienia, bo nie opuszczasz Panie szukających Ciebie. Śpiewajcie psalm ", + "id": "Offertorium" + }, + { + "body": "Wejrzyj Panie na błagania i ofiary Kościoła Twego, nieustannie je uświęcając użycz ich jako pokarmu dla zbawienia wierny", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Łk 15:10*\nPowiadam wam, iż radość panuje wśród Aniołów Bożych nawet z jednego grzesznika czyniącego pokutę.", + "id": "Communio" + }, + { + "body": "Niechaj nas ożywi spożycie Tych darów świętych, i oczyszczonych niechaj nas przygotuje do otrzymania zmiłowania wieczneg", + "id": "Postcommunio" + } + ], + "2024-06-10": [ + { + "body": "*Oz 2:14*\nZawiodę go na puszczę i będę mówił do jego serca. (O. W. Alleluja, alleluja.)\n*Ps 110:1*\n℣. Błogosławieni, któ", + "id": "Introitus" + }, + { + "body": "Wysłuchaj, Panie, Swego ludu, oddanego Ci całym sercem, i strzeż go dzięki modłom błogosławionego Twego Wyznawcy i Bisku", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Małgorzaty, Królowej Szkockiej, Wdowy*\nBoże, któryś świętą królową Małgorzatę uczynił godną podziwu dla", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło. (O. W. Alleluja.)", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, prośby i ofiary, a modlitwa błogosławionego Bogumiła, Twego Wyznawcy i Biskupa niech nas wspomoże, by g", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Małgorzaty, Królowej Szkockiej, Wdowy*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci T", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i za mną poszli, stokroć więcej otrzymacie i ży", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną błogosławionego Bogumiła, Tweg", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Małgorzaty, Królowej Szkockiej, Wdowy*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas s", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-11": [ + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", + "id": "Introitus" + }, + { + "body": "Boże, który nas uweselasz zasługami i wstawiennictwem św Apostoła Twego Barnaby, dozwól łaskawie, abyśmy prosząc Cię prz", + "id": "Oratio" + }, + { + "body": "*Dz 11:21-26; 13:1-3*\nW one dni: Wielka liczba w Antiochii uwierzywszy nawróciła się do Pana. I doszła o nich wieść do u", + "id": "Lectio" + }, + { + "body": "*Ps 18:5; 18:2*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.\n℣. Niebiosa głoszą chwałę Boga, dz", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:16-22*\nOnego czasu: Rzekł Jezus uczniom swoim: «Oto ja posyłam w", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi, przez wszystkie pokolenia głosić będą Twe imię, o Panie.", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, złożone Ci dary i za wstawiennictwem św. Apostoła Twego Barnaby oczyść nas przez nie ze zmaz naszych.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28*\nWy, którzyście poszli za mną, zasiądziecie na stolicach, sądząc dwanaście pokoleń Izraela.", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz swoim Sakramentem, za przyczyną św. Apostoła Tw", + "id": "Postcommunio" + } + ], + "2024-06-12": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, dawco pokoju i zwolenniku miłości, któryś św. Jana, Twego Wyznawcę, ozdobił przedziwną łaską godzenia powaśnionych", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Bazylidesa, Cyryna, Nabora i Nazariusza*\nProsimy Cię, Panie, niech uroczystość narodzin dla nieba święt", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Bazylidesa, Cyryna, Nabora i Nazariusza*\nKu uczczeniu męczeńskiej krwi świętych Bazylidesa, Cyryna, Nab", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Bazylidesa, Cyryna, Nabora i Nazariusza*\nProsimy Cię, Panie, spraw, abyśmy stale obchodząc uroczystość ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-13": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Niechaj uroczystość św. Antoniego, Twego Wyznawcy i Doktora, rozraduje Twój Kościół, o Panie, aby zawsze miał ku obronie", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niechaj obecna ofiara okaże się zbawienną dla Twego ludu, za który raczyłeś z samego siebie złożyć Ojcu żywą żert", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Nasyceni Boskimi darami, prosimy Cię, Panie, abyśmy przez zasługi i wstawiennictwo św. Antoniego, Twego Wyznawcy i Dokto", + "id": "Postcommunio" + } + ], + "2024-06-14": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Wysłuchaj, prosimy Cię, Panie, naszych modlitw, które zanosimy w uroczystość św. Bazylego, Twego Wyznawcy i Biskupa, a d", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-81*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:26-35*\nOnego czasu: Mówił Jezus do rzesz: «Jeśli kto przychodzi d", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech doroczna uroczystość św. Bazylego, Twego Wyznawcy i Biskupa, uczyni nas godnymi Twojej miłości", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Boże, Ty nagradzasz dusze wierne; spraw, abyśmy dostąpili przebaczenia przez prośby św. Bazylego, Twego Wyznawcy i Bisku", + "id": "Postcommunio" + } + ], + "2024-06-15": [ + { + "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, Ty w miłosierdziu swoim oderwałeś błogosławioną Jolantę od zaszczytów i bogactw, a sprawiłeś", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Wita, Modesta i Krescencji, Męczenników*\nZa przyczyną świętych Męczenników Twoich Wita, Modesta i Kresc", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Wita, Modesta i Krescencji, Męczenników*\nNiech dary złożone ku czci Świętych wyjednają nam, Panie, owoc", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Wita, Modesta i Krescencji, Męczenników*\nNapełnieni wzniosłym błogosławieństwem, prosimy Cię, Panie, ab", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-16": [ + { + "body": "*Ps 26:1; 26:2*\nPan światłością i zbawieniem moim, kogóż mam się lękać? Obrońcą życia mojego Pan, przed kim będę drżał? ", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię Panie, niech pod Twoimi rządami dzieje świata toczą się w pokoju, a Twój Kościół niech Ci służy w nie", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:18-23*\n*Od chwili dokonania odkupienia ludzkość i cały świat ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nO Panie, przebacz nam grzechy, aby nie drwili z nas poganie: «Gdzie jest ich Bóg?»\n℣. Wspomóż nas, Boże", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 5:1-11*\n*Od zesłania Ducha Świętego spełnia się zapowiedź Chrystusa ", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nOświeć me oczy, bym nie zasnął w śmierci, by wróg mój nie mówił: Ja go zwyciężyłem.", + "id": "Offertorium" + }, + { + "body": "Przyjmij Panie nasze ofiary i daj się nimi przejednać i zwróć łaskawie ku sobie nawet oporną naszą wolę.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 17:3*\nPan opoką i ucieczką moją, On moim wybawicielem, Bóg, mój wspomożyciel.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech tajemnice, któreśmy przyjęli oczyszczą nas i chronią swoim działaniem.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-06-17": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, z Twojej woli święty Grzegorz, Twój Wyznawca i Biskup, jaśniał pasterską gorliwością i miłosierdziem wobec biednyc", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + } + ], + "2024-06-18": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, który chciałeś oświecić swój Kościół zadziwiającą nauką i chwalebnymi zasługami życia św. Efrema, Twego Wyznawcy i", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Marka i Marcelina*\nSpraw, prosimy Cię, wszechmogący Boże, aby od wszelkich niebezpieczeństw uwolniło na", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Marka i Marcelina*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętych Twoich Męczenników Marka i M", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Marka i Marcelina*\nPosileni darem zbawiennym, pokornie błagamy Cię, Panie, aby Sakrament, który z radoś", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-19": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Boże który raczyłeś pokrzepić świętą Dziewicę Julianę wśród cierpień ostatniej choroby najdroższym Ciałem Syna Twego, sp", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Gerwazego i Protazego*\nBoże, co roku uweselasz nas uroczystością świętych Twoich Męczenników Gerwazego ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Gerwazego i Protazego*\nDaj się przebłagać, Panie, złożonymi darami, a za wstawiennictwem świętych Twoic", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Gerwazego i Protazego*\nPanie, niech ta komunia oczyści nas z grzechów i za przyczyną świętych Twoich Ge", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-20": [ + { + "body": "*Ps 26:1; 26:2*\nPan światłością i zbawieniem moim, kogóż mam się lękać? Obrońcą życia mojego Pan, przed kim będę drżał? ", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię Panie, niech pod Twoimi rządami dzieje świata toczą się w pokoju, a Twój Kościół niech Ci służy w nie", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Sylweriusza, Papieża i Męczennika*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieu", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:18-23*\n*Od chwili dokonania odkupienia ludzkość i cały świat ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nO Panie, przebacz nam grzechy, aby nie drwili z nas poganie: «Gdzie jest ich Bóg?»\n℣. Wspomóż nas, Boże", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 5:1-11*\n*Od zesłania Ducha Świętego spełnia się zapowiedź Chrystusa ", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nOświeć me oczy, bym nie zasnął w śmierci, by wróg mój nie mówił: Ja go zwyciężyłem.", + "id": "Offertorium" + }, + { + "body": "Przyjmij Panie nasze ofiary i daj się nimi przejednać i zwróć łaskawie ku sobie nawet oporną naszą wolę.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Sylweriusza, Papieża i Męczennika*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 17:3*\nPan opoką i ucieczką moją, On moim wybawicielem, Bóg, mój wspomożyciel.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech tajemnice, któreśmy przyjęli oczyszczą nas i chronią swoim działaniem.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Sylweriusza, Papieża i Męczennika*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym prz", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-21": [ + { + "body": "*Ps 8:6*\nUczyniłeś go niewiele mniejszym od Aniołów, chwałą i czcią go uwieńczyłeś.\n*Ps 148:2*\nChwalcie Pana, wszyscy Je", + "id": "Introitus" + }, + { + "body": "Boże, rozdawco darów niebieskich, który w anielskim młodzieńcu Alojzym połączyłeś przedziwną niewinność życia z równie w", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 70:5-6*\nPanie, nadziejo moja od młodości mojej, na Tobie wsparty jestem od powicia: byłeś mym opiekunem od żywota ma", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:29-40*\n*Św. Alojzy wypełnił doskonale oba przykazania miłości. D", + "id": "Evangelium" + }, + { + "body": "*Ps 23:3-4*\nKto wstąpi na górę Pana lub stanie na świętym Jego miejscu? Człowiek rąk nieskalanych i czystego serca.", + "id": "Offertorium" + }, + { + "body": "Spraw, Panie, abyśmy zasiedli do uczty niebieskiej odziani w szatę godową, którą zdobiły bezcennymi perłami pobożne przy", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 77:24-25*\nObdarzył ich chlebem niebieskim, chleb Aniołów pożywał człowiek.", + "id": "Communio" + }, + { + "body": "Daj, Panie, abyśmy posileni chlebem Anielskim żyli na wzór Aniołów i za przykładem tego, którego dziś czcimy, stale trwa", + "id": "Postcommunio" + } + ], + "2024-06-22": [ + { + "body": "*Ps 131:9-10*\nNiech kapłani Twoi odzieją się w sprawiedliwość, a święci Twoi niech się radują; przez wzgląd na Dawida, s", + "id": "Introitus" + }, + { + "body": "Boże, Ty obiecałeś stokrotną nagrodę w przyszłości i życie wieczne tym, którzy dla Ciebie opuszczają wszystko na tym świ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 8:9-15*\n*Święty Paweł zachęca Koryntian do ofiarności na m", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\nNie znalazł się jemu podobny, który by ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Offertorium" + }, + { + "body": "Daj nam, Panie, za przykładem świętego Biskupa Paulina, z darami złożonymi na ołtarzu połączyć ofiarę doskonałej miłości", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Przez święty Sakrament udziel nam, Panie, tego ducha oddania i pokory, którego zaczerpnął z tego boskiego źródła św. Bis", + "id": "Postcommunio" + } + ], + "2024-06-23": [ + { + "body": "*Ps 26:7; 62:9*\nUsłysz, Panie, głos mój, którym wołam. Tyś mą pomocą, nie odrzucaj mnie i nie opuszczaj mnie, ani mną ni", + "id": "Introitus" + }, + { + "body": "Boże, Tyś miłującym Ciebie zgotował niewidzialne dobra; wlej w nasze serca gorącą miłość ku Tobie, abyśmy miłując Cię we", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Wigilia Narodzenia Św. Jana Chrzciciela*\nSpraw, prosimy Cię, wszechmogący Boże, aby rodzina Twych sług kroc", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 3:8-15*\nNajmilsi: Bądźcie wszyscy jednomyślni w modlitwie, współczujący,", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nSpojrzyj obrońco nasz, Boże i wejrzyj na sługi Twoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług Sw", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:20-24*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli nie będzie ", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7; 15:8*\nBłogosławię Pana, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy,", + "id": "Offertorium" + }, + { + "body": "Daj się przebłagać Panie naszymi modłami i łaskawie przyjmij te ofiary sług i służebnic Twoich, a co każdy złożył na chw", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Wigilia Narodzenia Św. Jana Chrzciciela*\nUświęć, Panie, złożone dary i za wstawiennictwem św. Jana Chrzcici", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję, bym w domu Pańskim przebywał po wszystkie dni mego życia.", + "id": "Communio" + }, + { + "body": "Nasyciwszy nas Panie, darem niebieskim, oczyść nas z ukrytych grzechów i wybaw od zasadzek nieprzyjacielskich.\nPrzez Pan", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Wigilia Narodzenia Św. Jana Chrzciciela*\nPanie, niechaj nam towarzyszy dostojna modlitwa świętego Jana Chrz", + "id": "Commemoratio Postcommunio" + } + ], + "2024-06-24": [ + { + "body": "*Iz 49:1; 49:2*\nJuż w łonie matki mojej nazwał mnie Pan imieniem moim: włożył w me usta słowa jak ostry miecz: opieką sw", + "id": "Introitus" + }, + { + "body": "Boże, któryś dzień dzisiejszy uczynił nam wiekopomnym przez narodzenie świętego Jana, daj ludowi swojemu łaskę radości d", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 49:1-3; 49:5-7*\nSłuchajcie, wyspy, i wy, ludy odległe zważajcie: Pan mnie powoła", + "id": "Lectio" + }, + { + "body": "*Jer 1:5; 1:9*\n℣. Zanim cię ukształtowałem w żywocie znałem ciebie, jeszcze nie wyszedłeś z żywota, już cię oświeciłem. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:57-68*\nElżbiecie wypełnił się czas rozwiązania i porodziła syna. I", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie. Alleluja.", + "id": "Offertorium" + }, + { + "body": "Ołtarz Twój, Panie pokrywamy darami święcąc ze czcią narodziny tego, który zapowiadał przyjście Zbawiciela świata i wska", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 1:76*\nTy, dzieciątko nazwane będziesz prorokiem Najwyższego, bo pójdziesz przed obliczem Pana, by przygotować drogi ", + "id": "Communio" + }, + { + "body": "Kościół Twój Boże, niech czerpie radość z narodzin świętego Jana Chrzciciela, przez którego poznał sprawcę odrodzenia sw", + "id": "Postcommunio" + } + ], + "2024-06-25": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który dla ułatwienia drogi zbawienia zapewniłeś naszej słabości przykład i pomoc w swoich Świętych, daj nam tak cz", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam ku zbawieni", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N., Opata, abyśmy naśladowali jego wzo", + "id": "Postcommunio" + } + ], + "2024-06-26": [ + { + "body": "*Ps 33:20-21*\nWiele ucisków spotyka sprawiedliwych, lecz Pan ich wyzwala ze wszystkich; strzeże wszystkich ich kości: ni", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, niech nas ogarnie zdwojona radość dzisiejszej uroczystości, płynąca z uczczenia świętych", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Syr 44:10-15*\nCi są mężami pełnymi miłosierdzia, których dobre czyny nie poszły w niepamięć", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nOto jak dobrze i jak miło braciom zamieszkać społem.\n℣. Jako wyborny olejek na głowie, co spływa na brodę, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:1-8*\nOnego czasu: Rzekł Jezus uczniom swoim: «Strzeżcie się kwasu", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nNiech się radują ci wszyscy, co Twe imię miłują, bo Ty, Panie, sprawiedliwemu dasz błogosławieństwo; Panie,", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij łaskawie przez zasługi świętych Twoich Męczenników Jana i Pawła ofiarę, którą Ci składamy, ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył, jak złoto w piecu ich wypróbował, jak ofiarę", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, niebieski Sakrament, obchodząc uroczystość świętych Męczenników Twoich Jana i Pawła; daj, prosimy Ci", + "id": "Postcommunio" + } + ], + "2024-06-27": [ + { + "body": "*Ps 26:7; 62:9*\nUsłysz, Panie, głos mój, którym wołam. Tyś mą pomocą, nie odrzucaj mnie i nie opuszczaj mnie, ani mną ni", + "id": "Introitus" + }, + { + "body": "Boże, Tyś miłującym Ciebie zgotował niewidzialne dobra; wlej w nasze serca gorącą miłość ku Tobie, abyśmy miłując Cię we", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 3:8-15*\nNajmilsi: Bądźcie wszyscy jednomyślni w modlitwie, współczujący,", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nSpojrzyj obrońco nasz, Boże i wejrzyj na sługi Twoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług Sw", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:20-24*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli nie będzie ", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7; 15:8*\nBłogosławię Pana, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy,", + "id": "Offertorium" + }, + { + "body": "Daj się przebłagać Panie naszymi modłami i łaskawie przyjmij te ofiary sług i służebnic Twoich, a co każdy złożył na chw", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję, bym w domu Pańskim przebywał po wszystkie dni mego życia.", + "id": "Communio" + }, + { + "body": "Nasyciwszy nas Panie, darem niebieskim, oczyść nas z ukrytych grzechów i wybaw od zasadzek nieprzyjacielskich.\nPrzez Pan", + "id": "Postcommunio" + } + ], + "2024-06-28": [ + { + "body": "*J 21:18-19*\nMówi Pan do Piotra: Gdy byłeś młodym, przepasywałeś się i chodziłeś, dokąd chciałeś; lecz gdy się zestarzej", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, by żadne przeciwności nie zachwiały nami, skoroś nas ugruntował na opoce wiary ap", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 3:1-10*\nW one dni: Piotr i Jan wchodzili do świątyni na modlitwę o godzinie dziewią", + "id": "Lectio" + }, + { + "body": "*Ps 18:5; 18:2*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.\n℣. Niebiosa głoszą chwałę Boga, dz", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 21:15-10*\nOnego czasu: Rzekł Jezus do Szymona Piotra: «Szymonie, synu Ja", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przez wstawiennictwo Apostołów poświęć dary Swojego ludu i oczyść nas ze zmazy naszych grzechów.\nPrz", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 21:15; 21:17*\nSzymonie, synu Jana, miłujesz mnie więcej niż ci? Panie, Ty wszystko wiesz, Ty wiesz, że Cię miłuję.", + "id": "Communio" + }, + { + "body": "Panie, za przyczyną świętych Apostołów strzeż od wszelkich przeciwności tych, których posiliłeś niebieskim pokarmem.\nPrz", + "id": "Postcommunio" + } + ], + "2024-06-29": [ + { + "body": "*Dz 12:11*\nTeraz wiem prawdziwie iż Pan posłał Anioła swego i wyrwał mnie z ręki Heroda oraz z tego wszystkiego, czego o", + "id": "Introitus" + }, + { + "body": "Boże, który uświęciłeś dzień dzisiejszy męczeństwem Apostołów Twoich Piotra i Pawła, daj Kościołowi Swemu we wszystkim i", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 12:1-11*\nW one dni: Król Herod postanowił wszcząć prześladowanie przeciw niektórym ", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi: głosić będą Twe imię, o Panie. Synowie twoi zajmą miejsce twoich", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi: przez wszystkie pokolenia głosić będą Twe imię, o Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech modlitwa apostolska towarzyszy darom, które składamy w ofierze Twojemu imieniu: dzięki niej racz nas oczysz", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Panie, za przyczyną świętych Apostołów strzeż od wszelkich przeciwności tych, których posiliłeś niebieskim pokarmem.\nPrz", + "id": "Postcommunio" + } + ], + "2024-06-30": [ + { + "body": "*Ps 27:8-9*\nPan jest mocą dla Swojego ludu i twierdzą zbawienia dla Swego Pomazańca; ocal lud swój, o Panie, i błogosław", + "id": "Introitus" + }, + { + "body": "Boże zastępów, od którego pochodzi wszelka doskonałość, zaszczep w naszych sercach miłość Twojego imienia i daj nam wzro", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:3-11*\n*Święty Paweł czyni aluzję do obrzędu Chrztu przez zanu", + "id": "Lectio" + }, + { + "body": "*Ps 89:13; 89:1*\nZwróć się do nas, Panie, na chwilę i daj się ubłagać sługom Swoim.\n℣. Panie, Tyś był ucieczką naszą z p", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 8:1-9*\nOnego czasu: Gdy rzesza wielka była z Jezusem, a nie miała co j", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", + "id": "Offertorium" + }, + { + "body": "Daj się przebłagać, Panie, naszymi modlitwami i przyjmij łaskawie te dary Twojego ludu; aby zaś niczyje pragnienie nie b", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 26:6*\nZłożę w Jego przybytku ofiary radości, zaśpiewam i psalm zanucę Panu.", + "id": "Communio" + }, + { + "body": "Nasyceni Twoimi darami, prosimy Cię Panie, spraw, aby ich skuteczne działanie oczyściło nas, a ich pomoc wsparła.\nPrzez ", + "id": "Postcommunio" + } + ], + "2024-07-01": [ + { + "body": "*Ap 5:9-10*\nOdkupiłeś nas Panie przez Krew swoją; ludzi ze wszelkiego pokolenia, języka, ludu i narodu; i uczyniłeś nas ", + "id": "Introitus" + }, + { + "body": "Wszechmogący wieczny Boże, który Jednorodzonego Syna Twego ustanowiłeś Odkupicielem świata i dałeś się przebłagać Jego K", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 9:11-15*\n*Ofiara krzyżowa Chrystusa to wejście Arcykapłan", + "id": "Lectio" + }, + { + "body": "*1 J 5:6; 5:7-8*\nJest to ten sam Jezus Chrystus, który przyszedł przez wodę i krew, nie w wodzie tylko, ale w wodzie i w", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:30-35*\nOnego czasu: Jezus, gdy skosztował octu, rzekł: «Wykonało się»", + "id": "Evangelium" + }, + { + "body": "*1 Kor 10:16*\nKielich błogosławieństwa, który błogosławimy, czyż nie jest uczestniczeniem we Krwi Chrystusowej? A chleb,", + "id": "Offertorium" + }, + { + "body": "Błagamy Cię, Boże zastępów, niech nam wolno będzie przez te święte tajemnice przystąpić do Pośrednika nowego przymierza ", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Hbr 9:28*\nChrystus raz jeden był ofiarowany dla usunięcia grzechów wielu, drugi raz ukaże się nie dla zgładzenia grzech", + "id": "Communio" + }, + { + "body": "Dopuszczeni do świętej uczty, z radością czerpaliśmy, Panie, wodę ze źródeł Zbawiciela: błagamy, niech Krew Jego stanie ", + "id": "Postcommunio" + } + ], + "2024-07-02": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, udziel sługom Twoim daru łaski niebieskiej: jak macierzyństwo Najświętszej Dziewicy stało się dla ni", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Procesa i Martyniana, Męczenników*\nBoże, który ze względu na chwalebne wyznanie wiary przez świętych Mę", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Pieśni nad Pieśniami.\n*Pnp 2:8-14*\n*Kościół odnosi do Matki Bożej słowa Pieśni nad pieśniami. W drodze do Heb", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:39-47*\nOnego czasu: Powstawszy Maryja udała się śpiesznie w okolic", + "id": "Evangelium" + }, + { + "body": "Błogosławiona jesteś, Panno Maryjo, któraś nosiła Stwórcę wszechrzeczy. Porodziłaś Tego, który Cię stworzył, i na wieki ", + "id": "Offertorium" + }, + { + "body": "Niech nas wspomaga, Panie, człowieczeństwo Jednorodzonego Syna Twojego; On to, zrodzony z Dziewicy, nie naruszył panieńs", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Procesa i Martyniana, Męczenników*\nPrzyjmij, Panie, prośby i ofiary, a modlitwa Twoich Świętych niech n", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Panie, przyjęliśmy Sakrament obchodząc doroczną uroczystość: spraw, prosimy, niech on udzieli nam pomocy na życie doczes", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Procesa i Martyniana, Męczenników*\nPosileni w czasie uczty ofiarnej Najświętszym Ciałem i Najdroższą Kr", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-03": [ + { + "body": "*Ml 2:6*\nZakon prawdy był w jego ustach, a nieprawość nie znalazła się na jego wargach; w pokoju i w prawości chodził ze", + "id": "Introitus" + }, + { + "body": "Boże, który sprawiłeś, że św. Ireneusz prawdziwą nauką zwalczał herezje i szczęśliwie umocnił pokój w Kościele, prosimy ", + "id": "Oratio" + }, + { + "body": "*2 Tm 3:14-17; 4:1-15*\nNajmilszy! Trwaj w tym, czegoś się nauczył i co ci zostało zwierzone, wiedząc, od kogoś się naucz", + "id": "Lectio" + }, + { + "body": "*Ps 121:8*\nPrzez wzgląd na mych braci i towarzyszy moich mówić będę: «Pokój w tobie».\n*Ps 36:37*\nStrzeż niewinności, pat", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:28-33*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie bójcie się t", + "id": "Evangelium" + }, + { + "body": "*Syr 24:44*\n*«Jak stworzone przez Boga słońce oświeca cały świat, tak promieniuje przepowiadanie Prawdy, a jej światło d", + "id": "Offertorium" + }, + { + "body": "Boże, który nie dozwalasz, aby narody w Ciebie wierzące zostały wstrząśnięte jakąkolwiek trwogą, racz przyjąć prośby i o", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Syr 24:47*\nZobaczcie, że nie dla samego siebie pracowałem, lecz dla wszystkich szukających prawdy.", + "id": "Communio" + }, + { + "body": "Boże, sprawco i miłośniku pokoju, którego znać to żyć, któremu służyć to królować; chroń proszących Cię od wszelkich nap", + "id": "Postcommunio" + } + ], + "2024-07-04": [ + { + "body": "*Ps 27:8-9*\nPan jest mocą dla Swojego ludu i twierdzą zbawienia dla Swego Pomazańca; ocal lud swój, o Panie, i błogosław", + "id": "Introitus" + }, + { + "body": "Boże zastępów, od którego pochodzi wszelka doskonałość, zaszczep w naszych sercach miłość Twojego imienia i daj nam wzro", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:3-11*\n*Święty Paweł czyni aluzję do obrzędu Chrztu przez zanu", + "id": "Lectio" + }, + { + "body": "*Ps 89:13; 89:1*\nZwróć się do nas, Panie, na chwilę i daj się ubłagać sługom Swoim.\n℣. Panie, Tyś był ucieczką naszą z p", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 8:1-9*\nOnego czasu: Gdy rzesza wielka była z Jezusem, a nie miała co j", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", + "id": "Offertorium" + }, + { + "body": "Daj się przebłagać, Panie, naszymi modlitwami i przyjmij łaskawie te dary Twojego ludu; aby zaś niczyje pragnienie nie b", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 26:6*\nZłożę w Jego przybytku ofiary radości, zaśpiewam i psalm zanucę Panu.", + "id": "Communio" + }, + { + "body": "Nasyceni Twoimi darami, prosimy Cię Panie, spraw, aby ich skuteczne działanie oczyściło nas, a ich pomoc wsparła.\nPrzez ", + "id": "Postcommunio" + } + ], + "2024-07-05": [ + { + "body": "*1 Kor 2:4*\nMowa moja i nauczanie moje nie polegały na przekonywających słowach mądrości ludzkiej, ale na okazaniu ducha", + "id": "Introitus" + }, + { + "body": "Panie Boże, spraw, abyśmy w duchu świętego Pawła Apostoła Posiedli tę najszczytniejszą znajomość Jezusa Chrystusa, w któ", + "id": "Oratio" + }, + { + "body": "*1 Tm 4:8-16*\n*Św. Paweł przypomina Tymoteuszowi i apostołom wszystkich czasów, że podstawą owocności ich działania jest", + "id": "Lectio" + }, + { + "body": "*Flp 1:8-9*\nŚwiadkiem mi jest Bóg, jak pragnę, abyście wszyscy byli w sercu Jezusa Chrystusa. A modlę się o to, aby miło", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 10:15-21*\n*Św. Antoni w młodym wieku usłyszał wezwanie Boże i poszedł ", + "id": "Evangelium" + }, + { + "body": "*Ps 137:1-2*\nWobec Aniołów będę Ci śpiewał; upadnę na twarz w Twoim świętym przybytku i będę sławił Twe imię.", + "id": "Offertorium" + }, + { + "body": "Spraw, Panie, byśmy do stołu uczty niebieskiej przynosili taką czystość duszy i ciała, jaką przedziwnie jaśniał św. Anto", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Flp 3:17*\nNaśladowcami moimi bądźcie, bracia, i zapatrujcie się na tych, którzy tak postępują, jak tego wzór macie w na", + "id": "Communio" + }, + { + "body": "Panie Jezu Chryste, niechaj niebieska uczta, która nas posiliła, rozpłomieni serca nasze takim ogniem miłości, z jakim ś", + "id": "Postcommunio" + } + ], + "2024-07-06": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2024-07-07": [ + { + "body": "*Ps 46:2*\nWszystkie narody, klaskajcie w dłonie, wykrzykujcie Bogu głosem radosnym.\n*Ps 46:3*\nBo Pan Najwyższy jest stra", + "id": "Introitus" + }, + { + "body": "O Boże, Opatrzność Twoja nie myli się nigdy w zarządzeniach swoich! Usilnie więc Ciebie błagamy, abyś usunął od nas co s", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:19-23*\n*Człowiek, który ulega namiętnościom, żyje w prawdziwe", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nPójdźcie, synowie, słuchajcie mnie bojaźni Pańskiej was nauczę.\n℣. Zbliżcie się do Niego, a opromieni w", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 7:15-21*\nOnego czasu rzekł Jezus uczniom swoim: «Strzeżcie się fałs", + "id": "Evangelium" + }, + { + "body": "*Dn 3:40*\nW miejsce całopalenia baranów, wołów oraz tysięcy tłustych baranków – tak niech się dokona ofiara nasza przed ", + "id": "Offertorium" + }, + { + "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nSkłoń ku mnie ucho twoje i wybaw mnie prędko.", + "id": "Communio" + }, + { + "body": "Panie! Łaski Twej zbawienne działanie niechaj nas uwolni od złych skłonności i doprowadzi do tego, co godziwe.\nPrzez Pan", + "id": "Postcommunio" + } + ], + "2024-07-08": [ + { + "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", + "id": "Introitus" + }, + { + "body": "Najłaskawszy Boże, który wśród innych wspaniałych darów obdarzyłeś świętą królową Elżbietę przywilejem uśmierzania gróźb", + "id": "Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2024-07-09": [ + { + "body": "*Ps 46:2*\nWszystkie narody, klaskajcie w dłonie, wykrzykujcie Bogu głosem radosnym.\n*Ps 46:3*\nBo Pan Najwyższy jest stra", + "id": "Introitus" + }, + { + "body": "O Boże, Opatrzność Twoja nie myli się nigdy w zarządzeniach swoich! Usilnie więc Ciebie błagamy, abyś usunął od nas co s", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:19-23*\n*Człowiek, który ulega namiętnościom, żyje w prawdziwe", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nPójdźcie, synowie, słuchajcie mnie bojaźni Pańskiej was nauczę.\n℣. Zbliżcie się do Niego, a opromieni w", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 7:15-21*\nOnego czasu rzekł Jezus uczniom swoim: «Strzeżcie się fałs", + "id": "Evangelium" + }, + { + "body": "*Dn 3:40*\nW miejsce całopalenia baranów, wołów oraz tysięcy tłustych baranków – tak niech się dokona ofiara nasza przed ", + "id": "Offertorium" + }, + { + "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nSkłoń ku mnie ucho twoje i wybaw mnie prędko.", + "id": "Communio" + }, + { + "body": "Panie! Łaski Twej zbawienne działanie niechaj nas uwolni od złych skłonności i doprowadzi do tego, co godziwe.\nPrzez Pan", + "id": "Postcommunio" + } + ], + "2024-07-10": [ + { + "body": "*Ps 112:1; 112:9*\nChwalcie, o dzieci, Pana, chwalcie imię Pańskie: On tej, co była niepłodna, każe mieszkać w domu jako ", + "id": "Introitus" + }, + { + "body": "Spraw, wszechmogący Boże, abyśmy, podziwiając męstwo sławnych Męczenników w wyznawaniu wiary, doznali miłościwego ich ws", + "id": "Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 123:7-8*\nDusza nasza niby ptak wyrwała się z sidła łowców.\n℣. Sidło się podarło, a my zostaliśmy uwolnieni. Wspomoże", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 12:46-50*\nOnego czasu: Gdy Jezus mówił do rzeszy, oto matka Jego i ", + "id": "Evangelium" + }, + { + "body": "*Ps 123:7*\nDusza nasza niby ptak wyrwała się z sidła łowców; sidło się podarło, a my zostaliśmy uwolnieni.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę: niech ona za wstawiennictwem Świętych Twoich utwierdzi nas w Twojej s", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 12:50*\nKtobykolwiek czynił wolę Ojca mego, który jest w niebie, ten moim bratem, i siostrą, i matką jest, mówi Pan.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, abyśmy za wstawiennictwem Twoich Świętych osiągnęli zbawienie, którego zadatek otrzymali", + "id": "Postcommunio" + } + ], + "2024-07-11": [ + { + "body": "*Ps 46:2*\nWszystkie narody, klaskajcie w dłonie, wykrzykujcie Bogu głosem radosnym.\n*Ps 46:3*\nBo Pan Najwyższy jest stra", + "id": "Introitus" + }, + { + "body": "O Boże, Opatrzność Twoja nie myli się nigdy w zarządzeniach swoich! Usilnie więc Ciebie błagamy, abyś usunął od nas co s", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Piusa I, Papieża i Męczennika*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustan", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:19-23*\n*Człowiek, który ulega namiętnościom, żyje w prawdziwe", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nPójdźcie, synowie, słuchajcie mnie bojaźni Pańskiej was nauczę.\n℣. Zbliżcie się do Niego, a opromieni w", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 7:15-21*\nOnego czasu rzekł Jezus uczniom swoim: «Strzeżcie się fałs", + "id": "Evangelium" + }, + { + "body": "*Dn 3:40*\nW miejsce całopalenia baranów, wołów oraz tysięcy tłustych baranków – tak niech się dokona ofiara nasza przed ", + "id": "Offertorium" + }, + { + "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Piusa I, Papieża i Męczennika*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trz", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nSkłoń ku mnie ucho twoje i wybaw mnie prędko.", + "id": "Communio" + }, + { + "body": "Panie! Łaski Twej zbawienne działanie niechaj nas uwolni od złych skłonności i doprowadzi do tego, co godziwe.\nPrzez Pan", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Piusa I, Papieża i Męczennika*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez ś", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-12": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Jana, Opata, abyśmy za jego przyczyną otrzymali to, c", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Nabora i Feliksa*\nSpraw, prosimy Cię, Panie, abyśmy stale doznawali pomocy świętych Męczenników Twoich ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:43-48*\nOnego czasu rzekł Jezus uczniom swoim: «Słyszeliście, że p", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam ku zbawieni", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Nabora i Feliksa*\nProsimy Cię, Panie, niech wstawiennictwo świętych Męczenników Twoich Nabora i Feliksa", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N., Opata, abyśmy naśladowali jego wzo", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Nabora i Feliksa*\nW rocznicę narodzin dla nieba Twoich Świętych prosimy Cię, Panie, abyśmy posileni sak", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-13": [ + { + "body": "*Ps 104:3-4*\nNiech się weseli serce szukających Pana, szukajcie Pana i umacniajcie się, szukajcie zawsze Jego oblicza. (", + "id": "Introitus" + }, + { + "body": "Najłaskawszy Boże, który sprawiłeś, że święci Andrzej i Benedykt wyłącznie Tobie się oddali przez podziwu godną wstrzemi", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 2:7-13*\nKtórzy się Pana boicie, czekajcie Jego miłosierdzia, a nie odstępujcie od Nie", + "id": "Lectio" + }, + { + "body": "*Ps 30:24-25*\nMiłujcie Pana, wszyscy Święci Jego! Pan wiernych zachowuje, ale odpłaca z nawiązką tym, którzy postępują w", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 67:4*\nSprawiedliwi się cieszą i weselą przed Bożym obliczem, i rozkoszują się pośród radości. (O. W. Alleluja.)", + "id": "Offertorium" + }, + { + "body": "Gdy składamy ofiary na Twoim ołtarzu, Panie, daj nam takie uczucie pobożności, jakim obdarzyłeś świętych Wyznawców Twoic", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:37*\nBłogosławieni słudzy owi, których Pan, gdy nadejdzie, zastanie czuwającymi. Zaprawdę powiadam wam, że przepas", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, niech za wstawiennictwem świętych Wyznawców Twoich Andrzeja i Benedykta święta uczta udzieli nam pomo", + "id": "Postcommunio" + } + ], + "2024-07-14": [ + { + "body": "*Ps 47:10-11*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak imię Twe Boże, tak i chwała Twoja się", + "id": "Introitus" + }, + { + "body": "Użycz nam łaskawie, prosimy Cię Panie, stałej prawości ducha w myśleniu i działaniu, abyśmy, nie mogąc istnieć bez Ciebi", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:12-17*\n*«Abba (Ojcze)!» – to modlitwa Chrystusa, wyrażająca ż", + "id": "Lectio" + }, + { + "body": "*Ps 30:5; 70:1*\nBądź mi Boże obrońcą, bądź zamkiem warownym, abyś mnie ocalił.\n℣. Boże, do Ciebie się uciekam, Panie, ni", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 16:1-9*\n*Jezus nie pochwala nieuczciwości włodarza. Stawia jednak za", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28; 17:32*\nTy wybawiasz naród uniżony, a pognębiasz oczy wyniosłe, bo któż prócz Pana jest Bogiem?", + "id": "Offertorium" + }, + { + "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nSkosztujcie i zobaczcie jak słodki jest Pan. Szczęśliwy człowiek, który mu ufa.", + "id": "Communio" + }, + { + "body": "Panie, niech niebieski Sakrament odnowi nasze dusze i ciała, abyśmy doznali skutków tego, co ze czcią sprawujemy.\nPrzez ", + "id": "Postcommunio" + } + ], + "2024-07-15": [ + { + "body": "*Iz 42:6*\nJa, Pan, wezwałem cię sprawiedliwie i ująłem cię za rękę i dałem cię na przymierze dla ludu, na światłość naro", + "id": "Introitus" + }, + { + "body": "Najmiłosierniejszy Boże, za szerzenie wiary w Ciebie święty Brunon, Biskup i Męczennik wielkodusznie przelał krew na tyc", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Henryka, Cesarza i Wyznawcy*\nBoże, który w dniu dzisiejszym przeniosłeś św. Henryka, Twego Wyznawcę, ze", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 6:10-22*\n*Św. Brunon znał osobiście wielu władców i udzielał im rad oraz napomnień.*\nDo", + "id": "Lectio" + }, + { + "body": "*Ps 118:46-47*\nŚwiadczyłem o Twej prawdzie wobec królów, a nie wstydziłem się.\n℣. I rozważałem Twoją naukę, bo bardzo ją", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:12-16*\nOnego czasu: Rzekł Jezus uczniom swoim: «To jest przykazanie m", + "id": "Evangelium" + }, + { + "body": "*Kol 1:24-25*\nRaduję się w cierpieniach i dopełniam na ciele własnym tego, czego nie dostaje cierpieniom Chrystusa; za c", + "id": "Offertorium" + }, + { + "body": "Panie, niech ta ofiara uwolni nas od więzów naszych grzechów i za wstawiennictwem świętego Brunona, Twego Męczennika i B", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Henryka, Cesarza i Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Flp 1:20-21*\nUwielbiony będzie Chrystus w moim ciele czy to przez życie, czy też przez śmierć; bo dla mnie życiem jest ", + "id": "Communio" + }, + { + "body": "Posileni ucztą niebieską, błagamy Cię, Panie, byś łaskawie rozpalił w nas ogień Twego Ducha, który świętego Brunona, Męc", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Henryka, Cesarza i Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-16": [ + { + "body": "*Ps 47:10-11*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak imię Twe Boże, tak i chwała Twoja się", + "id": "Introitus" + }, + { + "body": "Użycz nam łaskawie, prosimy Cię Panie, stałej prawości ducha w myśleniu i działaniu, abyśmy, nie mogąc istnieć bez Ciebi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Wspomnienie N. M. P. z Góry Karmelu*\nBoże, Tyś ozdobił zakon karmelitański szczególnym zaszczytem noszenia ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:12-17*\n*«Abba (Ojcze)!» – to modlitwa Chrystusa, wyrażająca ż", + "id": "Lectio" + }, + { + "body": "*Ps 30:5; 70:1*\nBądź mi Boże obrońcą, bądź zamkiem warownym, abyś mnie ocalił.\n℣. Boże, do Ciebie się uciekam, Panie, ni", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 16:1-9*\n*Jezus nie pochwala nieuczciwości włodarza. Stawia jednak za", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28; 17:32*\nTy wybawiasz naród uniżony, a pognębiasz oczy wyniosłe, bo któż prócz Pana jest Bogiem?", + "id": "Offertorium" + }, + { + "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Wspomnienie N. M. P. z Góry Karmelu*\nPoświęć, prosimy Cię, Panie, złożone dary ofiarne i spraw za przemożny", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nSkosztujcie i zobaczcie jak słodki jest Pan. Szczęśliwy człowiek, który mu ufa.", + "id": "Communio" + }, + { + "body": "Panie, niech niebieski Sakrament odnowi nasze dusze i ciała, abyśmy doznali skutków tego, co ze czcią sprawujemy.\nPrzez ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Wspomnienie N. M. P. z Góry Karmelu*\nProsimy Cię, Panie, niech nas wspiera dostojne wstawiennictwo Twojej c", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-17": [ + { + "body": "*Ps 47:10-11*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak imię Twe Boże, tak i chwała Twoja się", + "id": "Introitus" + }, + { + "body": "Użycz nam łaskawie, prosimy Cię Panie, stałej prawości ducha w myśleniu i działaniu, abyśmy, nie mogąc istnieć bez Ciebi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Aleksego, Wyznawcy*\nBoże, który co roku uweselasz nas uroczystością świętego Aleksego, Twojego Wyznawcy", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:12-17*\n*«Abba (Ojcze)!» – to modlitwa Chrystusa, wyrażająca ż", + "id": "Lectio" + }, + { + "body": "*Ps 30:5; 70:1*\nBądź mi Boże obrońcą, bądź zamkiem warownym, abyś mnie ocalił.\n℣. Boże, do Ciebie się uciekam, Panie, ni", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 16:1-9*\n*Jezus nie pochwala nieuczciwości włodarza. Stawia jednak za", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28; 17:32*\nTy wybawiasz naród uniżony, a pognębiasz oczy wyniosłe, bo któż prócz Pana jest Bogiem?", + "id": "Offertorium" + }, + { + "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Aleksego, Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybaw", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nSkosztujcie i zobaczcie jak słodki jest Pan. Szczęśliwy człowiek, który mu ufa.", + "id": "Communio" + }, + { + "body": "Panie, niech niebieski Sakrament odnowi nasze dusze i ciała, abyśmy doznali skutków tego, co ze czcią sprawujemy.\nPrzez ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Aleksego, Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech n", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-18": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który wsławiłeś błogosławionego Szymona, Twego Wyznawcę, darem głoszenia Ewangelii, spraw ła", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Kamila de Lellis*\nBoże, który wyróżniłeś świętego Kamila szczególnym darem miłości, by niósł pomoc dusz", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Kamila de Lellis*\nBoże Ojcze Wszechmogący, niech ta niepokalana ofiara, w której odnawiamy dzieło niezm", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Kamila de Lellis*\nPrzez ten pokarm niebieski, któryśmy z nabożeństwem przyjęli, obchodząc uroczystość ś", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-19": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, który obdarowałeś św. Wincentego apostolską gorliwością dla głoszenia Ewangelii ubogim i podniesienia blasku stanu", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + } + ], + "2024-07-20": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, Ty obdarzyłeś błogosławionego Czesława dziewiczą czystością obyczajów i rozpaliwszy w nim gorliwość o zbawienie du", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Hieronima Emiliani, Wyznawcy*\nBoże, Ojcze miłosierdzia, przez zasługi i przyczynę św. Hieronima, któreg", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Hieronima Emiliani, Wyznawcy*\nNajłaskawszy Boże, wyniszczywszy w świętym Hieronimie starego człowieka, ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Hieronima Emiliani, Wyznawcy*\nPokrzepieni Chlebem Aniołów kornie błagamy Cię, Panie, abyśmy obchodząc z", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-21": [ + { + "body": "*Ps 53:6-7*\nOto Bóg mi dopomaga, Pan podtrzymuje me życie. Odwróć zło ku moim przeciwnikom i według Twej obietnicy zniwe", + "id": "Introitus" + }, + { + "body": "Panie, niech uszy miłosierdzia Twego otworzą się na modlitwy błagających i abyś mógł spełnić ich pragnienia, daj im pros", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 10:6-13*\n*Św. Paweł poucza nas, że dzieje Starego Testamen", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nO Panie, Panie nasz, jak przedziwne Twe imię po wszystkiej ziemi.\n℣. Tyś swój majestat wyniósł nad niebiosa. Al", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:41-47*\nOnego czasu: Gdy przybliżył się Jezus do Jeruzalem i ujrza", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nPrzykazania Pańskie słuszne, radują serca; sądy Pańskie słodsze od miodu płynącego z plas", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię Panie, dozwól nam godnie uczestniczyć w tym misterium, ilekroć bowiem sprawujemy pamiątkę ofiary Chrystusa, ", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*J 6:57*\nKto pożywa moje Ciało i pije moją Krew, we mnie mieszka, a ja w nim, mówi Pan.", + "id": "Communio" + }, + { + "body": "Panie, niech udział w Twoim Sakramencie, oczyści nas i zjednoczy.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-07-22": [ + { + "body": "*Ps 118:95-96*\nCzekali na mnie grzesznicy, ażeby mnie zgubić, a ja pojęłam Twoje nakazy: widziałam, że ma granice Wszelk", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niechaj nas wspiera pośrednictwo świętej Marii Magdaleny, której prośbami ubłagany wskrzesiłeś jej b", + "id": "Oratio" + }, + { + "body": "*Pnp 3:2-5; 8:6-7*\n*Liturgia stosuje do św. Marii Magdaleny tekst Pieśni nad pieśniami. O świcie dnia zmartwychwstania u", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił Cię olejkiem wesela. A", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:36-50*\nOnego czasu: Pewien faryzeusz zaprosił Jezusa na posiłek ze", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą Ci naprzeciw, po Twej prawicy stoi królowa strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech dary nasze będą Tobie miłe dzięki chwalebnym zasługom świętej Marii Magdaleny, której ofiarną ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:121-122; 118:128*\nPrzestrzegałam prawa i sprawiedliwości, niech nie ciemiężą mnie pyszni; stosowałam się do wszy", + "id": "Communio" + }, + { + "body": "Przyjąwszy jedyny zbawienny lek, Ciało Twoje i Krew Najdroższą, prosimy Cię, Panie: niech nas opieka świętej Marii Magda", + "id": "Postcommunio" + } + ], + "2024-07-23": [ + { + "body": "*Dn 3:84; 3:87*\nKapłani Boży, błogosławcie Panu, święci i pokornego serca chwalcie Boga.\n*Dan 3:57*\nBłogosławcie Panu, w", + "id": "Introitus" + }, + { + "body": "Boże, który nagradzasz dusze wierne, a dzień dzisiejszy uświęciłeś męczeństwem świętego Kapłana Twego Apolinarego; spraw", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Liboriusza*\nSpraw, prosimy Cię, wszechmogący Boże, aby chwalebna uroczystość świętego Liboriusza, Twego", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-11*\nNajmilsi! Starszych, którzy są wśród was, proszę, jako równie st", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 22:24-30*\nOnego czasu: Powstał między uczniami spór, kto by z nich z", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na te dary, które składamy dla uczczenia pamięci świętego Kapłana i Męczennika Twego Apolinarego", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Liboriusza*\nPanie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi dozn", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:20-21*\nPanie, dałeś mi pięć talentów, otom drugie pięć zyskał. Dobrze, sługo prawy i wierny, żeś w małym był wier", + "id": "Communio" + }, + { + "body": "Przyjmując Najświętszy Sakrament, prosimy Cię, Panie, by nas otaczała ciągła opieka św. Apolinarego, bo nie przestajesz ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Liboriusza*\nWszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną ś", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-24": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Boże, który błogosławioną Kingę obdarzyłeś słodyczą Twego błogosławieństwa i zachowałeś dziewicą nawet w małżeństwie, sp", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Krystyny, Dziewicy i Męczennicy*\nProsimy Cię, Panie, aby święta Krystyna, Dziewica i Męczennica Twoja, ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Panie, zlej łaskawie błogosławieństwo Twe na dary, które Ci składamy ku czci błogosławionej Kingi, Twojej Dziewicy: niec", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Krystyny, Dziewicy i Męczennicy*\nProsimy Cię, Panie, przyjmij łaskawie ofiarę, którą Ci składamy przez ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, za wstawiennictwem błogosławionej Kingi, Twojej Dziewicy, niech przyjęte przez nas święte tajemnice ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Krystyny, Dziewicy i Męczennicy*\nDarem Bożym szczodrze nasyceni, prosimy Cię, Panie Boże nasz, abyśmy z", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-25": [ + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", + "id": "Introitus" + }, + { + "body": "Bądź, Panie, dla ludu Twego tym, który uświęca i strzeże, aby wsparty opieką Apostoła Twego Jakuba, podobał Ci się swym ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Krzysztofa*\nProsimy Cię, wszechmogący Boże, abyśmy obchodząc urodziny dla nieba świętego Krzysztofa, Tw", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-15*\nBracia: Sądzę, że Bóg nas, Apostołów, uważał jako ", + "id": "Lectio" + }, + { + "body": "*Ps 44:17; 44:18*\nUstanowisz ich książętami po całej ziemi, przez wszystkie pokolenia głosić będą Twe imię, o Panie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:20-23*\nOnego czasu: Przystąpiła do Jezusa matka synów Zebedeuszo", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech błogosławione męczeństwo świętego Jakuba Apostoła zaleci Tobie dary Twego ludu; a skoro nie są", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Krzysztofa*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28*\nWy, którzyście ze mną poszli, zasiądźcie na stolicach, sądząc dwanaście pokoleń Izraela.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, wspomagaj nas przez przyczynę Twojego Apostoła Jakuba, w którego uroczystość przyjęliśmy z radością ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Krzysztofa*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wiecz", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-26": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci świętej Anny; z Jej uroczystości radują się Aniołowie i wychwa", + "id": "Introitus" + }, + { + "body": "Boże, który raczyłeś udzielić świętej Annie tej łaski, że stała się matką Rodzicielki Twego Jednorodzonego Syna; spraw ł", + "id": "Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą Ci naprzeciw, po Twej prawicy stoi królowa strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę: aby za wstawiennictwem św. Anny, która stała się matką Rodzicielki Sy", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na twoich wargach, przeto Bóg pobłogosławił cię na wieki.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie Boże nasz, abyśmy pokrzepieni niebieskim Sakramentem, za przyczyną św. Anny, która z woli Twojej była", + "id": "Postcommunio" + } + ], + "2024-07-27": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Pantaleona, Męczennika*\nProsimy Cię, wszechmogący Boże, za przyczyną świętego Pantaleona, Twego Męczenn", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Pantaleona, Męczennika*\nPanie, niech nasza ofiara znajdzie przyjęcie u Ciebie i niech posłuży nam ku zb", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Pantaleona, Męczennika*\nPokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie, Boże nasz, abyś", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-28": [ + { + "body": "*Ps 54:17-20; 54:23*\nKiedy wołałem do Pana, wysłuchał głosu mego przeciw tym, którzy na mnie nastają; i poniżył ich Ten,", + "id": "Introitus" + }, + { + "body": "Boże, który najbardziej okazujesz swoją wszechmoc przebaczając i litując się, pomnóż w nas łaski Twego miłosierdzia, aby", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 12:2-11*\n*Duch Święty nadal działa w Kościele, obdarzając ", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nStrzeż mnie, o Panie, jak źrenicy oka; w cieniu Twych skrzydeł mnie ukryj.\n℣. Sprzed Twego oblicza niech", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:9-14*\nOnego czasu: Mówił Jezus do niektórych, którzy samym sobie ", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże mój, Tobie ufam, niech nie doznam wstydu; niech się nie śmieją ze m", + "id": "Offertorium" + }, + { + "body": "Niechaj wrócą do Ciebie, Panie, poświęcone ofiary, Panie, które pozwoliłeś tak składać na chwałę imienia Twojego, że zar", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nPrzyjmiesz ofiary prawe, dary i całopalenia, na ołtarzu Twoim, Panie.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, racz nie odmawiać Twojej pomocy tym, których nieustannie posilasz Boskim Sakramentem.\nPrz", + "id": "Postcommunio" + } + ], + "2024-07-29": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy Marty, nabyli u", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Feliksa, Symplicjusza, Faustyna i Beatryczy*\nProsimy Cię, Panie, aby lud chrześcijański, radując się z ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:38-42*\nOnego czasu: Jezus wszedł do jednej osady, a niewiasta pew", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Feliksa, Symplicjusza, Faustyna i Beatryczy*\nSkładamy Tobie, Panie, ofiary ku uczczeniu pamięci świętyc", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Feliksa, Symplicjusza, Faustyna i Beatryczy*\nProsimy Cię, wszechmogący Boże, aby uroczystość świętych M", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-30": [ + { + "body": "*Ps 54:17-20; 54:23*\nKiedy wołałem do Pana, wysłuchał głosu mego przeciw tym, którzy na mnie nastają; i poniżył ich Ten,", + "id": "Introitus" + }, + { + "body": "Boże, który najbardziej okazujesz swoją wszechmoc przebaczając i litując się, pomnóż w nas łaski Twego miłosierdzia, aby", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Abdona i Sennena, Męczenników*\nBoże, który Świętym Twoim Abdonowi i Sennenowi dla osiągnięcia obecnej c", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 12:2-11*\n*Duch Święty nadal działa w Kościele, obdarzając ", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nStrzeż mnie, o Panie, jak źrenicy oka; w cieniu Twych skrzydeł mnie ukryj.\n℣. Sprzed Twego oblicza niech", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:9-14*\nOnego czasu: Mówił Jezus do niektórych, którzy samym sobie ", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże mój, Tobie ufam, niech nie doznam wstydu; niech się nie śmieją ze m", + "id": "Offertorium" + }, + { + "body": "Niechaj wrócą do Ciebie, Panie, poświęcone ofiary, Panie, które pozwoliłeś tak składać na chwałę imienia Twojego, że zar", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Abdona i Sennena, Męczenników*\nProsimy Cię, Panie, niech ta ofiara, którą składamy wspominając narodzin", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nPrzyjmiesz ofiary prawe, dary i całopalenia, na ołtarzu Twoim, Panie.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, racz nie odmawiać Twojej pomocy tym, których nieustannie posilasz Boskim Sakramentem.\nPrz", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Abdona i Sennena, Męczenników*\nPanie, niech działanie Twego Sakramentu oczyści nas ze złych skłonności ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-07-31": [ + { + "body": "*Flp 2:10-11*\n*Św. Ignacy chciał, aby jego zakon nosił imię Jezusa.*\nNa imię Jezus niechaj się zgina wszelkie kolano mie", + "id": "Introitus" + }, + { + "body": "*«Dla większej chwały Bożej» – to hasło zakonu Jezuitów.*\nBoże, który dla rozszerzenia większej chwały Twojego imienia p", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 2:8-10; 3:10-12*\nNajmilszy: Pamiętaj, że Pan Jezus Chrystu", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Panie Boże, niech ofiarom naszym towarzyszy łaskawe orędownictwo św. Ignacego, aby najświętsze misteria, w których ustan", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:49*\nOgień przyszedłem rzucić na ziemię, a czegóż chcę, jeno aby zapłonął.", + "id": "Communio" + }, + { + "body": "Ofiara chwały, którą złożyliśmy Tobie, Panie, dzięki czyniąc za świętego Ignacego, niechaj nas za jego przyczyną doprowa", + "id": "Postcommunio" + } + ], + "2024-08-01": [ + { + "body": "*Ps 54:17-20; 54:23*\nKiedy wołałem do Pana, wysłuchał głosu mego przeciw tym, którzy na mnie nastają; i poniżył ich Ten,", + "id": "Introitus" + }, + { + "body": "Boże, który najbardziej okazujesz swoją wszechmoc przebaczając i litując się, pomnóż w nas łaski Twego miłosierdzia, aby", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Siedmiu Braci Machabejskich, Męczenników*\nNiech nas, Panie, uraduje wspólne zwycięstwo Braci Męczenników, n", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 12:2-11*\n*Duch Święty nadal działa w Kościele, obdarzając ", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nStrzeż mnie, o Panie, jak źrenicy oka; w cieniu Twych skrzydeł mnie ukryj.\n℣. Sprzed Twego oblicza niech", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:9-14*\nOnego czasu: Mówił Jezus do niektórych, którzy samym sobie ", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże mój, Tobie ufam, niech nie doznam wstydu; niech się nie śmieją ze m", + "id": "Offertorium" + }, + { + "body": "Niechaj wrócą do Ciebie, Panie, poświęcone ofiary, Panie, które pozwoliłeś tak składać na chwałę imienia Twojego, że zar", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Siedmiu Braci Machabejskich, Męczenników*\nDozwól nam, Panie, pobożnie sprawować Twoje misteria ku czci Twoi", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nPrzyjmiesz ofiary prawe, dary i całopalenia, na ołtarzu Twoim, Panie.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, racz nie odmawiać Twojej pomocy tym, których nieustannie posilasz Boskim Sakramentem.\nPrz", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Siedmiu Braci Machabejskich, Męczenników*\nProsimy Cię, wszechmogący Boże, abyśmy coraz lepiej naśladowali w", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-02": [ + { + "body": "*Łk 4:18*\nDuch Pański nade mną: dlatego mnie namaścił, abym głosił Ewangelię ubogim. Posłał mię, abym uzdrowił skruszony", + "id": "Introitus" + }, + { + "body": "Boże, Tyś przez św. Alfonsa Marię, Twego Wyznawcę i Biskupa, obdarzył Twój Kościół nową rodziną zakonną; prosimy Cię, ab", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Stefana I*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczy", + "id": "Commemoratio Oratio" + }, + { + "body": "*2 Tm 2:1-7*\n*Św. Alfons, podobnie jak św. Paweł, nie tylko sam głosił słowo Boże, lecz pozostawił uczniów, którzy prowa", + "id": "Lectio" + }, + { + "body": "*Ps 118:52-53*\nPamiętam, Panie, o dawnych Twych Sądach, są one dla mnie pociechą. Gniew mnie ogarnia z powodu grzesznikó", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Prz 3:9; 3:27*\nSkładaj Panu ofiary z twojej majętności, dawaj Mu z pierwocin wszystkich twoich plonów. Nie zabraniaj cz", + "id": "Offertorium" + }, + { + "body": "Panie Jezu Chryste, który św. Alfonsowi Marii dozwoliłeś sprawować te misteria i przez nie samego siebie złożyć Tobie w ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Stefana I*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzi", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Syr 50:1; 50:9*\nOto Kapłan wielki, który za swego życia podparł dom i za dni swoich umocnił świątynię. Był jak ogień ja", + "id": "Communio" + }, + { + "body": "*Św. Alfons gorliwie zabiegał o przywrócenie zwyczaju częstej Komunii świętej, nie praktykowanego w jego czasach.*\nBoże,", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Stefana I*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby po", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-03": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2024-08-04": [ + { + "body": "*Ps 67:6-7; 67:36*\nBóg w mieszkaniu swoim świętym. Ten Bóg wprowadza samotnych do domu. On lud swój potęgą i siłą obdarz", + "id": "Introitus" + }, + { + "body": "Wszechmocny, wiekuisty Boże, Ty przewyższasz obfitością dobrodziejstw Twoich pragnienia i zasługi błagających Ciebie, ob", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 15:1-10*\nBracia: Przypominam wam Ewangelię, którą wam głos", + "id": "Lectio" + }, + { + "body": "*Ps 27:7 27:1*\nNa Boga się zdałem, a On mnie pokrzepił, przeto me serce radością przejęte i dzięki Mu składam ochotnie.\n", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 7:31-37*\nOnego czasu: Jezus, wyszedłszy z granic Tyru przez Sydon, prz", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nWysławiam Cię, Panie, żeś mnie ocalił i nie dałeś mym wrogom cieszyć się z mej zguby, Panie, wołam do Ciebie", + "id": "Offertorium" + }, + { + "body": "Wejrzyj łaskawie, prosimy Cię Panie, na usłużność naszą, a ofiara nasza niechaj będzie dla Ciebie miłą daniną, a dla nas", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Prz 3:9-10*\nCzyń Panu ofiary z majętności twojej i z pierwocin plonów twoich, a napełnią się spichlerze twoje zbożem i ", + "id": "Communio" + }, + { + "body": "Prosimy cię, Panie, daj nam doznać spożywając Twój Sakrament, pomocy na duszy i ciele, abyśmy całkowicie uzdrowieni cies", + "id": "Postcommunio" + } + ], + "2024-08-05": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2024-08-06": [ + { + "body": "*Ps 76:19*\nBłyskawice Twoje rozjaśniły widnokrąg: zatrzęsła się ziemia i zadygotała.\n*Ps 83:2-3*\nJak miłe są przybytki T", + "id": "Introitus" + }, + { + "body": "Boże, Tyś przy chwalebnym Przemienieniu jednorodzonego Syna Twojego potwierdził tajemnice wiary świadectwem Ojców, a prz", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Sykstusa II oraz Felicysyma i Agapita*\nBoże, który nam pozwalasz obchodzić narodziny dla nieba świętych", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*2 P 1:16-19*\n*Św. Piotr, naoczny świadek Przemienienia, powołuje się na świa", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejszy nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 17:1-9*\nOnego czasu: Wziął Jezus Piotra i Jakuba, i Jana brata jego", + "id": "Evangelium" + }, + { + "body": "*Ps 111:3*\nZasoby i bogactwa będą w jego domu, a hojność jego będzie trwała zawsze. Alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, poświęć składane ofiary przez chwalebne Przemienienie jednorodzonego Syna Twego, a nas oczyść od zmaz grzechowych", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Sykstusa II oraz Felicysyma i Agapita*\nOfiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjm", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Mt 17:9*\nNikomu nie mówcie o widzeniu, aż Syn Człowieczy zmartwychwstanie.", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli najświętszą tajemnicą Przemienienia Syna Twego", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Sykstusa II oraz Felicysyma i Agapita*\nProsimy Cię, Panie, za wstawiennictwem Twoich Męczenników Sykstu", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-07": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który pozwoliłeś świętemu Kajetanowi, Twemu Wyznawcy, naśladować sposób życia Apostołów; daj nam za jego wstawienn", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Donata*\nBoże, chwało Twych kapłanów, daj, prosimy Cię, niech doznamy pomocy świętego Donata, Twego Męcz", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:24-33*\n*Chrystus nie zaleca lenistwa, lecz gani zbytnią troskę o ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie miła i", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Donata*\nSpraw, prosimy Cię, Panie, aby dzięki wstawiennictwu św. Donata, Twego Męczennika i Biskupa, kt", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Donata*\nWszechmogący i miłosierny Boże, który czynisz nas uczestnikami i szafarzami Twoich Sakramentów,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-08": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Wszechmogący i wieczny Boże, który św. Jana Marię uczyniłeś godnym podziwu dla jego pasterskiej gorliwości oraz wytrwałe", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Cyriaka, Larga i Szmaragda*\nBoże, który co roku uweselasz nas uroczystością świętych Męczenników Twoich", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Cyriaka, Larga i Szmaragda*\nPanie, niech nasza ofiara znajdzie przyjęcie u Ciebie i niech posłuży nam k", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Cyriaka, Larga i Szmaragda*\nPokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie Boże nasz, a", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-09": [ + { + "body": "*Ps 111:9*\nRozdziela, daje ubogim: hojność jego będzie trwała zawsze, Potęga jego wzmoże się z chwałą.\n*Ps 111:1*\nBłogos", + "id": "Introitus" + }, + { + "body": "Usłysz, Panie, błagania nasze i za przyczyną św. Wawrzyńca, Twego Męczennika, którego uroczystość uprzedzamy, okazuj nam", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Romana*\nProsimy Cię, wszechmogący Boże, za przyczyną świętego Romana, Twego Męczennika, uwolnij nasze c", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", + "id": "Lectio" + }, + { + "body": "*Ps 111:9; 111:2*\nRozdziela, daje ubogim: hojność jego będzie trwała zawsze.\n℣. Potomstwo jego będzie potężne na ziemi, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:24-27*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli kto chce z", + "id": "Evangelium" + }, + { + "body": "*Job 16:20*\nModlitwa moja jest czysta, przeto błagam, by dano miejsce wołaniu memu w niebie; bo tam jest sędzia mój i św", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na ofiary, które Ci składamy, i za wstawiennictwem św. Wawrzyńca, Twego Męczennika, wyzwól nas z", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Romana*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i ł", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:24*\nJeśli kto chce za mną iść, niech się zaprze samego siebie i weźmie krzyż swój, i naśladuje mię.", + "id": "Communio" + }, + { + "body": "Daj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem św. Wawrzyńca, Twego Męczennika, w wieczności, jak z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Romana*\nProsimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelki", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-10": [ + { + "body": "*Ps 95:6*\n*Antyfona wyraża zachwyt wchodzących do wspaniałej bazyliki św. Wawrzyńca.*\nChwałą i pięknością promienieje je", + "id": "Introitus" + }, + { + "body": "Daj nam, prosimy Cię, wszechmogący Boże, tak stłumić płomienie naszych namiętności, jak świętemu Wawrzyńcowi użyczyłeś s", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 9:6-10*\n*Św. Wawrzyniec oświadczył pogańskiemu sędziemu, ż", + "id": "Lectio" + }, + { + "body": "*Ps 16:3*\nBadałeś me serce, nocą mnie nawiedziłeś.\n℣. Doświadczyłeś mię w ogniu, a nieprawości we mnie nie znalazłeś. Al", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:24-26*\n*Śmierć św. Wawrzyńca i wielu innych męczenników przyniosła Ko", + "id": "Evangelium" + }, + { + "body": "*Ps 95:6*\nChwałą i pięknością promienieje jego oblicze, moc i wspaniałość w jego świątyni.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij dary ze czcią złożone i spraw, niech przez zasługi św. Wawrzyńca przyczynią się do naszego ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 12:26*\nKto mnie służy, niech idzie za mną; a gdzie ja jestem, tam będzie i sługa mój.", + "id": "Communio" + }, + { + "body": "Darem świętym nasyceni, kornie błagamy Cię, Panie, abyśmy składając przez tę ofiarę należny Ci hołd, za wstawiennictwem ", + "id": "Postcommunio" + } + ], + "2024-08-11": [ + { + "body": "*Ps 69:2-3*\nBoże, wejrzyj ku wspomożeniu memu, Panie pospiesz ku ratunkowi memu. Niech się zawstydzą i okryją rumieńcem,", + "id": "Introitus" + }, + { + "body": "Wszechmocny, miłosierny Boże, dzięki Twej łasce wierni Twoi służą Ci godnie i chwalebnie, daj nam prosimy Cię, dążyć bez", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 3:4-9*\n*Apostołowie, ich następcy biskupi i kapłani oraz w", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nW każdym czasie będę błogosławił Panu; na ustach moich zawsze Jego chwała.\n℣. W Panu dusza moja będzie się c", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:23-37*\n*Zasada moralności chrześcijańskiej jest bardzo prosta, le", + "id": "Evangelium" + }, + { + "body": "*Wj 32:11 32:13; 32:14*\nMojżesz modlił się do Pana, Boga swego mówiąc: Czemuż Panie, gniewa się zapalczywość Twoja przec", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na dary ofiarne, które składamy na Twoim świętym ołtarzu, aby wyjednując nam przebaczenie przyni", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13; 103:14-15*\n*Chleb, wino i oliwa podtrzymują doczesne życie człowieka. Jako materia sakramentów służą życiu n", + "id": "Communio" + }, + { + "body": "Prosimy Cię Panie, niech udział w świętym misterium wleje w nas nowe życie, uwolni od win i zapewni obronę.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-08-12": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy Klary, nabyli u", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2024-08-13": [ + { + "body": "*Ps 69:2-3*\nBoże, wejrzyj ku wspomożeniu memu, Panie pospiesz ku ratunkowi memu. Niech się zawstydzą i okryją rumieńcem,", + "id": "Introitus" + }, + { + "body": "Wszechmocny, miłosierny Boże, dzięki Twej łasce wierni Twoi służą Ci godnie i chwalebnie, daj nam prosimy Cię, dążyć bez", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Hipolita i Kasjana, Męczenników*\nSpraw, prosimy Cię, wszechmogący Boże, aby chwalebna uroczystość święt", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 3:4-9*\n*Apostołowie, ich następcy biskupi i kapłani oraz w", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nW każdym czasie będę błogosławił Panu; na ustach moich zawsze Jego chwała.\n℣. W Panu dusza moja będzie się c", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:23-37*\n*Zasada moralności chrześcijańskiej jest bardzo prosta, le", + "id": "Evangelium" + }, + { + "body": "*Wj 32:11 32:13; 32:14*\nMojżesz modlił się do Pana, Boga swego mówiąc: Czemuż Panie, gniewa się zapalczywość Twoja przec", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na dary ofiarne, które składamy na Twoim świętym ołtarzu, aby wyjednując nam przebaczenie przyni", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Hipolita i Kasjana, Męczenników*\nWejrzyj, Panie, na dary ludu Swojego ofiarowane w uroczystość Świętych", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13; 103:14-15*\n*Chleb, wino i oliwa podtrzymują doczesne życie człowieka. Jako materia sakramentów służą życiu n", + "id": "Communio" + }, + { + "body": "Prosimy Cię Panie, niech udział w świętym misterium wleje w nas nowe życie, uwolni od win i zapewni obronę.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Hipolita i Kasjana, Męczenników*\nPanie, niech przyjęcie Twego Sakramentu zachowa nas i utwierdzi w świe", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-14": [ + { + "body": "*Ps 44:13; 44:15; 44:16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Ni", + "id": "Introitus" + }, + { + "body": "Boże, Tyś raczył obrać sobie na mieszkanie dziewicze łono Najświętszej Maryi; daj nam bezpiecznie pod Jej opieką brać ra", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Euzebiusza*\nBoże, który co roku uweselasz nas uroczystością św. Euzebiusza, Twojego Wyznawcy, spraw, ab", + "id": "Commemoratio Oratio" + }, + { + "body": "*Syr 24:23-31*\nJako krzew winny wydałam wdzięczną woń, a kwiaty moje owocem czci i godności. Jam matką pięknej miłości i", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "Błogosławiona jesteś, Panno Maryjo, któraś nosiła Stwórcę wszechrzeczy. Porodziłaś Tego, który Cię stworzył, i na wieki ", + "id": "Offertorium" + }, + { + "body": "Panie, niech nasze dary poleca Twojej łaskawości modlitwa Bożej Rodzicielki, którą po to zabrałeś z tego świata, aby ufn", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Euzebiusza*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Miłosierny Boże, udziel pomocy naszej ułomności, abyśmy powstali z naszych nieprawości za wstawiennictwem Najświętszej B", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Euzebiusza*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas broni", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-15": [ + { + "body": "*Ap 12:1*\nZnak wielki ukazał się na niebie: Niewiasta obleczona w słońce i księżyc u jej stóp, a na jej głowie korona z ", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, Ty wziąłeś do niebieskiej chwały ciało i duszę Niepokalanej Dziewicy Maryi, Matki Twego Syna", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Judyty.\n*Jdt 13, 22-25; 15:10*\n*Podobnie jak Judyta w Starym Testamencie, Maryja poświęciła się dla do", + "id": "Lectio" + }, + { + "body": "*Ps 44:11-12; 44:14*\n*Wniebowzięcie to triumfalny pochód Królowej nieba.*\nPosłuchaj, córko, spójrz i nakłoń twego ucha, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:41-50*\nOnego czasu: Napełniona została Elżbieta Duchem Świętym i z", + "id": "Evangelium" + }, + { + "body": "*Rdz 3:15*\n*W Maryi, Matce Zbawiciela, spełniła się obietnica dana przez Boga w raju.*\nPołożę nieprzyjaźń między tobą, a", + "id": "Offertorium" + }, + { + "body": "Ofiara naszego oddania niechaj się wzniesie do Ciebie, Panie, i za wstawiennictwem Najświętszej Maryi Panny Wniebowzięte", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*Łk 1:48-49*\n*Chwała, którą Maryja już posiadała, ma stać się również naszym udziałem.*\nBłogosławioną zwać mnie będą wsz", + "id": "Communio" + }, + { + "body": "Przyjąwszy zbawczy Sakrament, prosimy Cię, Panie, daj, byśmy przez zasługi i wstawiennictwo Najświętszej Maryi Panny Wni", + "id": "Postcommunio" + } + ], + "2024-08-16": [ + { + "body": "*Ps 111:9*\nRozdziela, daje ubogim: hojność jego będzie trwała zawsze, potęga jego wzmoże się z chwałą.\n*Ps 111:1*\nBłogos", + "id": "Introitus" + }, + { + "body": "Boże, który pośród wszystkich Świętych wybrałeś św. Joachima na ojca Rodzicielki Twojego Syna, daj, prosimy, abyśmy zaws", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 111:9; 111:2*\nRozdziela, daje ubogim: hojność jego będzie trwała zawsze.\n℣. Potomstwo jego będzie potężne na ziemi, ", + "id": "Graduale" + }, + { + "body": "Początek ☩ Ewangelii świętej według Mateusza.\n*Mt 1:1-16*\n*Syn Boży stał się prawdziwym człowiekiem. Jako człowiek jest ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami Twoich rąk, o Panie.", + "id": "Offertorium" + }, + { + "body": "Najłaskawszy Boże, przyjmij ofiarę złożoną majestatowi Twojemu ku uczczeniu świętego patriarchy Joachima, ojca Maryi Dzi", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby Sakrament, któryśmy przyjęli, przez zasługi i modlitwy świętego Joachima, ojca Rodzi", + "id": "Postcommunio" + } + ], + "2024-08-17": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który co roku uweselasz nas uroczystością świętego Jacka, Twojego Wyznawcy, spraw łaskawie, abyśmy również naślado", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2024-08-18": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki; powstań, o", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, pomnóż w nas wiarę, nadzieję i miłość, abyśmy zaś mogli osiągnąć to, co obiecujesz, daj nam ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 3:16-22*\n*Żydzi, zwłaszcza faryzeusze, wierzyli, że osiągną zba", + "id": "Lectio" + }, + { + "body": "*Ps 73:20; 73:19; 73:22*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki.\n℣. Powstań", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 17:11-19*\n*Zbawiciel uzdrawiał Żydów i Samarytan, którzy weń wierzyl", + "id": "Evangelium" + }, + { + "body": "*Mdr 16:20*\nTobie ufam, o Panie; mówię: Ty jesteś Bogiem moim, w Twoim ręku losy moje.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na Twój lud, wejrzyj łaskawie na jego dary, a przejednany tą ofiarą udziel nam przebaczenia i wy", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Mdr 16:20*\nPanie, dałeś nam chleb z nieba, mający w sobie wszystkie rozkosze i słodkość wszelkiego smaku.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, aby przez przyjęcie niebieskiego Sakramentu wzrastała w nas łaska wiecznego Odkupienia.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-08-19": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, Ty obudziłeś w świętym Janie, Twoim Wyznawcy, przedziwny zapał do szerzenia czci Najświętszych Serc Jezusa i Maryi", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2024-08-20": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś dał ludowi Swemu świętego Bernarda za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć or", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Syr 39:6-14*\nSprawiedliwy już od zarania czujnie zwraca swe serce do Pana, który go stworzy", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Bernarda, Twego Biskupa i Doktora, która zaleci Tobie naszą ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty Bernard, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoj", + "id": "Postcommunio" + } + ], + "2024-08-21": [ + { + "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", + "id": "Introitus" + }, + { + "body": "Wszechmogący i miłosierny Boże, Ty rozpaliwszy świętą Joannę Franciszkę ogniem Swojej miłości, obdarzyłeś ją przedziwną ", + "id": "Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta zbawcza ofiara zapali nas takim ogniem miłości, jaki zapłonął w sercu świętej Joanny Franci", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Communio" + }, + { + "body": "Tchnij w nas, o Panie, Ducha Twojej miłości, i spraw, abyśmy nasyceni mocą niebiańskiego chleba wzgardzili tym, co ziems", + "id": "Postcommunio" + } + ], + "2024-08-22": [ + { + "body": "*Hbr 4:16*\nZbliżmy się z ufnością do tronu łaski, abyśmy otrzymali zmiłowanie i dostąpili łaski w pomocy na czasie.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, któryś w sercu Najświętszej Maryi Panny zgotował godne mieszkanie dla Ducha Świętego, daj ła", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Tymoteusza, Hipolita i Symforiana*\nPanie, udziel nam łaskawie Twej pomocy i za wstawiennictwem świętych", + "id": "Commemoratio Oratio" + }, + { + "body": "*Syr 24:23-31*\nJako krzew winny wydałam wdzięczną woń, a kwiaty moje owocem czci i godności. Jam matką pięknej miłości i", + "id": "Lectio" + }, + { + "body": "*Ps 12:6*\nSerce me cieszy się z Twojej pomocy, będę śpiewał Panu, co darzy mnie dobrem, zanucę psalm imieniu Najwyższego", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:25-27*\nOnego czasu: Pod krzyżem Jezusowym stała Matka Jego i siostra ", + "id": "Evangelium" + }, + { + "body": "*Łk 1:46; 1:49*\nRozradował się duch mój w Bogu, Zbawicielu moim: albowiem uczynił mi wielkie rzeczy, który możny jest i ", + "id": "Offertorium" + }, + { + "body": "Ofiarując majestatowi Twojemu niepokalanego Baranka, prosimy Cię, Panie, aby serca nasze rozpalił ów ogień niebieski, kt", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Tymoteusza, Hipolita i Symforiana*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci święt", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*J 19:27*\nRzekł Jezus do Matki swojej: Niewiasto, oto syn Twój; potem rzekł uczniowi: Oto Matka twoja! I od onej godziny", + "id": "Communio" + }, + { + "body": "Posileni boskimi darami, kornie błagamy Cię, Panie, abyśmy za wstawiennictwem Najświętszej Maryi Panny, której uroczysto", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Tymoteusza, Hipolita i Symforiana*\nDarem Bożym szczodrze nasyceni prosimy Cię, Panie, Boże nasz, abyśmy", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-23": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, który w świętym Filipie, Twoim Wyznawcy, ukazałeś nam niezwykły przykład pokory, daj nam, sługom Swoim, abyśmy za ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + } + ], + "2024-08-24": [ + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który w dniu dzisiejszym napełniłeś nas pełną powagi i świętą radością z uroczystości Twojeg", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 12:27-31*\nBracia: Wy jesteście ciałem Chrystusowym, jedni ", + "id": "Lectio" + }, + { + "body": "*Ps 44:17; 44:18*\nUstanowisz ich książętami po całej ziemi, głosić będą Twe imię, o Panie.\n℣. Synowie Twoi zajmą miejsce", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 6:12-19*\nOnego czasu: Odszedł Jezus na górę modlić się i spędził noc", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.", + "id": "Offertorium" + }, + { + "body": "Obchodząc uroczystość świętego Bartłomieja, Twojego Apostoła, prosimy Cię, Panie, udziel nam Swoich dobrodziejstw za prz", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28*\nWy, którzyście poszli za mną, zasiądziecie na stolicach, sądząc dwanaście pokoleń Izraela, mówi Pan.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech przyjęty zadatek zbawienia wiecznego, za przyczyną św. Bartłomieja, Twojego Apostoła, stanie s", + "id": "Postcommunio" + } + ], + "2024-08-25": [ + { + "body": "*Ps 83:10-11*\nObrońco nasz, spojrzyj, Boże, i wejrzyj na oblicze Pomazańca swego. Zaiste, lepszy dzień jeden w przedsion", + "id": "Introitus" + }, + { + "body": "Strzeż Twój Kościół, prosimy Cię Panie, w nieustannym miłosierdziu swoim, a że bez Twej pomocy nie ostoi się człowiek śm", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:16-24*\n*Wyrazem «duch» św. Paweł określa całe życie nadprzyro", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nLepiej zawierzyć Panu, niż zawierzyć człowiekowi.\n℣. Lepiej zaufać Bogu, niż zaufać możnym świata. Alleluja", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:24-33*\n*Chrystus nie zaleca lenistwa, lecz gani zbytnią troskę o ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nAnioł Pański czuwa nad bogobojnymi i chroni ich od złego. Skosztujcie i zobaczcie, jak dobry jest Pan!", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię Panie, aby ta Hostia zbawienna z grzechów nas oczyściła i wyjednała nam przychylność Twej potęgi.\nPrz", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Mt 6:33*\nSzukajcie naprzód Królestwa Bożego, a wszystko będzie wam przydane, tak Pan powiada.", + "id": "Communio" + }, + { + "body": "Boże, niechaj Twój Sakrament nas oczyści, wzmocni i doprowadzi do wiecznego zbawienia.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-08-26": [ + { + "body": "*Ps 86:1-2*\nMiłuje Pan to, co na górach świętych zbudował: bramy Syjonu więcej niż wszystkie namioty Jakuba.\n*Ps 86:3*\nG", + "id": "Introitus" + }, + { + "body": "Wszechmogący i miłosierny Boże, który w Najświętszej Maryi Pannie przedziwnie ustanowiłeś nieustanną pomoc dla obrony na", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Przysłów.\n*Prz 8:17-24; 8:32-35*\nJa miłuję tych, którzy mnie miłują, i ci, co rano dla mnie czuwają, z", + "id": "Lectio" + }, + { + "body": "Bramą niebios i gwiazdą morską jesteś, Panno Maryjo, Matko Króla przedwiecznego i nasza Królowo.\n℣. Uczyń nas miłymi Syn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 2:1-11*\nOnego czasu: odbywały się gody weselne w Kanie Galilejskiej i by", + "id": "Evangelium" + }, + { + "body": "*Ps 47:13-15*\nZwiedzajcie Syjon. obchodźcie go wkoło, policzcie jego wieżyce. Przypatrzcie się jego basztom, przebiegajc", + "id": "Offertorium" + }, + { + "body": "Błagając o triumf religii chrześcijańskiej, składamy Ci, Panie, ofiary, aby zaś one były dla nas skuteczne, niechaj nas ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 86:3; 86:2*\nGłoszą o tobie rzeczy pełne chwały, o miasto Boże; miłuje Pan bramy Syjonu więcej niż wszystkie namioty ", + "id": "Communio" + }, + { + "body": "Wspomagaj, Panie, lud, który pokrzepiasz uczestnictwem w Ciele i Krwi Twojej, i przy pomocy Najświętszej Rodzicielki Two", + "id": "Postcommunio" + } + ], + "2024-08-27": [ + { + "body": "*Ps 33:12*\nPójdźcie, synowie, słuchajcie mnie: nauczę was Pańskiej bojaźni.\n*Ps 33:2*\nW każdym czasie będę błogosławił P", + "id": "Introitus" + }, + { + "body": "Boże, który przez świętego Józefa, Twego Wyznawcę, raczyłeś zesłać Kościołowi swemu nową pomoc do kształcenia młodzieży ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 10: 10-14*\n*Opatrzność Boża kierowała losami prześladowanego patriarchy Jakuba i Józefa", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-5*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", + "id": "Evangelium" + }, + { + "body": "*Ps 9:17*\nPragnień nieszczęśliwych wysłuchałeś, Panie, wołanie ich serca usłyszało ucho Twoje.", + "id": "Offertorium" + }, + { + "body": "Na ołtarzu Twoim, Panie, gromadzimy dary, aby nam wyjednały miłosierdzie dzięki modlitwom tego, któremu oddałeś nas pod ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 10:14*\nDopuśćcie dzieciom przychodzić do mnie i nie wzbraniajcie im, albowiem takich jest Królestwo Boże.", + "id": "Communio" + }, + { + "body": "Uświęceni zbawiennym misterium, prosimy Cię, Panie, abyśmy za wstawiennictwem św. Józefa, Twego Wyznawcy, coraz bardziej", + "id": "Postcommunio" + } + ], + "2024-08-28": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Przychyl się ku prośbom naszym, wszechmogący Boże, a skoro pozwalasz nam ufać Twojej dobroci, za wstawiennictwem św. Aug", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Hermesa*\nBoże, któryś świętego Hermesa, Twego Męczennika, uzbroił cnotą stałości wśród cierpień, daj na", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Hermesa*\nSkładamy Ci, Panie, ofiarę uwielbienia, wspominając Twoich Świętych; spraw, prosimy, aby to, c", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Hermesa*\nNapełnieni niebieskim błogosławieństwem błagamy Twoją, Panie, łaskawość, abyśmy za przyczyną ś", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-29": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłem o Twej prawdzie wobec królów, a nie wstydziłem się, i rozważałem Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niechaj chwalebna uroczystość św. Jana Chrzciciela, Twego Przesłańca i Męczennika, sprowadzi nam zba", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Sabiny*\nBoże, który między innymi cudami Twojej potęgi obdarzyłeś zwycięstwem w męczeństwie także płeć ", + "id": "Commemoratio Oratio" + }, + { + "body": "*Jer 1:17-19*\nW one dni: Stało się do mnie słowo Pańskie mówiąc: Opasz biodra twe, a powstań i mów do Judy to wszystko, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosić z ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 6:17-29*\nOnego czasu: Herod posłał i pojmał był Jana, i skuł go w więz", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie jeg", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, aby dary, które składamy Tobie ku uczczeniu śmierci św. Jana Chrzciciela, Twego Męczennika, za jego ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Sabiny*\nProsimy Cię, Panie, przyjmij łaskawie ofiarę, którą Ci składamy przez zasługi świętej Sabiny, T", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni.", + "id": "Communio" + }, + { + "body": "Panie, niechaj uroczystość św. Jana Chrzciciela sprawi, abyśmy czcili pod osłoną znaków ten wielki Sakrament, któryśmy p", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Sabiny*\nDarem Bożym szczodrze nasyceni, prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem świętej", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-30": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, Dawco wszelkich dóbr, Tyś sprawił, że święta Róża zroszona łaską niebieską zakwitła wśród Indian wdzi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Feliksa i Adaukta*\nPokornie błagamy Twój majestat, Panie, abyś nas zawsze bronił dzięki modlitwom Twoic", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Feliksa i Adaukta*\nWejrzyj, Panie, na ofiary Twego ludu, a skoro on składa je Tobie z oddaniem ku czci ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Feliksa i Adaukta*\nNasyceni świętymi darami, prosimy Cię, Panie, abyśmy za przyczyną Twych Świętych zaw", + "id": "Commemoratio Postcommunio" + } + ], + "2024-08-31": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, któryś św. Rajmunda, Twego Wyznawcę, uczyniłeś godnym podziwu przez wykupywanie Twych wiernych z niewoli bezbożnyc", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2024-09-01": [ + { + "body": "*Ps 85:1; 85:2-3*\nNakłoń swe ucho, wysłuchaj mnie Panie; ratuj mój Boże, sługę swego, który Ci zaufał; zmiłuj się nade m", + "id": "Introitus" + }, + { + "body": "Niechaj Twe miłosierdzie nieustannie oczyszcza i wzmacnia Twój Kościół, o Panie, a że bez Ciebie nie może trwać nienarus", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:25-26; 6:1-10*\nBracia: Jeśli żyjemy duchem, według Ducha też ", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.\n℣. Głosić z rana miłosierdzie Twoje, a wier", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:11-16*\nOnego czasu: Jezus szedł do miasta, które zowią Naim, a z n", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2; 39:3; 39:4*\nUfałem, Panu ufałem, a schylił się nade mną i wysłuchał mojego wołania, i w usta moje włożył śpiew", + "id": "Offertorium" + }, + { + "body": "Panie, niech Twoje Sakramenty nas strzegą i zawsze bronią od napaści szatańskich.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*J 6:52*\nChlebem, który Ja dam, jest Ciało moje na życie świata.", + "id": "Communio" + }, + { + "body": "Prosimy Cię Panie, niechaj działanie Tego niebieskiego daru zawładnie naszą duszą i ciałem, aby stale miała w nas pierws", + "id": "Postcommunio" + } + ], + "2024-09-02": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, daj Kościołowi Twojemu, aby miał w niebie chwalebnego obrońcę w świętym Stefanie, Twoim ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:12-26*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «Pe", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wszechmogący Boże, wejrzyj na ofiary, które składamy Tobie, i praw, abyśmy sprawując misteria Męki Pańskiej, naśladowali", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy z należnym oddaniem naśladowali wiarę świętego Stefana, Twojego Wyznawcy, ", + "id": "Postcommunio" + } + ], + "2024-09-03": [ + { + "body": "*Ps 88:20-22*\nWyniosłem wybrańca z ludu, namaściłem go świętym olejem moim, by moja ręka zawsze z nim była, i ramię moje", + "id": "Introitus" + }, + { + "body": "*Tekst kolekty nawiązuje do dewizy św. Piusa X: «Odnowić wszystko w Chrystusie».*\nBoże, który dla obrony wiary katolicki", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 2:2-8*\nBracia: Zaufawszy Bogu naszemu głosiliśmy wam Ew", + "id": "Lectio" + }, + { + "body": "*Ps 39:10-11*\nTwą sprawiedliwość głosiłem w wielkim zgromadzeniu, oto nie powściągałem warg moich, Ty wiesz, o Panie.\n℣.", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 21:15-17*\nOnego czasu: Rzekł Jezus do Szymona Piotra: «Szymonie, synu Ja", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nPójdźcie, synowie, słuchajcie mnie: nauczę was Pańskiej bojaźni.", + "id": "Offertorium" + }, + { + "body": "Przyjąwszy łaskawie nasze ofiary, daj nam, prosimy Cię, Panie, abyśmy za wstawiennictwem św. Piusa, Papieża, sprawowali ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 6:56-57*\nCiało moje prawdziwie jest pokarmem, a Krew moja prawdziwie jest napojem. Kto pożywa moje Ciało i pije moją ", + "id": "Communio" + }, + { + "body": "Pokrzepieni mocą uczty niebieskiej prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem świętego Piusa, Papieża, stal", + "id": "Postcommunio" + } + ], + "2024-09-04": [ + { + "body": "*Ps 85:1; 85:2-3*\nNakłoń swe ucho, wysłuchaj mnie Panie; ratuj mój Boże, sługę swego, który Ci zaufał; zmiłuj się nade m", + "id": "Introitus" + }, + { + "body": "Niechaj Twe miłosierdzie nieustannie oczyszcza i wzmacnia Twój Kościół, o Panie, a że bez Ciebie nie może trwać nienarus", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:25-26; 6:1-10*\nBracia: Jeśli żyjemy duchem, według Ducha też ", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.\n℣. Głosić z rana miłosierdzie Twoje, a wier", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:11-16*\nOnego czasu: Jezus szedł do miasta, które zowią Naim, a z n", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2; 39:3; 39:4*\nUfałem, Panu ufałem, a schylił się nade mną i wysłuchał mojego wołania, i w usta moje włożył śpiew", + "id": "Offertorium" + }, + { + "body": "Panie, niech Twoje Sakramenty nas strzegą i zawsze bronią od napaści szatańskich.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 6:52*\nChlebem, który Ja dam, jest Ciało moje na życie świata.", + "id": "Communio" + }, + { + "body": "Prosimy Cię Panie, niechaj działanie Tego niebieskiego daru zawładnie naszą duszą i ciałem, aby stale miała w nas pierws", + "id": "Postcommunio" + } + ], + "2024-09-05": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby chwalebna uroczystość świętego N., Twego Wyznawcy i Biskupa, przysporzyła nam", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + } + ], + "2024-09-06": [ + { + "body": "*Ps 85:1; 85:2-3*\nNakłoń swe ucho, wysłuchaj mnie Panie; ratuj mój Boże, sługę swego, który Ci zaufał; zmiłuj się nade m", + "id": "Introitus" + }, + { + "body": "Niechaj Twe miłosierdzie nieustannie oczyszcza i wzmacnia Twój Kościół, o Panie, a że bez Ciebie nie może trwać nienarus", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:25-26; 6:1-10*\nBracia: Jeśli żyjemy duchem, według Ducha też ", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.\n℣. Głosić z rana miłosierdzie Twoje, a wier", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:11-16*\nOnego czasu: Jezus szedł do miasta, które zowią Naim, a z n", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2; 39:3; 39:4*\nUfałem, Panu ufałem, a schylił się nade mną i wysłuchał mojego wołania, i w usta moje włożył śpiew", + "id": "Offertorium" + }, + { + "body": "Panie, niech Twoje Sakramenty nas strzegą i zawsze bronią od napaści szatańskich.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 6:52*\nChlebem, który Ja dam, jest Ciało moje na życie świata.", + "id": "Communio" + }, + { + "body": "Prosimy Cię Panie, niechaj działanie Tego niebieskiego daru zawładnie naszą duszą i ciałem, aby stale miała w nas pierws", + "id": "Postcommunio" + } + ], + "2024-09-07": [ + { + "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią.\n*Ps 63:2*\nSłuchaj,", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nas wspierają modlitwy błogosławionego Męczennika Twego Melchiora, abyśmy ciesząc się jego tri", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 2:8-10; 3:10-12*\nNajmilszy: Pamiętaj, że Pan Jezus Chrystu", + "id": "Lectio" + }, + { + "body": "*Ps 36:24*\nSprawiedliwy chociażby upadł, nie pozostanie na ziemi, bo rękę jego Pan podtrzymuje.\n*Ps 36:26*\nLituje się o ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:26-32*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nic nie ma zakry", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni; błagał Cię o życie, a Tyś go nim obdarzył, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nasza ofiara znajdzie przyjęcie u Ciebie i niech posłuży nam ku zbawieniu przez modły tego, w którego urocz", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 12:26*\nKto by chciał mi służyć, niech mnie naśladuje, a gdzie ja jestem, tam będzie i sługa mój.", + "id": "Communio" + }, + { + "body": "Pokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie, Boże nasz, abyśmy za przyczyną świętego N., Męczennika T", + "id": "Postcommunio" + } + ], + "2024-09-08": [ + { + "body": "*Ps 85:3; 85:5*\nZmiłuj się nade mną, Panie, bo ustawicznie wołam do Ciebie. Tyś Panie dobry i łaskawy, wielce miłosierny", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niechaj Twa łaska uprzedza nas i towarzyszy nam zawsze, oraz niechaj w nas wzbudzi gorliwość oddawan", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Narodzenie N. M. P.*\nUdziel, prosimy Cię, Panie, sługom swoim darów łaski niebieskiej, a jako Boskie Macier", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:13-21*\n*W liście do Efezjan św. Paweł wyłożył naukę o Kościel", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nUczczą narody Imię Twoje Panie, a królowie ziemscy chwałę Twą uznają.\n℣. Pan bowiem odbudował Syjon i tam", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:1-11*\nOnego czasu: Gdy wszedł Jezus w szabat do domu jednego z pr", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nPanie pospiesz mi z pomocą, niechaj się zawstydzą, którzy szukają mej duszy, aby ją zgubić. Panie pospiesz", + "id": "Offertorium" + }, + { + "body": "Oczyść nas, Panie, działaniem Twej ofiary i w miłosierdziu Twoim spraw, byśmy zasłużyli brać w niej udział.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Narodzenie N. M. P.*\nNiech człowieczeństwo Jednorodzonego Syna Twego, Panie, będzie nam pomocą; a jako On z", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nWspominać będę sprawiedliwość: Tobie Panie jedynie właściwą. Tyś mnie, Boże, uczył od młodości mojej, więc", + "id": "Communio" + }, + { + "body": "Panie, oczyść łaskawie umysły nasze i odnów je niebiańskim Sakramentem, tak żeby i ciała nasze czerpały zeń pomoc na ter", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Narodzenie N. M. P.*\nPrzyjęliśmy, Panie, najświętsze Sakramenty w uroczystość, którą dorocznie ze czcią obc", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-09": [ + { + "body": "*Ps 85:3; 85:5*\nZmiłuj się nade mną, Panie, bo ustawicznie wołam do Ciebie. Tyś Panie dobry i łaskawy, wielce miłosierny", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niechaj Twa łaska uprzedza nas i towarzyszy nam zawsze, oraz niechaj w nas wzbudzi gorliwość oddawan", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Gorgoniusza, Męczennika*\nPanie, niechaj Twój święty Męczennik Gorgoniusz raduje nas swoim wstawiennictw", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:13-21*\n*W liście do Efezjan św. Paweł wyłożył naukę o Kościel", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nUczczą narody Imię Twoje Panie, a królowie ziemscy chwałę Twą uznają.\n℣. Pan bowiem odbudował Syjon i tam", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:1-11*\nOnego czasu: Gdy wszedł Jezus w szabat do domu jednego z pr", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nPanie pospiesz mi z pomocą, niechaj się zawstydzą, którzy szukają mej duszy, aby ją zgubić. Panie pospiesz", + "id": "Offertorium" + }, + { + "body": "Oczyść nas, Panie, działaniem Twej ofiary i w miłosierdziu Twoim spraw, byśmy zasłużyli brać w niej udział.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Gorgoniusza, Męczennika*\nNiech wstawiennictwo świętego Gorgoniusza sprawi, aby miłą Tobie, Panie, była ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nWspominać będę sprawiedliwość: Tobie Panie jedynie właściwą. Tyś mnie, Boże, uczył od młodości mojej, więc", + "id": "Communio" + }, + { + "body": "Panie, oczyść łaskawie umysły nasze i odnów je niebiańskim Sakramentem, tak żeby i ciała nasze czerpały zeń pomoc na ter", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Gorgoniusza, Męczennika*\nBoże, niech wieczna słodycz przeniknie i pokrzepi Twoją rodzinę, aby w świętym", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-10": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Przychyl się, Panie, ku prośbom naszym, które zanosimy w uroczystość świętego Mikołaja, Twojego Wyznawcy, a skoro nie uf", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + } + ], + "2024-09-11": [ + { + "body": "*Ps 85:3; 85:5*\nZmiłuj się nade mną, Panie, bo ustawicznie wołam do Ciebie. Tyś Panie dobry i łaskawy, wielce miłosierny", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niechaj Twa łaska uprzedza nas i towarzyszy nam zawsze, oraz niechaj w nas wzbudzi gorliwość oddawan", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Prota i Jacka, Męczenników*\nPanie, niech nas podtrzymuje wspaniałe wyznanie wiary świętych Męczenników ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:13-21*\n*W liście do Efezjan św. Paweł wyłożył naukę o Kościel", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nUczczą narody Imię Twoje Panie, a królowie ziemscy chwałę Twą uznają.\n℣. Pan bowiem odbudował Syjon i tam", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:1-11*\nOnego czasu: Gdy wszedł Jezus w szabat do domu jednego z pr", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nPanie pospiesz mi z pomocą, niechaj się zawstydzą, którzy szukają mej duszy, aby ją zgubić. Panie pospiesz", + "id": "Offertorium" + }, + { + "body": "Oczyść nas, Panie, działaniem Twej ofiary i w miłosierdziu Twoim spraw, byśmy zasłużyli brać w niej udział.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Prota i Jacka, Męczenników*\nDla uczczenia pamięci Męczenników Twoich Prota i Jacka składamy Tobie, Pani", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nWspominać będę sprawiedliwość: Tobie Panie jedynie właściwą. Tyś mnie, Boże, uczył od młodości mojej, więc", + "id": "Communio" + }, + { + "body": "Panie, oczyść łaskawie umysły nasze i odnów je niebiańskim Sakramentem, tak żeby i ciała nasze czerpały zeń pomoc na ter", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Prota i Jacka, Męczenników*\nProsimy Cię, Panie, niech modlitwa świętych Męczenników Twoich Prota i Jack", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-12": [ + { + "body": "*Ps 44:13; 44:15-16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Niego ", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby wierni Twoi, którzy się cieszą imieniem i opieką Najświętszej Maryi Panny, za", + "id": "Oratio" + }, + { + "body": "*Syr 24:23-31*\nJako krzew winny wydałam wdzięczną woń, a kwiaty moje owocem czci i godności. Jam matką pięknej miłości i", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2024-09-13": [ + { + "body": "*Ps 85:3; 85:5*\nZmiłuj się nade mną, Panie, bo ustawicznie wołam do Ciebie. Tyś Panie dobry i łaskawy, wielce miłosierny", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niechaj Twa łaska uprzedza nas i towarzyszy nam zawsze, oraz niechaj w nas wzbudzi gorliwość oddawan", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:13-21*\n*W liście do Efezjan św. Paweł wyłożył naukę o Kościel", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nUczczą narody Imię Twoje Panie, a królowie ziemscy chwałę Twą uznają.\n℣. Pan bowiem odbudował Syjon i tam", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:1-11*\nOnego czasu: Gdy wszedł Jezus w szabat do domu jednego z pr", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nPanie pospiesz mi z pomocą, niechaj się zawstydzą, którzy szukają mej duszy, aby ją zgubić. Panie pospiesz", + "id": "Offertorium" + }, + { + "body": "Oczyść nas, Panie, działaniem Twej ofiary i w miłosierdziu Twoim spraw, byśmy zasłużyli brać w niej udział.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nWspominać będę sprawiedliwość: Tobie Panie jedynie właściwą. Tyś mnie, Boże, uczył od młodości mojej, więc", + "id": "Communio" + }, + { + "body": "Panie, oczyść łaskawie umysły nasze i odnów je niebiańskim Sakramentem, tak żeby i ciała nasze czerpały zeń pomoc na ter", + "id": "Postcommunio" + } + ], + "2024-09-14": [ + { + "body": "*Ga 6:14*\nA myśmy się chlubić powinni Krzyżem Pana naszego Jezusa Chrystusa; w Nim jest zbawienie, życie i zmartwychwsta", + "id": "Introitus" + }, + { + "body": "Boże, który w dniu dzisiejszym uweselasz nas doroczną uroczystością Podwyższenia Krzyża świętego, spraw prosimy, abyśmy ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 2:5-11*\nBracia: To bowiem rozumiejcie, co i w Chrystusie Jezu", + "id": "Lectio" + }, + { + "body": "*Flp 2:8-9*\nChrystus stał się dla nas posłuszny aż do śmierci, a była to śmierć krzyżowa.\n℣. Dlatego i Bóg wywyższył Go:", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:31-36*\nOnego czasu: Rzekł Jezus rzeszom żydowskim: «Teraz jest sąd św", + "id": "Evangelium" + }, + { + "body": "Osłaniaj, Panie, lud swój znakiem Krzyża świętego od wszelkich zasadzek wszystkich nieprzyjaciół, abyśmy miłe Tobie hołd", + "id": "Offertorium" + }, + { + "body": "Gdy posilać się mamy Ciałem i Krwią Jezusa Chrystusa, Pana naszego, który uświęcił sztandar Krzyża, błagamy Cię, Panie B", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "Boże nasz, przez znak świętego Krzyża wyzwól nas od naszych nieprzyjaciół.", + "id": "Communio" + }, + { + "body": "Przybądź nam z pomocą, Panie Boże nasz, i otaczaj nieustanną opieką tych, którym dajesz się cieszyć z oddawania czci Krz", + "id": "Postcommunio" + } + ], + "2024-09-15": [ + { + "body": "*Ps 118:137; 118:124*\nSprawiedliwy jesteś, Panie, i słuszne są wyroki Twoje. Postąp ze sługą Twoim, wedle Twej litości.\n", + "id": "Introitus" + }, + { + "body": "Daj, Panie, ludowi Twemu unikać wpływu szatana, aby czystym sercem Ciebie szukał jedynie, Boga swojego.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nBoże, podczas Twej męki, według przepowiedni Symeona, miecz boleści przeszył najs", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:1-6*\n*List do Efezjan napisał św. Paweł z więzienia w Rzymie.", + "id": "Lectio" + }, + { + "body": "*Ps 32:12; 32:6*\nSzczęśliwy naród, którego Bogiem jest Pan, ten lud, który Pan sobie na dziedzictwo wybrał.\n℣. Słowem Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:34-46*\n*Po rozstrzygnięciu zagadnienie moralnego Chrystus Pan st", + "id": "Evangelium" + }, + { + "body": "*Dn 9:17; 9:18; 9:19*\nModliłem się do Boga mego ja, Daniel, mówiąc: Wysłuchaj, Panie, modlitwy sługi Twego, rozjaśnij ob", + "id": "Offertorium" + }, + { + "body": "Przed Majestat Twój, Panie, zanosimy pokornie błagania nasze, niechaj te święte tajemnice, które dzisiaj sprawujemy, uwo", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nPrzedkładamy Ci, Panie Jezu Chryste, modlitwy i ofiary i pokornie błagamy, abyśmy", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 75:12-13*\nCzyńcie śluby i wypełniajcie Panu, Bogu waszemu. Wszyscy wokoło dary przynoście straszliwemu, który dumę k", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie Boże nasz, aby przenajświętsza Tajemnica, którą ustanowiłeś dla utrwalenia odkupienia naszego, była z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nPanie Jezu Chryste, niech ofiara, z której pożywaliśmy czcząc z oddaniem przebici", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-16": [ + { + "body": "*Ps 78:11-12; 78:10*\nNiech jęk pojmanych dojdzie do Ciebie, Panie: naszym sąsiadom odpłać siedmiokroć w ich zanadrze, po", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech obchód uroczystości świętych Męczenników Twoich i Biskupów Korneliusza i Cypriana zjedna nam o", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Eufemii, Łucji i Geminiana*\nPanie, udziel nam radości z wysłuchania naszych próśb, abyśmy czcząc dorocz", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 3:1-8*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom gł", + "id": "Lectio" + }, + { + "body": "*Wj 15:11*\nChwalebny jest Bóg w Swoich Świętych, przedziwny w majestacie, dokonuje cudów.\n*Wj 15:6*\n℣. Prawica Twoja, Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:9-19*\n*Wszystkie prześladowania, jakich doznają męczennicy, stano", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nPrzedziwny jest Bóg w Swoich Świętych: Bóg Izraela, sam Swojemu ludowi daje potęgę i siłę: błogosławiony Bóg,", + "id": "Offertorium" + }, + { + "body": "Wysłuchaj, Panie, naszych próśb, które zanosimy czcząc pamięć Twoich Świętych, a skoro nie ufamy własnej sprawiedliwości", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Eufemii, Łucji i Geminiana*\nPanie, wejrzyj łaskawie na ofiary swojego ludu i napełnij go radością ze ws", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył: jak złoto w piecu ich wypróbował, jak ofiarę", + "id": "Communio" + }, + { + "body": "Nasyceni zbawiennym Sakramentem prosimy Cię, Panie, aby wspierały nas modły tych, których uroczystość obchodzimy.\nPrzez ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Eufemii, Łucji i Geminiana*\nWysłuchaj, Panie, próśb naszych: niech zawsze doznajemy pomocy świętych Two", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-17": [ + { + "body": "*Ps 118:137; 118:124*\nSprawiedliwy jesteś, Panie, i słuszne są wyroki Twoje. Postąp ze sługą Twoim, wedle Twej litości.\n", + "id": "Introitus" + }, + { + "body": "Daj, Panie, ludowi Twemu unikać wpływu szatana, aby czystym sercem Ciebie szukał jedynie, Boga swojego.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Stygmatów św. Franciszka, Wyznawcy*\nBoże, który za pośrednictwem św. Franciszka wzbogacasz Kościół swój now", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:1-6*\n*List do Efezjan napisał św. Paweł z więzienia w Rzymie.", + "id": "Lectio" + }, + { + "body": "*Ps 32:12; 32:6*\nSzczęśliwy naród, którego Bogiem jest Pan, ten lud, który Pan sobie na dziedzictwo wybrał.\n℣. Słowem Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:34-46*\n*Po rozstrzygnięciu zagadnienie moralnego Chrystus Pan st", + "id": "Evangelium" + }, + { + "body": "*Dn 9:17; 9:18; 9:19*\nModliłem się do Boga mego ja, Daniel, mówiąc: Wysłuchaj, Panie, modlitwy sługi Twego, rozjaśnij ob", + "id": "Offertorium" + }, + { + "body": "Przed Majestat Twój, Panie, zanosimy pokornie błagania nasze, niechaj te święte tajemnice, które dzisiaj sprawujemy, uwo", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Stygmatów św. Franciszka, Wyznawcy*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego Franciszka oczy", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 75:12-13*\nCzyńcie śluby i wypełniajcie Panu, Bogu waszemu. Wszyscy wokoło dary przynoście straszliwemu, który dumę k", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie Boże nasz, aby przenajświętsza Tajemnica, którą ustanowiłeś dla utrwalenia odkupienia naszego, była z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Stygmatów św. Franciszka, Wyznawcy*\nProsimy Cię, Panie, niech łaska niebieska daje wzrost Twojemu Kościołow", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-18": [ + { + "body": "*Ps 80:2; 80:3; 80:4; 80:5*\nRadośnie śpiewajcie Bogu, obrońcy naszemu, wykrzykujcie Bogu Jakuba, uderzcie w cytrę, słodk", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech miłosierdzie Twoje uleczy i podtrzyma naszą ułomną naturę: a skoro sama z siebie wyczerpuje si", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Amosa.\n*Am 9:13-15*\n*Prorok Amos zapowiada odbudowę i pomyślność Izraela po powrocie z wygnani", + "id": "LectioL1" + }, + { + "body": "*Ps 112,5-7*\nKtóż jako Pan, nasz Bóg, co w górze ma siedzibę, a oczy swoje zniża na niebo i ziemię?\n℣. Podnosi z prochu ", + "id": "GradualeL1" + }, + { + "body": "Prosimy Cię, Panie, racz spełnić błagania Twojej rodziny, a gdy powstrzymuje się od pokarmów cielesnych, niech w duszy w", + "id": "OratioL1" + }, + { + "body": "*Wspomnienie Św. Józefa z Kupertynu, Wyznawcy*\nBoże, któryś zamierzył wszystko przyciągnąć do jednorodzonego Syna Twego ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Nehemiasza.\n*Neh 8:1-10*\n*Po powrocie z wygnania uroczyście odczytano ludowi Prawo Mojżeszowe,", + "id": "Lectio" + }, + { + "body": "*Ps 32:12 ; 32:6*\nBłogosławiony lud, którego Bogiem jest Pan: naród, który On sobie wybrał na dziedzictwo.\n℣. Przez słow", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 9:16-28*\nOnego czasu: Jeden z rzeszy odpowiadając rzekł do Jezusa: «Na", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 18:48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnięte do przykazań Twoich, które um", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Józefa z Kupertynu, Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Neh 8:10*\nPożywajcie z tłuszczem, pijcie miód, a część tym poślijcie, którzy sobie nie przygotowali, bo to jest święty ", + "id": "Communio" + }, + { + "body": "Spożywając niebieskie dary, pokornie prosimy Cię, Panie, abyśmy dzięki Twojej łasce z godnym usposobieniem przyjęli to, ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Józefa z Kupertynu, Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nas", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-19": [ + { + "body": "*Ps 36:39*\nZbawienie sprawiedliwych pochodzi od Pana: On ich ucieczką w czasie utrapienia.\n*Ps 36:1*\nNie unoś się z powo", + "id": "Introitus" + }, + { + "body": "Boże, Ty co roku uweselasz nas uroczystością świętych Męczenników Twoich Januarego i Towarzyszy, spraw łaskawie, abyśmy ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 10:32-38*\nBracia: Przypomnijcie sobie dni dawniejsze, w k", + "id": "Lectio" + }, + { + "body": "*Ps 33:18-19*\nWołali sprawiedliwi, a Pan ich wysłuchał i wyzwolił ich ze wszystkich ucisków.\n℣. Bliski jest Pan dla skru", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:3-13*\nOnego czasu: Gdy Jezus siedział na Górze Oliwnej, przystąp", + "id": "Evangelium" + }, + { + "body": "*Mdr 3:1-3*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom głupich, że pomarli, a oni trw", + "id": "Offertorium" + }, + { + "body": "Panie, daj się przebłagać złożonymi darami, i za wstawiennictwem świętych Męczenników Twoich N. i N. broń nas od wszelki", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 10:27*\nCo wam mówię w ciemności, opowiadajcie na świetle – mówi Pan – i co usłyszycie na ucho, głoście na dachach.", + "id": "Communio" + }, + { + "body": "Panie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętych Męczenników Twoich N. i N. stanie się dla nas nie", + "id": "Postcommunio" + } + ], + "2024-09-20": [ + { + "body": "*Ps 104:3-4*\nNiech się weseli serce szukających Pana, szukajcie Pana i umacniajcie się, szukajcie zawsze Jego oblicza.\n*", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy Cię, abyśmy wiernie obchodząc doroczny post, podobali się Tobie duszą i ciałem.\nPrzez ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Eustachego i Towarzyszy, Męczenników*\nBoże, który nam pozwalasz obchodzić narodziny dla nieba świętych ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Ozeasza.\n*Oz 14:2-10*\nTo mówi Pan Bóg: Nawróć się, Izraelu, do Pana, Boga Twego, boś się potkn", + "id": "Lectio" + }, + { + "body": "*Ps 89:13; 89:1*\nZwróć się ku nam, Panie, na chwilę i daj się ubłagać Swoim sługom.\n℣. Panie, Tyś był ucieczką naszą z p", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:36-50*\nOnego czasu: Pewien faryzeusz zaprosił Jezusa na posiłek do", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2; 102:5*\nBłogosław, duszo moja, Pana i nie zapominaj wszystkich dobrodziejstw Jego, a młodość twoja odnowi się ", + "id": "Offertorium" + }, + { + "body": "Racz przyjąć, prosimy Cię, Panie, nasze posty. Niech one nas oczyszczą i uczynią godnymi Twej łaski i zawiodą do wiekuis", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Eustachego i Towarzyszy, Męczenników*\nOfiarujemy Ci, Panie te dary jako wyraz naszego oddania; przyjmij", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:22; 118:24*\nOddal ode mnie szyderstwo i wzgardę, bo chowam Twoje przykazania, o Panie, bo stale rozważam Twoje P", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, abyśmy składając dzięki za przyjęte dary otrzymywali coraz większe dobrodziejstwa.\nPr", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Eustachego i Towarzyszy, Męczenników*\nProsimy Cię, Panie, za wstawiennictwem Twoich Męczenników N. i N.", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-21": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nas wspomagają zasługi św. Mateusza, Apostoła i Ewangelisty, abyśmy za jego wstawiennictwem ot", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Sobota Suchych Dni Wrześniowych*\nWszechmogący, wieczny Boże, który zbawienną wstrzemięźliwością leczysz cia", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 1:10-14*\n*Tradycja upatruje w czterech istotach z wizji Ezechiela symbole Ewang", + "id": "Lectio" + }, + { + "body": "*Ps 111:1-2*\nBłogosławiony mąż, który boi się Pana i wielką radość znajduje w jego nakazach.\n℣. Potomstwo jego będzie po", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:9-13*\nOnego czasu: Ujrzał Jezus człowieka, imieniem Mateusz, sied", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni, błagał Cię o życie, a Tyś go nim obdarzył, alleluja.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech modlitwy św. Mateusza, Apostoła i Ewangelisty, polecą ofiarę Twojego Kościoła, który czerpie n", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Sobota Suchych Dni Wrześniowych*\nProsimy Cię, wszechmogący Boże, niech dar złożony przed oczyma Twojego maj", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Ps 20:6*\nChwała jego jest wielka dzięki Twej pomocy: blask i dostojeństwo na niego włożyłeś, o Panie.", + "id": "Communio" + }, + { + "body": "Po przyjęciu Sakramentu, błagamy Cię, Panie, za przyczyną św. Mateusza, Twego Apostoła i Ewangelisty, aby ofiara, złożon", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Sobota Suchych Dni Wrześniowych*\nProsimy Cię, Panie, niech Twój Sakrament udzieli nam łaski, którą zawiera,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-22": [ + { + "body": "*Syr 36:18*\nUżycz pokoju, o Panie, tym, którzy oczekują pomocy od Ciebie, aby się spełniły obietnice Twoich proroków. Wy", + "id": "Introitus" + }, + { + "body": "Prosimy Cię Panie, kieruj litościwie naszymi sercami, bez Ciebie bowiem nie możemy się Tobie podobać.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 1:4-8*\nBracia: Dziękuję Bogu mojemu zawsze za was, za łask", + "id": "Lectio" + }, + { + "body": "*Ps 121:1; 121:7*\nUradowałem się, bo mi powiedziano: Pójdziemy do domu Pańskiego.\n℣. Niech pokój będzie w murach twoich,", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:1-8*\nOnego czasu: Jezus wstąpiwszy do łodzi przeprawił się i przy", + "id": "Evangelium" + }, + { + "body": "*Wj 24:4; 24:5*\nPoświęcił Mojżesz ołtarz dla Pana, składając na nim ofiary całopalne i ofiarując żertwy ze zwierząt. Wob", + "id": "Offertorium" + }, + { + "body": "Boże, który przez udział w tej czcigodnej ofierze, czynisz nas uczestnikami jedynego i najwyższego Bóstwa, spraw, prosim", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nOfiary nieście i wchodźcie do Jego przedsieni: uczcijcie Pana w świętym Jego majestacie.", + "id": "Communio" + }, + { + "body": "Posileni świętym darem dzięki Ci składamy, Panie, i błagamy Twe miłosierdzie, abyś nas uczynił godnymi pełnego w nim ucz", + "id": "Postcommunio" + } + ], + "2024-09-23": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego N., (Twojego Męc", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Tekli*\nProsimy Cię, wszechmogący Boże, spraw, abyśmy obchodząc narodziny dla nieba świętej Tekli, Twoje", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Tekli*\nPrzyjmij, Panie, dary, które Ci składamy w uroczystość świętej N., Dziewicy i Męczennicy Twojej:", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Tekli*\nPanie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej N., Twojej Dziewicy i", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-24": [ + { + "body": "*Syr 36:18*\nUżycz pokoju, o Panie, tym, którzy oczekują pomocy od Ciebie, aby się spełniły obietnice Twoich proroków. Wy", + "id": "Introitus" + }, + { + "body": "Prosimy Cię Panie, kieruj litościwie naszymi sercami, bez Ciebie bowiem nie możemy się Tobie podobać.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "*Wspomnienie N. M. P. od Wykupu Jeńców*\nBoże, Ty przez chwalebną Matkę Syna Twojego raczyłeś wzbogacić Twój Kościół nową", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 1:4-8*\nBracia: Dziękuję Bogu mojemu zawsze za was, za łask", + "id": "Lectio" + }, + { + "body": "*Ps 121:1; 121:7*\nUradowałem się, bo mi powiedziano: Pójdziemy do domu Pańskiego.\n℣. Niech pokój będzie w murach twoich,", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:1-8*\nOnego czasu: Jezus wstąpiwszy do łodzi przeprawił się i przy", + "id": "Evangelium" + }, + { + "body": "*Wj 24:4; 24:5*\nPoświęcił Mojżesz ołtarz dla Pana, składając na nim ofiary całopalne i ofiarując żertwy ze zwierząt. Wob", + "id": "Offertorium" + }, + { + "body": "Boże, który przez udział w tej czcigodnej ofierze, czynisz nas uczestnikami jedynego i najwyższego Bóstwa, spraw, prosim", + "id": "Secreta" + }, + { + "body": "*Wspomnienie N. M. P. od Wykupu Jeńców*\nPanie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dzie", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nOfiary nieście i wchodźcie do Jego przedsieni: uczcijcie Pana w świętym Jego majestacie.", + "id": "Communio" + }, + { + "body": "Posileni świętym darem dzięki Ci składamy, Panie, i błagamy Twe miłosierdzie, abyś nas uczynił godnymi pełnego w nim ucz", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie N. M. P. od Wykupu Jeńców*\nPrzyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustanni", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-25": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, który sprawiłeś, że błogosławiony Władysław przyświecał wszystkim jako wzór doskonałości zakonnej; daj łaskawie, a", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Panie, gdy składamy ofiary na ołtarzu Twoim, daj nam takie uczucie pobożności, jakim obdarzyłeś błogosławionego Władysła", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, niech za wstawiennictwem błogosławionego Wyznawcy Twojego Władysława święta uczta udzieli nam pomocy,", + "id": "Postcommunio" + } + ], + "2024-09-26": [ + { + "body": "*Syr 36:18*\nUżycz pokoju, o Panie, tym, którzy oczekują pomocy od Ciebie, aby się spełniły obietnice Twoich proroków. Wy", + "id": "Introitus" + }, + { + "body": "Prosimy Cię Panie, kieruj litościwie naszymi sercami, bez Ciebie bowiem nie możemy się Tobie podobać.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Cypriana i Justyny, Męczenników*\nPanie, niech nas otacza ciągła opieka świętych Męczenników Cypriana i ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 1:4-8*\nBracia: Dziękuję Bogu mojemu zawsze za was, za łask", + "id": "Lectio" + }, + { + "body": "*Ps 121:1; 121:7*\nUradowałem się, bo mi powiedziano: Pójdziemy do domu Pańskiego.\n℣. Niech pokój będzie w murach twoich,", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:1-8*\nOnego czasu: Jezus wstąpiwszy do łodzi przeprawił się i przy", + "id": "Evangelium" + }, + { + "body": "*Wj 24:4; 24:5*\nPoświęcił Mojżesz ołtarz dla Pana, składając na nim ofiary całopalne i ofiarując żertwy ze zwierząt. Wob", + "id": "Offertorium" + }, + { + "body": "Boże, który przez udział w tej czcigodnej ofierze, czynisz nas uczestnikami jedynego i najwyższego Bóstwa, spraw, prosim", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Cypriana i Justyny, Męczenników*\nOfiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij je ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nOfiary nieście i wchodźcie do Jego przedsieni: uczcijcie Pana w świętym Jego majestacie.", + "id": "Communio" + }, + { + "body": "Posileni świętym darem dzięki Ci składamy, Panie, i błagamy Twe miłosierdzie, abyś nas uczynił godnymi pełnego w nim ucz", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Cypriana i Justyny, Męczenników*\nProsimy Cię, Panie, za wstawiennictwem świętych Męczenników Twoich Cyp", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-27": [ + { + "body": "*Syr 44:15; 44:14*\nMądrość Świętych opowiadać będą narody, a chwałę ich będzie głosiło zgromadzenie, imiona ich będą żył", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby od wszelkich niebezpieczeństw uwolniło nas wstawiennictwo świętych Twoich Męc", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 5:16-20*\nSprawiedliwi żyć będą na wieki i u Pana jest ich zapłata, a troska o nich u Na", + "id": "Lectio" + }, + { + "body": "*Ps 33:18-19*\nWołali Sprawiedliwi, a Pan ich wysłuchał i wyzwolił ich ze wszystkich ucisków.\n℣. Bliski jest Pan dla skru", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 6:17-23*\n*Msza Sapientiam została ułożona na uroczystość świętych le", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nNiech się radują ci wszyscy, co Twe imię miłują, bo Ty, Panie, sprawiedliwemu dasz błogosławieństwo: panie,", + "id": "Offertorium" + }, + { + "body": "Niechaj nie braknie nam, Panie, pobożnej modlitwy Świętych Twoich: niech ona uczyni miłymi nasze dary, a nam zawsze wyje", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 78:2; 78:11*\nCiała sług Twoich wydali na pastwę ptakom niebieskim, zwierzętom ziemi ciała Twoich Świętych. Uwolnij n", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech uczestnictwo w Uczcie niebieskiej, do której nas dopuszczasz, wraz z dołączonymi modlitwami Św", + "id": "Postcommunio" + } + ], + "2024-09-28": [ + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie jeg", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez palmę męczeństwa przeniósł świętego Wacława z ziemskiego władztwa do chwały niebieskiej, chroń nas za", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 10: 10-14*\n*Opatrzność Boża kierowała losami prześladowanego patriarchy Jakuba i Józefa", + "id": "Lectio" + }, + { + "body": "*Ps 111:1-2*\nBłogosławiony mąż, który boi się Pana i wielką radość znajduje w jego nakazach.\n℣. Potomstwo jego będzie po", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:34-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie mniemajcie, ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:24*\nJeśli kto chce za mną iść, niech się zaprze samego siebie i weźmie krzyż swój, i naśladuje mnie.", + "id": "Communio" + }, + { + "body": "Daj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wieczności, jak z radością czcimy ", + "id": "Postcommunio" + } + ], + "2024-09-29": [ + { + "body": "*Ps 102:20*\nBłogosławcie Pana, wszyscy Jego Aniołowie, potężni mocą, pełniący Jego rozkazy, abyście posłuszni byli Jego ", + "id": "Introitus" + }, + { + "body": "Boże, Ty w przedziwny sposób wyznaczasz obowiązki Aniołom i ludziom; spraw miłościwie, aby na ziemi strzegli naszego życ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 19 Niedziela po Zesłaniu Ducha Świętego*\nWszechmogący i miłosierny Boże, usuń łaskawie wszystko, co nam się", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 1:1-5*\nW one dni: Bóg jawnym uczynił to, co ma się stać niebawe", + "id": "Lectio" + }, + { + "body": "*Ps 102:20; 102:1*\nBłogosławcie Pana, wszyscy Jego Aniołowie, potężni mocą, pełniący Jego rozkazy.\n℣. Błogosław, duszo m", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-10*\n*Życia nadprzyrodzone ma taką wartość, że trzeba ponieść w", + "id": "Evangelium" + }, + { + "body": "*Ap 8:3; 8:4*\n*Św. Jan opisuje w Apokalipsie Anioła ze złotą kadzielnicą, który przedstawia Bogu modlitwy świętych.*\nAni", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiarę uwielbienia i pokornie prosimy, abyś za wstawiennictwem anielskim łaskawie ją przyjął i obróc", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 19 Niedziela po Zesłaniu Ducha Świętego*\nProsimy Cię, Panie, spraw, niech te dary zaniesione przed oblicze ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Dn 3:58*\nBłogosławcie Pana, wszyscy Aniołowie Pańscy, wysławiajcie Go hymnem i wywyższajcie na wieki.", + "id": "Communio" + }, + { + "body": "Wsparci wstawiennictwem św. Archanioła Twego Michała, kornie błagamy Cię Panie, abyśmy pojęli umysłem to, cośmy spożyli ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 19 Niedziela po Zesłaniu Ducha Świętego*\nPanie, niech Twoje uzdrawiające działanie uwolni nas łaskawie od n", + "id": "Commemoratio Postcommunio" + } + ], + "2024-09-30": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś raczył dać Kościołowi Swemu świętego Hieronima, Twego Wyznawcę, jako wielkiego mistrza w wyjaśnianiu Pisma świ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Pomóż nam, Panie, łaską niebieską służyć Ci ze swobodnym umysłem, aby dary, które składamy za wstawiennictwem św. Hieron", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Nasyceni pokarmem niebieskim prosimy Cię, Panie, abyśmy za wstawiennictwem świętego Hieronima, Twojego Wyznawcy, mogli o", + "id": "Postcommunio" + } + ], + "2024-10-01": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, który ozdobiłeś błogosławionego Jana, Twego Wyznawcę, darami szczególnej pokory i cierpliwości, dozwól łaskawie, a", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Remigiusza, Biskupa i Wyznawcy*\nSpraw, Prosimy Cię, wszechmogący Boże, aby chwalebna uroczystość święte", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Remigiusza, Biskupa i Wyznawcy*\nPanie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspomina", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Remigiusza, Biskupa i Wyznawcy*\nWszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-02": [ + { + "body": "*Ps 102:20*\nBłogosławcie Pana, wszyscy Jego Aniołowie, potężni mocą, pełniący Jego rozkazy, abyście posłuszni byli Jego ", + "id": "Introitus" + }, + { + "body": "Boże, który w niewysłowionej Opatrzności raczysz świętych Twoich Aniołów posyłać nam jako stróżów, prosimy Cię pokornie:", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Wyjścia.\n*Wj 23:20-23*\nTo mówi Pan Bóg: «Oto ja poślę Anioła mego, który by szedł przed tobą i strzegł", + "id": "Lectio" + }, + { + "body": "*Ps 90:11-12*\nSwoim Aniołom Bóg dał rozkaz o tobie, aby cie strzegli na wszystkich twych drogach.\n℣. Na rękach swoich bę", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-10*\n*Życia nadprzyrodzone ma taką wartość, że trzeba ponieść w", + "id": "Evangelium" + }, + { + "body": "*Ps 102:20-21*\nBłogosławcie Pana, wszyscy Jego Aniołowie, słudzy Jego, pełniący Jego rozkazy, abyście posłuszni byli Jeg", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które składamy ku czci świętych Twoich Aniołów i spraw łaskawie, abyśmy pod nieustanną ich opieką", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Dn 3:58*\nBłogosławcie Pana, wszyscy Aniołowie Pańscy, wysławiajcie Go hymnem i wywyższajcie na wieki.", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, Boski Sakrament radując się z uroczystości Twoich świętych Aniołów; prosimy Cię, abyśmy pod ich opie", + "id": "Postcommunio" + } + ], + "2024-10-03": [ + { + "body": "*Pnp 4:8-9*\nPójdźże z Libanu, oblubienico moja, pójdź z Libanu, pójdź. Zraniłaś moje serce, siostro moja, oblubienico, z", + "id": "Introitus" + }, + { + "body": "Panie, któryś powiedział: «Jeśli się nie staniecie jako dzieci, nie wejdziecie do Królestwa Niebieskiego»; prosimy Cię, ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 66:12-14*\n*Chwała św. Teresy ogarnęła cały świat jak rzeka. Równocześnie poznano", + "id": "Lectio" + }, + { + "body": "*Mt 11:25*\nWysławiam Cię Ojcze, Panie nieba i ziemi, żeś te rzeczy zakrył przed mądrymi i roztropnymi, a objawiłeś je ma", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-4*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", + "id": "Evangelium" + }, + { + "body": "*Łk 1:46-49*\nUwielbia dusza moja Pana, i rozradował się duch mój w Bogu, Zbawicielu moim. Bo wejrzał na uniżenie służebn", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech modlitwa świętej Dziewicy Teresy poleca Tobie nasza ofiarę, aby uroczyście składana ku jej chw", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Pp 32:10-12*\nWiódł ją i uczył, i strzegł jak źrenicy oka swego. Jak orzeł rozpostarł swe skrzydła, i wziął ją i nosił n", + "id": "Communio" + }, + { + "body": "Panie, niech niebieskie misterium rozpłomieni nas tym ogniem miłości, dzięki któremu święta Dziewica Teresa samą siebie ", + "id": "Postcommunio" + } + ], + "2024-10-04": [ + { + "body": "*Gal 6:14*\nNie daj Boże, bym miał się chlubić z czego innego, jeno z krzyża Pana naszego Jezusa Chrystusa, przez którego", + "id": "Introitus" + }, + { + "body": "Boże, który za pośrednictwem św. Franciszka wzbogacasz Kościół swój nową rodziną zakonną, daj nam za jego przykładem pog", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Gal 6:14-18*\nBracia: Ale co do mnie, nie daj Boże, bym się miał ch", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:25-30*\nOnego czasu: Odpowiadając Jezus rzekł: «Wysławiam Cię, Oj", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, złożone Ci dary i za przyczyną świętego Franciszka oczyść nas od wszelkiej zmazy przewinień.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech łaska niebieska daje wzrost Twojemu Kościołowi, który raczyłeś oświecić nauką i chwalebnymi za", + "id": "Postcommunio" + } + ], + "2024-10-05": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Placyda i Towarzyszy, Męczenników*\nBoże, który nam pozwalasz obchodzić narodziny dla nieba świętych Męc", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Placyda i Towarzyszy, Męczenników*\nOfiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij j", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Placyda i Towarzyszy, Męczenników*\nProsimy Cię, Panie, za wstawiennictwem Twoich Męczenników Placyda i ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-06": [ + { + "body": "*Dn 3:31; 31:29; 31:35*\nWszystko, coś na nas dopuścił, Panie, według sprawiedliwego wyroku nas spotkało, bośmy zgrzeszyl", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, użycz wiernym Twoim przebaczenia i pokoju, aby oczyszczeni ze wszystkich win swoich mogli Ci służyć ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 5:15-21*\n*Duch święty napełnia serca wiernych wykonawców woli B", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOczy wszystkich z ufnością patrzą na Ciebie, Panie: Ty dajesz im pokarm we właściwej porze.\n℣. Otwierasz ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:46-53*\n*Bóg udziela nam swojej łaski w miarę naszej ufności.*\nOnego cz", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\n*Syjon jest symbolem ojczyzny niebieskiej, Babilon to zmienia wygnania, na której przebywamy.*\nNad rzekami Ba", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie niechaj te święte Tajemnice udzielą nam z niebios lekarstwa, które oczyści z nieprawości serca nasze.", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nPomnij na obietnicę daną słudze Twemu, Panie, w którą kazałeś mi wierzyć. Ona mnie pociesza w mojej nędzy", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy przez pilne posłuszeństwo Twoim przykazaniom stali się godnymi świętych darów Twoich.\n", + "id": "Postcommunio" + } + ], + "2024-10-07": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci Najświętszej Maryi Panny; z Jej uroczystości radują się Anioło", + "id": "Introitus" + }, + { + "body": "Boże, którego Jednorodzony Syn przez swe życie, śmierć i zmartwychwstanie wysłużył nam nagrodę życia wiecznego, spraw, a", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Marka*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną ś", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Przysłów.\n*Prz 8:22-24; 8:32-35*\nPan posiadł mnie na początku dróg swoich, zanim cokolwiek od początku", + "id": "Lectio" + }, + { + "body": "*Ps 44:5; 44:11; 44:12*\nW obronie wiary i sprawiedliwości niech cudów dokona Twoja prawica.\n℣. Posłuchaj, córko, spójrz ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "*Syr 24:25; Syr 39:17*\nWe mnie łaska wszelkiej drogi i prawdy, we mnie cała nadzieja życia i cnoty. Ja wydałam owoc, jak", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy należycie się usposobili do ofiarowania Tobie tych darów i rak rozważali w tajemnicach", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Marka*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sp", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*Syr 39:19*\nKwitnijcie jak lilia, roztaczajcie woń, wypuszczajcie wdzięczne gałązki i pieśń pochwalną śpiewajcie i błogo", + "id": "Communio" + }, + { + "body": "Niech nas wspomagają, Panie, modlitwy Rodzicielki Twojej, której uroczystość różańcową święcimy, abyśmy doznali mocy taj", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Marka*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Tw", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-08": [ + { + "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", + "id": "Introitus" + }, + { + "body": "Panie Boże nasz, Ty przez Jednorodzonego Syna Twego objawiłeś świętej Brygidzie niebieskie tajemnice: za jej łaskawym or", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Sergiusza, Bachusa, Marcelego i Apuliusza*\nNiech nas wspierają, Panie, błogosławione zasługi świętych T", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*1 Tm 5:3-10*\nNajmilszy: Szanuj wdowy, które prawdziwie są wdowa", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Sergiusza, Bachusa, Marcelego i Apuliusza*\nProsimy Cię, Panie, aby ta hostia, którą składamy w ofierze,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Sergiusza, Bachusa, Marcelego i Apuliusza*\nPrzyjęte Sakramenty niech nas uzbroją, Panie, a pomoc z nieb", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-09": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, za pogardę zaszczytów ziemskich błogosławionego Wincentego, Twego Wyznawcę i Biskupa, okryłeś chwałą pokory: prosi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Jana Leonardi, Wyznawcy*\nBoże, który raczyłeś przedziwnie powołać św. Jana, Twego Wyznawcę, do krzewien", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Jana Leonardi, Wyznawcy*\n*Dzięki misjonarzom wychowanym w Kolegium Rozkrzewiania Wiary, założonym przez", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Jana Leonardi, Wyznawcy*\nPokrzepieni świętymi tajemnicami drogocennego Ciała i Krwi Twojej, prosimy Cię", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-10": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Panie Jezu Chryste, wzorze i nagrodo prawdziwej pokory, prosimy Cię, jak św. Franciszka uczyniłeś chwalebnym naśladowcą ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Dziękczynienie za zwycięstwo chocimskie z roku 1621*\nBoże, który w największych niebezpieczeństwach naszego", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech święty Franciszek, Wyznawca, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Dziękczynienie za zwycięstwo chocimskie z roku 1621*\nPrzyjmij, Panie, wonność tej dziękczynnej ofiary, i st", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Franciszka, Wyznawcy, abyśmy naśladowa", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Dziękczynienie za zwycięstwo chocimskie z roku 1621*\nBoże, Ty nie dopuszczasz, aby ktokolwiek z ufających T", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-11": [ + { + "body": "*Iz 7:14*\nOto Panna pocznie i porodzi Syna i nazwą imię Jego Emmanuel (Bóg z nami).\n*Ps 97:1*\nŚpiewajcie Panu pieśń nowa", + "id": "Introitus" + }, + { + "body": "Boże, któryś zrządził, że za zwiastowaniem Anielskim w żywocie Najświętszej Maryi Panny Słowo Twoje Ciałem się stało, po", + "id": "Oratio" + }, + { + "body": "*Syr 24:23-31*\nJako krzew winny wydałam wdzięczną woń, a kwiaty moje owocem czci i godności. Jam matką pięknej miłości i", + "id": "Lectio" + }, + { + "body": "*Iz 11:1-2*\nWyjdzie różdżka z korzenia Jessego, a kwiat z korzenia jego wzejdzie.\n℣. I spocznie na nim Duch Pana. Allelu", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:43-51*\nOnego czasu: Gdy wracali, zostało Dziecię Jezus w Jerozolim", + "id": "Evangelium" + }, + { + "body": "*Mt 1:18*\nGdy poślubiona była Matka Jego, Maryja, Józefowi, okazało się, że poczęła z Ducha Świętego.", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Tego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, Matki Syna Twego Jednorodzonego, of", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + } + ], + "2024-10-12": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2024-10-13": [ + { + "body": "*Est 13:9; 13:10-11*\nNa mocy Twojej, Panie, wszystko się opiera i nikt nie może sprzeciwić się Twej woli. Ty bowiem stwo", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, strzeż nieustannie Twojej rodziny z ojcowską dobrocią, aby pod Twoją opieką była wolna od wszelkich ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 6:10-17*\n*Treścią dziejów Kościoła jest walka z szatanem o zbaw", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie.\n℣. Zanim góry stanęły, nim ziemia i świat zostały st", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:23-35*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «P", + "id": "Evangelium" + }, + { + "body": "*Job 1:1*\n*Job wśród ciężkich doświadczeń zachował wiarę w sprawiedliwość Bożą, pokonując w ten sposób zasadzkę szatana.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie ofiary, przez które i sam dajesz się przebłagać, i dzięki ogromnej Twej dobroci przywracasz nam", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nDusza moja słabnie z tęsknoty za Twą pomocą. W słowie Twoich cała nadzieja moja. Kiedy osądz", + "id": "Communio" + }, + { + "body": "Otrzymawszy pokarm nieśmiertelności, prosimy Cię, Panie, abyśmy czystą duszą poszli za tym, co usta nasze przyjęły.\nPrze", + "id": "Postcommunio" + } + ], + "2024-10-14": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Boże, który widzisz, że upadamy wskutek swojej ułomności, odnów w nas litościwie miłość ku Tobie przez przykłady Twoich ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Panie, niech nas wspomaga ta tajemnicza ofiara, niech nas wyzwoli od naszych przewinień i zapewni nam wieczne zbawienie.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, by najświętszy dar oczyścił nas i dopomógł prowadzić uczciwe życie.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-10-15": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy Teresy, nabyli ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Teresy, Twojej Dziewicy, karmil", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2024-10-16": [ + { + "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", + "id": "Introitus" + }, + { + "body": "Boże, który św. Jadwigę pobudziłeś do przejścia całym sercem od przepychu światowego do pokornego naśladowania Krzyża Tw", + "id": "Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2024-10-17": [ + { + "body": "*Pnp 2:3*\nUsiadłam w cieniu Tego, za którym tęskniłam i owoc Jego słodki memu gardłu.\n*Ps 83:2-3*\nJak miłe są przybytki ", + "id": "Introitus" + }, + { + "body": "Panie Jezu Chryste, któryś św. Dziewicy Małgorzacie Marii cudownie odsłonił niedościgłe bogactwo Serca swego, daj nam, a", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:8-9; 14-19*\n*Św. Małgorzata Maria została wybrana, aby przypo", + "id": "Lectio" + }, + { + "body": "*Pnp 8:7*\nWody mnogie nie mogły ugasić miłości i rzeki nie zatopią jej.\n*Ps 72:26*\nNiszczeje me ciało i serce moje: Bóg ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:25-30*\nOnego czasu: Odpowiadając Jezus rzekł: «Wysławiam Cię, Oj", + "id": "Evangelium" + }, + { + "body": "*Zch 9:17*\n*Częsta i dobra Komunia jest wynagrodzeniem za lekceważenie Eucharystii przez oziębłych.*\nCóż jest dobrem jeg", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary ludu Swojego i spraw, by nas zapalił ten Boski ogień, który wychodząc z Serca Syna Twojego, tak mo", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Pnp 6:2*\nJa dla umiłowanego mego i dla mnie umiłowany mój; on pasie trzody swe wśród lilii.", + "id": "Communio" + }, + { + "body": "Przyjąwszy Sakrament Ciała i Krwi Twojej prosimy Cię, Panie Jezu, spraw za przyczyną św. Dziewicy Małgorzaty Marii, abyś", + "id": "Postcommunio" + } + ], + "2024-10-18": [ + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech się przyczynia za nami św. Łukasz, Twój Ewangelista, który dla chwały Twojego imienia stale no", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 8:16-24*\n*Prawdopodobnie św. Paweł Apostoł wysłał z Tytuse", + "id": "Lectio" + }, + { + "body": "*Ps 18:5; 18:2*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.\n℣. Niebiosa głoszą chwałę Boga, dz", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.", + "id": "Offertorium" + }, + { + "body": "Pomóż nam, Panie, łaską niebieską służyć Ci swobodnym umysłem, aby dary, które składamy, za wstawiennictwem św. Łukasza,", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28*\nWy, którzyście poszli za mną, zasiądźcie na stolicach, sądząc dwanaście pokoleń Izraela.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby przez modlitwy świętego Ewangelisty Twego Łukasza Sakrament, któryśmy przyjęli z Two", + "id": "Postcommunio" + } + ], + "2024-10-19": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, który raczyłeś wsławić darem przedziwnej pokuty i najwznioślejszej kontemplacji św. Piotra, Twojego Wyznawcę, spra", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:7-12*\n*Celem wysiłków ascetów chrześcijańskich jest udział ", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + } + ], + "2024-10-20": [ + { + "body": "*Ps 129:3-4*\nJeśli zachowasz pamięć o występkach, Panie, Panie, któż się ostoi? Ale u Ciebie, Boże Izraela, jest przebac", + "id": "Introitus" + }, + { + "body": "Boże, ucieczko nasza i mocy, wysłuchaj pokornych modłów Twojego Kościoła, skoro pobożność, która je zrodziła, Twoim jest", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 1:6-11*\nBracia: Ufamy, w Panu Jezusie, że Ten, który rozpoczą", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\n*Życie w społeczności Kościoła przygotowuje nas do życia wiecznego, w którym miłość usunie wszelkie różnice", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:15-21*\nOnego czasu: Faryzeusze odszedłszy naradzali się, jakby G", + "id": "Evangelium" + }, + { + "body": "*Est 14:12; 14:13*\nWspomnij na mnie, o Panie, któremu wszelka zwierzchność podlega. Włóż w moje usta mowę właściwą, aby ", + "id": "Offertorium" + }, + { + "body": "Daj, miłosierny Boże, aby ta zbawienna ofiara zawsze nas wyzwalała z naszych grzechów i broniła od wszelkich przeciwnośc", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nWzywam Cię, Boże, bo Ty mnie wysłuchasz. Nakłoń ku mnie Twe ucho, usłysz moje słowa.", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, dary świętego misterium, pokornie błagając, aby to, co kazałeś nam czynić na Twoją pamiątkę, przynio", + "id": "Postcommunio" + } + ], + "2024-10-21": [ + { + "body": "*Iz 61:1*\nDuch Pański nade mną, dlatego mnie namaścił i posłał mnie, abym głosił dobrą nowinę cichym. (O. W. Alleluja, a", + "id": "Introitus" + }, + { + "body": "Boże, Ty w błogosławionym Jakubie, Twoim Wyznawcy i Biskupie, przedziwnie wznowiłeś apostolskiego ducha głoszenia Ewange", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Hilariona, Opata*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego N., Opata, abyśmy ", + "id": "Commemoratio Oratio" + }, + { + "body": "*Flp 1:3-11*\nDzięki czynię Bogu mojemu, ilekroć was wspominam, zawsze, we wszystkich modlitwach moich modląc się za was ", + "id": "Lectio" + }, + { + "body": "*Syr 44:16-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n℣. Nie znalazł się jemu podobny, który by zacho", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "Wybrał go sobie Pan na kapłana, aby Mu składał ofiarę pochwalną. (O. W. Alleluja.)", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, aby Twoja ofiara wznieciła w nas taki płomień najczystszej miłości, jakim pałał błogosławiony Jakub ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Hilariona, Opata*\nProsimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na święty", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 10:27*\nCo wam mówię w ciemności, opowiadajcie na świetle: i co usłyszycie na ucho, głoście na dachach. (O. W. Allelu", + "id": "Communio" + }, + { + "body": "Najmiłościwszy Boże, niech łaska tego Sakramentu, który przyjęliśmy, trwa w sercach naszych: abyśmy nią umocnieni, za pr", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Hilariona, Opata*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N.,", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-22": [ + { + "body": "*Ps 129:3-4*\nJeśli zachowasz pamięć o występkach, Panie, Panie, któż się ostoi? Ale u Ciebie, Boże Izraela, jest przebac", + "id": "Introitus" + }, + { + "body": "Boże, ucieczko nasza i mocy, wysłuchaj pokornych modłów Twojego Kościoła, skoro pobożność, która je zrodziła, Twoim jest", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 1:6-11*\nBracia: Ufamy, w Panu Jezusie, że Ten, który rozpoczą", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\n*Życie w społeczności Kościoła przygotowuje nas do życia wiecznego, w którym miłość usunie wszelkie różnice", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:15-21*\nOnego czasu: Faryzeusze odszedłszy naradzali się, jakby G", + "id": "Evangelium" + }, + { + "body": "*Est 14:12; 14:13*\nWspomnij na mnie, o Panie, któremu wszelka zwierzchność podlega. Włóż w moje usta mowę właściwą, aby ", + "id": "Offertorium" + }, + { + "body": "Daj, miłosierny Boże, aby ta zbawienna ofiara zawsze nas wyzwalała z naszych grzechów i broniła od wszelkich przeciwnośc", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nWzywam Cię, Boże, bo Ty mnie wysłuchasz. Nakłoń ku mnie Twe ucho, usłysz moje słowa.", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, dary świętego misterium, pokornie błagając, aby to, co kazałeś nam czynić na Twoją pamiątkę, przynio", + "id": "Postcommunio" + } + ], + "2024-10-23": [ + { + "body": "*Ps 131,9-10*\nNiech kapłani Twoi odzieją się w sprawiedliwość, a święci Twoi niech się radują; przez wzgląd na Dawida, s", + "id": "Introitus" + }, + { + "body": "Boże, który ozdobiłeś apostolskimi cnotami świętego Antoniego Marię, Swojego Wyznawcę i Biskupa, i przez niego utworzyłe", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 7:23-27*\nBracia: Kapłanów było wielu, dlatego że śmierć i", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\nKapłanów Syjonu odzieję zbawienną pomocą, a jego święci radośnie będą się weselić.\n℣. Tam dla Dawida wzbu", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:42-47*\nOnego czasu: Rzekł Jezus uczniom swoim: «Czuwajcie, bo ni", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech doroczna uroczystość świętego Antoniego Marii Claret, Twego Wyznawcy i Biskupa, uczyni nas god", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Boże, Ty nagradzasz dusze wierne; spraw, abyśmy dostąpili przebaczenia przez prośby świętego Antoniego Marii Claret, Twe", + "id": "Postcommunio" + } + ], + "2024-10-24": [ + { + "body": "*Ps 102:20*\nBłogosławcie Pana, wszyscy jego Aniołowie, potężni mocą, pełniący Jego rozkazy, abyście posłuszni byli Jego ", + "id": "Introitus" + }, + { + "body": "Boże, który dałeś słudze Swemu Tobiaszowi za towarzysza W podróży św. Archanioła Rafała, daj nam sługom Swoim, aby nas z", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Tobiasza.\n*Tob 12:7-15*\nW one dni: Rzekł Rafał do Tobiasza: «Dobrze jest ukrywać tajemnicę królewską, ", + "id": "Lectio" + }, + { + "body": "*Tob 8:3*\nAnioł Pański Rafał pojmał i związał złego ducha.\n*Ps 146:5.*\n℣. Wielki jest Pan i wielka moc Jego. Alleluja, a", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 5:1-4*\nOnego czasu. Było święto żydowskie i przyszedł Jezus do Jerozolim", + "id": "Evangelium" + }, + { + "body": "*Ap 8:3-4*\nAnioł stanął przy ołtarzu świątyni, mając w ręku złotą kadzielnicę; i dano mu wiele kadzideł, i wzniósł się w", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiarę uwielbienia i pokornie prosimy, abyś za wstawiennictwem anielskim łaskawie ją przyjął i obróc", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Dn 3:58*\nBłogosławcie Pana, wszyscy Aniołowie Pańscy, wysławiajcie Go hymnem i wywyższajcie na wieki.", + "id": "Communio" + }, + { + "body": "Panie Boże, racz zesłać nam na pomoc świętego Rafała Archanioła; wierzymy, że przebywa on zawsze W obecności Twojego maj", + "id": "Postcommunio" + } + ], + "2024-10-25": [ + { + "body": "*Ps 129:3-4*\nJeśli zachowasz pamięć o występkach, Panie, Panie, któż się ostoi? Ale u Ciebie, Boże Izraela, jest przebac", + "id": "Introitus" + }, + { + "body": "Boże, ucieczko nasza i mocy, wysłuchaj pokornych modłów Twojego Kościoła, skoro pobożność, która je zrodziła, Twoim jest", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Chryzanta i Darii, Męczenników*\nProsimy Cię, Panie, niech nas wspiera modlitwa świętych Twoich Męczenni", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 1:6-11*\nBracia: Ufamy, w Panu Jezusie, że Ten, który rozpoczą", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\n*Życie w społeczności Kościoła przygotowuje nas do życia wiecznego, w którym miłość usunie wszelkie różnice", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:15-21*\nOnego czasu: Faryzeusze odszedłszy naradzali się, jakby G", + "id": "Evangelium" + }, + { + "body": "*Est 14:12; 14:13*\nWspomnij na mnie, o Panie, któremu wszelka zwierzchność podlega. Włóż w moje usta mowę właściwą, aby ", + "id": "Offertorium" + }, + { + "body": "Daj, miłosierny Boże, aby ta zbawienna ofiara zawsze nas wyzwalała z naszych grzechów i broniła od wszelkich przeciwnośc", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Chryzanta i Darii, Męczenników*\nNiech Ci miłą będzie, Panie, ofiara Twojego ludu, którą uroczyście skła", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nWzywam Cię, Boże, bo Ty mnie wysłuchasz. Nakłoń ku mnie Twe ucho, usłysz moje słowa.", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, dary świętego misterium, pokornie błagając, aby to, co kazałeś nam czynić na Twoją pamiątkę, przynio", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Chryzanta i Darii, Męczenników*\nNapełniwszy nas, Panie, duchowymi pragnieniami i radością, daj, prosimy", + "id": "Commemoratio Postcommunio" + } + ], + "2024-10-26": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2024-10-27": [ + { + "body": "*Ap 5:12; 1:6*\n*Wizja z Apokalipsy św. Jana ukazuje nam Chrystusa odbierającego hołdy Aniołów i odkupionej ludzkości.*\nG", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, Ty postanowiłeś wszystko odnowić w umiłowanym Synu Twoim jako Królu wszechrzeczy, spraw łask", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:12-20*\nBracia: Dzięki czyńcie Bogu Ojcu, że nas uczynił godn", + "id": "Lectio" + }, + { + "body": "*Ps 71:8; 78:11*\nPanować będzie od morza do morza i od rzeki aż po krańce ziemi. I uwielbią Go wszyscy królowie, wszystk", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 18:33-37*\nOnego czasu: Rzekł Piłat do Jezusa: «Czy Ty jesteś Król żydows", + "id": "Evangelium" + }, + { + "body": "*Ps 2:8*\nŻądaj ode mnie, a dam ci narody w dziedzictwo i krańce ziemi w Twoje posiadanie.", + "id": "Offertorium" + }, + { + "body": "Ofiarujemy Ci, Panie, żertwę jednającą ludzi z Tobą, spraw, aby Ten, którego w tej ofierze składamy, użyczył wszystkim n", + "id": "Secreta" + }, + { + "body": "*Prefacja o Chrystusie Królu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 28:10; 28:11*\nPan zasiądzie jako król na wieki. Pan obdarzy lud swój pokojem.", + "id": "Communio" + }, + { + "body": "Po przyjęciu pokarmu, który jest zadatkiem nieśmiertelności, prosimy Cię, Panie, abyśmy dostąpiwszy zaszczytu pełnienia ", + "id": "Postcommunio" + } + ], + "2024-10-28": [ + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", + "id": "Introitus" + }, + { + "body": "Boże, któryś raczył doprowadzić nas do poznania Twojego imienia przez świętych Apostołów Twoich Szymona i Judę, spraw, a", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:7-13*\n*Każdy chrześcijanin w sposób właściwy swemu powołaniu ", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi, przez wszystkie pokolenia głosić będą Twe imię, o Panie.\n℣. Syno", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:17-25*\nW owym czasie: Rzekł Jezus uczniom swoim: To wam przykazuję, a", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.", + "id": "Offertorium" + }, + { + "body": "Czcząc wieczną chwałę świętych Apostołów Twoich Szymona i Judy, prosimy Cię, Panie, abyśmy oczyszczeni przez święte mist", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28*\nWy, którzyście poszli za mną, zasiądziecie na stolicach, sądząc dwanaście pokoleń Izraela.", + "id": "Communio" + }, + { + "body": "Po przyjęciu Sakramentu, błagamy Cię, Panie, za przyczyną świętych Apostołów Twoich Szymona i Judy, aby ofiara złożona k", + "id": "Postcommunio" + } + ], + "2024-10-29": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Odpuść, prosimy Cię, Panie, przewiny ludu Twojego; i w miłosierdziu Twoim uwolnij nas od więzów grzechowych, któreśmy za", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:17-21; 4:1-3*\nBracia: Naśladowcami moimi bądźcie i zapatruj", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:18-26*\nOnego czasu: Gdy Jezus mówił do rzesz, oto książę pewien p", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, tę ofiarę chwały, dla pomnożenia naszej gorliwości w Twojej służbie; sam racz łaskawie dokonać tego,", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, nie dopuść, aby Ci, którym pozwalasz się cieszyć udziałem w Boskich tajemnicach, podlega", + "id": "Postcommunio" + } + ], + "2024-10-30": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Odpuść, prosimy Cię, Panie, przewiny ludu Twojego; i w miłosierdziu Twoim uwolnij nas od więzów grzechowych, któreśmy za", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:17-21; 4:1-3*\nBracia: Naśladowcami moimi bądźcie i zapatruj", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:18-26*\nOnego czasu: Gdy Jezus mówił do rzesz, oto książę pewien p", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, tę ofiarę chwały, dla pomnożenia naszej gorliwości w Twojej służbie; sam racz łaskawie dokonać tego,", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, nie dopuść, aby Ci, którym pozwalasz się cieszyć udziałem w Boskich tajemnicach, podlega", + "id": "Postcommunio" + } + ], + "2024-10-31": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Odpuść, prosimy Cię, Panie, przewiny ludu Twojego; i w miłosierdziu Twoim uwolnij nas od więzów grzechowych, któreśmy za", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:17-21; 4:1-3*\nBracia: Naśladowcami moimi bądźcie i zapatruj", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:18-26*\nOnego czasu: Gdy Jezus mówił do rzesz, oto książę pewien p", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, tę ofiarę chwały, dla pomnożenia naszej gorliwości w Twojej służbie; sam racz łaskawie dokonać tego,", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, nie dopuść, aby Ci, którym pozwalasz się cieszyć udziałem w Boskich tajemnicach, podlega", + "id": "Postcommunio" + } + ], + "2024-11-01": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci Wszystkich Świętych; z ich uroczystości radują się Aniołowie i", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który dozwalasz nam wspólnym obchodem czcić zasługi Wszystkich Świętych: prosimy Cię, abyś n", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 7:2-12*\nW one dni: Oto ja, Jan, ujrzałem innego Anioła, wstępuj", + "id": "Lectio" + }, + { + "body": "*Ps 33:10; 33:11*\nBójcie się Pana, święci Jego, niczego nie braknie tym, co się Go boją.\n℣. Tym zaś, co Pana szukają, do", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:1-12*\nOnego czasu: Jezus, widząc rzesze, wstąpił na górę i gdy us", + "id": "Evangelium" + }, + { + "body": "*Mdr 3:1; 3:2; 3:3*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom głupich, że pomarli, a", + "id": "Offertorium" + }, + { + "body": "Ofiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij je łaskawie ku chwale Twoich Świętych i spraw w Swoim", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 5:8-10*\nBłogosławieni czystego serca, albowiem oni Boga oglądać będą. Błogosławieni pokój czyniący, albowiem synami ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, daj, aby wierny lud zawsze z radością czcił Wszystkich Świętych i za ich nieustannym wstawiennictwem", + "id": "Postcommunio" + } + ], + "2024-11-02": [ + { + "body": "*4 Ezd 2:34; 2:35*\nWieczny odpoczynek racz im dać, Panie, a światłość wiekuista niechaj im świeci.\n*Ps 64:2-3*\nCiebie, B", + "id": "Introitus" + }, + { + "body": "Boże, Stwórco i Odkupicielu wszystkich wiernych, udziel duszom zmarłych sług i służebnic Swoich odpuszczenia wszystkich ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 15:51-57*\nBracia: Oto wam powiadam tajemnicę: Nie wszyscy ", + "id": "Lectio" + }, + { + "body": "*4 Ezdr 2:34-35*\nWieczny odpoczynek racz im dać, Panie, a światłość wiekuista niechaj im świeci.\n*Ps 111:7*\n℣. W wieczne", + "id": "Graduale" + }, + { + "body": "W gniewu dzień, w tę pomsty chwilę,\nŚwiat w popielnym legnie pyle:\nZważ Dawida i Sybillę.\n\nJakiż będzie płacz i łkanie,\n", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 5:25-29*\nOnego czasu: Rzekł Jezus rzeszom żydowskim: Zaprawdę, zaprawdę ", + "id": "Evangelium" + }, + { + "body": "Panie Jezu Chryste, Królu chwały, zachowaj dusze wszystkich wiernych zmarłych od kar piekielnych i głębokiej czeluści. W", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na ofiary, które Ci składamy za dusze sług i służebnic Twoich, i obdarz nagrodą tych, którym dał", + "id": "Secreta" + }, + { + "body": "*Prefacja o Zmarłych*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dzi", + "id": "Prefatio" + }, + { + "body": "*4 Ezdr 2:35; 2:34*\nŚwiatłość wiekuista niechaj im świeci, o Panie:\n* Wśród Świętych Twoich na wieki, bo jesteś pełen do", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech pokorna modlitwa pomocną będzie duszom sług i służebnic Twoich; racz je oczyścić z wszelkich g", + "id": "Postcommunio" + } + ], + "2024-11-03": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Boże, Ty wiesz, że z powodu ludzkiej ułomności nie możemy się ostać wśród tak wielkich niebezpieczeństw; daj nam moc dus", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:8-10*\n*Prawdziwą miłość bliźniego okazujemy zachowując przyk", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:23-27*\nOnego czasu: Gdy Jezus wstąpił do łodzi, weszli za Nim ucz", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby ten dar złożony w ofierze nieustannie oczyszczał i zachowywał od wszelkiego z", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Niech Twoje dary, o Boże, oderwą nas od rozkoszy ziemskich i nieustannie wzmacniają pokarmem niebieskim.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-11-04": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Osłaniaj, Panie, swój Kościół nieustanną opieką świętego Karola, Twojego Wyznawcy i Biskupa, a jak jemu gorliwość paster", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Witalisa i Agrykoli*\nSpraw, prosimy Cię, wszechmogący Boże, abyśmy obchodząc uroczystość świętych Twoic", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Witalisa i Agrykoli*\nDaj się przebłagać, Panie, złożonymi darami, a za wstawiennictwem świętych Twoich ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Witalisa i Agrykoli*\nPanie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętych Męczenników", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-05": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Boże, Ty wiesz, że z powodu ludzkiej ułomności nie możemy się ostać wśród tak wielkich niebezpieczeństw; daj nam moc dus", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:8-10*\n*Prawdziwą miłość bliźniego okazujemy zachowując przyk", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:23-27*\nOnego czasu: Gdy Jezus wstąpił do łodzi, weszli za Nim ucz", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby ten dar złożony w ofierze nieustannie oczyszczał i zachowywał od wszelkiego z", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Niech Twoje dary, o Boże, oderwą nas od rozkoszy ziemskich i nieustannie wzmacniają pokarmem niebieskim.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-11-06": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Boże, Ty wiesz, że z powodu ludzkiej ułomności nie możemy się ostać wśród tak wielkich niebezpieczeństw; daj nam moc dus", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:8-10*\n*Prawdziwą miłość bliźniego okazujemy zachowując przyk", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:23-27*\nOnego czasu: Gdy Jezus wstąpił do łodzi, weszli za Nim ucz", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby ten dar złożony w ofierze nieustannie oczyszczał i zachowywał od wszelkiego z", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Niech Twoje dary, o Boże, oderwą nas od rozkoszy ziemskich i nieustannie wzmacniają pokarmem niebieskim.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-11-07": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Boże, Ty wiesz, że z powodu ludzkiej ułomności nie możemy się ostać wśród tak wielkich niebezpieczeństw; daj nam moc dus", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:8-10*\n*Prawdziwą miłość bliźniego okazujemy zachowując przyk", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:23-27*\nOnego czasu: Gdy Jezus wstąpił do łodzi, weszli za Nim ucz", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby ten dar złożony w ofierze nieustannie oczyszczał i zachowywał od wszelkiego z", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Niech Twoje dary, o Boże, oderwą nas od rozkoszy ziemskich i nieustannie wzmacniają pokarmem niebieskim.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-11-08": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Boże, Ty wiesz, że z powodu ludzkiej ułomności nie możemy się ostać wśród tak wielkich niebezpieczeństw; daj nam moc dus", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Świętych Czterech Ukoronowanych Męczenników*\nSpraw, wszechmogący Boże, abyśmy podziwiając męstwo sławnych M", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:8-10*\n*Prawdziwą miłość bliźniego okazujemy zachowując przyk", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:23-27*\nOnego czasu: Gdy Jezus wstąpił do łodzi, weszli za Nim ucz", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby ten dar złożony w ofierze nieustannie oczyszczał i zachowywał od wszelkiego z", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Świętych Czterech Ukoronowanych Męczenników*\nPanie, niech hojne błogosławieństwo Twoje zstąpi na nasze dary", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Niech Twoje dary, o Boże, oderwą nas od rozkoszy ziemskich i nieustannie wzmacniają pokarmem niebieskim.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Świętych Czterech Ukoronowanych Męczenników*\nPokrzepieni niebieskim Sakramentem i płynącą zeń radością pros", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-09": [ + { + "body": "*Rdz 28:17*\nBojaźnią przejmuje to miejsce: tu jest dom Boży i brama niebios, i zwać się będzie mieszkaniem Boga.\n*Ps 83:", + "id": "Introitus" + }, + { + "body": "Boże, który co roku pozwalasz nam obchodzić dzień konsekracji Twojej świątyni i uczestniczyć w świętych obrzędach, wysłu", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Teodora*\nBoże, który przez wzgląd na chwalebną śmierć świętego Twego Męczennika Teodora otaczasz nas Sw", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 21:2-5*\n*Kościół materialny jest obrazem «Jeruzalem niebieskieg", + "id": "Lectio" + }, + { + "body": "Bóg uczynił z tego miejsca bez skazy bezcenny znak swojej obecności.\n℣. Boże, którego otacza chór aniołów, wysłuchaj pro", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:1-10*\nOnego czasu: Jezus przechodził przez Jerycho. I oto mąż imi", + "id": "Evangelium" + }, + { + "body": "*1 Krn 29:17-18*\n*Modlitwa Dawida, który przygotował budowę pierwszej świątyni w Jerozolimie.*\nPanie Boże, w szczerości ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię Panie, wysłuchaj modlitwy nasze (abyśmy wszyscy zebrani w tej świątyni, której rocznicę konsekracji obchodzi", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Teodora*\nProsimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich złożone, a nabożne sprawowa", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 21:13*\nDom mój będzie nazwany domem modlitwy, mówi Pan. Każdy, kto w nim prosi otrzymuje; a kto szuka, znajduje; a k", + "id": "Communio" + }, + { + "body": "Boże, Ty z żywych i wybranych kamieni przygotowujesz Swemu majestatowi wiekuisty przybytek; wspomóż lud Twój, który korn", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Teodora*\nProsimy Cię, Panie, za wstawiennictwem świętego Teodora, Twego Męczennika, daj nam przyjąć czy", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-10": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, strzeż nieustannie rodziny Twojej z ojcowską dobrocią, a ponieważ całą nadzieję pokładamy w łasce ni", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:12-17*\nBracia: Przyobleczcież się tedy jako wybrani Boży, św", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:24-30*\nOnego czasu powiedział Jezus rzeszom tę przypowieść: Podo", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiary przebłagalne, abyś miłosiernie odpuścił nasze grzechy i sam pokierował chwiejnymi sercami.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy cię wszechmogący Boże, abyśmy osiągnęli zbawienie, którego zadatek otrzymaliśmy w tych tajemnicach.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2024-11-11": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach, spraw miłościwie, aby wstawiennictwo św. Marcina, Twego Wyznawc", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Mennasa*\nProsimy Cię, wszechmogący Boże, abyśmy obchodząc urodziny dla nieba świętego Mennasa, Twego Mę", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\nNie znalazł się jemu podobny, który by ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:33-36*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nikt nie zapala ś", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie Boże, poświęć te dary składane w uroczystość świętego Twego Biskupa Marcina: niech one wszędzie kieru", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Mennasa*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i ł", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, aby te tajemnice, sprawowane ku czci Świętych, stały się dla nas źródłem zbawienia za ich", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Mennasa*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wiecznoś", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-12": [ + { + "body": "*Ps 33:20-21*\nWiele ucisków spotyka sprawiedliwych, lecz Pan ich wyzwala ze wszystkich; strzeże wszystkich ich kości: ni", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech źródłem radości będzie dzisiaj dla nas chwalebne zwycięstwo Twoich Męczenników Benedykta, Jana", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Syr 44:10-15*\nCi są mężami pełnymi miłosierdzia, których dobre czyny nie poszły w niepamięć", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nOto jak dobrze i jak miło braciom zamieszkać społem.\n℣. Jako wyborny olejek na głowie, co spływa na brodę, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:1-8*\nOnego czasu: Rzekł Jezus uczniom swoim: «Strzeżcie się kwasu", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nNiech się radują ci wszyscy, co Twe imię miłują, bo Ty, Panie, sprawiedliwemu dasz błogosławieństwo; Panie,", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij łaskawie przez zasługi świętych Twoich Męczenników ofiarę, którą Ci składamy i spraw, aby s", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył, jak złoto w piecu ich wypróbował, jak ofiarę", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, niebieski Sakrament, obchodząc uroczystość świętych Twoich Męczenników Benedykta, Jana, Mateusza, Iz", + "id": "Postcommunio" + } + ], + "2024-11-13": [ + { + "body": "*Mdr 4:13-14*\nStawszy się w krótkim czasie doskonałym, wypełnił czasów wiele. Podobała się bowiem Bogu dusza jego; dlate", + "id": "Introitus" + }, + { + "body": "Boże, któryś wśród wielu cudów Swej mądrości udzielił łaski dojrzałej świętości nawet w wieku młodzieńczym, spraw, prosi", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 4:7-18*\nSprawiedliwy, jeśli umrze przedwcześnie, dozna ochłody. Czcigodna bowiem staroś", + "id": "Lectio" + }, + { + "body": "*Ps 20:3-4*\nSpełniłeś pragnienie jego serca, prośbie ust jego nie odmówiłeś.\n℣. Uprzedziłeś go hojnym błogosławieństwem.", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:13-21*\nOnego czasu: Przywiedziono do Jezusa dzieci: aby włożył n", + "id": "Evangelium" + }, + { + "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech nas uczyni godnymi Chleba anielskiego wstawiennictwo św. Stanisława, który zasłużył, by go ręc", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Syr 15:3*\nNakarmił go Pan Chlebem żywota i rozumienia, i napoił go wodą zbawiennej mądrości.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, za wstawiennictwem św. Stanisława, Twojego Wyznawcy, aby Pokarm niebieski, któryśmy przyjęli, przyni", + "id": "Postcommunio" + } + ], + "2024-11-14": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci świętego Jozafata; z jego męczeństwa radują się Aniołowie i wy", + "id": "Introitus" + }, + { + "body": "Wzbudź, Panie, w Kościele Swoim Ducha, pod którego natchnieniem św. Jozafat, Twój Męczennik i Biskup, położył życie swoj", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 5:1-6*\nBracia: Każdy arcykapłan, spośród ludzi wzięty, dl", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*J 15:13*\nNikt nie ma większej miłości nad tę, aby kto życie swe oddał za przyjaciół swoich.", + "id": "Offertorium" + }, + { + "body": "Najłaskawszy Boże, zlej Swoje błogosławieństwo na te dary i utwierdź nas w wierze, którą święty Jozafat, Twój Męczennik ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest pasterz dobry; znam swoje owce i one mnie znają.", + "id": "Communio" + }, + { + "body": "Panie, niech nam ducha męstwa udzieli ta uczta niebieska, która stale krzepiła życie świętego Jozafata, Twojego Męczenni", + "id": "Postcommunio" + } + ], + "2024-11-15": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, który świętego Alberta, Twego Biskupa i Doktora, uczyniłeś wielkim w podporządkowaniu ludzkiej mądrości wierze prz", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj litościwie na tę ofiarę i spraw, abyśmy za przykładem i przyczyną św. Alberta z nabożnym sercem korzystal", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Broń nas, Panie, od napaści wrogów przez ten święty Sakrament, któryśmy przyjęli, i za wstawiennictwem św. Alberta, Tweg", + "id": "Postcommunio" + } + ], + "2024-11-16": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Boże, Tyś sobie zgotował miłe przebywanie w sercu świętej Dziewicy Gertrudy; przez jej zasługi i wstawiennictwo obmyj ła", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2024-11-17": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy stale rozważając prawdy duchowe, słowem i czynem spełniali to, co się Tobi", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 1:2-10*\nBracia: Dzięki składamy Bogu zawsze za was wszy", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:31-35*\nOnego czasu: Powiedział Jezus rzeszom tę przypowieść: «Po", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Boże, niech nas ta ofiara oczyści i odnowi, prowadzi i ochrania.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Posileni ucztą niebieską, prosimy, Panie, abyśmy zawsze pożądali tego pokarmu, który nam daje prawdziwe życie.\nPrzez Pan", + "id": "Postcommunio" + } + ], + "2024-11-18": [ + { + "body": "*Rdz 28:17*\nBojaźnią przejmuje to miejsce: tu jest dom Boży i brama niebios, i zwać się będzie mieszkaniem Boga.\n*Ps 83:", + "id": "Introitus" + }, + { + "body": "Boże, który co roku pozwalasz nam obchodzić dzień konsekracji Twojej świątyni i uczestniczyć w świętych obrzędach, wysłu", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 21:2-5*\n*Kościół materialny jest obrazem «Jeruzalem niebieskieg", + "id": "Lectio" + }, + { + "body": "Bóg uczynił z tego miejsca bez skazy bezcenny znak swojej obecności.\n℣. Boże, którego otacza chór aniołów, wysłuchaj pro", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:1-10*\nOnego czasu: Jezus przechodził przez Jerycho. I oto mąż imi", + "id": "Evangelium" + }, + { + "body": "*1 Krn 29:17-18*\n*Modlitwa Dawida, który przygotował budowę pierwszej świątyni w Jerozolimie.*\nPanie Boże, w szczerości ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię Panie, wysłuchaj modlitwy nasze (abyśmy wszyscy zebrani w tej świątyni, której rocznicę konsekracji obchodzi", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 21:13*\nDom mój będzie nazwany domem modlitwy, mówi Pan. Każdy, kto w nim prosi otrzymuje; a kto szuka, znajduje; a k", + "id": "Communio" + }, + { + "body": "Boże, Ty z żywych i wybranych kamieni przygotowujesz Swemu majestatowi wiekuisty przybytek; wspomóż lud Twój, który korn", + "id": "Postcommunio" + } + ], + "2024-11-19": [ + { + "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", + "id": "Introitus" + }, + { + "body": "Miłosierny Boże, oświeć serca Twych wiernych i za chwalebną przyczyną św. Elżbiety spraw, abyśmy pogardzali pomyślnością", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Poncjana*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyn", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Poncjana*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Poncjana*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-20": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego N., (Twojego Męc", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Feliksa Walezego, Wyznawcy*\nBoże, który świętego Feliksa, Twego Wyznawcę, przez natchnienie niebieskie ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Feliksa Walezego, Wyznawcy*\nProsimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze sk", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Feliksa Walezego, Wyznawcy*\nProsimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, ch", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-21": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Boże, dzisiaj z Twojej woli Najświętszą Maryję Pannę, mieszkanie Ducha Świętego, stawiono w świątyni; racz sprawić, byśm", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2024-11-22": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłam o Twej prawdzie wobec królów, a nie wstydziłam się, i rozważałam Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Boże, który co roku sprawiasz nam radość z uroczystości świętej Cecylii, Twojej Dziewicy i Męczennicy, daj, prosimy, aby", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:13-17*\nPanie Boże mój, ku Tobie wzniosłam prośbę moją i błagałam, gdy śmierć mi gr", + "id": "Lectio" + }, + { + "body": "*Ps 44:11; 44:12*\nPosłuchaj, córko, spójrz i nakłoń twego ucha, bo Król pragnie twej piękności.\n*Ps 44:5*\n℣. W chwale i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta ofiara przebłagalna i pochwalna za wstawiennictwem św. Cecylii, Twojej Dziewicy i Męczennic", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nNiech zawstydzą się pyszni, bo niewinnie mnie dręczą, ja będę rozmyślać o Twych przykazaniach, o pra", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami; wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2024-11-23": [ + { + "body": "*Iz 59:21; 56:7*\nMówi Pan: Mowy moje, które włożyłem w twoje usta, nie odstąpią od ust twoich; a ofiary twoje miłe będą ", + "id": "Introitus" + }, + { + "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego N., (Twojego Męc", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Felicyty*\nWszechmogący Boże, prosimy Cię, aby nas ochraniały modlitwy i zasługi św. Felicyty, Twojej Mę", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:17-21; 4:1-3*\nBracia: Naśladowcami moimi bądźcie i zapatruj", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Felicyty*\nPanie, wejrzyj łaskawie na ofiary Twego ludu i napełnij go radością za wstawiennictwem tej, k", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Felicyty*\nWszechmogący Boże, pokornie prosimy Cię, abyś za wstawiennictwem Twoich Świętych pomnażał w n", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-24": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Prosimy Cię Panie, pobudź wolę wiernych Twoich, aby gorliwie korzystając z owoców służby Bożej, otrzymywali większą pomo", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:9-14*\nBracia: Nie przestajemy modlić się za was i prosić, ab", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:15-35*\n*Chrystus Pan zapowiada dwa wydarzenia: zburzenie Jerozol", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj miłościwie na nasze pokorne prośby, a przyjąwszy ofiary i modlitwy Swojego ludu, zwróć wszystkie nasze se", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, spraw, aby uzdrawiająca moc Sakramentu, który przyjęliśmy, uleczyła nasze dusze ze wszystkich złych ", + "id": "Postcommunio" + } + ], + "2024-11-25": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłam o Twej prawdzie wobec królów, a nie wstydziłam się, i rozważałam Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Boże, Ty na szczycie góry Synaj dałeś prawo Mojżeszowi i w tym samym miejscu cudownie umieściłeś przez świętych mnichów ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość świętej Katarzyny, Dziewicy i Męczennicy Twojej: ufamy, że jej ws", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nNiech zawstydzą się pyszni, bo niewinnie mnie dręczą, ja będę rozmyślać o Twych przykazaniach, o pra", + "id": "Communio" + }, + { + "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej Katarzyny, Twojej Dziewicy i Męczennicy, niec", + "id": "Postcommunio" + } + ], + "2024-11-26": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Najłaskawszy Boże, gdy święty Opat Sylwester rozmyślał przy otwartym grobie nad znikomością tego świata, raczyłeś go pow", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Piotra z Aleksandrii*\nWszechmogący Boże, wejrzyj na słabość naszą, a skoro nas obciąża brzemię własnej ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Gdy z czcią składamy te dary boskiemu majestatowi Twojemu, błagamy Cię, Panie, abyśmy za przykładem św. Sylwestra, Opata", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Piotra z Aleksandrii*\nPanie, przyjmij łaskawie przez zasługi świętego Piotra Męczennika i Biskupa ofiar", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Panie, gdy nas posiliłeś Boską ucztą, daj nam tak iść śladami świętego Opata Sylwestra, abyśmy wespół ze Świętymi otrzym", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Piotra z Aleksandrii*\nPokrzepieni uczestnictwem w świętej uczcie prosimy Cię, Panie, Boże nasz, abyśmy ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-27": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Prosimy Cię Panie, pobudź wolę wiernych Twoich, aby gorliwie korzystając z owoców służby Bożej, otrzymywali większą pomo", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:9-14*\nBracia: Nie przestajemy modlić się za was i prosić, ab", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:15-35*\n*Chrystus Pan zapowiada dwa wydarzenia: zburzenie Jerozol", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj miłościwie na nasze pokorne prośby, a przyjąwszy ofiary i modlitwy Swojego ludu, zwróć wszystkie nasze se", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, spraw, aby uzdrawiająca moc Sakramentu, który przyjęliśmy, uleczyła nasze dusze ze wszystkich złych ", + "id": "Postcommunio" + } + ], + "2024-11-28": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Prosimy Cię Panie, pobudź wolę wiernych Twoich, aby gorliwie korzystając z owoców służby Bożej, otrzymywali większą pomo", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:9-14*\nBracia: Nie przestajemy modlić się za was i prosić, ab", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:15-35*\n*Chrystus Pan zapowiada dwa wydarzenia: zburzenie Jerozol", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj miłościwie na nasze pokorne prośby, a przyjąwszy ofiary i modlitwy Swojego ludu, zwróć wszystkie nasze se", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, spraw, aby uzdrawiająca moc Sakramentu, który przyjęliśmy, uleczyła nasze dusze ze wszystkich złych ", + "id": "Postcommunio" + } + ], + "2024-11-29": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Prosimy Cię Panie, pobudź wolę wiernych Twoich, aby gorliwie korzystając z owoców służby Bożej, otrzymywali większą pomo", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Saturnina, Męczennika*\nBoże, pozwalając nam cieszyć się z narodzenia dla nieba św. Saturnina, Twego Męc", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:9-14*\nBracia: Nie przestajemy modlić się za was i prosić, ab", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:15-35*\n*Chrystus Pan zapowiada dwa wydarzenia: zburzenie Jerozol", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj miłościwie na nasze pokorne prośby, a przyjąwszy ofiary i modlitwy Swojego ludu, zwróć wszystkie nasze se", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Saturnina, Męczennika*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego Saturnina, Twojego Męcze", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, spraw, aby uzdrawiająca moc Sakramentu, który przyjęliśmy, uleczyła nasze dusze ze wszystkich złych ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Saturnina, Męczennika*\nProsimy Cię, Panie, niech nas uświęci przyjęcie Twojego Sakramentu i za wstawien", + "id": "Commemoratio Postcommunio" + } + ], + "2024-11-30": [ + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", + "id": "Introitus" + }, + { + "body": "Panie, pokornie błagamy Twój majestat, aby święty Andrzej, Apostoł, który był nauczycielem i przewodnikiem Twojego Kości", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 10:10-18*\nBracia: Bo sercem przyjęta wiara prowadzi do usprawie", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi: głosić będą Twe imię, o Panie.\n℣. Synowie twoi zajmą miejsce two", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 4:18-22*\nOnego czasu: Gdy Jezus przechodził obok Jeziora Galilejski", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże: na zawsze jest utrwalone ich władanie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech modlitwa św. Andrzeja, Apostoła, poleci Tobie naszą ofiarę, aby uroczyście składana ku jego ch", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 4:19-20*\nPójdźcie za mną, a sprawię, że staniecie się rybakami ludzi. A oni natychmiast opuściwszy sieci poszli za P", + "id": "Communio" + }, + { + "body": "Ciesząc się z uroczystości św. Andrzeja, Apostoła, przyjęliśmy, Panie, Boski Sakrament; prosimy, aby pomnożył on chwałę ", + "id": "Postcommunio" + } + ], + "2024-12-01": [ + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", + "id": "Introitus" + }, + { + "body": "Wzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od niebezpieczeństw grożących nam ws", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:11-14*\nBracia: Wiecie, że pora nam już powstać ze snu. Teraz", + "id": "Lectio" + }, + { + "body": "*Ps 24:3; 24:4*\nWszyscy, co ufają Tobie, wstydu nie doznają.\n℣. Ukaż mi, Panie, drogi Twoje, i naucz mnie Twoich ścieżek", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:25-33*\nOnego czasu rzekł Jezus uczniom swoim: «Będą znaki na słoń", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", + "id": "Offertorium" + }, + { + "body": "Panie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej czystości dojść do swojego Stwórc", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13*\nPan użyczy błogosławieństwa, a ziemia nasza wyda swój plon.", + "id": "Communio" + }, + { + "body": "Obdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali godnym przygotowaniem nadchodzące ", + "id": "Postcommunio" + } + ], + "2024-12-02": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś cudownie objawił Swoją wolą, by na rządcę i nauczyciela Twego Kościoła wybrano św. Piotra Chryzologa, spraw, p", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Barbary*\nPanie, niech nas broni od wszelkich przeciwności wstawiennictwo św. Barbary, Dziewicy i Męczen", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\nNie znalazł się jemu podobny, który by ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Piotra Chryzologa, Twego Biskupa i Doktora, która zaleci Tob", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Barbary*\nPrzyjmij, Panie, dary, które Ci składamy w uroczystość świętej Barbary, Dziewicy i Męczennicy ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:20; 25:21*\nPanie, dałeś mi pięć talentów, otom drugie pięć zyskał. Dobrze, sługo prawy i wierny, żeś w małym był ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty Piotr Chryzolog, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Barbary*\nPanie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej Barbary, Twojej Dzi", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-03": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłem o Twej prawdzie wobec królów, a nie wstydziłem się, i rozważałem Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Boże, któryś raczył przyłączyć do Twego Kościoła narody Indii dzięki nauczaniu i cudom świętego Franciszka, spraw łaskaw", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nWzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 10:10-18*\nBracia: Bo sercem przyjęta wiara prowadzi do usprawie", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:15-18*\nOnego czasu: Rzekł Jezus uczniom swoim: «Idąc na cały świat,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą Ci w pokorze składamy ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nPanie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego: zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nObdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-04": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłam o Twej prawdzie wobec królów, a nie wstydziłam się, i rozważałam Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Panie, niech nas broni od wszelkich przeciwności wstawiennictwo św. Barbary, Dziewicy i Męczennicy Twojej. Obyśmy za jej", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nWzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość świętej N., Dziewicy i Męczennicy Twojej: ufamy, że jej wstawienn", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nPanie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nNiech zawstydzą się pyszni, bo niewinnie mnie dręczą, ja będę rozmyślać o Twych przykazaniach, o pra", + "id": "Communio" + }, + { + "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej N., Twojej Dziewicy i Męczennicy, niech spraw", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nObdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-05": [ + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", + "id": "Introitus" + }, + { + "body": "Wzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od niebezpieczeństw grożących nam ws", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Saby, Opata*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Saby Opata, abyśmy za j", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:11-14*\nBracia: Wiecie, że pora nam już powstać ze snu. Teraz", + "id": "Lectio" + }, + { + "body": "*Ps 24:3; 24:4*\nWszyscy, co ufają Tobie, wstydu nie doznają.\n℣. Ukaż mi, Panie, drogi Twoje, i naucz mnie Twoich ścieżek", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:25-33*\nOnego czasu rzekł Jezus uczniom swoim: «Będą znaki na słoń", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", + "id": "Offertorium" + }, + { + "body": "Panie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej czystości dojść do swojego Stwórc", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Saby, Opata*\nProsimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na świętym ołt", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13*\nPan użyczy błogosławieństwa, a ziemia nasza wyda swój plon.", + "id": "Communio" + }, + { + "body": "Obdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali godnym przygotowaniem nadchodzące ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Saby, Opata*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Saby, Op", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-06": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, któryś św. Mikołaja, Biskupa, wsławił niezliczonymi cudami, spraw, byśmy przez jego zasługi i modlitwy uszli ognia", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nWzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 13:7-17*\nBracia: Pamiętajcie o przełożonych waszych, któr", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie Boże, poświęć te dary składane w uroczystość świętego Biskupa Twego Mikołaja: niech one wszędzie kier", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nPanie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36-38*\nRaz przysiągłem na świętość moją: potomstwo jego trwać będzie na wieki i jego tron będzie przede mną jak s", + "id": "Communio" + }, + { + "body": "Panie, niech dary ofiarne przyjęte z powodu uroczystości św. Biskupa Twego Mikołaja otaczają nas nieustanną opieką.\nPrze", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nObdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-07": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś dał ludowi Swemu św. Ambrożego za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć orędow", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nWzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wszechmogący, wieczny Boże, spraw za przyczyną św. Ambrożego, Twego Wyznawcy i Biskupa, aby dary złożone Twojemu majesta", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nPanie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36-38*\nRaz przysiągłem na świętość moją: potomstwo jego trwać będzie na wieki i jego tron będzie przede mną jak s", + "id": "Communio" + }, + { + "body": "Przyjmując Sakrament naszego zbawienia prosimy Cię, wszechmogący Boże, spraw, niech wszędzie nas wspiera modlitwa św. Am", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nObdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali ", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-08": [ + { + "body": "*Iz 61:10*\nWeselę się wielce w Panu i raduje się duch mój w moim Bogu: gdyż oblókł mnie w szaty zbawienia i odział płasz", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez Niepokalane Poczęcie Najświętszej Dziewicy przygotował Synowi Swojemu godne mieszkanie, prosimy Cie: ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nPobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięk", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Przysłów.\n*Prz 8:22-35*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dziewic", + "id": "Lectio" + }, + { + "body": "*Jdt 13:23*\nBłogosławiona jesteś, Panno Maryjo, od Pana, Boga, wysokiego, ponad wszystkie niewiasty na ziemi.\n*Jdt 15:10", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-28*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28*\nZdrowaś Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami, alleluja.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę zbawienia, którą Tobie składamy w uroczystość Niepokalanego Poczęcia Najświętszej Maryi Panny: j", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nDaj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam z", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*Ps 86:3, Łk 1:49*\nMaryjo, głoszą o Tobie rzeczy pełne chwały, albowiem uczynił Ci wielkie rzeczy, który możny jest.", + "id": "Communio" + }, + { + "body": "Panie Boże nasz, niech Sakrament, który przyjęliśmy, wyleczy nas z ran tego grzechu, od którego w wyjątkowy sposób zacho", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nPosileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-09": [ + { + "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", + "id": "Introitus" + }, + { + "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", + "id": "Offertorium" + }, + { + "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", + "id": "Communio" + }, + { + "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", + "id": "Postcommunio" + } + ], + "2024-12-10": [ + { + "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", + "id": "Introitus" + }, + { + "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Melchiadesa, Papieża i Męczennika*\nBoże, któryś przez Niepokalane Poczęcie Najświętszej Dziewicy przygo", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", + "id": "Offertorium" + }, + { + "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Melchiadesa, Papieża i Męczennika*\nPrzyjmij, Panie, ofiarę zbawienia, którą Tobie składamy w uroczystoś", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", + "id": "Communio" + }, + { + "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Melchiadesa, Papieża i Męczennika*\nPanie Boże nasz, niech Sakrament, który przyjęliśmy, wyleczy nas z r", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-11": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego Damazego, Papież", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nPobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięk", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nDaj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam z", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nPosileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-12": [ + { + "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", + "id": "Introitus" + }, + { + "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", + "id": "Offertorium" + }, + { + "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", + "id": "Communio" + }, + { + "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", + "id": "Postcommunio" + } + ], + "2024-12-13": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Łucji, Dziewicy i Męczennicy Tw", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nPobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięk", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15-16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nDaj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam z", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:161-162*\nBez powodu mię prześladują książęta, lecz moje serce tylko Twoich słów się lęka. Z Twych wypowiedzi się", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas za wstawiennictwem tej, której uroczystość obchodzimy.\nPr", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nPosileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-14": [ + { + "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", + "id": "Introitus" + }, + { + "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", + "id": "Offertorium" + }, + { + "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", + "id": "Communio" + }, + { + "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", + "id": "Postcommunio" + } + ], + "2024-12-15": [ + { + "body": "*Flp 4:4-6*\nWeselcie się w Panu zawsze, mówię powtórnie, weselcie się. Skromność wasza niech będzie znana wszystkim ludz", + "id": "Introitus" + }, + { + "body": "Nakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności naszego umysłu łaską Twego nawiedzenia.\nKtóry żyjesz…", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-7*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nPanie, który siedzisz na Cherubinach, wzbudź Twą potęgę i przyjdź.\n℣. Pasterzu Izraela posłuchaj, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:19-28*\nOnego czasu: Żydzi z Jerozolimy wysłali do Jana kapłanów i lewi", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nŁaskawym okazałeś się, Panie, dla Twej ziemi, na dobre odmieniłeś los Jakuba: ludowi Twemu darowałeś winę.", + "id": "Offertorium" + }, + { + "body": "Daj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddania. Niech przez nią spełniają się ustanowione przez Ci", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Iz 35:4*\nRzeczcie bojaźliwym: «Wzmocnijcie się, a nie bójcie się: oto Bóg nasz przyjdzie i zbawi nas».", + "id": "Communio" + }, + { + "body": "Błagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił nas z grzechów i przygotował na zbliżające się święta.\nP", + "id": "Postcommunio" + } + ], + "2024-12-16": [ + { + "body": "*Dn 3:84; 3:87*\nKapłani Boży błogosławcie Pana: święci i pokornego serca, chwalcie Boga.\n*Dn 3:57*\nBłogosławcie Pana, ws", + "id": "Introitus" + }, + { + "body": "Boże, co roku uweselasz nas uroczystością świętego Euzebiusza, Twojego Męczennika i Biskupa; spraw łaskawie, abyśmy cies", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 3 Niedziela Adwentu (Niedziela Gaudete)*\nNakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 1:3-7*\nBracia: Błogosławiony Bóg i Ojciec Pana naszego Jez", + "id": "Lectio" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią.\n℣. Obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie. Alleluja, alleluja.\n", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:24-27*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli kto chce z", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, złożone Ci dary i za przyczyną świętego Euzebiusza, Twego Męczennika i Biskupa, daj się nimi przebłagać ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 3 Niedziela Adwentu (Niedziela Gaudete)*\nDaj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddan", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni.", + "id": "Communio" + }, + { + "body": "Panie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętego Euzebiusza, Twego Męczennika i Biskupa, stanie si", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 3 Niedziela Adwentu (Niedziela Gaudete)*\nBłagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił na", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-17": [ + { + "body": "*Flp 4:4-6*\nWeselcie się w Panu zawsze, mówię powtórnie, weselcie się. Skromność wasza niech będzie znana wszystkim ludz", + "id": "Introitus" + }, + { + "body": "Nakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności naszego umysłu łaską Twego nawiedzenia.\nKtóry żyjesz…", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-7*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nPanie, który siedzisz na Cherubinach, wzbudź Twą potęgę i przyjdź.\n℣. Pasterzu Izraela posłuchaj, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:19-28*\nOnego czasu: Żydzi z Jerozolimy wysłali do Jana kapłanów i lewi", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nŁaskawym okazałeś się, Panie, dla Twej ziemi, na dobre odmieniłeś los Jakuba: ludowi Twemu darowałeś winę.", + "id": "Offertorium" + }, + { + "body": "Daj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddania. Niech przez nią spełniają się ustanowione przez Ci", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Iz 35:4*\nRzeczcie bojaźliwym: «Wzmocnijcie się, a nie bójcie się: oto Bóg nasz przyjdzie i zbawi nas».", + "id": "Communio" + }, + { + "body": "Błagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił nas z grzechów i przygotował na zbliżające się święta.\nP", + "id": "Postcommunio" + } + ], + "2024-12-18": [ + { + "body": "*Iz 45:8*\nNiebiosa, spuśćcie rosę z góry, a obłoki niech zleją z deszczem Sprawiedliwego. Niech się otworzy ziemia i zro", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby nadchodząca uroczystość naszego odkupienia przyniosła nam pomoc w życiu docze", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 2:2-5*\nW one dni rzekł Izajasz prorok: I będzie w ostateczne dni przygotowana gó", + "id": "LectioL1" + }, + { + "body": "*Ps 23:7; 23:3; 23:4*\nBramy, podnieście swe szczyty i rozstąpcie się, prastare podwoje, aby mógł wkroczyć Król chwały.\n℣", + "id": "GradualeL1" + }, + { + "body": "Pośpiesz, prosimy Cie, Panie, i nie zwlekaj, lecz ześlij nam potężną pomoc z nieba, aby radość z Twego przyjścia podnios", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 7:10-15*\nW one dni: Rzekł Pan do Achaza, mówiąc: «Proś Pana Boga twego o znak dl", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPan jest blisko wszystkich, którzy Go wzywają; wszystkich wzywających Go szczerze.\n℣. Chwałę Pańską ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "*Iz 35:4*\nWzmocnijcie się, a nie bójcie się; oto bowiem Bóg nasz wymierzy sprawiedliwość, Bóg sam przyjdzie i zbawi nas.", + "id": "Offertorium" + }, + { + "body": "Racz przyjąć, prosimy Cie, Panie, nasze posty. Niech one nas oczyszczą i uczynią godnymi Twej łaski oraz zawiodą do wiek", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Iz 7:14*\nOto Panna pocznie i porodzi Syna i nazwą imię Jego Emmanuel.", + "id": "Communio" + }, + { + "body": "Posileni zbawiennym Darem, pokornie błagamy Cię, Panie, aby to, co z radością przyjmujemy, przyniosło nam odnowienie.\nPr", + "id": "Postcommunio" + } + ], + "2024-12-19": [ + { + "body": "*Flp 4:4-6*\nWeselcie się w Panu zawsze, mówię powtórnie, weselcie się. Skromność wasza niech będzie znana wszystkim ludz", + "id": "Introitus" + }, + { + "body": "Nakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności naszego umysłu łaską Twego nawiedzenia.\nKtóry żyjesz…", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-7*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nPanie, który siedzisz na Cherubinach, wzbudź Twą potęgę i przyjdź.\n℣. Pasterzu Izraela posłuchaj, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:19-28*\nOnego czasu: Żydzi z Jerozolimy wysłali do Jana kapłanów i lewi", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nŁaskawym okazałeś się, Panie, dla Twej ziemi, na dobre odmieniłeś los Jakuba: ludowi Twemu darowałeś winę.", + "id": "Offertorium" + }, + { + "body": "Daj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddania. Niech przez nią spełniają się ustanowione przez Ci", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Iz 35:4*\nRzeczcie bojaźliwym: «Wzmocnijcie się, a nie bójcie się: oto Bóg nasz przyjdzie i zbawi nas».", + "id": "Communio" + }, + { + "body": "Błagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił nas z grzechów i przygotował na zbliżające się święta.\nP", + "id": "Postcommunio" + } + ], + "2024-12-20": [ + { + "body": "*Ps 118:151-152*\nBlisko Ty jesteś, o Panie, a wszystkie nakazy Twe wierne. Poznałem dawniej z rozkazów Twoich, że Ty trw", + "id": "Introitus" + }, + { + "body": "Wzbudź, prosimy Cię, Panie, potęgę Twoją i przyjdź, aby ci, którzy zaufali Twojej dobroci, rychlej zostali wybawieni od ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 11:1-5*\nTo mówi Pan Bóg: I wyjdzie różdżka z korzenia Jessego, a kwiat z korzeni", + "id": "Lectio" + }, + { + "body": "*Ps 84:8; 84:2*\nOkaż nam, Panie, miłosierdzie Swoje i daj nam Swoje zbawienie.\n℣. Łaskawym okazałeś się, Panie, dla Twej", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:39-47*\nOnego czasu: Powstawszy Maryja udała się śpiesznie w okolic", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy oraz oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrz", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Zch 14:5*\nOto przyjdzie Pan i wraz z Nim wszyscy Święci Jego: i zajaśnieje owego dnia światłość wielka.", + "id": "Communio" + }, + { + "body": "Niech nas odrodzi, o Panie, święta uczta ofiarna, na której pożywamy Twój Sakrament, i po oczyszczeniu ze starej przewin", + "id": "Postcommunio" + } + ], + "2024-12-21": [ + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", + "id": "Introitus" + }, + { + "body": "Dozwól nam, prosimy Cię, Panie, ze świętą dumą obchodzić uroczystość św. Tomasza, Twego Apostoła, aby nas zawsze dźwigał", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Sobota Suchych Dni Adwentu*\nBoże, Ty widzisz, że cierpimy wskutek naszych nieprawości, racz nas pocieszyć ł", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 2:19-22*\nBracia: Nie jesteście już obcymi i przychodniami, ale ", + "id": "Lectio" + }, + { + "body": "*Ps 138:17-18*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:24-29*\nOnego czasu: Tomasz, jeden z dwunastu, zwany Didymus, nie był ", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.", + "id": "Offertorium" + }, + { + "body": "Oddajemy Ci, Panie, dług naszego poddaństwa, kornie błagając, abyś strzegł w nas Swych darów za przyczyną św. Tomasza Ap", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Sobota Suchych Dni Adwentu*\nProsimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdza w Twojej", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*J 20:27*\nWyciągnij rękę twoją i rozpoznaj miejsce gwoździ, a nie bądź niewiernym, lecz wierzącym.", + "id": "Communio" + }, + { + "body": "Przyjdź nam z pomocą, miłosierny Boże, a za wstawiennictwem św. Tomasza Apostoła strzeż w nas łaskawie Swoich darów.\nPrz", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Sobota Suchych Dni Adwentu*\nProsimy Cię, Panie, Boże nasz, aby święte tajemnice, które ustanowiłeś dla zape", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-22": [ + { + "body": "*Iz 45:8*\nNiebiosa, spuśćcie rosę z góry, a obłoki niech zleją z deszczem Sprawiedliwego. Niech się otworzy ziemia i zro", + "id": "Introitus" + }, + { + "body": "Wzbudź swą potęgę, prosimy Cię, Panie, i przyjdź, i z wielką siłą pośpiesz nam na pomoc, aby miłosierdzie Twoje, wspomag", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:1-5*\nBracia: Tak niechaj każdy nas uważa za sługi Chryst", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPan jest blisko wszystkich, którzy Go wzywają; wszystkich, wzywających Go szczerze.\n℣. Chwałę Pańską", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 3:1-6*\n*Św. Łukasz z wielką ścisłością określa czas wystąpienia Jana", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą; błogosławionaś Ty między niewiastami i błogosławiony owoc żywota Two", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Iz 7:14*\nOto Panna pocznie i porodzi syna i nazwą imię Jego Emmanuel.", + "id": "Communio" + }, + { + "body": "Przyjąwszy Twe dary, prosimy Cię, Panie, aby przez częste uczestnictwo w tym Sakramencie wzrastał w nas jego zbawienny o", + "id": "Postcommunio" + } + ], + "2024-12-23": [ + { + "body": "*Iz 45:8*\nNiebiosa, spuśćcie rosę z góry, a obłoki niech zleją z deszczem Sprawiedliwego. Niech się otworzy ziemia i zro", + "id": "Introitus" + }, + { + "body": "Wzbudź swą potęgę, prosimy Cię, Panie, i przyjdź, i z wielką siłą pośpiesz nam na pomoc, aby miłosierdzie Twoje, wspomag", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:1-5*\nBracia: Tak niechaj każdy nas uważa za sługi Chryst", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPan jest blisko wszystkich, którzy Go wzywają; wszystkich, wzywających Go szczerze.\n℣. Chwałę Pańską", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 3:1-6*\n*Św. Łukasz z wielką ścisłością określa czas wystąpienia Jana", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą; błogosławionaś Ty między niewiastami i błogosławiony owoc żywota Two", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Iz 7:14*\nOto Panna pocznie i porodzi syna i nazwą imię Jego Emmanuel.", + "id": "Communio" + }, + { + "body": "Przyjąwszy Twe dary, prosimy Cię, Panie, aby przez częste uczestnictwo w tym Sakramencie wzrastał w nas jego zbawienny o", + "id": "Postcommunio" + } + ], + "2024-12-24": [ + { + "body": "*Wj 16:6; 16:7*\nDziś poznacie, że przyjdzie Pan i zbawi nas; a rano ujrzycie chwałę Jego.\n*Ps 23:1*\nPana jest ziemia i c", + "id": "Introitus" + }, + { + "body": "Boże, co roku uweselasz nas oczekiwaniem naszego Odkupiciela: dozwól, abyśmy przyjmując radośnie Jednorodzonego Syna Twe", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 1:1-6*\nPaweł, sługa Jezusa Chrystusa, powołany na Apostoła, prz", + "id": "Lectio" + }, + { + "body": "*Wj 16:6; 16:7*\nDziś poznacie, że przyjdzie Pan i zbawi nas; a rano ujrzycie chwałę Jego.\n*Ps 79:2-3*\nPasterzu Izraela, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 1:18-21*\nGdy poślubiona była Matka Jezusa; Maryja, Józefowi, pierwe", + "id": "Evangelium" + }, + { + "body": "*Ps 23:7*\nBramy, podnieście swe szczyty i rozstąpcie się, prastare podwoje, aby mógł wkroczyć Król chwały.", + "id": "Offertorium" + }, + { + "body": "Obchodząc wigilię chwalebnych narodzin Twojego Syna, prosimy Cię, wszechmogący Boże, abyśmy z radością odebrali Jego wie", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Iz 40:5*\nObjawi się chwała Pańska i ujrzy wszelkie ciało zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech odnowi nasze życie obchód narodzin Jednorodzonego Syna Twojego, którego niebieska tajemnica na", + "id": "Postcommunio" + } + ], + "2024-12-25": [ + { + "body": "*Ps 2:7*\nPan rzekł do mnie: «Tyś Synem moim, Ja Cię dziś zrodziłem».\n*Ps 2:1*\nDlaczego się burzą narody, czemu ludy knuj", + "id": "Introitus" + }, + { + "body": "Boże, Tyś sprawił, że ta najświętsza noc zajaśniała blaskiem prawdziwej światłości, spraw, prosimy, abyśmy w niebie mogl", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", + "id": "Lectio" + }, + { + "body": "*Ps 109:3; 109:1*\nPrzy Tobie panowanie od dnia Twych narodzin; w blaskach świętości przed jutrzenką wydałem Cię z łona.\n", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:1-14*\nOnego czasu wydany został dekret przez cesarza Augusta, aby ", + "id": "Evangelium" + }, + { + "body": "*Ps 95:11; 95:13*\nNiech cieszy się niebo i ziemia raduje przed Panem, dlatego że nadchodzi.", + "id": "Offertorium" + }, + { + "body": "Przyjmij łaskawie, o Panie, ofiarę, którą Ci składamy w dzisiejszą uroczystość, abyśmy za łaską Twoją przez tę tajemnicz", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 109:3*\nW blaskach świętości przed jutrzenką wydałem Cię z łona.", + "id": "Communio" + }, + { + "body": "Panie, Boże nasz, z radością uczestniczymy w misteriach narodzenia Pana naszego Jezusa Chrystusa; daj nam, prosimy, abyś", + "id": "Postcommunio" + } + ], + "2024-12-26": [ + { + "body": "*Ps 118:23; 118:86; 118:23*\nZasiedli możni i zmówili się przeciw mnie, niesłusznie mię prześladują. Ty wspomóż mnie, Pan", + "id": "Introitus" + }, + { + "body": "Daj nam, prosimy Cię, Panie, naśladować to, co czcimy, i nauczyć się miłować także nieprzyjaciół; obchodzimy bowiem naro", + "id": "Oratio" + }, + { + "body": "*W Oktawie Narodzenia*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 6:8-10; 7:54-59*\n*Lekcja kreśli obraz idealnej śmierci chrześcijanina, podobnego we", + "id": "Lectio" + }, + { + "body": "*Ps 118:23; 118:86*\nZasiedli możni i zmówili się przeciw mnie, niesłusznie mię prześladują.\n*Ps 6:5*\nTy wspomóż mnie, Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 23:34-39*\nOnego czasu: Mówił Jezus do uczonych w Piśmie i faryzeusz", + "id": "Evangelium" + }, + { + "body": "*Dz 6:5; 7:59*\n*Słowami św. Szczepana ofiarujemy Bogu naszą duszę i całe nasze życie.*\nWybrali Apostołowie diakonem Szcz", + "id": "Offertorium" + }, + { + "body": "Przyjmij, o Panie, dary, które Ci składamy obchodząc pamiątkę Twoich Świętych, a jak męczeństwo zapewniło im chwałę, tak", + "id": "Secreta" + }, + { + "body": "*W Oktawie Narodzenia*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy nas", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Dz 7:56; 7:59-60*\n*Św. Szczepan widział Pana Jezusa po prawicy Bożej. Pan Jezus ukryty pod postaciami sakramentalnymi p", + "id": "Communio" + }, + { + "body": "Przyjęty Sakrament niechaj nas wspomaga, o Panie, i za wstawiennictwem św. Szczepana, Twojego Męczennika, niech nam zape", + "id": "Postcommunio" + }, + { + "body": "*W Oktawie Narodzenia*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosim", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-27": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Oświecaj łaskawie Twój Kościół, o Panie, aby dzięki naukom św. Jana, Twojego Apostoła i Ewangelisty, osiągnął dobra wiek", + "id": "Oratio" + }, + { + "body": "*W Oktawie Narodzenia*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 15:1-6*\nKto Boga się boi, będzie czynił dobrze, a kto sprawiedliwości przestrzega, do", + "id": "Lectio" + }, + { + "body": "*J 21:23; 21:19*\nRozeszła się wieść między braćmi, że uczeń ów nie umrze. Ale Jezus nie powiedział: «Nie umrze».\n℣. Jeno", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 21:19-24*\nOnego czasu: Rzekł Jezus do Piotra: «Pójdź za mną». Piotr obró", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie. Alleluja.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość św. Jana. Ufamy, że jego wstawiennictwo przyczyni się do naszego ", + "id": "Secreta" + }, + { + "body": "*W Oktawie Narodzenia*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy nas", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*J 21:23*\nRozeszła się tedy ta wieść między braćmi, że uczeń ów nie umrze. Ale Jezus nie powiedział: «Nie umrze», jeno: ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*W Oktawie Narodzenia*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosim", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-28": [ + { + "body": "*Ps 8:3*\nZ ust dzieci i niemowląt zgotowałeś sobie chwałę, Boże, wbrew przeciwnikom Twoim.\n*Ps 8:2*\nO Panie, Panie nasz,", + "id": "Introitus" + }, + { + "body": "Boże, święci Młodziankowie obwieścili Twą chwałę nie słowami, lecz śmiercią; racz wyniszczyć w nas wszystkie źródła grze", + "id": "Oratio" + }, + { + "body": "*W Oktawie Narodzenia*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 14:1-5*\n*Przytaczając piękną wizję św. Jana, Kościół wskazuje n", + "id": "Lectio" + }, + { + "body": "*Ps 123:7-8*\nDusza nasza niby ptak wyrwała się z sidła łowców.\n℣. Sidło się podarło, a my zostaliśmy uwolnieni. Wspomoże", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:13-18*\nOnego czasu: Anioł Pański ukazał się we śnie Józefowi mówi", + "id": "Evangelium" + }, + { + "body": "*Ps 123:7*\nDusza nasza niby ptak wyrwała się z sidła łowców. Sidło się podarło, a my zostaliśmy uwolnieni.", + "id": "Offertorium" + }, + { + "body": "Niechaj nie braknie nam, Panie, pobożnej modlitwy Świętych Twoich: niech ona uczyni miłymi nasze dary, a nam zawsze wyje", + "id": "Secreta" + }, + { + "body": "*W Oktawie Narodzenia*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy nas", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Mt 2:18*\n*Rachel, która opłakiwała zaginionych synów, Józefa i Beniamina, jest symbolem zbolałych matek betlejemskich.*", + "id": "Communio" + }, + { + "body": "Spożyliśmy, Panie, poświęcone Tobie dary. Spraw, prosimy, aby dzięki modlitwom Twoich Świętych przyniosły nam pomoc w ży", + "id": "Postcommunio" + }, + { + "body": "*W Oktawie Narodzenia*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosim", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-29": [ + { + "body": "*Mdr 18:14-15*\nGdy wszystko było w głębokim milczeniu, a noc w swym biegu połowy drogi dosięgła, wszechmocne Słowo Twoje", + "id": "Introitus" + }, + { + "body": "Wszechmocny, wieczny Boże, kieruj naszymi czynami według Twojego upodobania, abyśmy\nw Imię umiłowanego Syna Twego mogli ", + "id": "Oratio" + }, + { + "body": "*W Oktawie Narodzenia*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 4:1-7*\n*Św. Paweł poucza nas, że Wcielenie Syna Bożego przynios", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejszy nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:33-40*\nOnego czasu: Józef i Maryja, Matka Jezusowa, dziwili się te", + "id": "Evangelium" + }, + { + "body": "*Ps 92:1-2*\nBóg okrąg ziemi utwierdził, iż się nie poruszy. Od wieków tron Twój niewzruszony, o Boże, Ty od wieków jeste", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, niech dar złożony przed oczyma Twego Majestatu wyjedna nam łaskę dziecięcego oddania się", + "id": "Secreta" + }, + { + "body": "*W Oktawie Narodzenia*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy nas", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Mt 2:20*\nWeźmij Dziecię i Matkę Jego, a idź do ziemi izraelskiej, pomarli bowiem ci, którzy czyhali na życie Dziecięcia", + "id": "Communio" + }, + { + "body": "Panie, niech działanie tego Sakramentu oczyści nas ze złych skłonności i spełni nasze godziwe pragnienia.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*W Oktawie Narodzenia*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosim", + "id": "Commemoratio Postcommunio" + } + ], + "2024-12-30": [ + { + "body": "*Iz 9:6*\n*Liturgia celowo zmieniła nieco tekst wyjęty z Izajasza, aby podkreślić, że Chrystus przychodzi wykonać wielki ", + "id": "Introitus" + }, + { + "body": "Dozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego wyzwoliło nas z jarzma", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Uświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy naszych grzechów.\nPrzez te", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosimy, aby nam udzielił dar", + "id": "Postcommunio" + } + ], + "2024-12-31": [ + { + "body": "*Iz 9:6*\n*Liturgia celowo zmieniła nieco tekst wyjęty z Izajasza, aby podkreślić, że Chrystus przychodzi wykonać wielki ", + "id": "Introitus" + }, + { + "body": "Dozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego wyzwoliło nas z jarzma", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Sylwestra I, papieża i wyznawcy*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciel", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Uświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy naszych grzechów.\nPrzez te", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Sylwestra I, papieża i wyznawcy*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojeg", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosimy, aby nam udzielił dar", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Sylwestra I, papieża i wyznawcy*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam s", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-01": [ + { + "body": "*Iz 9:6*\nMaleńki nam się narodził i Syn został nam dany; władza spoczęła na Jego ramionach, a imię Jego nazwano: Zwiastu", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + } + ], + "2025-01-02": [ + { + "body": "*Iz 9:6*\nMaleńki nam się narodził i Syn został nam dany; władza spoczęła na Jego ramionach, a imię Jego nazwano: Zwiastu", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + } + ], + "2025-01-03": [ + { + "body": "*Iz 9:6*\nMaleńki nam się narodził i Syn został nam dany; władza spoczęła na Jego ramionach, a imię Jego nazwano: Zwiastu", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + } + ], + "2025-01-04": [ + { + "body": "*Ps 44:13; 44:15; 44:16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Ni", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejsza nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", + "id": "Evangelium" + }, + { + "body": "Szczęśliwa jesteś, święta Dziewico Maryjo, i wszelkiej chwały najgodniejsza, z Ciebie bowiem narodziło się Słońce sprawi", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + } + ], + "2025-01-05": [ + { + "body": "*Flp 2:10-11*\nNa imię Jezusa niechaj się zgina wszelkie kolano mieszkańców nieba, ziemi i podziemia: i wszelki język nie", + "id": "Introitus" + }, + { + "body": "Boże, któryś ustanowił jedynego Syna Twojego Zbawicielem rodzaju ludzkiego i kazałeś Mu nadać imię Jezus, spraw miłościw", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 4:8-12*\nW one dni: Piotr napełniony Duchem Świętym, rzekł do nich: «Przełożeni ludu", + "id": "Lectio" + }, + { + "body": "*Ps 105:47*\nRatuj nas Panie nasz Boże, zgromadź nas z krajów pogańskich, abyśmy wielbili święte imię Twoje i dumni byli ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", + "id": "Evangelium" + }, + { + "body": "*Ps 85:12; 85:5*\nPanie, mój Boże, będę Cię chwalił z całego serca mojego i na wieczność będę głosił imię Twoje. Ty bowie", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię najłaskawszy Boże, niech Twe błogosławieństwo, źródło życia całego stworzenia, uświęci ofiarę, którą składam", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 85:9-10*\nPrzyjdą wszystkie ludy, które uczyniłeś i będą Cię Panie wielbiły, i będą głosić Twe imię: boś Ty jest wiel", + "id": "Communio" + }, + { + "body": "Wszechmogący wieczny Boże, Tyś nas stworzył i odkupił, wejrzyj miłościwie na nasze prośby i racz łaskawie przyjąć tę zba", + "id": "Postcommunio" + } + ], + "2025-01-06": [ + { + "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", + "id": "Introitus" + }, + { + "body": "Boże, w dniu dzisiejszym za przewodem gwiazdy objawiłeś narodom Jedynego Syna Twojego; skoro tedy poznaliśmy Ciebie prze", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\n*Jerozolima jest typem Kościoła katolickiego, do którego garną się wszys", + "id": "Lectio" + }, + { + "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:1-12*\nGdy się tedy narodził Jezus w Betlejem Judzkim za dni króla", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", + "id": "Offertorium" + }, + { + "body": "Wejrzyj miłościwie na dary Twojego Kościoła, który składa ci już nie złoto kadzidło i mirrę, lecz Tego, którego one wyob", + "id": "Secreta" + }, + { + "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", + "id": "Prefatio" + }, + { + "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli tajemnicę uroczyście dziś obchodzoną.\nPrzez Pa", + "id": "Postcommunio" + } + ], + "2025-01-07": [ + { + "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", + "id": "Introitus" + }, + { + "body": "Boże, w dniu dzisiejszym za przewodem gwiazdy objawiłeś narodom Jedynego Syna Twojego; skoro tedy poznaliśmy Ciebie prze", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\n*Jerozolima jest typem Kościoła katolickiego, do którego garną się wszys", + "id": "Lectio" + }, + { + "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:1-12*\nGdy się tedy narodził Jezus w Betlejem Judzkim za dni króla", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", + "id": "Offertorium" + }, + { + "body": "Wejrzyj miłościwie na dary Twojego Kościoła, który składa ci już nie złoto kadzidło i mirrę, lecz Tego, którego one wyob", + "id": "Secreta" + }, + { + "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", + "id": "Prefatio" + }, + { + "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli tajemnicę uroczyście dziś obchodzoną.\nPrzez Pa", + "id": "Postcommunio" + } + ], + "2025-01-08": [ + { + "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", + "id": "Introitus" + }, + { + "body": "Boże, w dniu dzisiejszym za przewodem gwiazdy objawiłeś narodom Jedynego Syna Twojego; skoro tedy poznaliśmy Ciebie prze", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\n*Jerozolima jest typem Kościoła katolickiego, do którego garną się wszys", + "id": "Lectio" + }, + { + "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:1-12*\nGdy się tedy narodził Jezus w Betlejem Judzkim za dni króla", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", + "id": "Offertorium" + }, + { + "body": "Wejrzyj miłościwie na dary Twojego Kościoła, który składa ci już nie złoto kadzidło i mirrę, lecz Tego, którego one wyob", + "id": "Secreta" + }, + { + "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", + "id": "Prefatio" + }, + { + "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli tajemnicę uroczyście dziś obchodzoną.\nPrzez Pa", + "id": "Postcommunio" + } + ], + "2025-01-09": [ + { + "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", + "id": "Introitus" + }, + { + "body": "Boże, w dniu dzisiejszym za przewodem gwiazdy objawiłeś narodom Jedynego Syna Twojego; skoro tedy poznaliśmy Ciebie prze", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\n*Jerozolima jest typem Kościoła katolickiego, do którego garną się wszys", + "id": "Lectio" + }, + { + "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:1-12*\nGdy się tedy narodził Jezus w Betlejem Judzkim za dni króla", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", + "id": "Offertorium" + }, + { + "body": "Wejrzyj miłościwie na dary Twojego Kościoła, który składa ci już nie złoto kadzidło i mirrę, lecz Tego, którego one wyob", + "id": "Secreta" + }, + { + "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", + "id": "Prefatio" + }, + { + "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli tajemnicę uroczyście dziś obchodzoną.\nPrzez Pa", + "id": "Postcommunio" + } + ], + "2025-01-10": [ + { + "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", + "id": "Introitus" + }, + { + "body": "Boże, w dniu dzisiejszym za przewodem gwiazdy objawiłeś narodom Jedynego Syna Twojego; skoro tedy poznaliśmy Ciebie prze", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\n*Jerozolima jest typem Kościoła katolickiego, do którego garną się wszys", + "id": "Lectio" + }, + { + "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:1-12*\nGdy się tedy narodził Jezus w Betlejem Judzkim za dni króla", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", + "id": "Offertorium" + }, + { + "body": "Wejrzyj miłościwie na dary Twojego Kościoła, który składa ci już nie złoto kadzidło i mirrę, lecz Tego, którego one wyob", + "id": "Secreta" + }, + { + "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", + "id": "Prefatio" + }, + { + "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli tajemnicę uroczyście dziś obchodzoną.\nPrzez Pa", + "id": "Postcommunio" + } + ], + "2025-01-11": [ + { + "body": "*Ps 44:13; 44:15; 44:16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Ni", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Hygina, Papieża i Męczennika*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustann", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejsza nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", + "id": "Evangelium" + }, + { + "body": "Szczęśliwa jesteś, święta Dziewico Maryjo, i wszelkiej chwały najgodniejsza, z Ciebie bowiem narodziło się Słońce sprawi", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Hygina, Papieża i Męczennika*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzo", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Hygina, Papieża i Męczennika*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez św", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-12": [ + { + "body": "*Prz 23:24; 23:25*\nRaduje się bardzo Ojciec Sprawiedliwego. Niech się weseli Ojciec Twój i Matka Twoja; niech się raduje", + "id": "Introitus" + }, + { + "body": "Panie Jezu Chryste, Tyś w posłuszeństwie Maryi i Józefowi, życie rodzinne niewysłowionymi cnotami uświęcił, spraw za ich", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:12-17*\n*Wzajemna wyrozumiałość i wspólna modlitwa mają donio", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nO jedno proszę Pana, jednego pragnę, bym mógł przebywać w domu Pańskim po wszystkie dni życia mego.\n*Ps 83:5*\n", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:42-52*\nGdy Jezus miał lat dwanaście, udali się do Jerozolimy wedłu", + "id": "Evangelium" + }, + { + "body": "*Łk 2:22*\nPrzynieśli Jezusa Rodzice Jego do Jeruzalem, aby Go stawić przed Panem.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci Panie przebłagalną ofiarę i prosimy w pokorze, abyś za wstawiennictwem Bogarodzicy Dziewicy i świętego Józef", + "id": "Secreta" + }, + { + "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", + "id": "Prefatio" + }, + { + "body": "*Łk 2:51*\nWrócił Jezus z Nimi, przyszedł do Nazaretu i był im poddany.", + "id": "Communio" + }, + { + "body": "Panie Jezu, Ty nas posilasz niebiańskim Sakramentem: spraw, byśmy zawsze naśladowali wzór Twej świętej Rodziny, a przez ", + "id": "Postcommunio" + } + ], + "2025-01-13": [ + { + "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", + "id": "Introitus" + }, + { + "body": "Boże, Twój Jednorodzony Syn objawił się w naszej cielesnej naturze; spraw, abyśmy zostali wewnętrznie przekształceni prz", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\nPowstań, Jeruzalem, i rozbłyśnij jasnością, bo przybywa światłość twoja ", + "id": "Lectio" + }, + { + "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:29-34*\nOnego czasu ujrzał Jan nadchodzącego Jezusa i rzekł: «Oto Baran", + "id": "Evangelium" + }, + { + "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiary ku uczczeniu objawienia się Syna Twojego, który stał się człowiekiem, i pokornie prosimy: aby", + "id": "Secreta" + }, + { + "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", + "id": "Prefatio" + }, + { + "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech nas uprzedza zawsze i wszędzie niebiańskie światło: abyśmy czystym wejrzeniem przeniknęli i z ", + "id": "Postcommunio" + } + ], + "2025-01-14": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś dał ludowi Swemu świętego Hilarego za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć or", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Feliksa*\nProsimy Cię, wszechmogący Boże, niechaj przykłady Twoich Świętych zachęcą nas do lepszego życi", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Feliksa*\nProsimy Cię, Panie, przyjmij łaskawie przez zasługi św. Feliksa, Twego Męczennika, ofiarę, któ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Feliksa*\nNasyceni zbawiennym Sakramentem prosimy Cię, Panie, aby wspierały nas modły św. Feliksa, Męcze", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-15": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, który co roku uweselasz nas uroczystością św. Pawła, Twojego Wyznawcy, spraw łaskawie, abyśmy naśladowali czyny te", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Maura*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Maura Opata, abyśmy za jego p", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:7-12*\n*Celem wysiłków ascetów chrześcijańskich jest udział ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Sprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\n℣. By", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:25-30*\nOnego czasu: Odpowiadając Jezus rzekł: «Wysławiam Cię, Oj", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Maura*\nProsimy Cię, Panie, niech święty Maur, Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią.", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Maura*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Maura, Opata, ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-16": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wysłuchaj łaskawie próśb Swojego ludu: niech nas wspierają zasługi św. Marcelego, Twojego Męczennika", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + } + ], + "2025-01-17": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Antoniego, Opata, abyśmy za jego przyczyną otrzymali ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam ku zbawieni", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N., Opata, abyśmy naśladowali jego wzo", + "id": "Postcommunio" + } + ], + "2025-01-18": [ + { + "body": "*Ps 44:13; 44:15; 44:16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Ni", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Pryski, Dziewicy*\nProsimy Cię, wszechmogący Boże, spraw, abyśmy obchodząc narodziny dla nieba św. Prysk", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejsza nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", + "id": "Evangelium" + }, + { + "body": "Szczęśliwa jesteś, święta Dziewico Maryjo, i wszelkiej chwały najgodniejsza, z Ciebie bowiem narodziło się Słońce sprawi", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Pryski, Dziewicy*\nProsimy Cię, Panie, niech ta ofiara, którą składamy wspominając narodziny dla nieba T", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Pryski, Dziewicy*\nNasyceni zbawiennym Sakramentem, prosimy Cię, Panie, aby wspomagały nas modlitwy tej,", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-19": [ + { + "body": "*Ps 65:4*\nNiechaj Cię wielbi cała ziemia i niechaj śpiewa Tobie; niech imię Twoje opiewa, o Najwyższy.\n*Ps 65:1-2*\nZ rad", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który rządzisz niebem i ziemią, wysłuchaj łaskawie próśb ludu Twojego i racz obdarzyć nasze ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:6-16*\nBracia: Mamy dary według użyczonej nam łaski różne: Bą", + "id": "Lectio" + }, + { + "body": "*Ps 106:20-21*\nPosłał Pan swe słowo, aby ich uleczyć i od zagłady ich wyrwać. Niech dzięki czynią Panu za Jego miłosierd", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 2:1-11*\nOnego czasu: odbywały się gody weselne w Kanie Galilejskiej i by", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 65:16*\nZ radością sławcie Boga wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się Bo", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, ofiarowane dary i oczyść nas ze zmazy naszych grzechów.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 2:7; 2:8; 2:9; 2:10-11*\nPan mówi: «Napełnijcie stągwie wodą i zanieście gospodarzowi wesela». A gdy gospodarz skoszto", + "id": "Communio" + }, + { + "body": "Niech wzrośnie w nas działanie Twojej mocy, prosimy Cię, Panie, aby łaska Twoja przygotowała nas do otrzymania dóbr wiek", + "id": "Postcommunio" + } + ], + "2025-01-20": [ + { + "body": "*Ps 78:11-12; 78:10*\nNiech jęk pojmanych dojdzie do Ciebie, Panie: naszym sąsiadom odpłać siedmiokroć w ich zanadrze, po", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wejrzyj na naszą słabość, a skoro nas obciąża brzemię własnej działalności, niech nas osłania dostojn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 11:33-39*\nBracia: Święci przez wiarę pokonali królestwa, ", + "id": "Lectio" + }, + { + "body": "*Wj 15:11*\nChwalebny jest Bóg w swoich Świętych; przedziwny w majestacie, dokonuje cudów.\n*Wj 15:6*\nPrawica Twoja, Panie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 6:17-23*\n*Msza Sapientiam została ułożona na uroczystość świętych le", + "id": "Evangelium" + }, + { + "body": "*Ps 31:11*\nSprawiedliwi, cieszcie się i weselcie w Panu, wszyscy prawego serca, głośno się radujcie.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie przez zasługi świętych Męczenników Twoich Fabiana i Sebastiana ofiarę, którą Ci składamy, i spr", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 6:18; 6:19*\nMnóstwo chorych i dręczonych przez duchy nieczyste przychodziło do Niego, albowiem wychodziła zeń moc i ", + "id": "Communio" + }, + { + "body": "Pokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie, Boże nasz, abyśmy za przyczyną świętych Męczenników Twoi", + "id": "Postcommunio" + } + ], + "2025-01-21": [ + { + "body": "*Ps 118:95-96*\nCzekali na mnie grzesznicy, aby mię zgubić, a ja pojęłam Twoje nakazy: widziałam, że ma granice wszelka d", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który wybierasz co słabe u świata, aby zawstydzić wszystko, co uchodzi za mocne: spraw łaska", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", + "id": "Lectio" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na twoich wargach, przeto Bóg pobłogosławi cię na wieki.\n*Ps 44:5*\nW obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na ofiary, które Ci składamy, i za wstawiennictwem św. Agnieszki, Dziewicy i Męczennicy Twojej, ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje wraz z lampami. A o północy rozległo się wołanie: Oto ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tej, w której święt", + "id": "Postcommunio" + } + ], + "2025-01-22": [ + { + "body": "*Ps 78:11-12; 78:10*\nNiech jęk pojmanych dojdzie do Ciebie, Panie: naszym sąsiadom odpłać siedmiokroć w ich zanadrze, po", + "id": "Introitus" + }, + { + "body": "Przychyl się, Panie, do naszych kornych próśb, a że obciążeni grzechami uświadamiamy sobie naszą winę, niech nas wyzwoli", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 3:1-8*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom gł", + "id": "Lectio" + }, + { + "body": "*Wj 15:11*\nChwalebny jest Bóg w Swoich Świętych, przedziwny w majestacie, dokonuje cudów.\n*Wj 15:6*\n℣. Prawica Twoja, Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:9-19*\n*Wszystkie prześladowania, jakich doznają męczennicy, stano", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nPrzedziwny jest Bóg w Swoich Świętych: Bóg Izraela, sam Swojemu ludowi daje potęgę i siłę: błogosławiony Bóg,", + "id": "Offertorium" + }, + { + "body": "Ofiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij je łaskawie ku chwale Twoich Świętych i spraw w Swoim", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył: jak złoto w piecu ich wypróbował, jak ofiarę", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, który przyjęliśmy za wstawiennictwem świętych Męczenników Twoich W", + "id": "Postcommunio" + } + ], + "2025-01-23": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który powołałeś św. Rajmunda na wybitnego Szafarza sakramentu Pokuty i cudownie przeprowadziłeś go po falach morsk", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Emercjanny*\nProsimy Cię, Panie, aby święta Emerencjana, Dziewica i Męczennica Twoja, wybłagała nam prze", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Emercjanny*\nPanie, wejrzyj łaskawie na ofiary, które Ci składamy, i za wstawiennictwem św. Emerencjanny", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Emerencjanny*\nDarem Bożym szczodrze nasyceni, prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem ś", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-24": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "*Starożytny Rzym przyznawał wybitnym obywatelom przywilej skutecznego wpływania na wyroki sądowe: intercessio gloriosa. ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*1 Tm 6:11-16*\nNajmilszy: Ubiegaj się o sprawiedliwość, pobożnoś", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\n*W czasie konsekracji biskup otrzymał namaszczenie Krzyżmem świętym na znak umocnienia do walki w obronie ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:26-33*\nOnego czasu: Mówił Jezus do rzesz: «Jeśli kto przychodzi d", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie przez zasługi świętego N., Męczennika i Biskupa ofiarę, którą Ci składamy, i spraw, aby się sta", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36; 88:37-38*\nRaz przysiągłem na świętość moją: potomstwo jego trwać będzie na wieki i jego tron będzie przede mn", + "id": "Communio" + }, + { + "body": "Pokrzepieni uczestnictwem w świętej uczcie prosimy Cię, Panie, Boże nasz, abyśmy za przyczyną świętego N., Twego Męczenn", + "id": "Postcommunio" + } + ], + "2025-01-25": [ + { + "body": "*2 Tm 1:12*\nWiem, komu zawierzyłem, i pewien jestem, że mocen jest przechować skarb mój aż do onego dnia, Sędzia sprawie", + "id": "Introitus" + }, + { + "body": "Boże, któryś cały świat pouczył słowem głoszonym przez św. Pawła Apostoła, daj nam, prosimy Cię, abyśmy czcząc jego nawr", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Piotra*\nBoże, powierzając Swojemu Apostołowi świętemu Piotrowi klucze Królestwa Niebieskiego, udzieliłe", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 9:1-22*\nW one dni: Szaweł dysząc jeszcze groźbami i pragnieniem mordu przeciw uczni", + "id": "Lectio" + }, + { + "body": "*Gal 2:8; 2:9*\nTen sam, który w Piotrze był sprawcą apostolstwa żydów, sprawił i we mnie apostolstwo wśród pogan, i pozn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.", + "id": "Offertorium" + }, + { + "body": "Dla próśb Twego Apostoła Pawła poświęć, Panie, dary ludu Twojego: miłe Ci są, boś je ustanowił, niech się staną milsze p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Piotra*\nProsimy Cię, Panie, niech modlitwa św. Piotra Apostoła zaleca prośby i ofiary Kościoła Twojego,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28; 19:29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i za mną poszli, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Uświęceni zbawiennym Sakramentem, prosimy Cię, Panie, aby nie brakło nam wstawiennictwa tego, pod którego opiekę i rządy", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Piotra*\nZłożona ofiara niech nam będzie źródłem radości, o Panie, a jako sławimy przedziwne Twe dary w ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-26": [ + { + "body": "*Ps 96:7-8*\nPokłon oddajcie Bogu, wszyscy Aniołowie Jego; słyszy o tym i cieszy się Syjon, i radują się miasta Judy.\n*Ps", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, wejrzyj łaskawie na naszą ułomność i wyciągnij w naszej obronie prawicę Twego majestatu.\nPrz", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:16-21*\n*Św. Paweł podaje szczegółowe wskazania jak wykonywać", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nPoganie będą czcili Imię Twoje, Panie, i wszyscy królowie ziemi Twoją chwałę.\n℣. Bo Pan odbuduje Syjon i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:1-13*\nOnego czasu: Gdy Jezus zstąpił z góry, szły za Nim rzesze w", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Nie umrę, ale będę żył i głosił dzieła Pa", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Łk 4:22*\nDziwili się wszyscy słowom, które wychodziły z ust Bożych.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, racz nas przysposobić do przyjęcia owoców wzniosłych misteriów, w których pozwalasz nam uczestniczyć", + "id": "Postcommunio" + } + ], + "2025-01-27": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech łaska niebieska daje wzrost Twojemu Kościołowi, który raczyłeś oświecić nauką i chwalebnymi za", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\nNie znalazł się jemu podobny, który by ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Jana Złotoustego, Twego Biskupa i Doktora, która zaleci Tobi", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty Jan Złotousty, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiar", + "id": "Postcommunio" + } + ], + "2025-01-28": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, Tyś cudownie pouczył św. Piotra, by na wzór Twojej miłości obdarzył Twój Kościół nowym zgromadzeniem dla wykupu wi", + "id": "Oratio" + }, + { + "body": "*Drugie wspomnienie św. Agnieszki*\nBoże, który co roku sprawiasz nam radość uroczystością świętej Agnieszki, Dziewicy i ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych, składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości", + "id": "Secreta" + }, + { + "body": "*Drugie wspomnienie św. Agnieszki*\nNiechaj zstąpi, prosimy Cię, Panie, obfite błogosławieństwo Twoje na te dary ofiarne,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie. Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*Drugie wspomnienie św. Agnieszki*\nPanie, przyjęliśmy Sakrament obchodząc doroczną uroczystość; spraw, prosimy, niech on", + "id": "Commemoratio Postcommunio" + } + ], + "2025-01-29": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, z Twojej woli święty Franciszek, wyznawca Twój i Biskup, dla zbawienia dusz stał się wszystkim dla wszystkich; spr", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", + "id": "Postcommunio" + } + ], + "2025-01-30": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłam o Twej prawdzie wobec królów, a nie wstydziłam się, i rozważałam Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Boże, który między innymi cudami Twojej potęgi obdarzyłeś zwycięstwem w męczeństwie także płeć słabszą, spraw łaskawie, ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość świętej N., Dziewicy i Męczennicy Twojej: ufamy, że jej wstawienn", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nNiech zawstydzą się pyszni, bo niewinnie mnie dręczą, ja będę rozmyślać o Twych przykazaniach, o pra", + "id": "Communio" + }, + { + "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej N., Twojej Dziewicy i Męczennicy, niech spraw", + "id": "Postcommunio" + } + ], + "2025-01-31": [ + { + "body": "*3 Krl 4:29*\nBóg mu dał mądrość i roztropność bardzo wielką, i przestronność serca jak piaszczyste wybrzeże morskie.\n*Ps", + "id": "Introitus" + }, + { + "body": "Boże, Tyś św. Jana, Twego Wyznawcę, powołał na ojca i nauczyciela młodzieży, a z woli Twojej, przy pomocy Maryi Panny, z", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-9*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", + "id": "Lectio" + }, + { + "body": "*Ps 36:3-5*\nMiej ufność w Panu i czyń co dobre, byś był mieszkańcem ziemi i raczył się jej bogactwami.\n℣. Miej radość w ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-5*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nPójdźcie, synowie, słuchajcie mnie: nauczę was Pańskiej bojaźni.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę czystą zbawczej Hostii i spraw, abyśmy miłując Ciebie we wszystkim i ponad wszystko, mogli żyć k", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Rz 4:18*\nPrzeciw nadziei uwierzył on w nadzieję, aby stał się ojcem wielu narodów według tego, co było mu powiedziane.", + "id": "Communio" + }, + { + "body": "Nasyceni Sakramentem Ciała i Krwi Twojej, prosimy Cię, Panie, abyśmy za wstawiennictwem św. Jana, Wyznawcy, zawsze trwal", + "id": "Postcommunio" + } + ], + "2025-02-01": [ + { + "body": "*Gal 6:14*\n*«Wolę umrzeć w Chrystusie Jezusie aniżeli królować po krańce ziemi. Szukam Tego, który umarł za nas, pragnę ", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wejrzyj na słabość naszą, a skoro nas obciąża brzemię własnej działalności, niech nas osłania dostojn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:35-39*\n*Pisząc do Rzymian św. Ignacy używa podobnych zwrotów ", + "id": "Lectio" + }, + { + "body": "*W liście do Smyrneńczyków św. Ignacy uczy o roli biskupa: «Bądźcie posłuszni biskupowi jak Jezus Chrystus Ojcu. Niech n", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:24-26*\nOnego czasu: Rzekł Jezus uczniom swoim: «Zaprawdę, zaprawdę po", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie przez zasługi św. Ignacego, Twego Męczennika i Biskupa, ofiarę, którą Ci składamy, i spraw, aby", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Słowa św. Ignacego w Liście do Rzymian:*\nJestem pszenicą Chrystusową: niech zmielą mię zęby dzikich zwierząt, bym stał ", + "id": "Communio" + }, + { + "body": "Pokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie Boże nasz, abyśmy za przyczyną św. Ignacego, Twego Męczen", + "id": "Postcommunio" + } + ], + "2025-02-02": [ + { + "body": "*Jeśli poświęcenie świec oraz procesja nie mogą zostać odprawione w uroczystej formie, ze względu na brak wyświęconych d", + "id": "De Benedictione Candelarum" + }, + { + "body": "*Następnie starszy kleryk podchodzi do ołtarza i podaje świece celebransowi, który nie przyklęka ani nie całuje ręki kle", + "id": "De Distributione Candelarum" + }, + { + "body": "*Najpierw celebrans nakłada kadzidło do trybularza, następnie diakon odwraca się w stronę ludu i mówi:*\n℣. Idźmy w pokoj", + "id": "De Processione" + }, + { + "body": "*Ps 47:10-11*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak Imię Twe, Boże, tak i chwała Twoja si", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, błagamy pokornie Twój majestat, spraw, abyśmy stanęli przed Tobą z oczyszczonymi sercami, ja", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Malachiasza.\n*Ml 3:1-4*\n*Przyjście Chrystusa do świątyni rozpoczyna dzieło oczyszczenia i uświ", + "id": "Lectio" + }, + { + "body": "*Ps 47:10-11; 47:9*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak Imię Twe, Boże, tak i chwała Tw", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:22-32*\nOnego czasu: Gdy się wypełniły dni oczyszczenia Maryi wedłu", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Wysłuchaj, Panie, próśb naszych i użycz Swej miłościwej pomocy, by godnymi stały się dary, które przed oblicze majestatu", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Łk 2:26*\nSymeon otrzymał zapowiedź od Ducha Świętego, że nie umrze, dopóki by pierwej nie oglądał Chrystusa Pańskiego.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się nam, ", + "id": "Postcommunio" + } + ], + "2025-02-03": [ + { + "body": "*Ps 96:7-8*\nPokłon oddajcie Bogu, wszyscy Aniołowie Jego; słyszy o tym i cieszy się Syjon, i radują się miasta Judy.\n*Ps", + "id": "Introitus" + }, + { + "body": "Boże, Ty wiesz, że z powodu ludzkiej ułomności nie możemy się ostać wśród tak wielkich niebezpieczeństw; daj nam moc dus", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Błażeja, Biskupa i Męczennika*\nBoże, co roku uweselasz nas uroczystością świętego Błażeja, Twojego Męcz", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:8-10*\n*Prawdziwą miłość bliźniego okazujemy zachowując przyk", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nPoganie będą czcili Imię Twoje, Panie, i wszyscy królowie ziemi Twoją chwałę.\n℣. Bo Pan odbuduje Syjon i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:23-27*\nOnego czasu: Gdy Jezus wstąpił do łodzi, weszli za Nim ucz", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Nie umrę, ale będę żył i głosił dzieła Pa", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby ten dar złożony w ofierze nieustannie oczyszczał i zachowywał od wszelkiego z", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Błażeja, Biskupa i Męczennika*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego Błażeja, Twego M", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 4:22*\nDziwili się wszyscy słowom, które wychodziły z ust Bożych.", + "id": "Communio" + }, + { + "body": "Niech Twoje dary, o Boże, oderwą nas od rozkoszy ziemskich i nieustannie wzmacniają pokarmem niebieskim.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Błażeja, Biskupa i Męczennika*\nPanie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętego B", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-04": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, który wzbudzasz m Twoim Kościele wciąż nowe przykłady cnót, spraw, niech lud Twój tak wstępuje w ślady św. Andrzej", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + } + ], + "2025-02-05": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci św. Agaty, Dziewicy i Męczennicy; z jej męczeństwa radują się ", + "id": "Introitus" + }, + { + "body": "Boże, który między innymi cudami Twojej potęgi obdarzyłeś zwycięstwem w męczeństwie także płeć słabszą, spraw łaskawie, ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 1:26-31*\n*Na pytanie pretora, czy nie wstydzi się być chrz", + "id": "Lectio" + }, + { + "body": "*Ps 45:6; 45:5*\nBóg ją wspomaga swoim wejrzeniem: Bóg jest w jej wnętrzu, będzie niewzruszona.\n℣. Prąd rzeki cieszy mias", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:3-12*\n*Powodem uwięzienia św. Agaty było stanowcze odrzucenie za", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą do Ciebie.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość św. Agaty, Dziewicy i Męczennicy Twojej: ufamy, że jej wstawienni", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Akta męczeństwa św. Agaty opowiadają, że w więzieniu ukazał się jej św. Piotr i uleczył cudownie jej rany.*\nTego wzywam", + "id": "Communio" + }, + { + "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem św. Agaty, Dziewicy i Męczennicy Twojej, niech sprawi", + "id": "Postcommunio" + } + ], + "2025-02-06": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, który ozdobiłeś św. Tytusa, Twego Wyznawcę i Biskupa, apostolskimi cnotami, spraw dla jego zasług i wstawiennictwa", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Doroty*\nProsimy Cię, Panie, aby święta N., Dziewica i Męczennica Twoja, wybłagała nam przebaczenie; ona", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Doroty*\nProsimy Cię, Panie, przyjmij łaskawie ofiarę, którą Ci składamy przez zasługi świętej Doroty, T", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Doroty*\nDarem Bożym szczodrze nasyceni, prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem świętej", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-07": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Romualda, Opata, abyśmy za jego przyczyną otrzymali t", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech święty Romuald, Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam ku zba", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Romualda, Opata, abyśmy naśladowali je", + "id": "Postcommunio" + } + ], + "2025-02-08": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, Tyś raczył za pośrednictwem świętego Jana cudownie ustanowić zakon Trójcy Przenajświętszej dla wykupu jeńców z nie", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2025-02-09": [ + { + "body": "*Ps 96:7-8*\nPokłon oddajcie Bogu, wszyscy Aniołowie Jego; słyszy o tym i cieszy się Syjon, i radują się miasta Judy.\n*Ps", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, strzeż nieustannie rodziny Twojej z ojcowską dobrocią, a ponieważ całą nadzieję pokładamy w łasce ni", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:12-17*\nBracia: Przyobleczcież się tedy jako wybrani Boży, św", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nPoganie będą czcili Imię Twoje, Panie, i wszyscy królowie ziemi Twoją chwałę.\n℣. Bo Pan odbuduje Syjon i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:24-30*\nOnego czasu powiedział Jezus rzeszom tę przypowieść: Podo", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Nie umrę, ale będę żył i głosił dzieła Pa", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiary przebłagalne, abyś miłosiernie odpuścił nasze grzechy i sam pokierował chwiejnymi sercami.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Łk 4:22*\nDziwili się wszyscy słowom, które wychodziły z ust Bożych.", + "id": "Communio" + }, + { + "body": "Prosimy cię wszechmogący Boże, abyśmy osiągnęli zbawienie, którego zadatek otrzymaliśmy w tych tajemnicach.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-02-10": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Boże, który dla ukazania drogi niewinności sprawiłeś, że dusza św. Dziewicy Twojej Scholastyki wstąpiła do nieba w posta", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2025-02-11": [ + { + "body": "*Ap 21:2*\nUjrzałem święte miasto, Jeruzalem nowe, zstępujące z nieba od Boga, gotowe jak oblubienica strojna dla męża sw", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez Niepokalane Poczęcie Najświętszej Dziewicy przygotował Synowi Swojemu godne mieszkanie, kornie Cię pr", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 11:19; 12:1; 12:10*\nOtwarła się świątynia Boża w niebiesiech i ", + "id": "Lectio" + }, + { + "body": "*Pnp 2:12*\n*Matka Boża objawiła się w grocie skalnej, obok której zakwitł krzew róży.*\nUkazały się kwiaty na ziemi nasze", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-31*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28*\nZdrowaś Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami.", + "id": "Offertorium" + }, + { + "body": "Ofiara uwielbienia, którą Tobie, Panie, składamy przez zasługi chwalebnej i Niepokalanej Dziewicy, niech Ci będzie jako ", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*Ps 64:10*\n*W grocie Massabielskiej wytrysnęło źródło obdarzone cudowną mocą.*\nTyś ziemię nawiedził i nawodnił, obficie ", + "id": "Communio" + }, + { + "body": "Panie, niechże nas, których posiliłeś pokarmem niebieskim, dźwiga prawica Niepokalanej Rodzicielki Twojej, abyśmy przy J", + "id": "Postcommunio" + } + ], + "2025-02-12": [ + { + "body": "*Mdr 10:20-21*\nSprawiedliwi wysławiali Twoje święte imię, Panie, i zwycięską rękę Twoją jednomyślnie wychwalali: bo mądr", + "id": "Introitus" + }, + { + "body": "Panie Jezu Chryste, który dla odnawiania pamięci o boleściach Najświętszej Matki Twojej przez siedmiu świętych Ojców obd", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Syr 44:1-15*\nWysławiajmy mężów znakomitych i naszych ojców co do pochodzenia. Pan (w nich) ", + "id": "Lectio" + }, + { + "body": "*Iz 65:23*\nWybrani moi nie będą trudzić się na próżno ani ich potomstwo nie ulegnie zagładzie, bo są pokoleniem błogosła", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Iz 56:7*\nPrzywiodę ich na świętą górę moją, i uweselę ich w moim domu modlitwy; ich całopalenia i ofiary będą mi przyje", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą Ci składamy i za wstawiennictwem Twoich świętych spraw, abyśmy służyli Tobie swobodnym um", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 15:16*\nJa was wybrałem ze świata, abyście poszli i owoc przynieśli, i żeby owoc wasz trwał.", + "id": "Communio" + }, + { + "body": "Gdyś nas, panie, zasilił niebieski Sakramentem, błagamy Cię, abyśmy naśladując przykład tych, których święto obchodzimy,", + "id": "Postcommunio" + } + ], + "2025-02-13": [ + { + "body": "*Ps 96:7-8*\nPokłon oddajcie Bogu, wszyscy Aniołowie Jego; słyszy o tym i cieszy się Syjon, i radują się miasta Judy.\n*Ps", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, strzeż nieustannie rodziny Twojej z ojcowską dobrocią, a ponieważ całą nadzieję pokładamy w łasce ni", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:12-17*\nBracia: Przyobleczcież się tedy jako wybrani Boży, św", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nPoganie będą czcili Imię Twoje, Panie, i wszyscy królowie ziemi Twoją chwałę.\n℣. Bo Pan odbuduje Syjon i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:24-30*\nOnego czasu powiedział Jezus rzeszom tę przypowieść: Podo", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Nie umrę, ale będę żył i głosił dzieła Pa", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiary przebłagalne, abyś miłosiernie odpuścił nasze grzechy i sam pokierował chwiejnymi sercami.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 4:22*\nDziwili się wszyscy słowom, które wychodziły z ust Bożych.", + "id": "Communio" + }, + { + "body": "Prosimy cię wszechmogący Boże, abyśmy osiągnęli zbawienie, którego zadatek otrzymaliśmy w tych tajemnicach.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-02-14": [ + { + "body": "*Ps 96:7-8*\nPokłon oddajcie Bogu, wszyscy Aniołowie Jego; słyszy o tym i cieszy się Syjon, i radują się miasta Judy.\n*Ps", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, strzeż nieustannie rodziny Twojej z ojcowską dobrocią, a ponieważ całą nadzieję pokładamy w łasce ni", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Walentego, Kapłana i Męczennika*\nSpraw, prosimy Cię, wszechmogący Boże, aby od wszelkich niebezpieczeńs", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:12-17*\nBracia: Przyobleczcież się tedy jako wybrani Boży, św", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nPoganie będą czcili Imię Twoje, Panie, i wszyscy królowie ziemi Twoją chwałę.\n℣. Bo Pan odbuduje Syjon i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:24-30*\nOnego czasu powiedział Jezus rzeszom tę przypowieść: Podo", + "id": "Evangelium" + }, + { + "body": "*Ps 117:16; 117:17*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Nie umrę, ale będę żył i głosił dzieła Pa", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiary przebłagalne, abyś miłosiernie odpuścił nasze grzechy i sam pokierował chwiejnymi sercami.\nPr", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Walentego, Kapłana i Męczennika*\nPrzyjmij, prosimy Cię, Panie, dary ze czcią złożone i spraw, niech prz", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 4:22*\nDziwili się wszyscy słowom, które wychodziły z ust Bożych.", + "id": "Communio" + }, + { + "body": "Prosimy cię wszechmogący Boże, abyśmy osiągnęli zbawienie, którego zadatek otrzymaliśmy w tych tajemnicach.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Walentego, Kapłana i Męczennika*\nPanie, niech niebieski sakrament odnowi nasze dusze i ciała, abyśmy za", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-15": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Faustyna i Jowity, Męczenników*\nBoże, Ty co roku uweselasz nas uroczystością świętych Męczenników Twoic", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "Szczęśliwa jesteś, święta Dziewico Maryjo, i wszelkiej chwały najgodniejsza, z Ciebie bowiem narodziło się Słońce sprawi", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Faustyna i Jowity, Męczenników*\nWysłuchaj, Panie, prośby nasze, które zanosimy czcząc pamięć Twych Świę", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Faustyna i Jowity, Męczenników*\nNasyceni zbawiennym Sakramentem prosimy Cię, Panie, aby wspierały nas m", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-16": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nOgarnęły mnie boleści śmiertelne, męki piekielne mnie otoczyły. W mym utrapieniu Pana wezwałem, i ", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy ludu Twego i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miło", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 9:24-27; 10:1-5*\n*Aby osiągnąć zbawienie, nie wystarczy na", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nPan ucieczką dogodną w czasie utrapienia: zaufają Tobie znający Twe imię, bo nie opuszczasz, Panie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:1-16*\nOnego czasu rzekł Jezus uczniom swoim tę przypowieść: Podo", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nUkaż Twe pogodne oblicze słudze Twemu, wybaw mnie w swym miłosierdziu, Panie, niech się nie wstydzę, skoro", + "id": "Communio" + }, + { + "body": "Umocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je, nieustannie ich szukali, a szukając, bez końca je przy", + "id": "Postcommunio" + } + ], + "2025-02-17": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nOgarnęły mnie boleści śmiertelne, męki piekielne mnie otoczyły. W mym utrapieniu Pana wezwałem, i ", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy ludu Twego i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miło", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 9:24-27; 10:1-5*\n*Aby osiągnąć zbawienie, nie wystarczy na", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nPan ucieczką dogodną w czasie utrapienia: zaufają Tobie znający Twe imię, bo nie opuszczasz, Panie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:1-16*\nOnego czasu rzekł Jezus uczniom swoim tę przypowieść: Podo", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nUkaż Twe pogodne oblicze słudze Twemu, wybaw mnie w swym miłosierdziu, Panie, niech się nie wstydzę, skoro", + "id": "Communio" + }, + { + "body": "Umocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je, nieustannie ich szukali, a szukając, bez końca je przy", + "id": "Postcommunio" + } + ], + "2025-02-18": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nOgarnęły mnie boleści śmiertelne, męki piekielne mnie otoczyły. W mym utrapieniu Pana wezwałem, i ", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy ludu Twego i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miło", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Symeona, Biskupa i Męczennika*\nWszechmogący Boże, wejrzyj na słabość naszą, a skoro nas obciąża brzemię", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 9:24-27; 10:1-5*\n*Aby osiągnąć zbawienie, nie wystarczy na", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nPan ucieczką dogodną w czasie utrapienia: zaufają Tobie znający Twe imię, bo nie opuszczasz, Panie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:1-16*\nOnego czasu rzekł Jezus uczniom swoim tę przypowieść: Podo", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Symeona, Biskupa i Męczennika*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez ni", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nUkaż Twe pogodne oblicze słudze Twemu, wybaw mnie w swym miłosierdziu, Panie, niech się nie wstydzę, skoro", + "id": "Communio" + }, + { + "body": "Umocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je, nieustannie ich szukali, a szukając, bez końca je przy", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Symeona, Biskupa i Męczennika*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoi", + "id": "Commemoratio Postcommunio" + } + ], + "2025-02-19": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nOgarnęły mnie boleści śmiertelne, męki piekielne mnie otoczyły. W mym utrapieniu Pana wezwałem, i ", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy ludu Twego i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miło", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 9:24-27; 10:1-5*\n*Aby osiągnąć zbawienie, nie wystarczy na", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nPan ucieczką dogodną w czasie utrapienia: zaufają Tobie znający Twe imię, bo nie opuszczasz, Panie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:1-16*\nOnego czasu rzekł Jezus uczniom swoim tę przypowieść: Podo", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nUkaż Twe pogodne oblicze słudze Twemu, wybaw mnie w swym miłosierdziu, Panie, niech się nie wstydzę, skoro", + "id": "Communio" + }, + { + "body": "Umocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je, nieustannie ich szukali, a szukając, bez końca je przy", + "id": "Postcommunio" + } + ], + "2025-02-20": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nOgarnęły mnie boleści śmiertelne, męki piekielne mnie otoczyły. W mym utrapieniu Pana wezwałem, i ", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy ludu Twego i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miło", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 9:24-27; 10:1-5*\n*Aby osiągnąć zbawienie, nie wystarczy na", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nPan ucieczką dogodną w czasie utrapienia: zaufają Tobie znający Twe imię, bo nie opuszczasz, Panie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:1-16*\nOnego czasu rzekł Jezus uczniom swoim tę przypowieść: Podo", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nUkaż Twe pogodne oblicze słudze Twemu, wybaw mnie w swym miłosierdziu, Panie, niech się nie wstydzę, skoro", + "id": "Communio" + }, + { + "body": "Umocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je, nieustannie ich szukali, a szukając, bez końca je przy", + "id": "Postcommunio" + } + ], + "2025-02-21": [ + { + "body": "*Ps 17:5; 17:6; 17:7*\nOgarnęły mnie boleści śmiertelne, męki piekielne mnie otoczyły. W mym utrapieniu Pana wezwałem, i ", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy ludu Twego i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miło", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 9:24-27; 10:1-5*\n*Aby osiągnąć zbawienie, nie wystarczy na", + "id": "Lectio" + }, + { + "body": "*Ps 9:10-11; 9:19-20*\nPan ucieczką dogodną w czasie utrapienia: zaufają Tobie znający Twe imię, bo nie opuszczasz, Panie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:1-16*\nOnego czasu rzekł Jezus uczniom swoim tę przypowieść: Podo", + "id": "Evangelium" + }, + { + "body": "*Ps 91:2*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 30:17-18*\nUkaż Twe pogodne oblicze słudze Twemu, wybaw mnie w swym miłosierdziu, Panie, niech się nie wstydzę, skoro", + "id": "Communio" + }, + { + "body": "Umocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je, nieustannie ich szukali, a szukając, bez końca je przy", + "id": "Postcommunio" + } + ], + "2025-02-22": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, powierzając Swojemu Apostołowi świętemu Piotrowi klucze Królestwa Niebieskiego, udzieliłeś mu arcykapłańskiej wład", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 1:1-7*\n*Pierwszy list św. Piotra to pierwsze ogniwo łańcucha encyklik pa", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\n*Ewangelia ze Mszy wspólnej nr 8 Si diligis*\nOnego czasu:", + "id": "Evangelium" + }, + { + "body": "*Mt 16:18-19*\nTy jesteś Opoką, a na tej Opoce zbuduje Kościół mój i bramy piekielne nie zwycięża go. I tobie dam klucze ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech modlitwa świętego Piotra Apostoła poleca prośby i ofiary Kościoła Twojego, a co sprawujemy ku ", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Złożona ofiara niech nam będzie źródłem radości, o Panie; a jako sławimy przedziwne Twe dary w Apostole Twoim Piotrze, t", + "id": "Postcommunio" + } + ], + "2025-02-23": [ + { + "body": "*Ps 43:23-26*\nOcknij się: dlaczego śpisz, Panie? Przebudź się! Nie odrzucaj na zawsze. Dlaczego Twe oblicze ukrywasz? Za", + "id": "Introitus" + }, + { + "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach; spraw miłościwie, aby opieka Nauczyciela Narodów broniła nas od", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 11:19-33; 12:1-9*\n*Broniąc się przeciw zarzutom św. Paweł ", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nNiech poznają Ciebie poganie i wiedzą, Pan Twoje imię, żeś sam jeden wzniesiony nad całą ziemię.\n℣. O ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 8:4-15*\nOnego czasu: Gdy zgromadziła się rzesza wielka i z miast zdą", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Twoim Sakramentem, godnie Tobie służyli według ", + "id": "Postcommunio" + } + ], + "2025-02-24": [ + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", + "id": "Introitus" + }, + { + "body": "Boże, który przyłączyłeś św. Macieja do grona Twoich Apostołów, spraw, prosimy, abyśmy za jego wstawiennictwem doznawali", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 1:15-26*\nW one dni powstał Piotr wpośród braci (a był poczet osób zebranych około s", + "id": "Lectio" + }, + { + "body": "*Ps 138:17-18*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n℣. ", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:25-30*\nOnego czasu: Odpowiadając Jezus rzekł: «Wysławiam Cię, Oj", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi, przez wszystkie pokolenia głosić będą Twe imię, o Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech ta modlitwa św. Apostoła Twojego Macieja towarzyszy darom, które składamy w ofierze Twojemu imieniu: dzięki", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28*\nWy, którzy za mną poszli, zasiądziecie na stolicach, sądząc dwanaście pokoleń Izraela.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, abyśmy dzięki przyjęciu świętego daru, za wstawiennictwem świętego Apostoła Twego", + "id": "Postcommunio" + } + ], + "2025-02-25": [ + { + "body": "*Ps 43:23-26*\nOcknij się: dlaczego śpisz, Panie? Przebudź się! Nie odrzucaj na zawsze. Dlaczego Twe oblicze ukrywasz? Za", + "id": "Introitus" + }, + { + "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach; spraw miłościwie, aby opieka Nauczyciela Narodów broniła nas od", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 11:19-33; 12:1-9*\n*Broniąc się przeciw zarzutom św. Paweł ", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nNiech poznają Ciebie poganie i wiedzą, Pan Twoje imię, żeś sam jeden wzniesiony nad całą ziemię.\n℣. O ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 8:4-15*\nOnego czasu: Gdy zgromadziła się rzesza wielka i z miast zdą", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Twoim Sakramentem, godnie Tobie służyli według ", + "id": "Postcommunio" + } + ], + "2025-02-26": [ + { + "body": "*Ps 43:23-26*\nOcknij się: dlaczego śpisz, Panie? Przebudź się! Nie odrzucaj na zawsze. Dlaczego Twe oblicze ukrywasz? Za", + "id": "Introitus" + }, + { + "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach; spraw miłościwie, aby opieka Nauczyciela Narodów broniła nas od", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 11:19-33; 12:1-9*\n*Broniąc się przeciw zarzutom św. Paweł ", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nNiech poznają Ciebie poganie i wiedzą, Pan Twoje imię, żeś sam jeden wzniesiony nad całą ziemię.\n℣. O ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 8:4-15*\nOnego czasu: Gdy zgromadziła się rzesza wielka i z miast zdą", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Twoim Sakramentem, godnie Tobie służyli według ", + "id": "Postcommunio" + } + ], + "2025-02-27": [ + { + "body": "*Syr 11:13*\nWzrok Pana wejrzał na niego z dobrocią i dźwignął go z jego uniżenia; podniósł jego głowę, a wielu nad nim s", + "id": "Introitus" + }, + { + "body": "Boże, Tyś św. Gabriela nauczył wytrwale rozważać boleści Najsłodszej Twej Matki i przez Nią okryłeś go chwałą świętości ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 2:14-17*\n*Wstępując do Zgromadzenia św. Gabriel odniósł zwycięstwo nad duc", + "id": "Lectio" + }, + { + "body": "*Ps 30:20*\nJakże jest wielka Twoja dobroć, Panie, Tyś ją zachował dla tych, co się boją Ciebie.\n℣. Tym ją okazujesz, co ", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 10:13-21*\nOnego czasu: Przynoszono Jezusowi dzieci, aby się ich dotkną", + "id": "Evangelium" + }, + { + "body": "*Ps 115:16-17*\nO Panie, jam Twój sługa i syn Twej służebnicy: Tyś me kajdany rozwiązał, Tobie złożę ofiarę chwały.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiarę zbawienia, czcząc pamięć św. Gabriela. Spraw, byśmy należycie odnawiali ofiarę Twej śmierci i", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ap 3:20*\nOto stoję u drzwi i kołaczę, jeśli kto usłyszy głos mój i otworzy mi drzwi, wnijdę do niego i będę z nim wiecz", + "id": "Communio" + }, + { + "body": "Panie, składamy Ci dzięki za dary udzielone nam w uroczystość świętego Gabriela, Wyznawcy Twego: przyjmij je łaskawie pr", + "id": "Postcommunio" + } + ], + "2025-02-28": [ + { + "body": "*Ps 43:23-26*\nOcknij się: dlaczego śpisz, Panie? Przebudź się! Nie odrzucaj na zawsze. Dlaczego Twe oblicze ukrywasz? Za", + "id": "Introitus" + }, + { + "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach; spraw miłościwie, aby opieka Nauczyciela Narodów broniła nas od", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 11:19-33; 12:1-9*\n*Broniąc się przeciw zarzutom św. Paweł ", + "id": "Lectio" + }, + { + "body": "*Ps 82:19; 82:14*\nNiech poznają Ciebie poganie i wiedzą, Pan Twoje imię, żeś sam jeden wzniesiony nad całą ziemię.\n℣. O ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 8:4-15*\nOnego czasu: Gdy zgromadziła się rzesza wielka i z miast zdą", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Twoim Sakramentem, godnie Tobie służyli według ", + "id": "Postcommunio" + } + ], + "2025-03-01": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "Szczęśliwa jesteś, święta Dziewico Maryjo, i wszelkiej chwały najgodniejsza, z Ciebie bowiem narodziło się Słońce sprawi", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2025-03-02": [ + { + "body": "*Ps 30:3-4*\nBądź mi, Boże, obrońcą, bądź zamkiem warownym, abyś mnie ocalił; boś Ty jest skałą mą i twierdzą, wywiedzies", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy nasze, wyzwól nas z więzów grzechowych i zachowaj od wszelkiej przeciwn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 13:1-13*\n*Hymn św. Pawła o miłości to jedna z najpiękniejs", + "id": "Lectio" + }, + { + "body": "*Ps 76:15; 76:16*\nTyś jest Bogiem, który cuda działasz; potęgę Swoją ludom objawiłeś.\n℣. Ramieniem Swoim zbawiłeś Twój l", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:31-43*\nOnego czasu: Jezus wziąwszy z sobą dwunastu, mówił do nich", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich. Wargami moimi opowiadam wszystkie wyroki ust Twoich", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nJedli i nasycili się bardzo, i pożądanie ich Pan zaspokoił: nie zawiedli się w swych pragnieniach.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności.\nPrzez Pa", + "id": "Postcommunio" + } + ], + "2025-03-03": [ + { + "body": "*Ps 30:3-4*\nBądź mi, Boże, obrońcą, bądź zamkiem warownym, abyś mnie ocalił; boś Ty jest skałą mą i twierdzą, wywiedzies", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy nasze, wyzwól nas z więzów grzechowych i zachowaj od wszelkiej przeciwn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 13:1-13*\n*Hymn św. Pawła o miłości to jedna z najpiękniejs", + "id": "Lectio" + }, + { + "body": "*Ps 76:15; 76:16*\nTyś jest Bogiem, który cuda działasz; potęgę Swoją ludom objawiłeś.\n℣. Ramieniem Swoim zbawiłeś Twój l", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:31-43*\nOnego czasu: Jezus wziąwszy z sobą dwunastu, mówił do nich", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12-13*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich. Wargami moimi opowiadam wszystkie wyroki ust Twoich", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 77:29-30*\nJedli i nasycili się bardzo, i pożądanie ich Pan zaspokoił: nie zawiedli się w swych pragnieniach.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności.\nPrzez Pa", + "id": "Postcommunio" + } + ], + "2025-03-04": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który umocniłeś świętego Kazimierza cnotą stałości wśród rozkoszy dworu królewskiego i powabów świata: prosimy Cię", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Lucjusza I*\nBoże, co roku uweselasz nas uroczystością świętego N., Twojego Męczennika i Biskupa; spraw ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Sprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\n℣. By", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Lucjusza I*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego N., Twego Męczennika i Biskupa, daj", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Lucjusza I*\nPanie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętego N., Twego Męczennika", + "id": "Commemoratio Postcommunio" + } + ], + "2025-03-05": [ + { + "body": "*Antyfona*\n*Ps 68:17*\nWysłuchaj nas, Panie, gdyż łaskawe jest miłosierdzie Twoje, w wielkiej litości swojej wejrzyj na n", + "id": "Benedictio cinerum" + }, + { + "body": "*Mdr 11:24 11:25; 11:27*\nWszystkim okazujesz miłosierdzie, Panie, i żadnego ze swych stworzeń nie masz w nienawiści. Dar", + "id": "Introitus" + }, + { + "body": "Udziel, Panie, wiernym Twoim łaski, aby rozpoczęli ten czcigodny i uroczysty post z należną pobożnością i przebyli go sł", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Joela.\n*Jl 2:12-19*\n*Słowami proroka Joela Kościół wzywa nas do postu i wewnętrznego nawróceni", + "id": "Lectio" + }, + { + "body": "*Ps 56:2; 56:4*\nZmiłuj się nade mną, Boże, zmiłuj się nade mną, bo Tobie ufa dusza moja.\n℣. Sięgnął nieba i wybawił mnie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:16-21*\nOnego czasu: Mówił Jezus uczniom swoim: «Gdy pościcie, nie", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nSławić Cię będę, Panie, bo mnie wybawiłeś i nie sprawiłeś ze mnie uciechy mym wrogom. Panie, do Ciebie wołał", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy należycie się usposobili do ofiarowania Tobie tych darów, przez które obchodzimy począ", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 1:2,3*\nKto rozważa Prawo Pańskie dniem i nocą, ten wyda owoc w swym czasie.", + "id": "Communio" + }, + { + "body": "Niech nas wspomaga, Panie, przyjęty Sakrament, aby nasze posty były miłe Tobie, a nam przyniosły wyleczenie.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\n*Diakon, jeżeli służy do Mszy, zwrócony w stronę ludu, ze złączonymi rękoma mówi. W przeciwnym razie mówi C", + "id": "Super populum" + } + ], + "2025-03-06": [ + { + "body": "*Ps 54:17-23*\nKiedy wołałem do Pana, wysłuchał głosu mego przeciw tym, co na mnie nastają; i poniżył ich Ten, który król", + "id": "Introitus" + }, + { + "body": "Boże, którego obraża występek, a przejednywa pokuta, wejrzyj miłościwie na błagania ludu Twojego i odwróć od nas chłostę", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Perpetui i Felicyty, Męczennic*\nProsimy Cię, Panie Boże nasz, daj nam zawsze z nabożeństwem czcić trium", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 38:1-6*\n*Gdy król Ezechiasz śmiertelnie zachorował, zwrócił się do Boga z gorącą", + "id": "Lectio" + }, + { + "body": "*Ps 54:23, 17, 18, 19*\nZłóż troskę swoją na Pana, On sam cię podtrzyma.\n℣. Kiedy wołałem do Pana, wysłuchał głosu mego p", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:5-13*\nOnego czasu, gdy Jezus wszedł do Kafarnaum, przystąpił do n", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże, mój, Tobie ufam, niech nie doznam wstydu; niech się nie śmieją ze ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Perpetui i Felicyty, Męczennic*\nWejrzyj, prosimy Cię, Panie, na dary złożone na Twoim ołtarzu w uroczys", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nPrzyjmiesz ofiary prawe, dary i całopalenia na ołtarzu Twoim, Panie.", + "id": "Communio" + }, + { + "body": "Po przyjęciu błogosławionego daru niebieskiego, pokornie Cię prosimy, wszechmogący Boże, aby ten dar stał się źródłem ła", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Perpetui i Felicyty, Męczennic*\nNapełnieni duchowymi pragnieniami i radością, prosimy Cię, Panie, spraw", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPrzepuść, Panie, przepuść ludowi Twojemu, aby po odcierpieniu słusznej ", + "id": "Super populum" + } + ], + "2025-03-07": [ + { + "body": "*Ps 29:11*\nPan mnie wysłuchał i zmiłował się nade mną; Pan stał się moim wspomożycielem.\n*Ps 29:2*\nSławić Cię będę, Pani", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wspieraj łaskawie rozpoczęte posty, abyśmy szczerze przestrzegali w duszy wyrzeczenia, które cieleśn", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Tomasza z Akwinu, Wyznawcy i Doktora Kościoła*\nBoże, Ty oświecasz Swój Kościół przedziwną nauką św. Tom", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 58:1-9*\nTo mówi Pan: Wołaj, nie ustawaj, jak trąba podnieś głos twój, a opowiada", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję; bym w domu Pańskim przebywał po wszystkie dni mego życia.\n℣. Abym zażywał", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:43-48; 6:1-4*\nOnego czasu rzekł Jezus uczniom swoim: «Słyszeliści", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154; 118:125*\nPanie, obdarz mnie życiem według Twojej obietnicy, abym poznał Twe ustawy.", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, Panie, aby ofiara czterdziestodniowego postu, którą składamy, uczyniła nasze dusze miłymi Tobie, a n", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Tomasza z Akwinu, Wyznawcy i Doktora Kościoła*\nPanie, niech nam nie zabraknie serdecznej modlitwy święt", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nSłużcie Panu w bojaźni, sławcie Go z lękiem, nabierzcie karności, byście nie zeszli z drogi prawej.", + "id": "Communio" + }, + { + "body": "Tchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zjednocz tych, których posiliłeś jednym chlebem niebiesk", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Tomasza z Akwinu, Wyznawcy i Doktora Kościoła*\nProsimy Cię, Panie, niech święty Tomasz, Twój Biskup i z", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nZachowaj, Panie, lud Twój i oczyść go łaskawie od wszystkich grzechów, ", + "id": "Super populum" + } + ], + "2025-03-08": [ + { + "body": "*Ps 29:11*\nPan mnie wysłuchał i zmiłował się nade mną; Pan stał się moim wspomożycielem.\n*Ps 29:2*\nSławić Cię będę, Pani", + "id": "Introitus" + }, + { + "body": "Przychyl się, Panie, ku prośbom naszym i spraw, abyśmy w posłusznym oddaniu się Tobie obchodzili ten uroczysty post, ust", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Jana Bożego, Wyznawcy*\nBoże, Ty świętego Jana, gorejącego miłością Twoją, przeprowadziłeś bez szkody wś", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 58:9-14*\nTo mówi Pan: Jeśli usuniesz spośród siebie łańcuch, a przestaniesz wyci", + "id": "Lectio" + }, + { + "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję: bym w domu Pańskim przebywał po wszystkie dni mego życia.\n℣. Abym zażywał", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 6:47-56*\nOnego czasu, gdy nadszedł wieczór, łódź była na pełnym morzu,", + "id": "Evangelium" + }, + { + "body": "*Ps 118:154; 118:125*\nPanie, obdarz mnie życiem według Twojej obietnicy, abym poznał Twe ustawy.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, tę ofiarę, którą uznałeś za godną, aby Cię przebłagać, i spraw, abyśmy oczyszczeni jej mocą, mogli Ci z", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Jana Bożego, Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wy", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 2:11-12*\nSłużcie Panu w bojaźni, sławcie Go z lękiem, nabierzcie karności, byście nie zeszli z drogi prawej.", + "id": "Communio" + }, + { + "body": "Pokrzepieni życiodajnym darem z nieba, prosimy Cię, Panie, aby to, co w obecnym życiu jest dla nas tajemnicą, stało się ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Jana Bożego, Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niec", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nUmocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je nieust", + "id": "Super populum" + } + ], + "2025-03-09": [ + { + "body": "*Ps 90:15; 90:16*\nBędzie mnie wzywał, a Ja go wysłucham. Wyzwolę go i obdarzę sławą, nasycę go długimi dniami.\n*Ps 90:1*", + "id": "Introitus" + }, + { + "body": "Boże, który co roku oczyszczasz swój Kościół przez czterdziestodniowy post, spraw, aby rodzina Twoja wykorzystała przez ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 6:1-10*\nBracia: Napominamy was, abyście nadaremno łaski Bo", + "id": "Lectio" + }, + { + "body": "*Ps 90,11-12*\nSwoim Aniołom Bóg dał rozkaz o tobie, aby cię strzegli na wszystkich twych drogach.\n℣. Na rękach swoich bę", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 4:1-11*\n*«Wypadało, aby Chrystus zatriumfował nad naszymi pokusami,", + "id": "Evangelium" + }, + { + "body": "*Ps 90:4-5*\nPiórami swymi Pan cię okryje i pod skrzydła Jego się schronisz, wierność Jego za tarczę ci stanie.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, uroczystą ofiarę na rozpoczęcie czterdziestodniowego postu i błagamy, abyśmy ujmując pożywienia ciał", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 90:4-5*\nPiórami swymi Pan cię okryje i pod skrzydła Jego się schronisz, wierność Jego za tarczę ci stanie.", + "id": "Communio" + }, + { + "body": "Niech nas odrodzi, o Panie, święta uczta, na której pożywamy Twój Sakrament, i po oczyszczeniu ze starej przewiny, niech", + "id": "Postcommunio" + } + ], + "2025-03-10": [ + { + "body": "*Ps 122:2*\nJak oczy sług zwracają się ku rękom ich panów, tak oczy nasze ku Panu, Bogu naszemu, aż się zmiłuje nad nami.", + "id": "Introitus" + }, + { + "body": "Nawróć nas, Boże, Zbawicielu nasz, i oświeć nasze umysły niebieską nauką, aby post czterdziestodniowy przyniósł nam poży", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Czterdziestu Męczenników*\nSpraw, wszechmogący Boże, abyśmy podziwiając męstwo sławnych Męczenników w wy", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 34:11-16*\nTo mówi Pan Bóg: Oto ja sam będę szukał owiec moich i nawiedzę je. Ja", + "id": "Lectio" + }, + { + "body": "*Ps 88:10; 88:9*\nSpojrzyj, obrońco nasz, Boże, i wejrzyj na sługi Swoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:31-46*\nOnego czasu rzekł Jezus uczniom swoim: Gdy przyjdzie Syn ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:18; 118:26; 118:73*\nPodniosę oczy moje i będę rozważał, Panie, dziwy Twoje. Naucz mnie Twego prawa, daj mi rozum", + "id": "Offertorium" + }, + { + "body": "Uświęć, Panie, złożone Ci dary i oczyść nas ze zmazy naszych grzechów.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Czterdziestu Męczenników*\nWejrzyj, Panie, na modły i ofiary Swoich wiernych: niech przy uroczystości Tw", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Mt 25:40; 25:34*\nZaprawdę powiadam wam, coście uczynili jednemu z tych moich braci najmniejszych, mnieście uczynili. Pó", + "id": "Communio" + }, + { + "body": "Nasyceni zbawiennym darem, pokornie prosimy Cię, Panie, abyśmy ciesząc się jego pożywaniem zostali odnowieni jego mocą.\n", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Czterdziestu Męczenników*\nPrzejednany wstawiennictwem Twoich Świętych, daj, prosimy Cię, Panie, abyśmy ", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nRozwiąż, prosimy Cię, Panie, więzy naszych grzechów i odwróć łaskawie k", + "id": "Super populum" + } + ], + "2025-03-11": [ + { + "body": "*Ps 89:1; 89:2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie. Ty jesteś od wieków i na wieki.\n*Ps 89:2*\nZanim ", + "id": "Introitus" + }, + { + "body": "Wejrzyj, Panie, na rodzinę Twoją i spraw, aby dusza nasza poprawiona przez umartwienie ciała, jaśniała w Twoich oczach p", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 55:6-11*\nW one dni rzekł Izajasz prorok mówiąc: Szukajcie Pana, póki może być zn", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna.", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 21:10-17*\nOnego czasu: Gdy Jezus wszedł do Jerozolimy, poruszyło si", + "id": "Evangelium" + }, + { + "body": "*Ps 30:15-16*\nTobie ufam, o Panie; mówię: Ty jesteś Bogiem moim, w Twoim ręku losy moje.", + "id": "Offertorium" + }, + { + "body": "Daj się przebłagać, Panie, złożonymi darami i broń nas od wszelkich niebezpieczeństw.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 4:2*\nKiedy Cię wezwę, wysłuchaj mnie, Boże, co sprawiedliwość mi wymierzasz; Tyś w utrapieniu mnie podniósł; zmiłuj ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, abyśmy osiągnęli zbawienie, którego zadatek otrzymaliśmy w tych tajemnicach.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nNiechaj nasze modlitwy wzniosą się do Ciebie, Panie, Ty zaś oddal od sw", + "id": "Super populum" + } + ], + "2025-03-12": [ + { + "body": "*Ps 24:6; 24:3; 24:22*\nWspomnij na zmiłowania Twe, Panie, na miłosierdzie, które trwa od wieków, niech nie panują nad na", + "id": "Introitus" + }, + { + "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, nasze modlitwy i przeciw wszystkiemu, co jest nam wrogie, wyciągnij prawicę Tweg", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Wyjścia.\n*Wj 24:12-18*\nW one dni rzekł Pan do Mojżesza: «Wstąp do mnie na górę i bądź tam: dam ci tabl", + "id": "LectioL1" + }, + { + "body": "*Ps 24:17-18*\nUlżyj uciskom serca mojego, wyrwij mnie z moich udręczeń, Panie.\n℣. Wejrzyj na nędzę moją i na mój trud i ", + "id": "GradualeL1" + }, + { + "body": "Wejrzyj łaskawie, prosimy, Panie, na oddanie Twojego ludu, aby umartwiając ciało postem, wzmocnił ducha owocem dobrych u", + "id": "OratioL1" + }, + { + "body": "*Wspomnienie Św. Grzegorza Wielkiego, Papieża, Wyznawcy i Doktora Kościoła*\nBoże, który udzieliłeś nagrody wiecznej szcz", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*3 Krl 19:3-8*\nW one dni: Przybył Eliasz do judzkiego Bersabee i zostawił tam sługę swego", + "id": "Lectio" + }, + { + "body": "*Ps 24:17; 24:18; 24:1-4*\nWyrwij mnie z moich udręczeń, Panie, wejrzyj na nędzę moją i na mój trud i odpuść wszystkie me", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 12:38-50*\nOnego czasu: Odpowiedzieli Jezusowi niektórzy z uczonych ", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 118:48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnę do przykazań Twoich, które umił", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiary przebłagalne, abyś miłosiernie odpuścił nasze grzechy i sam pokierował chwiejnymi sercami.\nPr", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Grzegorza Wielkiego, Papieża, Wyznawcy i Doktora Kościoła*\nSpraw, prosimy Cię, Panie, aby za wstawienni", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nZważ na moje wołanie, zwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", + "id": "Communio" + }, + { + "body": "Panie, niech przyjęcie Twego Sakramentu oczyści nas z ukrytych grzechów i wybawi od zasadzek nieprzyjacielskich.\nPrzez P", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Grzegorza Wielkiego, Papieża, Wyznawcy i Doktora Kościoła*\nBoże, któryś sprawił, że święty Papież Grzeg", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\n℣. Oświeć, Panie, umysły nasze blaskiem Twej światłości, abyśmy mogli w", + "id": "Super populum" + } + ], + "2025-03-13": [ + { + "body": "*Ps 95:6*\nChwałą i pięknem promienieje Jego oblicze, moc i wspaniałość w Jego świątyni.\n*Ps 95:1*\nŚpiewajcie Panu pieśń ", + "id": "Introitus" + }, + { + "body": "Wejrzyj łaskawie, prosimy, Panie, na oddanie Twojego ludu, aby umartwiając ciało postem, wzmocnił ducha owocem dobrych u", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 18:1-9*\nW one dni stało się słowo Pańskie do mnie mówiąc: Co to jest, że między", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nStrzeż mnie, o Panie, jak źrenicy oka, w cieniu Twych skrzydeł mnie ukryj.\n℣. Sprzed Twego oblicza niech", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 15:21-28*\n*«Byłbym pozbawiony nadziei, gdybym nie wiedział o Twym m", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nAnioł Pański zakłada obóz warowny wokół tych, którzy się Go boją i On ich wyzwala. Skosztujcie i zobaczcie, ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech te ofiary, składane wśród uzdrawiającego postu, skutecznie przyczynią się do naszego zbawienia", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*J 6:52*\nChleb, który ja dam, jest ciało moje za życie świata.", + "id": "Communio" + }, + { + "body": "Racz, Panie, obfitością Twoich darów dźwigać nas w życiu doczesnym i odrodzić na życie wieczne.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj, Panie, ludowi chrześcijańskiemu zrozumienie tego, co wyznaje, i um", + "id": "Super populum" + } + ], + "2025-03-14": [ + { + "body": "*Ps 24:17; 24:18*\nWyrwij mnie z moich udręczeń, Panie, wejrzyj na nędzę moją i na mój trud i odpuść wszystkie me występk", + "id": "Introitus" + }, + { + "body": "Bądź miłościw, Panie, ludowi Twojemu, który czynisz sobie oddanym, i w miłosierdziu swoim pokrzep go łaskawą pomocą.\nPrz", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 18:20-28*\nTo mówi Pan Bóg: Człowiek, który zgrzeszy, sam śmierć poniesie: syn n", + "id": "Lectio" + }, + { + "body": "*Ps 85:2; 85:6*\nRatuj, mój Boże, sługę swego, który Ci zaufał.\n℣. Usłysz, Panie, modlitwę moją.\n\n*Ps 102:10*\nPanie, nie ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 5:1-15*\n*Paralityk oczekujący uzdrowienia od 38 lat to obraz nałogowego ", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2; 102:5*\nBłogosław, duszo moja, Pana i nie zapominaj wszystkich dobrodziejstw Jego, a młodość twoja odnowi się ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij ofiary złożone przy naszej posłudze i uświęć dary, które od Ciebie pochodzą.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 6:11*\nNiech się zawstydzą i zatrwożą wszyscy wrogowie moi, niech zawstydzą się i odstąpią co prędzej.", + "id": "Communio" + }, + { + "body": "Panie, niech działanie Twego Sakramentu oczyści nas ze złych skłonności i spełni nasze godziwe pragnienia.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWysłuchaj nas, miłosierny Boże, i ukaż naszym duszom światło Twojej łas", + "id": "Super populum" + } + ], + "2025-03-15": [ + { + "body": "*Ps 87:3*\nNiech dojdzie do Ciebie moja modlitwa, nakłoń ucha Swego na prośbę moją, Panie.\n*Ps 87:2*\nPanie Boże, Zbawicie", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj miłościwie na Twój lud i odwróć odeń chłostę Twego zagniewania.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Powtórzonego Prawa.\n*Pp 26:12-19*\nW one dni mówił Mojżesz do ludu: Gdy dopełnisz dziesięciny z wszystk", + "id": "LectioL1" + }, + { + "body": "*Ps 78:9; 78:10*\nO Panie, przebacz nam grzechy, aby poganie z nas nie drwili: «Gdzież jest ich Bóg?»\n℣. Wspomóż nas, Boż", + "id": "GradualeL1" + }, + { + "body": "Boże, obrońco nasz, wejrzyj na nas przygniecionych ciężarem własnych grzechów, abyśmy doznawszy Twego miłosierdzia służy", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Powtórzonego Prawa.\n*Pp 11:22-25*\n*Życie katolików zgodne z prawem Bożym zapewnia Kościołowi moc promi", + "id": "LectioL2" + }, + { + "body": "*Ps 83:10; 83:9*\nSpojrzyj, obrońco nasz, Boże, i wejrzyj na sługi Swoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług ", + "id": "GradualeL2" + }, + { + "body": "Przychyl się, Panie, ku prośbom naszym, abyśmy za łaską Twoją byli pokorni w powodzeniu i bezpieczni wśród przeciwności.", + "id": "OratioL2" + }, + { + "body": "Czytanie z Księgi Machabejskiej.\n*2 Mch 1:23-26; 1:27*\n*W Kościele, podobnie jak w Starym Testamencie, składanie ofiar i", + "id": "LectioL3" + }, + { + "body": "*Ps 89:13; 89:1*\nZwróć się ku nam, Panie, na chwilę i daj się ubłagać sługom Swoim.\n℣. Panie, Tyś był ucieczką naszą z p", + "id": "GradualeL3" + }, + { + "body": "Prosimy Cię, Panie, wysłuchaj łaskawie modlitwy Twego ludu i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miłoś", + "id": "OratioL3" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 36:1-10*\n*Lud Boży, świadomy, że jego grzechy są powodem trudności w spełnieniu Bożeg", + "id": "LectioL4" + }, + { + "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna.", + "id": "GradualeL4" + }, + { + "body": "Prosimy Cię, Panie, uprzedzaj czyny nasze Twoim natchnieniem i pomocą wspieraj, aby każda nasza modlitwa i praca zawsze ", + "id": "OratioL4" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:47-51*\n*Poważną przeszkodą do zbawienia są nasze namiętności, które wykorzystuj", + "id": "LectioL5" + }, + { + "body": "Boże, któryś złagodził płomień ognia dla trzech młodzieńców, spraw łaskawie, aby nas, sług Twoich, nie pożarł płomień na", + "id": "OratioL5" + }, + { + "body": "*Wspomnienie Św. Klemensa Marii Dworzaka (Hofbauera)*\nBoże, który ozdobiłeś świętego Klemensa Marię przedziwną mocą wiar", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 5:14-23*\n*W oczekiwaniu na przyjście Chrystusa chrześci", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nChwalcie Pana, wszystkie narody, wysławiajcie Go, wszystkie ludy.\n℣. Bo miłosierdzie Jego, nad nami utwierd", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 17:1-9*\n*Ewangelia jak w następną niedzielę.*\nOnego czasu: Wziął Je", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nPanie Boże, Zbawicielu mój, podczas dnia wołam i w nocy żalę się przed Tobą, niech moja modlitwa dojdzie do ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uświęć przez tę ofiarę nasze posty, aby w naszym wnętrzu dokonało się to, co wyrażają nasze zewnętrz", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Klemensa Marii Dworzaka (Hofbauera)*\nProsimy Cię, Panie, niech nas rozpali ten ogień pobożności, którym", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 7:2*\nPanie, Boże mój, w Tobie pokładam nadzieję, wybaw mnie od wszystkich wrogów moich i ratuj mnie.", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, niech Twoje uświęcające tajemnice uleczą nasze wady i staną się dla nas rękojmią życia wiecznego.\nPrz", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Klemensa Marii Dworzaka (Hofbauera)*\nWszechmogący Boże, dozwól nam, pokrzepionym chlebem niebieskim, ab", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPanie, niech upragnione błogosławieństwo umocni Twoich wiernych, aby ni", + "id": "Super populum" + } + ], + "2025-03-16": [ + { + "body": "*Ps 24:6; 24:3; 24:22*\nWspomnij na zmiłowania Twe, Panie, na miłosierdzie Twoje, które trwa od wieków, niech nie panują ", + "id": "Introitus" + }, + { + "body": "Boże, Ty widzisz, że jesteśmy zupełnie pozbawieni sił. Strzeż naszej duszy i ciała, aby ciało nasze było wolne od wszelk", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 4:1-7*\n*«Wolą Bożą jest nasze uświęcenie». Bóg powołał ", + "id": "Lectio" + }, + { + "body": "*Ps 24:17-18*\nUlżyj uciskom serca mojego, wyrwij mnie z moich udręczeń, Panie.\n℣. Wejrzyj na nędzę moją i na mój trud, i", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 17:1-9*\nOnego czasu: Wziął Jezus Piotra i Jakuba, i Jana brata jego", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 118:48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnę do przykazań Twoich, które umił", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 5:2-4*\nZważ na moje wołanie, zwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", + "id": "Communio" + }, + { + "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Swoim sakramentem, godnie Tobie służyli życiem ", + "id": "Postcommunio" + } + ], + "2025-03-17": [ + { + "body": "*Ps 25:11-12*\nWyzwól mię, Panie, i zmiłuj się nade mną, na drodze równej stoi stopa moja; na zgromadzeniach będę błogosł", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, niech rodzina Twoja, która dla umartwiania ciała powstrzymuje się od pokarmów, za", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Patryka, Biskupa i Wyznawcy*\nBoże, który raczyłeś posłać świętego Patryka, Twego Wyznawcę i Biskupa, by", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 9:15-19*\nW one dni modlił się Daniel do Pana, mówiąc: «Panie Boże nasz, który wyw", + "id": "Lectio" + }, + { + "body": "*Ps 69:6; 69:3*\nBądź wspomożycielem i wybawcą moim, nie zwlekaj, o Panie.\n℣. Niech się zawstydzą, okryją rumieńcem, któr", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:21-29*\nOnego czasu mówił Jezus do rzesz żydowskich: «Ja odchodzę, wy z", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7; 15:8*\nBłogosławię Panu, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy,", + "id": "Offertorium" + }, + { + "body": "Panie, niech ta ofiara przebłagalna i pochwalna uczyni nas godnymi Twojej opieki.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Patryka, Biskupa i Wyznawcy*\nPanie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 8:2*\nO Panie, Panie nasz, jak przedziwne Twe imię po wszystkiej ziemi.", + "id": "Communio" + }, + { + "body": "Panie, niech ta komunia oczyści nas z grzechów i udzieli nam niebieskiej pomocy.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Patryka, Biskupa i Wyznawcy*\nWszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dar", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPrzychyl się ku prośbom naszym, wszechmogący Boże, a skoro pozwalasz na", + "id": "Super populum" + } + ], + "2025-03-18": [ + { + "body": "*Ps 26:8; 26:9*\nDo Ciebie mówi serce moje, oblicze moje Cię szuka, szukam, o Panie, Twojego oblicza; oblicza Twego nie k", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wspomagaj nas miłościwie w zachowaniu świętej wstrzemięźliwości, abyśmy poznawszy za Twoją sprawą, c", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Cyryla Jerozolimskiego, Biskupa, Wyznawcy i Doktora Kościoła*\nProsimy Cię, wszechmogący Boże, przez wst", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*1 Krl 17:8-16*\nW one dni: Stało się słowo Pańskie do Eliasza Tesbitczyka mówiąc: «Wstań ", + "id": "Lectio" + }, + { + "body": "*Ps 54:23; 54:17; 54:18; 54:19*\nZłóż troskę swoją na Pana, On sam cię podtrzyma.\n℣. Kiedy wołałem do Pana, wysłuchał gło", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 23:1-12*\nOnego czasu rzekł Jezus do rzesz i do uczniów swoich, mówi", + "id": "Evangelium" + }, + { + "body": "*Ps 50:3*\nZmiłuj się nade mną, Panie, w wielkim miłosierdziu Twoim; zgładź, Panie, nieprawość moją.", + "id": "Offertorium" + }, + { + "body": "Panie, dokonaj w nas łaskawie przez te tajemnice dzieła uświęcenia: oczyść nas z błędów ziemskich i doprowadź do nagrody", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Cyryla Jerozolimskiego, Biskupa, Wyznawcy i Doktora Kościoła*\nWejrzyj, Panie, na niepokalaną ofiarę, kt", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nOpowiem wszystkie cudowne dzieła Twoje, będę się cieszyć i radować Tobą, śpiewać imieniu Twemu, o Najwyższy.", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy przez wierne posłuszeństwo Twoim przykazaniom stali się godnymi świętych darów.\nPrzez ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Cyryla Jerozolimskiego, Biskupa, Wyznawcy i Doktora Kościoła*\nPanie Jezu Chryste, niech na prośby św. B", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj się przejednać, Panie, naszymi modłami i ulecz choroby dusz naszych", + "id": "Super populum" + } + ], + "2025-03-19": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nas wspomagają zasługi Oblubieńca Twojej Najświętszej Rodzicielki, abyśmy za jego wstawiennict", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Środa po 2 Niedzieli Wielkiego Postu*\nProsimy Cię, Panie, wejrzyj łaskawie na Twój lud i spraw, aby ci, któ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 1:18-21*\nGdy poślubiona była Matka Jezusa Maryja Józefowi, pierwej ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie. (O. W. Alleluja.)", + "id": "Offertorium" + }, + { + "body": "Oddajemy Ci, Panie, hołd naszego poddaństwa, pokornie błagając, byś strzegł w nas swoich darów za wstawiennictwem św. Jó", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Środa po 2 Niedzieli Wielkiego Postu*\n*Msza święta jest wymianą między niebem a ziemią, spotkaniem Kościoła", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o św. Józefie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali ", + "id": "Prefatio" + }, + { + "body": "*Mt 1:20*\nJózefie, Synu Dawidów, nie bój się przyjąć Maryi, małżonki swojej, albowiem co się w Niej poczęło z Ducha Świę", + "id": "Communio" + }, + { + "body": "Przyjdź nam z pomocą, miłosierny Boże, a za wstawiennictwem św. Józefa, Wyznawcy, strzeż w nas łaskawie Swoich darów.\nPr", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Środa po 2 Niedzieli Wielkiego Postu*\nProsimy Cię, Panie, aby przez przyjęcie Sakramentu wzrastała w nas ła", + "id": "Commemoratio Postcommunio" + } + ], + "2025-03-20": [ + { + "body": "*Ps 69:2; 69:3*\nBoże, wejrzyj ku wspomożeniu memu, Panie, pośpiesz ku ratunkowi memu. Niech się zawstydzą i okryją rumie", + "id": "Introitus" + }, + { + "body": "Udziel nam, prosimy Cię, Panie, pomocy łaski Twojej, abyśmy gorliwie trwając w poście i modlitwie, zostali wybawieni od ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 17:5-10*\nTo mówi Pan Bóg: Przeklęty człowiek, który ufa w człowieku i czyni c", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nPrzebacz nam, o Panie, grzechy, aby nie drwili z nas poganie: «Gdzie jest ich Bóg»?\n℣. Wspomóż nas, Boż", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 16:19-31*\nOnego czasu rzekł Jezus do faryzeuszów: Był człowiek pewie", + "id": "Evangelium" + }, + { + "body": "*Wj 32:11; 32:13; 32:14*\nMojżesz modlił się do Pana, Boga swego, mówiąc: Czemuż, Panie, gniewasz się na lud Swój? Niech ", + "id": "Offertorium" + }, + { + "body": "Panie, niechaj uświęcą nas posty, które składamy Ci wraz z tą ofiarą na chwałę Twojego imienia, aby w naszym wnętrzu dok", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*J 6:57*\nKto pożywa Ciało moje i pije Krew moją, we mnie mieszka, a ja w nim, mówi Pan.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech nas nie opuszcza Twoja łaska, lecz niech nas utwierdza w Twojej świętej służbie i zapewnia nam", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWspieraj, Panie, sługi Swoje i proszącym okazuj nieustannie Twoją dobro", + "id": "Super populum" + } + ], + "2025-03-21": [ + { + "body": "*Ps 16:15*\nJa zaś w sprawiedliwości ukażę się przed Twoim obliczem, nasycę się, gdy się objawi chwała Twoja.\n*Ps 16:1*\nW", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, abyśmy oczyszczeni świętym postem mogli się doczekać zbliżających się świąt.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Benedykta, Opata*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Benedykta, Opata, ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Rodzaju.\n*Rdz 37:6-22*\n*Dzieje Józefa to jeden z najbardziej wyrazistych typów biblijnych męki i zmart", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nDo Pana wołałem, gdym był w utrapieniu, a On mnie wysłuchał.\n℣. Wybaw mnie, Panie, od ust kłamliwych i od p", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 21:33-46*\nOnego czasu powiedział Jezus do rzesz żydowskich i do prz", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14; 39:15*\nPanie, pośpiesz mi z pomocą; niech się zawstydzą i okryją rumieńcem ci, którzy dybią na życie moje, by", + "id": "Offertorium" + }, + { + "body": "Boże, niech trwa w nas działanie tej ofiary i umacniają się jej skutki.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Benedykta, Opata*\nProsimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na święty", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 11:8*\nTy, Panie, zachowasz nas i na wieki ustrzeżesz nas od tego plemienia (grzeszników).", + "id": "Communio" + }, + { + "body": "Otrzymawszy zadatek zbawienia wiecznego, prosimy Cię, Panie, daj nam tak gorliwie do niego dążyć, abyśmy mogli je osiągn", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Benedykta, Opata*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N.,", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj, Panie, ludowi Twojemu zdrowie duszy i ciała, aby oddając się dobry", + "id": "Super populum" + } + ], + "2025-03-22": [ + { + "body": "*Ps 18:8.*\nPrawo Pańskie doskonałe i krzepiące ducha; przykazanie Pańskie niezmienne, poucza prostaczków.\n*Ps 18:2*\nNieb", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, daj zbawienną skuteczność naszym postom, aby podjęte przez nas umartwienie ciała dodało żywotnych si", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Wyjścia.\n*Wj 27:6-40*\n*Utrata pierworodztwa przez Ezawa to zapowiedź utraty przywilejów przez naród wy", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.\n℣. Głosić z rana miłosierdzie Twoje, a wier", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 15:11-32*\nOnego czasu powiedział Jezus do faryzeuszów i uczonych tę ", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nOświeć me oczy, bym nie zasnął w śmierci, by wróg mój nie mówił: Ja go zwyciężyłem.", + "id": "Offertorium" + }, + { + "body": "Przebłagany tą ofiarą, racz sprawić, Panie, aby nie obciążały nas cudze winy, gdy prosimy o odpuszczenie własnych grzech", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Łk 15:32*\nSynu, winieneś weselić się, gdyż brat twój był umarły, a ożył, zaginął był, a odnalazł się.", + "id": "Communio" + }, + { + "body": "Panie, niech sakramentalna ofiara Boskiej Krwi przeniknie do głębi nasze serca i swoją potężną mocą zjednoczy nas ze sob", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nProsimy Cię, Panie, strzeż nieustannie rodziny Twojej z ojcowską dobroc", + "id": "Super populum" + } + ], + "2025-03-23": [ + { + "body": "*Ps 24:15-16*\nOczy moje zawsze ku Panu, gdyż On sam oswobodzi z sideł moje nogi. Wejrzyj na mnie i zmiłuj się nade mną, ", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wejrzyj, prosimy, na pokorne modły i wyciągnij w naszej obronie prawicę Twego majestatu.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 5:1-9*\nBracia: Bądźcież naśladowcami Bożymi jako synowie najmil", + "id": "Lectio" + }, + { + "body": "*Ps 9:20; 9:4*\nPowstań, o Panie, by człowiek nie przemógł, pozwij narody przed Twój trybunał.\n℣. Wrogowie moi cofnęli si", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:14-28*\nOnego czasu: Wyrzucał Jezus czarta, a ten był niemy. A gdy", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9, 10, 11, 12*\nPrzykazania Pańskie słuszne, radują serca, sądy Pańskie słodsze od miodu płynącego z plastrów, prz", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 83:4-5*\nWróbel znajduje sobie dom i jaskółka gniazdo, gdzie złoży swoje pisklęta: Twoje ołtarze, Panie Zastępów, mój", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, uwolnij nas łaskawie od wszelkich przewinień i niebezpieczeństw, skoro pozwalasz nam uczestniczyć w ", + "id": "Postcommunio" + } + ], + "2025-03-24": [ + { + "body": "*Ps 55:5*\nBogu, którego słowem się chlubię, Panu, którego obietnicą się chlubię, Bogu ufam, nie będę się bał, cóż mi ucz", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wiej miłościwie łaskę Twoją w nasze serca, abyśmy wstrzymując się od pokarmów mięsnych, powściągali ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Gabriela Archanioła*\nBoże, Ty spośród innych Aniołów wybrałeś Archanioła Gabriela na zwiastuna tajemnic", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*4 Krl 5:1-15*\n*Oczyszczenie Naamana z trądu w wodach Jordanu to obraz oczyszczenia duszy", + "id": "Lectio" + }, + { + "body": "*Ps 55:9, 2*\nWyznałem Tobie, Boże, życie moje, położyłeś łzy moje przed sobą.\n℣. Zmiłuj się nade mną, Boże, bo depcze mn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 4:23-30*\nOnego czasu rzekł Jezus do faryzeuszów: «Pewnie mi powiecie", + "id": "Evangelium" + }, + { + "body": "*Ps 54:2-3*\nBoże, usłysz modlitwę moją i nie odsuwaj się od mojej prośby, zwróć się ku mnie i wysłuchaj mnie.", + "id": "Offertorium" + }, + { + "body": "Przemień, Panie, dar, który Ci składamy jako Twoi słudzy, w Sakrament niosący nam zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Gabriela Archanioła*\nPanie, przyjmij łaskawie ofiarę, nas sług Twoich, wraz z modlitwą św. Gabriela Arc", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 13:7*\nNiech przyjdzie ze Syjonu zbawienie Izraela. Gdy Pan odmieni los swego narodu, Jakub się uraduje, Izrael ucies", + "id": "Communio" + }, + { + "body": "Wszechmogący i miłosierny Boże, spraw, abyśmy czystą duszą przyjęli to, co spożyliśmy ustami.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Gabriela Archanioła*\nPo przyjęciu Sakramentu Ciała i Krwi Twojej, Panie Boże nasz, błagamy Twą dobroć: ", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nNiechaj miłosierdzie Twoje, Panie, przyjdzie nam z pomocą i niech Twoja", + "id": "Super populum" + } + ], + "2025-03-25": [ + { + "body": "*Ps 44:13,15-16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Niego z ra", + "id": "Introitus" + }, + { + "body": "Boże, któryś zrządził, że za zwiastowaniem anielskim w żywocie Najświętszej Maryi Panny Słowo Twoje Ciałem się stało, po", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Wtorek po 3 Niedzieli Wielkiego Postu*\nWysłuchaj nas, wszechmocny i miłosierny Boże, i udziel nam łaskawie ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 7:10-15*\nW one dni: Rzekł Pan do Achaza, mówiąc: «Proś Pana Boga twego o znak dl", + "id": "Lectio" + }, + { + "body": "*Ps 44:3,5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawiedliw", + "id": "Tractus" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28,42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą: błogosławionaś Ty między niewiastami, i błogosławiony owoc żywota", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, utwierdź w duszach naszych tajemnice prawdziwej wiary, abyśmy wyznając prawdziwe bóstwo i człowiecze", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Wtorek po 3 Niedzieli Wielkiego Postu*\nProsimy Cię, Panie, niech przez ten Sakrament spłyną na nas skutki O", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*Iz 7:14*\nOto Panna pocznie i porodzi Syna i nazwą imię Jego Emmanuel. (O. W. Alleluja.)", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, wlej w nasze serca swoją łaskę, abyśmy poznawszy za zwiastowaniem anielskim wcielenie Chrystusa, Syn", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Wtorek po 3 Niedzieli Wielkiego Postu*\nOczyszczeni przez święte tajemnice, prosimy Cię, Panie, racz nam udz", + "id": "Commemoratio Postcommunio" + } + ], + "2025-03-26": [ + { + "body": "*Ps 30:7-8*\nJa zaś pokładam nadzieję w Panu: weselić się będę i cieszyć z Twego zmiłowania, boś wejrzał na moją nędzę.\n*", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy wyćwiczeni przez zbawienne posty, powstrzymywali się od zgubnych występków i tym łatwi", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Wyjścia.\n*Wj 20:12-24*\nTo mówi Pan Bóg: Czcij ojca twego i matkę twoją, aby dni twoje były przedłużone", + "id": "Lectio" + }, + { + "body": "*Ps 6:3-4*\nZmiłuj się nade mną, Panie, bom słaby; ulecz mnie, Panie.\n℣. Kości moje znękane i dusza moja wielce jest strw", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 15:1-20*\nOnego czasu: Przystąpili do Jezusa uczeni w Piśmie i faryz", + "id": "Evangelium" + }, + { + "body": "*Ps 108:21*\nPanie, postąp ze mną litościwie dla chwały Twego imienia, bo łaskawe jest Twe miłosierdzie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich składane, a gdy sprawujemy Twoje tajemnice, broń nas ", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 15:10*\nTy mi ukażesz ścieżkę żywota, obfitość radości u Ciebie, o Panie.", + "id": "Communio" + }, + { + "body": "Panie, niech nas uświęci Boska uczta, którąśmy się posilili, i oczyściwszy ze wszystkich błędów niech nas uczyni godnymi", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWszechmogący Boże, dozwól, abyśmy zabiegając o Twoją łaskawą opiekę, zo", + "id": "Super populum" + } + ], + "2025-03-27": [ + { + "body": "Jam jest zbawieniem ludu, mówi Pan. W jakimkolwiek ucisku wołać będą do mnie, ja wysłucham ich i będę ich Panem na wieki", + "id": "Introitus" + }, + { + "body": "Panie, niech Ci przyniesie chwałę uroczystość Twoich świętych Męczenników Kosmy i Damiana, w którą dzięki Twej niewymown", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Jana Damasceńskiego, Wyznawcy i Doktora Kościoła*\nWszechmogący, wieczny Boże, Ty ku obronie czci święty", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 7:1-7*\n*Modlitwy wielkopostne nie przyniosą owocu, jeżeli nie będzie im towar", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOczy wszystkich w Tobie, Panie, pokładają nadzieję, a Ty im dajesz pokarm we właściwym czasie.\n℣. Ty otwi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 4:38-44*\nOnego czasu: Wyszedłszy Jezus z synagogi, wstąpił do domu S", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nGdy chodzę wśród utrapienia, Ty mnie trzymasz przy życiu, o Panie; swą rękę wyciągasz na przekór gniewowi myc", + "id": "Offertorium" + }, + { + "body": "Dla uczczenia chwalebnej śmierci Świętych Twoich składamy Ci, Panie, tę ofiarę, z której wszelkie męczeństwo wzięło swój", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Jana Damasceńskiego, Wyznawcy i Doktora Kościoła*\nPanie, niech te dary, które Ci ofiarujemy, staną się ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nTy wydałeś Swoje przykazania, by pilnie ich przestrzegano. Oby me drogi były niezawodne ku przestrzeganiu T", + "id": "Communio" + }, + { + "body": "Przez zasługi świętych Męczenników Twoich Kosmy i Damiana prosimy Cię, Panie, aby Twój Sakrament zapewnił nam zbawienie.", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Jana Damasceńskiego, Wyznawcy i Doktora Kościoła*\nProsimy Cię, Panie, niech dar, któryśmy przyjęli, sta", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nNiechaj zmiłowanie Twoje, Panie, pomnoży liczbę poddanego Ci ludu i nau", + "id": "Super populum" + } + ], + "2025-03-28": [ + { + "body": "*Ps 85:17*\nDaj mi znak łaski Twojej, aby ci, którzy mnie nienawidzą, widzieli ku zawstydzeniu swojemu, żeś Ty mi pomógł ", + "id": "Introitus" + }, + { + "body": "Niech łaska Twoja, Panie, towarzyszy naszym postom, abyśmy odmawiając pokarmu ciału, powstrzymywali naszego ducha od grz", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Jana Kapistrana, Wyznawcy*\nBoże, któryś sprawił przez św. Jana, że wierni Twoi odnieśli zwycięstwo nad ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Liczb.\n*Lb 20:1, 3, 6-13*\n*Skała, z której wypłynęła cudowna woda, jest typem Chrystusa, od którego pł", + "id": "Lectio" + }, + { + "body": "*Ps 27:7, 1*\nBogu zaufało me serce i doznałem pomocy; raduje się przeto serce moje i pieśnią moją Go sławię.\n℣. Do Ciebi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:5-42*\nOnego czasu: Przybył Jezus do miasta samarytańskiego, zwanego Sy", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4*\nZwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na dary, które Ci składamy w ofierze, niech będą Tobie miłe, a nam zawsze przynoszą", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Jana Kapistrana, Wyznawcy*\nPanie, wejrzyj łaskawie na ofiarę, którą Ci składamy: niech nam za wstawienn", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*J 4:13, 14*\nGdy kto napije się wody, którą ja mu dam, mówi Pan, stanie się ona w nim źródłem wody wytryskującej ku żywo", + "id": "Communio" + }, + { + "body": "Panie, niechaj przyjęcie tego Sakramentu oczyści nas z grzechu i doprowadzi do Królestwa Niebieskiego.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Jana Kapistrana, Wyznawcy*\nNasyceni pokarmem niebieskim i napojem duchowym orzeźwieni, prosimy Cię, wsz", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWszechmogący Boże, zaufaliśmy Twojej opiece, spraw, prosimy, abyśmy za ", + "id": "Super populum" + } + ], + "2025-03-29": [ + { + "body": "*Ps 5:2-3*\nPochwyć uszami słowa moje, Panie, zważ na moje wołanie; zwróć się na głos modlitwy mojej, mój Królu i Boże.\n*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, niech rodzina Twoja, która dla umartwienia ciała wstrzymuje się od pokarmów, zabi", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 13:1-9, 15-17, 19-30, 33-62*\n*Przez Chrzest Bóg zachowuje dusze od wpływu szatana", + "id": "Lectio" + }, + { + "body": "*Ps 22:4*\nChociażbym chodził ciemną doliną, zła się nie ulęknę, bo Ty jesteś ze mną, Panie.\n℣. Kij Twój i Twoja łaska: t", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:1-11*\n*Miłosierdzie Boże winno nas pobudzać do głębszej skruchy i popr", + "id": "Evangelium" + }, + { + "body": "*Ps 118:133*\nKrokami mymi kieruj według mowy Twojej, niech żadna niegodziwość we mnie nie panuje.", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby ten dar złożony w ofierze, nieustannie oczyszczał i zachowywał od wszelkiego ", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*J 8:10, 11*\nNikt cię nie potępił, niewiasto? Nikt, Panie. I ja cię nie potępię. Idź, a nie grzesz więcej.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, racz nas zaliczyć do członków Tego, którego Ciała i Krwi jesteśmy uczestnikami:\nKtóry z ", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPodaj, Panie, wiernym Twoim prawicę niebieskiej pomocy, aby Cię całym s", + "id": "Super populum" + } + ], + "2025-03-30": [ + { + "body": "*Iz 66:10-11*\nWesel się, Jeruzalem! A wszyscy, którzy je miłujecie, śpieszcie tu gromadnie; bierzcie udział w jego radoś", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, abyśmy wśród utrapień, które znosimy za nasze występki, zostali pokrzepieni pocie", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 4:22-31*\n*Wypadki z życia Abrahama były rzeczowym proroctwem i ", + "id": "Lectio" + }, + { + "body": "*Ps 121:1, 7*\nUradowałem się, bo mi powiedziano: Pójdziemy do domu Pańskiego.\n℣. Niech pokój będzie w murach twoich, a b", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 6:1-15*\nOnego czasu: Oddalił się Jezus za Morze Galilejskie, czyli Tyber", + "id": "Evangelium" + }, + { + "body": "*Ps 134:3, 6*\nChwalcie Pana, bo Pan jest dobry; śpiewajcie Jego imieniu, bo słodkie, cokolwiek zechce, to uczyni na nieb", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas ona utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez P", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 121:3-4*\nO Jeruzalem, coś zbudowane jak miasto, zupełnie w sobie skupione. Tam wstępują pokolenia, pokolenia Pańskie", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię, miłosierny Boże, abyśmy zbliżali się z prawdziwą czcią do świętych tajemnic Twoich, z których pełni ", + "id": "Postcommunio" + } + ], + "2025-03-31": [ + { + "body": "*Ps 53:3-4*\nBoże, zbaw mnie w imię Swoje, i mocą Swoją broń mej sprawy. Boże, słuchaj modlitwy mojej, skłoń ucho na słow", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy Cię, abyśmy wiernie obchodząc doroczny post, podobali się Tobie duszą i ciałem.\nPrzez ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*3 Krl 3:16-28.*\nW one dni: przyszły dwie niewiasty wszetecznice do króla i stanęły przed", + "id": "Lectio" + }, + { + "body": "*Ps 30:3*\nBądź mi, Boże, obrońcą, bądź zamkiem warownym, abyś mnie ocalił.\n*Ps 70:1.*\n℣. Boże, do Ciebie się uciekam: Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 2:13-25*\nOnego czasu: Zbliżała się Pascha żydowska i Jezus przyszedł do ", + "id": "Evangelium" + }, + { + "body": "*Ps 99:1-2*\nZ radością wykrzykujcie Bogu, wszystkie ziemie; służcie Panu z weselem! Wśród okrzyków radości stawajcie prz", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiara przez nas złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 18:13, 14*\nOczyść mnie, Panie, od błędów, co przede mną skryte. Także od pychy broń sługę Twego.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, aby przez przyjęcie zbawiennego Sakramentu wzrastała w nas łaska wiecznego Odkupienia.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWysłuchaj łaskawie nasze błagania, prosimy Cię, Panie, a skoro pobudzas", + "id": "Super populum" + } + ], + "2025-04-01": [ + { + "body": "*Ps 54:2-3*\nBoże, usłysz modlitwę moją i nie odsuwaj się od mojej prośby: zwróć się ku mnie i wysłuchaj mnie.\n*Ps 54:3-4", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech wierne zachowanie Wielkiego Postu wyjedna nam postęp w pobożnym życiu i stałą pomoc Twojego mi", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Wyjścia.\n*Wj 32:7-14*\nW one dni: Rzekł Pan do Mojżesza mówiąc: «Idź, zstąp, zgrzeszył lud twój, któryś", + "id": "Lectio" + }, + { + "body": "*Ps 43:26, 2*\nOcknij się, Panie, na pomoc nam powstań i wyzwól nas dla chwały imienia Twego.\n℣. Na własne uszy słyszeliś", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 7:14-31*\nOnego czasu: Gdy upłynęła już połowa świąt, wszedł Jezus do świ", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2-4*\nUfałem, Panu ufałem, a schylił się nade mną i wysłuchał mego wołania, i w usta moje włożył śpiew nowy, pieśń", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 19:6*\nObyśmy się cieszyli z Twojego zwycięstwa i w imię Boga naszego podnieśli sztandary.", + "id": "Communio" + }, + { + "body": "Panie, niechaj przyjęcie tego Sakramentu oczyści nas z grzechu i doprowadzi do Królestwa Niebieskiego.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nZmiłuj się, Panie, nad ludem Twoim i pozwól mu łaskawie odetchnąć wśród", + "id": "Super populum" + } + ], + "2025-04-02": [ + { + "body": "*Ez 36:23-26*\nGdy zajaśnieje świętość moja w was, zgromadzę was ze wszystkich ziem i wyleję na was wodę czystą, i będzie", + "id": "Introitus" + }, + { + "body": "Boże, który nagradzasz sprawiedliwych, a grzesznikom poszczącym udzielasz przebaczenia, zmiłuj się nad nami, którzy Cię ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 36:23-28*\nTo mówi Pan Bóg: Zajaśnieje świętość mego wielkiego imienia, które je", + "id": "LectioL1" + }, + { + "body": "*Ps 38:12, 6*\nPójdźcie, synowie, słuchajcie mnie: nauczę was bojaźni Pańskiej.\n℣. Na Niego patrzcie, abyście się cieszyl", + "id": "GradualeL1" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, niech święta służba napełnia nas radością, gdy umartwiamy się zachowując nakazane pos", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 1:16-19*\nTo mówi Pan Bóg: Obmyjcie się, oczyśćcie się, zabierzcie sprzed oczu mo", + "id": "Lectio" + }, + { + "body": "*Ps 32:12, 6*\nBłogosławiony lud, którego Bogiem jest Pan: naród, który On sobie wybrał na dziedzictwo.\n℣. Przez słowo Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 9:1-38*\nOnego czasu: Przechodząc ujrzał Jezus człowieka ślepego od urodz", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9, 20*\nBłogosławcie, ludy, Panu Bogu naszemu i sławę Jego chwały rozgłoście, bo On dał duszy naszej życie, a no", + "id": "Offertorium" + }, + { + "body": "Pokornie Cię prosimy, wszechmogący Boże, niech ta ofiara oczyści nas z grzechów, przez to bowiem udzielasz nam prawdziwe", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*J 9:11*\nPan uczynił błoto ze śliny i pomazał nim moje oczy i poszedłem, umyłem się i przejrzałem, i uwierzyłem Bogu.", + "id": "Communio" + }, + { + "body": "Panie, Boże nasz, niech Sakrament, który przyjęliśmy, nasyci nas pokarmem duchowym i udzieli doczesnej pomocy.\nPrzez Pan", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPanie, nakłoń miłosierne uszy Twoje na modlitwy błagających Cię i abyś ", + "id": "Super populum" + } + ], + "2025-04-03": [ + { + "body": "*Ps 104:3-4*\nNiech się weseli serce szukających Pana, szukajcie Pana i umacniajcie się, szukajcie zawsze Jego oblicza.\n*", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, niech święta służba napełnia nas radością, gdy umartwiamy się, zachowując nakazane po", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*4 Krl 4:25-38*\n*Elizeusz kładący się na zwłoki zmarłego chłopca, by go wskrzesić, jest t", + "id": "Lectio" + }, + { + "body": "*Ps 73:20, 19, 22*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki.\n℣. Powstań, o Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:11-16*\n*Boleść Matki-Kościoła, który opłakuje swe dzieci pogrążone", + "id": "Evangelium" + }, + { + "body": "*Ps 69:2-4*\nPanie, pośpiesz mi na pomoc; niech się okryją wstydem ci, którzy godzą na Twe sługi.", + "id": "Offertorium" + }, + { + "body": "Oczyść nas, miłosierny Boże, aby modlitwy Twego Kościoła, które są Tobie miłe, gdy towarzyszą pobożnej ofierze, stały si", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nPanie, tylko Twą sprawiedliwość będę głosił, Boże, Ty mnie uczyłeś od mojej młodości: a i w starości, i w ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, nie dozwól, aby niebieskie dary stały się przyczyną\npotępienia dla tych, którzy je przyjęli, skoro u", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBoże, Stwórco i Rządco Swojego ludu, racz oddalić od niego grzechy, któ", + "id": "Super populum" + } + ], + "2025-04-04": [ + { + "body": "*Ps 18:15*\nMyśli serca mojego zawsze przed Tobą, Panie, Obrońco mój i Odkupicielu.\n*Ps 18:2*\nNiebiosa głoszą chwalę Boga", + "id": "Introitus" + }, + { + "body": "Boże, który odnawiasz świat przez niewysłowione tajemnice, spraw, prosimy, aby Kościół Twój rozwijał się przez to, co us", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Królewskiej.\n*3 Krl 17:17-24*\nW one dni: Zachorował syn owej kobiety, pani domu, a choroba była tak si", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nLepiej się uciec do Pana, niż ufność położyć w człowieku.\n℣. Lepiej się uciec do Pana, niż zaufać książętom", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 11:1-45*\nOnego czasu: Zachorował niejaki Łazarz z Betanii, miasteczka Ma", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28, 32*\nTy wybawiasz naród uniżony, a pognębiasz oczy wyniosłe, bo któż prócz Pana jest Bogiem?", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech nas oczyszczą złożone Ci dary i wyjednają nam Twoją stałą łaskawość.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*J 11:33, 35, 43, 44, 39*\nGdy ujrzał Pan siostry Łazarza płaczące u grobu, zapłakał wobec żydów, i zawołał: Łazarzu, wyj", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech uczestnictwo w tym Sakramencie zawsze nas wyzwala od naszych grzechów i broni we wszelkich prz", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj nam, prosimy Cię, wszechmogący Boże, abyśmy będąc świadomi własnej ", + "id": "Super populum" + } + ], + "2025-04-05": [ + { + "body": "*Iz 55:1*\nWszyscy, co pragniecie, zbliżcie się do wód, mówi Pan: a którzy srebra nie macie, chodźcie i pijcie w radości.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nasze gorliwe oddanie przynosi owoce dzięki Twojej łasce: wtedy bowiem podjęte posty przyniosą", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 49:8-15*\n*Izajasz zapowiada Izraelitom wybawienie z niewoli i powrót do Ziem Obi", + "id": "Lectio" + }, + { + "body": "*Ps 9:14, 1-2*\nTobie, o Panie, biedny się poleca: sierocie Tyś pomocnikiem.\n℣. Dlaczego z dala stoisz, o Panie, w czasac", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:12-20*\n*Na Wielkanoc wołanie «Lumen Christi – Światłość Chrystusa» wyr", + "id": "Evangelium" + }, + { + "body": "*Ps 17:3*\nPan stał się opoką moją i ucieczką, moim wybawicielem, będę mu ufał.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij nasze ofiary i przebłagany przez nie zwróć łaskawie ku Sobie nawet oporną naszą wolę.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", + "id": "Prefatio" + }, + { + "body": "*Ps 22:1-2*\nPan jest moim Pasterzem: nie brak mi niczego; na zielonych pastwiskach pozwala mi leżeć; prowadzi mnie nad w", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech nas oczyści Twój Sakrament i mocą swego działania uczyni miłymi Tobie.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBoże, Ty okazujesz ufającym Tobie raczej miłosierdzie niż gniew; daj na", + "id": "Super populum" + } + ], + "2025-04-06": [ + { + "body": "*Ps 42:1-2*\nWymierz mi, Boże, sprawiedliwość i broń mojej sprawy przeciw niezbożnemu ludowi, wybaw mię od człowieka pods", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, wejrzyj łaskawie na rodzinę sług Twoich i w Swojej hojności rządź ich ciałami oraz strze", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 9:11-15*\n*Ofiara Chrystusa, która zastąpiła ofiary Stareg", + "id": "Lectio" + }, + { + "body": "*Ps 142:9, 10*\nOcal mnie, Panie, od mych nieprzyjaciół: naucz mię pełnić wolę Twoją.\n*Ps 17:48-49*\nO Panie, mój wybawici", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:46-59*\nOnego czasu: Mówił Jezus rzeszom żydowskim: «Kto z was dowiedzi", + "id": "Evangelium" + }, + { + "body": "*Ps 118:17, 107*\nZ całego serca będę Cię chwalił, Panie: czyń dobrze słudze Twojemu, aby żył i słów Twych przestrzegał. ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię Panie, niech ta ofiara oswobodzi nas z więzów naszych nałogów i wyjedna nam dary Twojego miłosierdzia.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*1 Kor 11:24, 25*\nTo jest Ciało moje, które za was będzie wydane; ten jest kielich Nowego Przymierza we Krwi mojej. To c", + "id": "Communio" + }, + { + "body": "Przybądź nam z pomocą Panie, Boże nasz i otaczaj nieustanną opieką tych, których pokrzepiłeś przez Twoje tajemnice.\nPrze", + "id": "Postcommunio" + } + ], + "2025-04-07": [ + { + "body": "*Ps 55:2*\nZmiłuj się nade mną, Boże, bo depcze mnie człowiek, uciska mnie w nieustannej walce.\n*Ps 55:3*\nWrogowie moi ni", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, uświęć nasze posty i udziel nam miłościwie odpuszczenia wszystkich win.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jonasza.\n*Jon 3:1-10*\nW one dni: Stało się słowo Pańskie do Jonasza po wtóre, mówiąc: «Wstań, ", + "id": "Lectio" + }, + { + "body": "*Ps 53:4, 3*\nBoże, słuchaj modlitwy mojej, podaj ucho na słowa ust moich.\n℣. Boże, zbaw mnie w imię Swoje, mocą Swoją br", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 7:32-39*\nOnego czasu: posłali arcykapłani i faryzeusze sługi, aby pojmać", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nPowróć, o Panie, wyrwij duszę moją, przez miłosierdzie Twoje mnie wybaw.", + "id": "Offertorium" + }, + { + "body": "Panie, Boże nasz, spraw, aby ta zbawienna ofiara oczyściła nas z grzechów i wyjednała nam przychylność Twego majestatu.\n", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 23:10*\nPan Zastępów: On sam Królem chwały.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech nas oczyści i uleczy zbawienne uczestnictwo w Twoim Sakramencie.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj, Panie, ludowi Twemu zdrowie duszy i ciała, aby oddając się dobrym ", + "id": "Super populum" + } + ], + "2025-04-08": [ + { + "body": "*Ps 26:14.*\nWyczekuj Pana i bądź dzielny, niech się Twe serce umocni i oczekuj Pana.\n*Ps 26:1*\nPan światłością i zbawien", + "id": "Introitus" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze posty; niech oczyszczając nas z grzechów uczynią godnymi Twojej łaski i doprowadzą d", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 14:27-42*\nW one dni: Zebrali się Babilończycy u króla i rzekli do niego: «Wydaj n", + "id": "Lectio" + }, + { + "body": "*Ps 42:1, 3*\nWymierz mi, Boże, sprawiedliwość: wybaw mię od człowieka podstępnego i niegodziwego.\n℣. Ześlij Swą światłoś", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 7:1-13*\nOnego czasu: Obchodził Jezus Galileję, bo nie chciał przebywać w", + "id": "Evangelium" + }, + { + "body": "*Ps 9:11-12, 13*\nZaufają Tobie znający Twe imię, bo nie opuszczasz, Panie, tych, co Cię szukają; psalm śpiewajcie Panu, ", + "id": "Offertorium" + }, + { + "body": "Przynosimy Ci, Panie, dary ofiarne; niech będą one dla nas znakiem pociechy w doczesności, abyśmy nie stracili nadziei o", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 24:22*\nWybaw mię, Boże Izraela, ze wszystkich ucisków moich.", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy pełniąc nieustannie służbę Bożą, mogli zbliżać się do niebieskich darów.\nPrzez", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nProsimy Cię, Panie, daj nam wytrwale służyć Ci według Twojej woli, aby ", + "id": "Super populum" + } + ], + "2025-04-09": [ + { + "body": "*Ps 17:48-49*\nWybawicielu od gniewnych narodów: Ty mnie wywyższysz ponad przeciwników moich, od gwałtownika mię wyrwiesz", + "id": "Introitus" + }, + { + "body": "Boże, uświęć ten post i oświeć miłościwie serca Twoich wiernych, a w dobroci Twojej wysłuchaj łaskawie próśb tych, który", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 19:1-2, 11-19, 25*\nW one dni: Rzekł Pan do Mojżesza, mówiąc: «Mów do całego zgromadz", + "id": "Lectio" + }, + { + "body": "*Ps 29:2-4*\nSławić Cię będę, Panie, bo mnie wybawiłeś i nie sprawiłeś ze mnie uciechy mym wrogom.\n℣. Panie, Boże mój, do", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:22-38*\nOnego czasu: Przypadła w Jerozolimie uroczystość Poświęcenia Ś", + "id": "Evangelium" + }, + { + "body": "*Ps 58:2*\nOd nieprzyjaciół moich wyrwij mnie, mój Boże, zachowaj mię, Panie, od powstających na mnie.", + "id": "Offertorium" + }, + { + "body": "Spraw, miłosierny Boże, abyśmy Ci złożyli ofiarę przebłagania i chwały ze szczerym oddaniem.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 25:6-7*\nRęce moje umywam na znak niewinności i ołtarz Twój, Panie, obchodzę, by jawnie ogłaszać chwałę i rozpowiadać", + "id": "Communio" + }, + { + "body": "Po przyjęciu błogosławionego daru niebieskiego, pokornie Cię prosimy, wszechmogący Boże, aby ten dar stał się źródłem ła", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPrzychyl się ku prośbom naszym, wszechmogący Boże, a skoro pozwalasz na", + "id": "Super populum" + } + ], + "2025-04-10": [ + { + "body": "*Dn 3:31*\nWszystko, coś na nas dopuścił, o Panie, według sprawiedliwego wyroku nas spotkało; bośmy zgrzeszyli przeciw To", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, aby godność natury ludzkiej zraniona przez nieumiarkowanie została przywrócona przez ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:25, 34-45*\nW one dni Azariasz modlił się do Pana, mówiąc: Prosimy Cię, Panie, B", + "id": "Lectio" + }, + { + "body": "*Ps 95:8-9*\nOfiary nieście i wchodźcie do Jego przedsieni: uczcijcie Pana w świętym Jego majestacie.\n*Ps 28:9*\nGłos Pana", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:36-50*\nOnego czasu: Pewien faryzeusz zaprosił Jezusa na posiłek ze", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\nNad rzekami Babilonu, tam siedzieliśmy i płakali, gdyśmy wspominali ciebie, Syjonie.", + "id": "Offertorium" + }, + { + "body": "Panie, Boże nasz, Twoją jest wolą, abyśmy składali ofiary imieniu Twojemu z tego, coś stworzył dla podtrzymania naszej u", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nPomnij, Panie, na Twoje słowo dla sługi Twojego, przez które mi dałeś nadzieję: w ucisku moim to pociechą", + "id": "Communio" + }, + { + "body": "Cośmy ustami spożyli, daj, Panie, przyjąć czystą duszą, a ten dar doczesny niech się nam stanie lekarstwem na wieczność.", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBądź miłościw ludowi Twojemu, prosimy, Panie, aby odrzuciwszy to, co si", + "id": "Super populum" + } + ], + "2025-04-11": [ + { + "body": "*Ps 30:10, 16, 18*\n*Psalm 30 to proroctwo o agonii Chrystusa i Jego niewzruszonej ufności. Słowa Jezusowe, «Ojcze w ręce", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wlej w serca nasze Twą łaskę, abyśmy poskramiając nasze wady dobrowolną pokutą, raczej za życia się ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nBoże, podczas Twej męki, według przepowiedni Symeona, miecz boleści przeszył najs", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 17:13-18*\nW one dni rzekł Jeremiasz: Panie, wszyscy, co zapominają o Tobie, b", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nWprawdzie przyjaźnie odzywają się do mnie wrogowie moi, a przecież w zawziętości swojej gotują mi zdradę.", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 11:47-54*\nOnego czasu: Zebrali przedniejsi kapłani i faryzeusze Radę prz", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich; nie wydaj mnie moim ciemiężcom, a dam odpowie", + "id": "Offertorium" + }, + { + "body": "Miłosierny Boże, spraw, abyśmy zawsze służyli godnie Twoim ołtarzom i przez stałe w nich uczestnictwo osiągnęli zbawieni", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nPrzedkładamy Ci, Panie Jezu Chryste, modlitwy i ofiary i pokornie błagamy, abyśmy", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nNie wydawaj mnie, Panie, na łup złej woli moich prześladowców, bo świadkowie fałszywi przeciw mnie powstali, ", + "id": "Communio" + }, + { + "body": "Panie, niech nas nie opuszcza stała opieka spożytej ofiary i niech zawsze oddala od nas wszelkie niebezpieczeństwa.\nPrze", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nPanie Jezu Chryste, niech ofiara, z której pożywaliśmy czcząc z oddaniem przebici", + "id": "Commemoratio Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWszechmogący Boże, dozwól, abyśmy zabiegając o Twoją łaskawą opiekę, zo", + "id": "Super populum" + } + ], + "2025-04-12": [ + { + "body": "*Ps 30:10, 16, 18*\n*Psalm 30 to proroctwo o agonii Chrystusa i Jego niewzruszonej ufności. Słowa Jezusowe, «Ojcze w ręce", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech lud Tobie oddany wzrasta w dziecięcej uległości, aby oświecony przez święte czynności w tym wi", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 18:18-23*\n*Jeremiasz jest typem biblijnym niesłusznie prześladowanego Chrystu", + "id": "Lectio" + }, + { + "body": "*Ps 34:20, 22*\nWprawdzie przyjaźnie odzywają się do mnie wrogowie moi, a przecież w zawziętości swojej gotują mi zdradę.", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:10-36*\n*Uroczysty wjazd Pana Jezusa do Jeruzalem jest dla narodu żydo", + "id": "Evangelium" + }, + { + "body": "*Ps 118:12, 121, 42*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich; nie wydaj mnie moim ciemiężcom, a dam odpowie", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uwolnij nas łaskawie od wszelkich przewinień i niebezpieczeństw, skoro pozwalasz nam uczestniczyć w ", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 26:12*\nNie wydawaj mnie, Panie, na łup złej woli moich prześladowców, bo świadkowie fałszywi przeciw mnie powstali, ", + "id": "Communio" + }, + { + "body": "Darem Bożym szczodrze nasyceni prosimy Cię, Panie, Boże nasz, abyśmy zawsze czerpali zeń życie.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nNiech prawica Twoja, Panie, ochrania lud błagający, niech go łaskawie o", + "id": "Super populum" + } + ], + "2025-04-13": [ + { + "body": "*Kapłan, pomijając aspersję, podchodzi wraz z asystą by pobłogosławić palmy lub gałązki oliwne lub gałązki innych drzew,", + "id": "Benedictio Palmorum" + }, + { + "body": "*Celebrans rozdaje poświęcone palmy najpierw duchowieństwu, potem ministrantom, w końcu wiernym lub ich przedstawicielom", + "id": "De distributione ramorum" + }, + { + "body": "*Po rozdaniu palm diakon kładzie księgę Ewangelii na ołtarzu, a Kapłan nakłada kadzidło do kadzielnicy, po czym diakon ś", + "id": "De lectione Evangelica" + }, + { + "body": "*Po nałożeniu przez Kapłana kadzidła do kadzielnicy, diakon zwraca się do wiernych i śpiewa:*\n\n℣. Idźmy w pokoju.\n\n*Wier", + "id": "De processione cum ramis benedictis" + }, + { + "body": "\n*Chór:*\nHołd Tobie, sława i cześć, o Chryste Królu i Zbawco: Któremu niegdyś chłopięcy chór nabożnie śpiewał Hosanna.\n*", + "id": "Hymnus ad Christum Regem" + }, + { + "body": "*Ps 21:20,22*\nO Panie, nie stój w oddaleniu: Pomocy moja, spiesz mi na ratunek. Wybaw mnie z lwiej paszczy i mnie biedne", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, chcąc dać rodzajowi ludzkiemu do naśladowania przykład pokory, sprawiłeś, że Zbawiciel nasz ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 2:5-11*\nBracia: To bowiem rozumiejcie, co i w Chrystusie Jezu", + "id": "Lectio" + }, + { + "body": "*Ps 72:24, 1-3*\nTyś ujął mą prawicę; po myśli Twojej wyprowadzisz mnie i wreszcie przyjmiesz mnie do chwały.\n℣. Jak dobr", + "id": "Graduale" + }, + { + "body": "Pasja Pana naszego Jezusa Chrystusa według Mateusza.\n*Mt 26:36-75; 27:1-60*\n*J = słowa Chrystusa; C = opowiadanie Ewange", + "id": "Evangelium" + }, + { + "body": "*Ps 68:21-22*\nUrąganiem złamane me serce i sił mi zabrakło. Na współczującego czekałem, ale go nie było, i na pocieszają", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, dozwól, by dar złożony przed obliczem Twego majestatu wyjednał nam łaskę gorliwości w służbie Twojej", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Mt 26:42*\nOjcze, jeżeli ten kielich nie może Mnie minąć, ale mam Go wypić, niech się dzieje wola Twoja.", + "id": "Communio" + }, + { + "body": "Działanie tego Sakramentu, o Panie, niechaj oczyści nas z grzechów i spełni nasze słuszne pragnienia.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-04-14": [ + { + "body": "*Ps 34:1-2*\nRozpraw się, Panie, z tymi, co mnie krzywdzą, uderz na tych, co na mnie natarli, chwyć broń i tarczę, a pows", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wśród tak licznych przeciwności upadamy wskutek własnej niemocy; prosimy Cię, spraw, abyśmy otrzymali", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 50:5-10*\n*Izajasz przepowiada biczowanie i znieważanie Chrystusa. Wszystkie te u", + "id": "Lectio" + }, + { + "body": "*Ps 34:23,3*\nPrzebudź się, o Panie, powstań ku mojej obronie, wglądnij w mą sprawę, Boże mój i Panie.\n℣. Dobądź miecza i", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:1-9*\nNa sześć dni przed Paschą przyszedł Jezus do Betanii, gdzie umar", + "id": "Evangelium" + }, + { + "body": "*Ps 142:9-10*\nOcal mnie od nieprzyjaciół moich, Panie, do Ciebie się uciekam. Naucz mnie pełnić wolę Twoją, albowiem jes", + "id": "Offertorium" + }, + { + "body": "Panie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej czystości dojść do ich Stwórcy.\nP", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 34:26*\nNiech się zmieszają i zawstydzą wszyscy, którzy się cieszą z mego nieszczęścia, niech się okryją wstydem i wz", + "id": "Communio" + }, + { + "body": "Panie, niech Twoje święte tajemnice obudzą w nas Boży zapał, abyśmy czerpali radość zarówno z ich sprawowania, jak z owo", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWspomóż nas, Boże, Zbawicielu nasz, i daj, abyśmy z radością doczekali ", + "id": "Super populum" + } + ], + "2025-04-15": [ + { + "body": "*Ga 6:14*\nA myśmy się chlubić powinni Krzyżem Pana naszego Jezusa Chrystusa; w Nim jest zbawienie, życie i zmartwychwsta", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, daj nam tak sprawować misteria Męki Pańskiej, abyśmy mogli otrzymać przebaczenie.\nPrzez tego", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 11:18-20*\nW one dni: Rzekł Jeremiasz: Panie, ukazałeś mi, a poznałem: wtedy o", + "id": "Lectio" + }, + { + "body": "*Ps 34:13; 34:1-2*\nJa zaś, gdy mi dokuczali, wdziewałem wór pokutny i duszę moją trapiłem postem, i w sercu zanosiłem mo", + "id": "Graduale" + }, + { + "body": "\n\n \nPasja Pana naszego Jezusa Chrystusa według Marka.\n\n*Mk 14:32-72; 15, 1-46*\n*J = słowa Chrystusa; C = opowiadanie Ewa", + "id": "Evangelium" + }, + { + "body": "*Ps 139:5*\nZachowaj mnie, Panie, od ręki grzesznika, strzeż mnie od ludzi okrutnych.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech te ofiary składane wśród uzdrawiającego postu, skutecznie przyczynią się do naszego zbawienia.", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 68:13-14*\nSiedzący w bramach wyglądają na mnie i lżą mnie pijący wino, ja zaś modły zanoszę do Ciebie, Panie, gdyś p", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, niech Twoje uświęcające tajemnice uleczą nasze wady i staną się dla nas rękojmią życia wiecznego.\nPrz", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBoże, niech Twoje miłosierdzie oczyści nas ze wszystkich ukrytych pozos", + "id": "Super populum" + } + ], + "2025-04-16": [ + { + "body": "*Flp 2:10,8,11*\nNa imię Jezusa niech zgina się wszelkie kolano mieszkańców niebios, ziemi i podziemia, gdyż Pan stał się", + "id": "Introitus" + }, + { + "body": "Dręczeni nieusatnnie naszymi występkami prosimy Cię, wszechmogący Boże, aby nas wyzwoliła męka Jednorodzonego Syna Twego", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 63:1-7*\n*Proroctwo zawarte w lekcji jest dialogiem między zbroczonym krwią wojow", + "id": "LectioL1" + }, + { + "body": "*Ps 68:18; 68:2-3*\nNie kryj oblicza Twego przed Swym sługą, rychło mnie wysłuchaj, bo jestem w ucisku.\n℣. Wybaw mnie, Bo", + "id": "GradualeL1" + }, + { + "body": "Boże, z Twojej woli Twój Syn poniósł za nas śmierć na drzewie Krzyża, aby uwolnić nas spod władzy szatana; dozwól nam, s", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 53:1-12*\n*Izajasz tak dokładnie przepowiedział szczegóły Męki Pańskiej, że nazwa", + "id": "Lectio" + }, + { + "body": "*Ps 101:2-5,14*\nPanie, wysłuchaj modlitwę moją, a wołanie moje niech do Ciebie przyjdzie.\n℣. Nie kryj przede mną Twego o", + "id": "Graduale" + }, + { + "body": "\n\n \nPasja Pana naszego Jezusa Chrystusa według Łukasza.\n\n*Łk 22:39-71; 23:1-53*\n*J = słowa Chrystusa; C = opowiadanie Ew", + "id": "Evangelium" + }, + { + "body": "*Ps 101:2-3*\nPanie, wysłuchaj modlitwę moją, a wołanie moje niech do Ciebie przyjdzie: nie kryj przede mną Twojego oblic", + "id": "Offertorium" + }, + { + "body": "*Sekreta i pokomunia przypominają, że we Mszy świętej odnawia się w sakramentalny sposób Męka Pańska.*\nProsimy Cię, Pani", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Ps 10:13,14*\nNapój mój mieszam ze łzami, boś mnie podniósł i strącił, a ja usycham jak trawa, Ty zaś, o Panie, trwasz n", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, wlej w serca nasze niezłomną wiarę, że przez doczesną śmierć Twojego Syna, której znakiem są czcigodn", + "id": "Postcommunio" + }, + { + "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWejrzyj łaskawie, prosimy Cię, Panie, na tę rodzinę Twoją, za którą Pan", + "id": "Super populum" + } + ], + "2025-04-17": [ + { + "body": "*Ga 6:14*\nA myśmy się chlubić powinni Krzyżem Pana naszego Jezusa Chrystusa; w Nim jest zbawienie, życie i zmartwychwsta", + "id": "Introitus" + }, + { + "body": "Boże, od Ciebie Judasz otrzymał karę za swoją zbrodnię, a łotr nagrodę za wyznanie winy; daj nam doznać skutków miłosier", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 11:20-32*\nBracia: Gdy się tedy wespół schodzicie, nie jest", + "id": "Lectio" + }, + { + "body": "*Flp 2:8-9*\nChrystus stał się dla nas posłuszny aż do śmierci, a była to śmierć krzyżowa.\n℣. Dlatego i Bóg wywyższył Go:", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 13:1-15*\nPrzed świętym dniem Paschy Jezus, wiedząc, że nadeszła godzina ", + "id": "Evangelium" + }, + { + "body": "*Po kazaniu odbywa się obrzęd umywania nóg, Celebrans zdejmuje ornat, przepasuje się ręcznikiem i umywa nogi dwunastu mę", + "id": "Maundi" + }, + { + "body": "*Ps 117:16-17*\nPrawica Pańska moc okazała, prawica Pańska mnie dźwignęła; nie umrę, lecz będę żył i głosił dzieła Pana.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, Ojcze święty, wszechmogący, wieczny Boże, niech ofiarę naszą uczyni Ci przyjemną Ten, który w dniu d", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "Zjednoczeni w świętych obcowaniu obchodzimy uroczyście prześwięty dzień, w którym Pan nasz Jezus Chrystus został za nas ", + "id": "Communicantes" + }, + { + "body": "*J 13:12,13,15*\nPan Jezus, gdy skończył wieczerzę z uczniami swoimi, umył nogi ich i rzekł: «Czy wiecie, com wam uczynił", + "id": "Communio" + }, + { + "body": "Posileni życiodajnym pokarmem prosimy Cię, Panie Boże nasz, aby najświętsza tajemnica, którą sprawujemy w doczesności, d", + "id": "Postcommunio" + }, + { + "body": "*Po skończeniu Mszy św. kapłan zmienia ornat na kapę i okadziwszy Najświętszy Sakrament przenosi Go w uroczystej procesj", + "id": "Post Missam" + }, + { + "body": "\n*W pierwszych wiekach Kościoła zawsze po skończeniu Mszy św. zdejmowano z ołtarza obrusy. Dzisiaj jednak czynność ta ma", + "id": "Denudatione altaris" + } + ], + "2025-04-18": [ + { + "body": "\n*Celebrans i asystujący, ubrani w alby i czarne stuły, w zupełnej ciszy udają się do ołtarza i padają przed nim na twar", + "id": "Lectiones" + }, + { + "body": "*Następnie czyta się lub śpiewa opis Męki Pańskiej według św. Jana, który był naocznym świadkiem śmierci krzyżowej Zbawi", + "id": "Passio" + }, + { + "body": "*W starożytności «modlitwa wiernych», to jest ochrzczonych, odbywała się po odesłaniu katechumenów i stanowiła zakończen", + "id": "Oratio Fidelium" + }, + { + "body": "\n*Po skończeniu modlitw celebrans zdejmuje kapę, asystujący zaś swoje szaty liturgiczne. Diakon udaje się do zakrystii, ", + "id": "Crucis Adoratione" + }, + { + "body": "*Po przybyciu do głównego ołtarza diakon umieszcza Najświętszy Sakrament na korporale, a ministranci stawiają świece obo", + "id": "CommunioQ" + } + ], + "2025-04-19": [ + { + "body": "*Aby nam dopomóc w poznaniu rzeczy niewidzialnych, Kościół zwykle posługuje się znakami materialnymi; gdy mamy przeżyć f", + "id": "Benedictio ignis" + }, + { + "body": "*Jeden z ministrantów przynosi przed celebransa paschał. Celebrans żłobi rylcem na świecy paschalnej krzyż, pierwszą i o", + "id": "De benedictione cerei Paschalis" + }, + { + "body": "*Do ciemnego kościoła wnosi się paschał – symbol Chrystusa zmartwychwstałego. Procesja ze światłem to obrazowe przedstaw", + "id": "De solemni processione" + }, + { + "body": "*Teraz diakon bierze księgę i prosi o błogosławieństwo celebransa:*\n\nRacz pobłogosławić, ojcze.\n\n*Celebrans odpowiada:*\n", + "id": "De praeconio paschali" + }, + { + "body": "*Następują czytania przygotowujące nas do poświęcenia wody chrzcielnej i odnowienia przyrzeczeń złożonych na Chrzcie świ", + "id": "De lectionibus" + }, + { + "body": "*W najważniejszych swoich obrzędach Kościół wzywa zawsze wstawiennictwa Wszystkich Świętych. Czyni to również przystępuj", + "id": "De prima parte Litaniarum" + }, + { + "body": "℣. Pan z wami. \n\r℟. I z duchem twoim.\nMódlmy się.\nWszechmogący, wiekuisty Boże, bądź obecny w tych tajemnicach Twej w", + "id": "De benedictione aquae baptismalis" + }, + { + "body": "*Celebrans wkłada białą kapę i okadziwszy paschał stojąc przed nim lub na kazalnicy przemawia do wiernych:*\n\n\n\n\nNajmilsi", + "id": "De renovatione promissionum baptismatis" + }, + { + "body": "*Po odnowieniu przyrzeczeń Chrztu świętego kantorzy śpiewają drugą część litanii do Wszystkich Świętych. Wierni klęcząc ", + "id": "De altera parte Litaniarum" + }, + { + "body": "*Odnowiwszy w sobie łaskę Chrztu, który nas wszczepił w misterium śmierci i Zmartwychwstania Pańskiego, składamy ofiarę ", + "id": "De Missa solemni Vigiliae paschalis" + }, + { + "body": "℣. Pan z wami. \n\r℟. I z duchem twoim.\nMódlmy się.\nBoże, który tę najświętszą noc uświetniasz chwałą Zmartwychwstania ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:1-4*\nBracia: Jeżeli razem z Chrystusem powstaliście z martwy", + "id": "Lectio" + }, + { + "body": "*Ps 116*\n℣. Chwalcie Pana, wszystkie narody, wysławiajcie Go, wszystkie ludy.\n℣. Bo Jego miłosierdzie nad nami utwierdzo", + "id": "Tractus" + }, + { + "body": "*Do śpiewania ewangelii nie niesie się świec, ponieważ przyświeca paschał.*\n\nCiąg dalszy ☩ Ewangelii świętej według Mate", + "id": "Evangelium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych wraz z darami ofiarnymi: aby ofiara, która wzięła początek w misterium pa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Po Komunii wiernych chór zaczyna śpiewać Laudes: poranną modlitwę Kościoła, skróconą do jednego psalmu i kantyku.*\n\n\nAn", + "id": "Pro Laudibus" + }, + { + "body": "℣. Pan z wami. \n\r℟. I z duchem twoim.\nMódlmy się.\nTchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zje", + "id": "Postcommunio" + }, + { + "body": "℣. Idźcie, ofiara spełniona, alleluja, alleluja.\n℟. Bogu dzięki, alleluja, alleluja.", + "id": "Conclusio" + } + ], + "2025-04-20": [ + { + "body": "*Ps 138:18,5-6*\n*Zmartwychwstały Chrystus zwraca się do Ojca Niebieskiego w akcie adoracji i miłości:*\nZmartwychwstałem ", + "id": "Introitus" + }, + { + "body": "Boże, Ty w dniu dzisiejszym pokonałeś śmierć i otworzyłeś nam bramy wieczności przez Jednorodzonego Syna Twego; racz wsp", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 5:7-8*\n*W Starym Testamencie przed Wielkanocą usuwano z do", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24; 117:1*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Dziękujcie Panu, bo je", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:1-7*\nOnego czasu: Maria Magdalena i Maria Jakubowa, i Salome nakupi", + "id": "Evangelium" + }, + { + "body": "*Ps 75:9-10*\n*Wspominamy trzęsienie ziemi, które towarzyszyło Zmartwychwstaniu Chrystusa.*\nPrzelękła się ziemia i zamilk", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych wraz z darami ofiarnymi: aby ofiara, która wzięła początek w misterium pa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*1 Kor 5:7-8*\nNa Paschę naszą został ofiarowany Chrystus, alleluja; świętujmy tedy w przaśnikach szczerości i prawdy, al", + "id": "Communio" + }, + { + "body": "Tchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zjednocz tych, których nasyciłeś wielkanocnym Sakramente", + "id": "Postcommunio" + } + ], + "2025-04-21": [ + { + "body": "*Wj 13:5; 13:9*\nWprowadził was Pan do ziemi opływającej mlekiem i miodem, alleluja: aby też prawo Pańskie zawsze było na", + "id": "Introitus" + }, + { + "body": "Boże, który w uroczystość paschalną zgotowałeś światu uzdrowienie, prosimy Cię, obdarz Swój lud darami niebieskimi, aby ", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 10:37-43*\nW one dni: Piotr, stojąc pośród rzeszy, rzekł: «Mężowie, bracia! Wiecie, ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24; 117:2*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Teraz niech mówi dom I", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 24:13-35*\nOnego czasu: Dwaj z uczniów Jezusa tegoż dnia szli do mias", + "id": "Evangelium" + }, + { + "body": "*Mt 28:2; 28:5-6*\nAnioł Pański zstąpił z nieba i rzekł niewiastom: Ten, którego szukacie, zmartwychwstał, jak zapowiedzi", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych wraz z darami ofiarnymi; aby ofiara, która wzięła początek w misterium pa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Łk 24:34*\nPowstał Pan z martwych i ukazał się Piotrowi, alleluja.", + "id": "Communio" + }, + { + "body": "Tchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zjednocz tych, których nasyciłeś wielkanocnym Sakramente", + "id": "Postcommunio" + } + ], + "2025-04-22": [ + { + "body": "*Syr 15:3-4*\nPan ich napoił wodą mądrości, alleluja, alleluja; tak ich umocni, że się nie zachwieją, alleluja; i na wiek", + "id": "Introitus" + }, + { + "body": "Boże, który ciągle wzbogacasz Swój Kościół nowym potomstwem, daj sługom Twoim, aby przestrzegali w życiu zobowiązań płyn", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 13:16; 13:26-33*\nW one dni: Powstał Paweł i nakazując ręką milczenie rzekł: «Mężowi", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24;106:2*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n*Ps 106:2*\n℣. Niechaj mówi", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 24:36-47*\nOnego czasu: Stanął Jezus w pośrodku uczniów swoich i rzek", + "id": "Evangelium" + }, + { + "body": "*Ps 17:14; 17:16*\nZagrzmiał Pan na niebiosach, Najwyższy dał słyszeć swój głos; i otworzyły się źródła wody, alleluja.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich złożone, a nabożne sprawowanie służby Twojej niech na", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Kol 3:1-2*\nJeżeli razem z Chrystusem powstaliście z martwych, szukajcie tego, co w górze jest, gdzie Chrystus siedzi po", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, aby skutki Komunii wielkanocnej przetrwały na zawsze w naszych duszach.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-04-23": [ + { + "body": "*Mt 25:34*\nPójdźcie, błogosławieni Ojca mego, i posiądźcie Królestwo, alleluja, zgotowane wam od założenia świata, allel", + "id": "Introitus" + }, + { + "body": "Boże, który co roku uweselasz nas obchodem Zmartwychwstania Pańskiego, spraw miłościwie, abyśmy obchodząc doczesne urocz", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 3:13-15; 3:17-19*\nW one dni: Piotr otwierając swe usta rzekł: «Mężowie izraelscy i ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24; 117:16*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Prawica Pańska moc ok", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 21:1-14*\nOnego czasu: Ukazał się znowu Jezus uczniom nad Morzem Tyberiad", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nPan otworzył bramy nieba; jak deszcz im spuścił mannę na pokarm; obdarzył ich chlebem niebieskim; chleb An", + "id": "Offertorium" + }, + { + "body": "Wśród radości wielkanocnych składamy Ci, Panie, tę ofiarę, którą Kościół Twój cudownie karmi się i odżywia.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Rz 6:9*\n*W Komunii świętej przyjmujemy Ciało Chrystusa zmartwychwstałego, które jest zadatkiem naszego życia wiecznego.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niechaj pełne czci przyjęcie Twojego Sakramentu oczyści nas z pozostałości starego człowieka i przem", + "id": "Postcommunio" + } + ], + "2025-04-24": [ + { + "body": "*Mdr 10:20-21*\nZwycięską rękę Twą, Panie, jednomyślnie wychwalali, alleluja, bo mądrość otworzyła usta niemych, a języki", + "id": "Introitus" + }, + { + "body": "Boże, który zjednoczyłeś różne narody w wyznawaniu Twojego imienia, daj, aby ci, co się odrodzili w wodzie Chrztu, zacho", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 8:26-40*\n*Bez pomocy diakona Filipa Etiopczyk nigdy by nie rozumiał proroctw Izajas", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24; 117:22-23*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Kamień, odrzucony ", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:11-18*\nOnego czasu: Maria stała u grobu zewnątrz i płakała. płacząc n", + "id": "Evangelium" + }, + { + "body": "*Wj 13:5*\nW dniu uroczystości waszej, mówi Pan, wprowadzę was do ziemi opływającej mlekiem i miodem, alleluja.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij łaskawie dary Swoich ludów, aby odrodzone przez wyznanie Twojego imienia i Chrzest osiągnęł", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*1 P 2:9*\nLudu nabyty, opowiadaj wielkie sprawy Jego, alleluja: On ciebie wezwał z ciemności ku swojej przedziwnej świat", + "id": "Communio" + }, + { + "body": "Wysłuchaj, Panie, modlitwy nasze, aby to święte i zbawienne zjednoczenie było nam pomocą w życiu doczesnym i wyjednało r", + "id": "Postcommunio" + } + ], + "2025-04-25": [ + { + "body": "*Ps 77:53*\nPan wiódł ich bezpiecznie, alleluja, a wrogów ich morze pokryło, alleluja, alleluja, alleluja.\n*Ps 77:1*\nSłuc", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który ustanowiłeś misterium paschalne zawierając z ludzkością przymierze przebaczenia, udzie", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 3:18-22*\n*Chrystus zstąpił do otchłani, aby sprawiedliwym Starego Testam", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:24; 117:26-27*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Błogosławiony, któ", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 28:16-20*\nOnego czasu: Jedenastu uczniów poszło do Galilei, na górę", + "id": "Evangelium" + }, + { + "body": "*Wj 12:14*\nTen dzień będzie wam na pamiątkę, alleluja, i będziecie go obchodzić jako święto uroczyste dla Pana przez wsz", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij miłościwie dary, które składamy jako wynagrodzenie za grzechy odrodzonych przez Chrzest ora", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 28:18-19*\n*Każda Komunia wkłada na nas obowiązek niesienia w świat Chrystusa i Jego nauki.*\nDana mi jest wszelka wła", + "id": "Communio" + }, + { + "body": "Wejrzyj, prosimy Cię, Panie, na lud Swój, a skoro raczyłeś go odrodzić przez wiekuiste tajemnice, racz mu odpuścić winy ", + "id": "Postcommunio" + } + ], + "2025-04-26": [ + { + "body": "*Ps 4:43*\nPan wyprowadził lud swój z radością, alleluja, z weselem swoich wybranych, alleluja, alleluja.\n*Ps 4:1*\nChwalc", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy mocą uroczystości paschalnych, które ze czcią obchodziliśmy, mogli dojść d", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:1-10*\nNajmilsi: Usunąwszy wszelką złość oraz wszelki podstęp, obłudę, ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*7:24*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy, alleluja.\n*Ps 112:1*\nChwalcie, o dzie", + "id": "Graduale" + }, + { + "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:1-9*\nOnego czasu: Pierwszego dnia tygodnia rankiem, gdy jeszcze był m", + "id": "Evangelium" + }, + { + "body": "*Ps 7:26-27*\nBłogosławiony, który przybywa w imię Pańskie; błogosławimy wam z Pańskiego domu. Pan jest Bogiem i zajaśnia", + "id": "Offertorium" + }, + { + "body": "Dozwól nam, prosimy Cię, Panie, radować się zawsze tajemnicą paschalną, a trwałe działanie łaski Odkupienia niech nas pr", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Ga 3:27*\nWszyscy, którzyście zostali ochrzczeni w Chrystusie, przyoblekliście się w Chrystusa, alleluja.", + "id": "Communio" + }, + { + "body": "Umocnieni darem naszego Odkupienia prosimy Cię, Panie, aby dzięki temu Sakramentowi wiecznego zbawienia prawdziwa wiara ", + "id": "Postcommunio" + } + ], + "2025-04-27": [ + { + "body": "*1 P 2:2*\nJako dopiero narodzone niemowlęta, alleluja, pożądajcie duchowego, czystego mleka, alleluja, alleluja alleluja", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy ukończywszy obchód świąt wielkanocnych, za łaską Twoją zachowali ich ducha", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 5:4-10*\n*Chrystus żyje i działa w nas przez trzy elementy: wodę Chrztu, Kr", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Mt 28:7*\nW dzień mojego Zmartwychwstania – mówi Pan – pójdę przed wami do Galilei. Alleluja.\n*J 20:", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:19-31*\nOnego czasu: Wieczorem dnia owego, pierwszego po szabacie, gdy", + "id": "Evangelium" + }, + { + "body": "*Mt 28:2; 28:5-6*\nAnioł Pański zstąpił z nieba i rzekł niewiastom: Ten, którego szukacie zmartwychwstał jak zapowiedział", + "id": "Offertorium" + }, + { + "body": "Przyjmij prosimy Cię, Panie, dary weselącego się Kościoła i skoro dałeś mu powód do tak wielkiej radości, udziel mu jako", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 20:27*\nWłóż rękę twoją i rozpoznaj miejsce gwoździ, alleluja i nie bądź niewiernym lecz wierzącym, alleluja, alleluja", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się leka", + "id": "Postcommunio" + } + ], + "2025-04-28": [ + { + "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech św. Wojciech, Biskup i Męczennik, wyjedna nam Twoje miłosierdzie, abyś łaskawie odpuścił nam g", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 5:1-6*\nBracia: Każdy arcykapłan, spośród ludzi wzięty, dl", + "id": "Lectio" + }, + { + "body": "*J 10:14*\nJam jest pasterz dobry: znam swoje owce i one mnie znają. Alleluja.\n*Ps 109:4*\n℣. Tyś kapłanem na wieki na wzó", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni; błagał Cię o życie, a Tyś go nim obdarzył, alleluja.", + "id": "Offertorium" + }, + { + "body": "Racz, Panie, łaskawie przyjąć złożoną ofiarę: niech nam wyjedna odpuszczenie win, gdy składamy ją imieniu Twemu w uroczy", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest pasterz dobry, alleluja; znam swoje owce i one mnie znają, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Pokrzepieni świętymi darami, kornie błagamy Cię, Panie, aby orędownictwo św. Wojciecha, Męczennika Twego i Biskupa, zaws", + "id": "Postcommunio" + } + ], + "2025-04-29": [ + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie jeg", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, abyśmy z należną gorliwością naśladowali wiarę świętego Piotra, Twego Męczennika,", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 2:8-10; 3:10-12*\nNajmilszy: Pamiętaj, że Pan Jezus Chrystu", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:34-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie mniemajcie, ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, łaskawie wysłuchaj naszych próśb, które do Ciebie zanosimy za wstawiennictwem świętego Piotra, Twego Męczennika, ", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 16:24*\nJeśli kto chce za mną iść, niech się zaprze samego siebie i weźmie krzyż swój, i naśladuje mnie.", + "id": "Communio" + }, + { + "body": "Panie, niech Sakrament, któryśmy przyjęli, strzeże wiernych Twoich, i za wstawiennictwem św. Piotra, Twego Męczennika, b", + "id": "Postcommunio" + } + ], + "2025-04-30": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy N., nabyli uczu", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Ps 44:15-16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą do niego z radością. Alleluja.\n*Ps", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2025-05-01": [ + { + "body": "*Mdr 10:17*\nMądrość oddała sprawiedliwym nagrodę za ich pracę i prowadziła ich przedziwną drogą, i była im we dnie zasło", + "id": "Introitus" + }, + { + "body": "Boże, Stwórco wszechrzeczy, który nałożyłeś na rodzaj ludzki obowiązek pracy, spraw łaskawie, abyśmy za przykładem i pod", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:14-15, 17, 23-24*\nBracia: Miejcie miłość, która jest węzłem ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\nW jakimkolwiek nieszczęściu wzywać mnie będą, wysłucham ich, i będę ich opiekunem. Alleluja.\n℣. Spraw", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:54-58*\nOnego czasu: Jezus przyszedłszy do ojczyzny swojej naucza", + "id": "Evangelium" + }, + { + "body": "*Ps 89:17*\nDobroć Pana Boga naszego niechaj będzie nad nami; szczęść nam w pracy rąk naszych i poszczęść dziełu rąk nasz", + "id": "Offertorium" + }, + { + "body": "Dary, które składamy Ci, Panie, z pracy rąk naszych, niech się staną za przyczyną św. Józefa zadatkiem naszej jedności i", + "id": "Secreta" + }, + { + "body": "*Prefacja o św. Józefie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali ", + "id": "Prefatio" + }, + { + "body": "*Mt 13:54-55*\nSkądże Mu ta mądrość i moc? Czyż nie jest to syn cieśli i czyż matki Jego nie zwą Maryja? (O. W. Alleluja.", + "id": "Communio" + }, + { + "body": "Panie, niech te święte dary, które spożyliśmy, dopełnią za wstawiennictwem św. Józefa nasze działanie i zapewnią nam nag", + "id": "Postcommunio" + } + ], + "2025-05-02": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Wysłuchaj, prosimy Cię, Panie, naszych modlitw, które zanosimy w uroczystość św. Atanazego, Twego wyznawcy i Biskupa, a ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 4:5-14*\nBracia: Nie samych siebie głosimy, ale Jezusa Chry", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Ps 109:4*\n℣. Tyś kapłanem na wieki na wzór Melchizedeka. Alleluja.\n*Jk 1:12*\nBłogosławiony człowiek", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:23-28*\nOnego czasu: Rzekł Jezus uczniom swoim: «Gdy was prześlad", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech doroczna uroczystość św. Atanazego, Twego Wyznawcy i Biskupa, uczyni nas godnymi Twojej miłośc", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 10:27*\nCo wami mówię w ciemności, opowiadajcie na świetle, mówi Pan; i co usłyszycie na ucho, głoście na dachach, al", + "id": "Communio" + }, + { + "body": "Boże, Ty nagradzasz dusze wierne; spraw, abyśmy dostąpili przebaczenia przez prośby św. Atanazego, Twego Wyznawcy i Bisk", + "id": "Postcommunio" + } + ], + "2025-05-03": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci Najświętszej Maryi Panny; z Jej uroczystości radują się Anioło", + "id": "Introitus" + }, + { + "body": "Wszechmogący i miłosierny Boże, któryś dał nam w Najświętszej Maryi Pannie przedziwną pomoc dla obrony naszego narodu, s", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Judyty.\n*Jdt 13:22; 13:23-25*\nPobłogosławił Cię Pan w mocy swojej, bo przez Cię wniwecz obrócił naszyc", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Pnp 6:3; 6:9*\n℣. Cała piękna jesteś i pełna wdzięku, córko syjońska! Piękna jak księżyc, wybrana jak", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:25-27*\nOnego czasu: Pod krzyżem Jezusowym stała Matka Jego i siostra ", + "id": "Evangelium" + }, + { + "body": "*Jer 18:20*\nPamiętaj o nas, Matko Dziewico, przed obliczem Boga, abyś prosiła o dobra dla nas i aby od nas odwrócił swój", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, jaką Ci składamy czcząc pamięć najłaskawszej Dziewicy Maryi, która nas pociesza w każdym utrapi", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Najdostojniejsza Królowo świata, Maryjo, zawsze Dziewico, któraś porodziła Chrystusa Pana, Zbawiciela wszystkich ludzi, ", + "id": "Communio" + }, + { + "body": "Boże, któryś dał nam Najświętszą Dziewicę Maryję za szczególną Patronkę, spraw łaskawie, abyśmy zasileni Twoim świętym d", + "id": "Postcommunio" + } + ], + "2025-05-04": [ + { + "body": "*Ps 32:5-6*\nPełna jest ziemia łaskawości Pana, alleluja, przez słowo Pana stały się niebiosa, alleluja, alleluja.\n*Ps 32", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez uniżenie się Syna Twojego podźwignął upadły świat, napełnij wiernych Twoich nieustannym weselem, aby ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:21-25*\nNajmilsi: Chrystus cierpiał zostawiając wam przykład, abyście w", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Łk 24:35*\nPoznali uczniowie Pana Jezusa przy łamaniu chleba. Alleluja.\n*J 10:14*\nJam jest Pasterz do", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nBoże, moim jesteś Bogiem, pilnie Ciebie szukam; i w imię Twoje będę wznosił me ręce, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niech święta ofiara zawsze sprowadza na nas zbawienne błogosławieństwo, i swoją mocą urzeczywistnia to, co się do", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest Pasterz dobry, alleluja: znam owce moje i znają mnie moje, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię wszechmogący Boże, spraw, abyśmy otrzymawszy Twoją życiodajną łaskę, zawsze szczycili się z Twojego daru.\nPr", + "id": "Postcommunio" + } + ], + "2025-05-05": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Boże, który raczyłeś wybrać św. Piusa na Najwyższego Pasterza dla poskromienia nieprzyjaciół Twojego Kościoła i odnowien", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Mt 16:18*\n℣. Ty jesteś Opoką, a na tej Opoce zbuduję Kościół mój. Alleluja.\n*Ps 44:17-18*\nUstanowis", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + } + ], + "2025-05-06": [ + { + "body": "*Ps 32:5-6*\nPełna jest ziemia łaskawości Pana, alleluja, przez słowo Pana stały się niebiosa, alleluja, alleluja.\n*Ps 32", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez uniżenie się Syna Twojego podźwignął upadły świat, napełnij wiernych Twoich nieustannym weselem, aby ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:21-25*\nNajmilsi: Chrystus cierpiał zostawiając wam przykład, abyście w", + "id": "Lectio" + }, + { + "body": "\n*Łk 24:35*\nPoznali uczniowie Pana Jezusa przy łamaniu chleba. \n*J 10:14*\nJam jest Pasterz dobry. Znam owce swoje i znaj", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nBoże, moim jesteś Bogiem, pilnie Ciebie szukam; i w imię Twoje będę wznosił me ręce, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niech święta ofiara zawsze sprowadza na nas zbawienne błogosławieństwo, i swoją mocą urzeczywistnia to, co się do", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest Pasterz dobry, alleluja: znam owce moje i znają mnie moje, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię wszechmogący Boże, spraw, abyśmy otrzymawszy Twoją życiodajną łaskę, zawsze szczycili się z Twojego daru.\nPr", + "id": "Postcommunio" + } + ], + "2025-05-07": [ + { + "body": "*Ps 32:5-6*\nPełna jest ziemia łaskawości Pana, alleluja, przez słowo Pana stały się niebiosa, alleluja, alleluja.\n*Ps 32", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez uniżenie się Syna Twojego podźwignął upadły świat, napełnij wiernych Twoich nieustannym weselem, aby ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:21-25*\nNajmilsi: Chrystus cierpiał zostawiając wam przykład, abyście w", + "id": "Lectio" + }, + { + "body": "\n*Łk 24:35*\nPoznali uczniowie Pana Jezusa przy łamaniu chleba. \n*J 10:14*\nJam jest Pasterz dobry. Znam owce swoje i znaj", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 62:2; 62:5*\nBoże, moim jesteś Bogiem, pilnie Ciebie szukam; i w imię Twoje będę wznosił me ręce, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niech święta ofiara zawsze sprowadza na nas zbawienne błogosławieństwo, i swoją mocą urzeczywistnia to, co się do", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest Pasterz dobry, alleluja: znam owce moje i znają mnie moje, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię wszechmogący Boże, spraw, abyśmy otrzymawszy Twoją życiodajną łaskę, zawsze szczycili się z Twojego daru.\nPr", + "id": "Postcommunio" + } + ], + "2025-05-08": [ + { + "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Boże, za Twój Kościół zginął pod mieczami bezbożnych chwalebny Biskup Stanisław; spraw, prosimy, aby wszyscy, którzy wzy", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 5:1-6*\nBracia: Każdy arcykapłan, spośród ludzi wzięty, dl", + "id": "Lectio" + }, + { + "body": "*J 10:14*\nJam jest pasterz dobry: znam swoje owce i one mnie znają. Alleluja.\n*Ps 109:4*\n℣. Tyś kapłanem na wieki na wzó", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*Ps 20:4-5*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni; błagał Cię o życie, a Tyś go nim obdarzył, alleluja.", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, złożone Ci dary, i za przyczyną św. Stanisława, Twego Męczennika i Biskupa, daj się przez nie przebłagać", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest pasterz dobry, alleluja; znam swoje owce i one mnie znają, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną św. Stanisława, Twego Męczennika i Biskupa, stanie się ", + "id": "Postcommunio" + } + ], + "2025-05-09": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś dał ludowi Swemu świętego Grzegorza za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć o", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Syr 39:6-14*\nSprawiedliwy już od zarania czujnie zwraca swe serce do Pana, który go stworzy", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Syr 45:9*\nUmiłował go Pan i przyozdobił, przyodział go szatą chwały. Alleluja.\n*Oz 14:6*\nSprawiedli", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", + "id": "Postcommunio" + } + ], + "2025-05-10": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Panie, niech nas wspomagają zasługi św. Antonina, Twego Wyznawcy i Biskupa, abyśmy tak wielbili Twoje miłosierdzie wobec", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Gordiana i Epimacha*\nDaj, prosimy Cię, wszechmogący Boże, abyśmy obchodząc uroczystość świętych Męczenn", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Ps 109:4*\nTyś kapłanem na wieki na wzór Melchizedeka. Alleluja.\n℣. Oto kapłan, którego uwieńczył Pa", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Gordiana i Epimacha*\nPanie, przyjmij łaskawie przez zasługi świętych Męczenników Twoich Gordiana i Epim", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Gordiana i Epimacha*\nProsimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, za wstawi", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-11": [ + { + "body": "*Ps 65:1-2*\nZ radością sławcie Boga, wszystkie ziemie, alleluja, opiewajcie chwałę Jego imienia, alleluja, alleluja, all", + "id": "Introitus" + }, + { + "body": "Boże, Ty ukazujesz błądzącym światło Twej prawdy, aby mogli wrócić na drogę sprawiedliwości; spraw, niech wszyscy uważaj", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Świętych Filipa i Jakuba, Apostołów*\nBoże, Ty co roku uweselasz nas uroczystością świętych Apostołów Twoich", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:11-19*\nNajmilsi: Proszę was, abyście jako przychodnie i goście powstrz", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 110:9*\nPan zesłał odkupienie swojemu ludowi. Alleluja.\n*Łk 24:46*\nTrzeba było, aby Chrystus cierp", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:16-22*\nOnego czasu rzekł Jezus uczniom swoim: «Już niedługo, a nie bę", + "id": "Evangelium" + }, + { + "body": "*Ps 145:2*\nChwal, duszo moja, Pana! Boga wielbić pragnę przez całe me życie; śpiewać Mu będę, dopóki będę żył, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, przez te misteria udziel nam pomocy abyśmy poskramiali ziemskie pragnienia i nauczyli się miłować rzeczy niebiesk", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Świętych Filipa i Jakuba, Apostołów*\nPanie, przyjmij łaskawie dary, które składamy w uroczystość Apostołów ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 16:16*\nJuż niedługo, a nie będziecie Mnie oglądać, alleluja; i znowu niedługo, a ujrzycie Mnie, bo idę do Ojca, allel", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech Sakrament, który przyjęliśmy, nasyci nas pokarmem duchowym i udzieli pomocy doczesnej.\nPrzez P", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Świętych Filipa i Jakuba, Apostołów*\nNasyceni zbawiennym Sakramentem prosimy Cię, Panie, aby wspierały nas ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-12": [ + { + "body": "*Ps 32:18-20*\nOto oczy Pana nad tymi, co się Go boją: nad tymi, co się łaski spodziewają od Niego, alleluja, po to, by w", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech radosne święto Twoich Męczenników Nereusza, Achillesa, Domicylli i Pankracego zawsze pobudza n", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 5:1-5*\nSprawiedliwi staną z wielką stanowczością naprzeciw tych, którzy ich uciskali i ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n℣. Oto prawdziwe braterstwo, co zwyciężyło występki świata: poszło śladem Chrystusa, otrzymując zasz", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:46-53*\n*Bóg udziela nam swojej łaski w miarę naszej ufności.*\nOnego cz", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech będzie miłe dla Ciebie wyznanie wiary złożone przez świętych Męczenników Twoich Nereusza, Achi", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Ps 32:1*\nSprawiedliwi, weselcie się w Panu: prawym przystoi Go chwalić, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, by przyjęty przez nas Najświętszy Sakrament przez modlitwy świętych Męczenników Twoich Nereusza, Ach", + "id": "Postcommunio" + } + ], + "2025-05-13": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś dla usunięcia podstępnych błędów i dla obrony praw Stolicy Apostolskiej ozdobił św. Roberta, Twego Biskupa i D", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 7:7-14*\nPragnąłem, a dano mi zrozumienie; i błagałem, a spłynął na mnie duch mądrości. ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n℣. Uczeni będą świecić jak światłość sklepienia. Alleluja.\n℣. Którzy ku sprawiedliwości wprawiają wi", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 72:28*\nMnie zaś dobrze jest być blisko Boga, w Panu Bogu pokładać nadzieję i głosić wszystkie dzieła Twoje w bramach", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, dary ofiarne jako miłą wonność; spraw, abyśmy pouczeni nauką i przykładem św. Roberta z radosnym ser", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 5:14; 5:16*\nWy jesteście światłością świata. Tak niechaj świeci światłość wasza przed ludźmi, aby widzieli dobre czy", + "id": "Communio" + }, + { + "body": "Panie Boże nasz, niech przyjęty przez nas Sakrament podtrzymuje w nas żar miłości, którym rozpalony św. Robert poświęcał", + "id": "Postcommunio" + } + ], + "2025-05-14": [ + { + "body": "*Ps 65:1-2*\nZ radością sławcie Boga, wszystkie ziemie, alleluja, opiewajcie chwałę Jego imienia, alleluja, alleluja, all", + "id": "Introitus" + }, + { + "body": "Boże, Ty ukazujesz błądzącym światło Twej prawdy, aby mogli wrócić na drogę sprawiedliwości; spraw, niech wszyscy uważaj", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Bonifacego, Męczennika*\nDaj, prosimy Cię, wszechmogący Boże, abyśmy obchodząc uroczystość św. Męczennik", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:11-19*\nNajmilsi: Proszę was, abyście jako przychodnie i goście powstrz", + "id": "Lectio" + }, + { + "body": "\n*Ps 110:9*\nPan zesłał odkupienie swojemu ludowi. \n*Łk 24:46*\nTrzeba było, aby Chrystus cierpiał i zmartwychwstał dnia t", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:16-22*\nOnego czasu rzekł Jezus uczniom swoim: «Już niedługo, a nie bę", + "id": "Evangelium" + }, + { + "body": "*Ps 145:2*\nChwal, duszo moja, Pana! Boga wielbić pragnę przez całe me życie; śpiewać Mu będę, dopóki będę żył, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, przez te misteria udziel nam pomocy abyśmy poskramiali ziemskie pragnienia i nauczyli się miłować rzeczy niebiesk", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Bonifacego, Męczennika*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieski", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 16:16*\nJuż niedługo, a nie będziecie Mnie oglądać, alleluja; i znowu niedługo, a ujrzycie Mnie, bo idę do Ojca, allel", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech Sakrament, który przyjęliśmy, nasyci nas pokarmem duchowym i udzieli pomocy doczesnej.\nPrzez P", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Bonifacego, Męczennika*\nPokrzepieni uczestnictwem w świętej uczcie prosimy Cię, Panie, Boże nasz, abyśm", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-15": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, Tyś powołał świętego Wyznawcę Jana Chrzciciela do chrześcijańskiego wychowania ubogich i umacniania młodzieży na d", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Jk 1:12.*\nBłogosławiony człowiek, który zniesie pokusę, bo utwierdziwszy się, otrzyma wieniec żywota", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-5*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2025-05-16": [ + { + "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", + "id": "Introitus" + }, + { + "body": "Boże, który świętego Andrzeja udręczonego rozlicznymi katuszami za wyznawanie prawdziwej wiary uwieńczyłeś świetnym męcz", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Ubalda, Biskupa i Wyznawcy*\nPanie, udziel nam łaskawie Twej pomocy i za wstawiennictwem św. Wyznawcy Tw", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 2:8-10; 3:10-12*\nNajmilszy: Pamiętaj, że Pan Jezus Chrystu", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:1-7*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jam jest prawdziwy krze", + "id": "Evangelium" + }, + { + "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, niepokalaną ofiarę Jednorodzonego Syna Twego, usilnie błagając, abyśmy przez modlitwę i orędownictwo", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Ubalda, Biskupa i Wyznawcy*\nPanie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią, alleluja, alleluja", + "id": "Communio" + }, + { + "body": "Panie, gdyśmy spożyli te święte dary z ołtarza ku czci św. Męczennika Twego Andrzeja, udziel nam łaskawie, abyśmy poucze", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Ubalda, Biskupa i Wyznawcy*\nWszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-17": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który ozdobiłeś św. Paschalisa, Twego Wyznawcę, cudownym umiłowaniem świętej tajemnicy Twojego Ciała i Krwi, daj n", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Jk 1:12.*\nBłogosławiony człowiek, który zniesie pokusę, bo utwierdziwszy się, otrzyma wieniec żywota", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2025-05-18": [ + { + "body": "*Ps 97:1; 97:2*\nŚpiewajcie Panu pieśń nową, alleluja, albowiem Pan uczynił cuda, alleluja,\nw oczach pogan okazał swoją s", + "id": "Introitus" + }, + { + "body": "Boże, który sprawiasz, że dusze Twych wiernych mają jedno dążenie, daj ludom Twoim to miłować, co nakazujesz, tego pragn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 1:17-21*\nNajmilsi: Wszelki dar dobry i każda wzniosła łaska z wysoka poch", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 117:16*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Alleluja.\n*Rz 6:9*\nChrystus po", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:5-14*\nOnego czasu: rzekł Jezus uczniom swoim: «Idę do Tego, który mni", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 85:16*\nZ radością sławcie Boga, wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się B", + "id": "Offertorium" + }, + { + "body": "Boże, który przez przedziwną wymianę dokonującą się w tej ofierze czynisz nas uczestnikami jedynego i najwyższego Bóstwa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 16:8*\nGdy przyjdzie Pocieszyciel, Duch prawdy, przekona świat o grzechu, o sprawiedliwości i o sądzie, alleluja, alle", + "id": "Communio" + }, + { + "body": "Przybądź nam z pomocą, Panie, Boże nasz, aby Sakrament, któryśmy z wiarą przyjęli, oczyścił nas z wad i uchronił od wszy", + "id": "Postcommunio" + } + ], + "2025-05-19": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Boże, Tyś wyniósł św. Piotra Celestyna na szczyty papiestwa i nauczyłeś go mniej je cenić niż pokorę, spraw łaskawie, ab", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Pudencjany*\nWysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Tw", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Mt 16:18*\n℣. Ty jesteś Opoką, a na tej Opoce zbuduję Kościół mój. Alleluja.\n*Ps 44:17-18*\nUstanowis", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Pudencjany*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Pudencjany*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-20": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Panie Jezu, któryś zapalił św. Bernardyna, Twego Wyznawcę, niezwykłą miłością świętego imienia Twojego, prosimy Cię: prz", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Jk 1:12.*\nBłogosławiony człowiek, który zniesie pokusę, bo utwierdziwszy się, otrzyma wieniec żywota", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2025-05-21": [ + { + "body": "*Ps 97:1; 97:2*\nŚpiewajcie Panu pieśń nową, alleluja, albowiem Pan uczynił cuda, alleluja,\nw oczach pogan okazał swoją s", + "id": "Introitus" + }, + { + "body": "Boże, który sprawiasz, że dusze Twych wiernych mają jedno dążenie, daj ludom Twoim to miłować, co nakazujesz, tego pragn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 1:17-21*\nNajmilsi: Wszelki dar dobry i każda wzniosła łaska z wysoka poch", + "id": "Lectio" + }, + { + "body": "\n*Ps 117:16*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. \n*Rz 6:9*\nChrystus powstawszy z martwych więcej ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:5-14*\nOnego czasu: rzekł Jezus uczniom swoim: «Idę do Tego, który mni", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 85:16*\nZ radością sławcie Boga, wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się B", + "id": "Offertorium" + }, + { + "body": "Boże, który przez przedziwną wymianę dokonującą się w tej ofierze czynisz nas uczestnikami jedynego i najwyższego Bóstwa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 16:8*\nGdy przyjdzie Pocieszyciel, Duch prawdy, przekona świat o grzechu, o sprawiedliwości i o sądzie, alleluja, alle", + "id": "Communio" + }, + { + "body": "Przybądź nam z pomocą, Panie, Boże nasz, aby Sakrament, któryśmy z wiarą przyjęli, oczyścił nas z wad i uchronił od wszy", + "id": "Postcommunio" + } + ], + "2025-05-22": [ + { + "body": "*Ps 97:1; 97:2*\nŚpiewajcie Panu pieśń nową, alleluja, albowiem Pan uczynił cuda, alleluja,\nw oczach pogan okazał swoją s", + "id": "Introitus" + }, + { + "body": "Boże, który sprawiasz, że dusze Twych wiernych mają jedno dążenie, daj ludom Twoim to miłować, co nakazujesz, tego pragn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 1:17-21*\nNajmilsi: Wszelki dar dobry i każda wzniosła łaska z wysoka poch", + "id": "Lectio" + }, + { + "body": "\n*Ps 117:16*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. \n*Rz 6:9*\nChrystus powstawszy z martwych więcej ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:5-14*\nOnego czasu: rzekł Jezus uczniom swoim: «Idę do Tego, który mni", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 85:16*\nZ radością sławcie Boga, wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się B", + "id": "Offertorium" + }, + { + "body": "Boże, który przez przedziwną wymianę dokonującą się w tej ofierze czynisz nas uczestnikami jedynego i najwyższego Bóstwa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 16:8*\nGdy przyjdzie Pocieszyciel, Duch prawdy, przekona świat o grzechu, o sprawiedliwości i o sądzie, alleluja, alle", + "id": "Communio" + }, + { + "body": "Przybądź nam z pomocą, Panie, Boże nasz, aby Sakrament, któryśmy z wiarą przyjęli, oczyścił nas z wad i uchronił od wszy", + "id": "Postcommunio" + } + ], + "2025-05-23": [ + { + "body": "*Ps 97:1; 97:2*\nŚpiewajcie Panu pieśń nową, alleluja, albowiem Pan uczynił cuda, alleluja,\nw oczach pogan okazał swoją s", + "id": "Introitus" + }, + { + "body": "Boże, który sprawiasz, że dusze Twych wiernych mają jedno dążenie, daj ludom Twoim to miłować, co nakazujesz, tego pragn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 1:17-21*\nNajmilsi: Wszelki dar dobry i każda wzniosła łaska z wysoka poch", + "id": "Lectio" + }, + { + "body": "\n*Ps 117:16*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. \n*Rz 6:9*\nChrystus powstawszy z martwych więcej ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:5-14*\nOnego czasu: rzekł Jezus uczniom swoim: «Idę do Tego, który mni", + "id": "Evangelium" + }, + { + "body": "*Ps 65:1-2; 85:16*\nZ radością sławcie Boga, wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się B", + "id": "Offertorium" + }, + { + "body": "Boże, który przez przedziwną wymianę dokonującą się w tej ofierze czynisz nas uczestnikami jedynego i najwyższego Bóstwa", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*J 16:8*\nGdy przyjdzie Pocieszyciel, Duch prawdy, przekona świat o grzechu, o sprawiedliwości i o sądzie, alleluja, alle", + "id": "Communio" + }, + { + "body": "Przybądź nam z pomocą, Panie, Boże nasz, aby Sakrament, któryśmy z wiarą przyjęli, oczyścił nas z wad i uchronił od wszy", + "id": "Postcommunio" + } + ], + "2025-05-24": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Wszechmogący i miłosierny Boże, któryś dał nam w Najświętszej Maryi Pannie przedziwną pomoc dla obrony ludu chrześcijańs", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą; błogosławionaś Ty między niewiastami i błogosławiony owoc żywota Two", + "id": "Offertorium" + }, + { + "body": "Błagając o triumf religii chrześcijańskiej, składamy Ci, Panie, ofiary, aby zaś one były dla nas skuteczne, niechaj nas ", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Wspomagaj, Panie, lud, który pokrzepiasz uczestnictwem w Ciele i Krwi Twojej, i przy pomocy Najświętszej Rodzicielki Two", + "id": "Postcommunio" + } + ], + "2025-05-25": [ + { + "body": "*Iz 48:20*\nRadosną nowinę głoście, niech będzie słyszana, alleluja, po krańce ziemi rozpowiadajcie, iż Pan swój naród wy", + "id": "Introitus" + }, + { + "body": "Boże, od Ciebie pochodzi wszystko, co dobre; pokornie Cię prosimy, aby z Twojego natchnienia myśli nasze były prawe i po", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 1:22-27*\nNajmilsi: Bądźcie wykonawcami słowa, a nie tylko słuchaczami, os", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n℣. Powstał Chrystus z martwych i zajaśniał nam, których Krwią swoją odkupił. Alleluja.\n*J 16:28*\nWysz", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:23-30*\n*Związek chrześcijan z Chrystusem jest tak ścisły, że ich modl", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9; 65:20*\n*Przez Chrzest święty zostaliśmy przeznaczeni do życia.*\nBłogosławcie, ludy, naszemu Bogu i sławę Jeg", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich złożone, a nabożne sprawowanie służby Twojej niech na", + "id": "Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Ps 95:2*\nŚpiewajcie Panu, alleluja; śpiewajcie Panu i błogosławcie Jego imieniu; z dnia na dzień zwiastujcie zbawienie ", + "id": "Communio" + }, + { + "body": "Spraw, Panie, abyśmy posileni niebieskim pokarmem, pragnęli tego, co prawe i osiągnęli to, czego pragniemy.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-05-26": [ + { + "body": "*Rz 5:5*\nMiłość Boża rozlana jest w sercach naszych przez Ducha Świętego, mieszkającego w nas. (O. W. Alleluja, alleluja", + "id": "Introitus" + }, + { + "body": "Boże, któryś wyniósł błogosławionego Filipa, Twego Wyznawcę, do chwały Świętych Swoich, dozwól łaskawie, abyśmy ciesząc ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Eleuteriusza*\n*Starożytny Rzym przyznawał wybitnym obywatelom przywilej skutecznego wpływania na wyroki", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 7:7-14*\nPragnąłem, a dano mi zrozumienie; i błagałem, a spłynął na mnie duch mądrości. ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Lam 1:13*\nZesłał ogień z wysoka, kazał mu wejść w moje kości i pouczył mnie. Alleluja.\n*Ps 38:4*\nRo", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 118:32*\nDrogą Twoich poleceń pobiegnę, gdy serce moje rozszerzysz. (O. W. Alleluja.)", + "id": "Offertorium" + }, + { + "body": "Wejrzyj, Panie litościwie na tę ofiarę i spraw, aby nad Duch Święty rozpalił tym ogniem, który przedziwnie przeniknął se", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Eleuteriusza*\nPanie, przyjmij łaskawie przez zasługi świętego N., Męczennika i Biskupa ofiarę, którą Ci", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Ps 83:3*\nSerce moje i ciało moje radośnie wykrzykują ku Bogu żywemu. (O. W. Alleluja.)", + "id": "Communio" + }, + { + "body": "Nasyceni niebieską ucztą, prosimy Cię, Panie, abyśmy przez zasługi i za przykładem św. Filipa, Twojego Wyznawcy, zawsze ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Eleuteriusza*\nPokrzepieni uczestnictwem w świętej uczcie prosimy Cię, Panie, Boże nasz, abyśmy za przyc", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-27": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, który wsławiłeś Swój Kościół nauką św. Bedy, Twego Wyznawcy i Doktora, spraw miłościwie, niech sługi Twoje oświeca", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Jana I*\nBoże, co roku uweselasz nas uroczystością świętego N., Twojego Męczennika i Biskupa; spraw łask", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Syr 45:9*\nUmiłował go Pan i przyozdobił, przyodział go szatą chwały. Alleluja.\n*Oz 14:6*\nSprawiedli", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Jana I*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego N., Twego Męczennika i Biskupa, daj się", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Jana I*\nPanie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętego N., Twego Męczennika i B", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-28": [ + { + "body": "*Iz 48:20*\nRadosną nowinę głoście, niech będzie słyszana, alleluja, po krańce ziemi rozpowiadajcie, iż Pan swój naród wy", + "id": "Introitus" + }, + { + "body": "Boże, od Ciebie pochodzi wszystko, co dobre; pokornie Cię prosimy, aby z Twojego natchnienia myśli nasze były prawe i po", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Augustyna z Canterbury, Biskupa i Wyznawcy*\nBoże, który raczyłeś oświecić ludy Anglii światłem prawdziw", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:7-13*\n*Chrystus wraca do nieba otoczony rzeszą wiernych, któr", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n℣. Powstał Chrystus z martwych i zajaśniał nam, których Krwią swoją odkupił. Alleluja.\n*J 16:28*\nWysz", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 17:1-11*\n*Ewangelia wyjęta jest ze wzruszającej modlitwy, którą Zbawicie", + "id": "Evangelium" + }, + { + "body": "*Ps 65:8-9; 65:20*\n*Przez Chrzest święty zostaliśmy przeznaczeni do życia.*\nBłogosławcie, ludy, naszemu Bogu i sławę Jeg", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich złożone, a nabożne sprawowanie służby Twojej niech na", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Augustyna z Canterbury, Biskupa i Wyznawcy*\nSkładamy Ci, Panie ofiarę w uroczystość św. Augustyna, Tweg", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", + "id": "Prefatio" + }, + { + "body": "*Ps 95:2*\nŚpiewajcie Panu, alleluja; śpiewajcie Panu i błogosławcie Jego imieniu; z dnia na dzień zwiastujcie zbawienie ", + "id": "Communio" + }, + { + "body": "Spraw, Panie, abyśmy posileni niebieskim pokarmem, pragnęli tego, co prawe i osiągnęli to, czego pragniemy.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Augustyna z Canterbury, Biskupa i Wyznawcy*\nPosileni zbawienną ofiarą, pokornie błagamy Cię, Panie, aby", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-29": [ + { + "body": "*Dz 1:11*\nMężowie Galilejscy, czemu stoicie zapatrzeni w niebo? Alleluja. Jak widzieliście Go wstępującego do nieba, tak", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wierzymy, że Twój Syn Jednorodzony, nasz Zbawiciel, w dniu dzisiejszym wstąpił do nieba; spraw prosim", + "id": "Oratio" + }, + { + "body": "Czytania z Dziejów Apostolskich\n*Dz 1:1-11*\n*Wstęp do księgi Dziejów Apostolskich to równocześnie wstęp do dziejów Kości", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. Alleluja.\n*Ps 67:18-19*\n℣. Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:14-20*\nOnego czasu: Ukazał się Jezus jedenastu, gdy siedzieli u sto", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. Alleluja.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, te dary, które Ci składamy dla uczczenia chwalebnego Wniebowstąpienia Syna Twojego i pozwól łaskawie, a", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nŚpiewajcie psalm Panu, który wstępuje ponad najwyższe niebiosa odwieczne, alleluja.", + "id": "Communio" + }, + { + "body": "Wszechmogący i miłosierny Boże, Ciebie prosimy, daj nam osiągnąć niewidzialny skutek tego, cośmy widomie w sakramencie s", + "id": "Postcommunio" + } + ], + "2025-05-30": [ + { + "body": "*Dz 1:11*\nMężowie Galilejscy, czemu stoicie zapatrzeni w niebo? Alleluja. Jak widzieliście Go wstępującego do nieba, tak", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, wierzymy, że Twój Syn Jednorodzony, nasz Zbawiciel, w dniu dzisiejszym wstąpił do nieba; spraw prosim", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Feliksa I, Papieża i Męczennika*\nProsimy Cię, wszechmogący Boże, abyśmy obchodząc urodziny dla nieba św", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytania z Dziejów Apostolskich\n*Dz 1:1-11*\n*Wstęp do księgi Dziejów Apostolskich to równocześnie wstęp do dziejów Kości", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. \n*Ps 67:18-19*\n℣. Pan z Synaju zdąża ku świątyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:14-20*\nOnego czasu: Ukazał się Jezus jedenastu, gdy siedzieli u sto", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. Alleluja.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, te dary, które Ci składamy dla uczczenia chwalebnego Wniebowstąpienia Syna Twojego i pozwól łaskawie, a", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Feliksa I, Papieża i Męczennika*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 67:33-34*\nŚpiewajcie psalm Panu, który wstępuje ponad najwyższe niebiosa odwieczne, alleluja.", + "id": "Communio" + }, + { + "body": "Wszechmogący i miłosierny Boże, Ciebie prosimy, daj nam osiągnąć niewidzialny skutek tego, cośmy widomie w sakramencie s", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Feliksa I, Papieża i Męczennika*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Tw", + "id": "Commemoratio Postcommunio" + } + ], + "2025-05-31": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci Najświętszej Maryi Panny Królowej; z Jej uroczystości radują s", + "id": "Introitus" + }, + { + "body": "Przy obchodzie uroczystości Najświętszej Maryi Panny, Królowej naszej, prosimy Cię, Panie, spraw, abyśmy wsparci Jej opi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Petroneli, Dziewicy*\nWysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości ś", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:5; 24:7; 24:9-11; 24:30-31*\n*Przywileje Maryi zostały przewidziane w odwiecznym pl", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n℣. Błogosławiona jesteś, Maryjo Dziewico, która wytrwałaś pod krzyżem Pana. Alleluja.\n℣. Teraz w wie", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-33*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "Maryja jaśnieje pochodzeniem z królewskiego rodu; sercem i duszą pobożnie prosimy, by nas wspierała swymi modlitwami. (O", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij dary rozradowanego Kościoła i spraw, niech przez zasługi Najświętszej Maryi Panny Królowej ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Petroneli, Dziewicy*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uz", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "Najdostojniejsza Królowo świata, Maryjo zawsze Dziewico, któraś porodziła Zbawcę wszystkich, Chrystusa Pana, proś o pokó", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, by uroczysta ofiara, złożona dla uczczenia święta Najświętszej Maryi, naszej Królowej, posłużyła nam", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Petroneli, Dziewicy*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawienni", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-01": [ + { + "body": "*Ps 26:7; 26:8; 26:9*\nUsłysz, Panie, głos mój, którym wołam, alleluja, do Ciebie mówi serce moje, oblicze moje Cię szuka", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, spraw, aby nasza wola zawsze była Ci oddana i abyśmy szczerym sercem służyli Twojemu majesta", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 4:7-11*\nNajmilsi: Bądźcie roztropni i czuwajcie w modlitwach. A nade wsz", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 46:9*\n℣. Pan króluje nad narodami, Bóg zasiada na swym świętym tronie. Alleluja.\n*J 14:18*\n℣. Nie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:26-27; 16:1-4*\n*Duch Święty zawsze udziela Kościołowi sił potrzebnych", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nWstępuje Bóg wśród radosnych okrzyków, wstępuje Pan przy dźwięku trąby, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niechaj niepokalana ofiara oczyści nas i umocni nasze dusze łaską niebieską.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*J 17:12-13; 17:15*\nOjcze, gdy byłem z nimi, strzegłem tych, których mi dałeś, alleluja: a teraz idę do Ciebie. Nie pros", + "id": "Communio" + }, + { + "body": "Nasyceni świętymi darami, prosimy Cię, Panie, abyśmy zawsze trwali w dziękczynieniu.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-06-02": [ + { + "body": "*Ps 26:7; 26:8; 26:9*\nUsłysz, Panie, głos mój, którym wołam, alleluja, do Ciebie mówi serce moje, oblicze moje Cię szuka", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, spraw, aby nasza wola zawsze była Ci oddana i abyśmy szczerym sercem służyli Twojemu majesta", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Marcelina i Piotra, Męczenników oraz Erazma, Biskupa*\nBoże, co roku uweselasz nas uroczystością świętyc", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 4:7-11*\nNajmilsi: Bądźcie roztropni i czuwajcie w modlitwach. A nade wsz", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:9*\n℣. Pan króluje nad narodami, Bóg zasiada na swym świętym tronie. \n*J 14:18*\n℣. Nie pozostawię was sierotami, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:26-27; 16:1-4*\n*Duch Święty zawsze udziela Kościołowi sił potrzebnych", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nWstępuje Bóg wśród radosnych okrzyków, wstępuje Pan przy dźwięku trąby, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niechaj niepokalana ofiara oczyści nas i umocni nasze dusze łaską niebieską.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Marcelina i Piotra, Męczenników oraz Erazma, Biskupa*\nProsimy Cię, Panie, niech ta ofiara, którą składa", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*J 17:12-13; 17:15*\nOjcze, gdy byłem z nimi, strzegłem tych, których mi dałeś, alleluja: a teraz idę do Ciebie. Nie pros", + "id": "Communio" + }, + { + "body": "Nasyceni świętymi darami, prosimy Cię, Panie, abyśmy zawsze trwali w dziękczynieniu.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Marcelina i Piotra, Męczenników oraz Erazma, Biskupa*\nDarem świętym nasyceni, kornie błagamy Cię, Panie", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-03": [ + { + "body": "*Ps 26:7; 26:8; 26:9*\nUsłysz, Panie, głos mój, którym wołam, alleluja, do Ciebie mówi serce moje, oblicze moje Cię szuka", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, spraw, aby nasza wola zawsze była Ci oddana i abyśmy szczerym sercem służyli Twojemu majesta", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 4:7-11*\nNajmilsi: Bądźcie roztropni i czuwajcie w modlitwach. A nade wsz", + "id": "Lectio" + }, + { + "body": "\n*Ps 46:9*\n℣. Pan króluje nad narodami, Bóg zasiada na swym świętym tronie. \n*J 14:18*\n℣. Nie pozostawię was sierotami, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:26-27; 16:1-4*\n*Duch Święty zawsze udziela Kościołowi sił potrzebnych", + "id": "Evangelium" + }, + { + "body": "*Ps 46:6*\nWstępuje Bóg wśród radosnych okrzyków, wstępuje Pan przy dźwięku trąby, alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, niechaj niepokalana ofiara oczyści nas i umocni nasze dusze łaską niebieską.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*J 17:12-13; 17:15*\nOjcze, gdy byłem z nimi, strzegłem tych, których mi dałeś, alleluja: a teraz idę do Ciebie. Nie pros", + "id": "Communio" + }, + { + "body": "Nasyceni świętymi darami, prosimy Cię, Panie, abyśmy zawsze trwali w dziękczynieniu.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-06-04": [ + { + "body": "*Ps 68:10*\nJak wosk stało się me serce: topnieje w moich wnętrznościach, bo gorliwość o dom Twój pożera mnie (O. W. Alle", + "id": "Introitus" + }, + { + "body": "Boże, który św. Franciszka, założyciela nowego zakonu, ozdobiłeś żarliwością w modlitwie i umiłowaniem pokuty, daj sługo", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 4:7-14*\nSprawiedliwy, jeśli umrze przedwcześnie, dozna ochłody. Czcigodna bowiem staroś", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Ps 64:5*\nSzczęśliwy, kogoś wybrał i przygarnął: mieszka on w Twoich pałacach. Alleluja.\n*Ps 111:9*\n", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie. (O. W. Alleluja.)", + "id": "Offertorium" + }, + { + "body": "Spraw, najłaskawszy Jezu, abyśmy rozpaleni tym samym ogniem miłości co św. Franciszek, którego chwalebne zasługi wspomin", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 30:20*\nJakże jest wielka Twoja dobroć, Panie, Tyś ją zachował dla tych, co się boją Ciebie. (O. W. Alleluja.)", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, aby w sercach naszych na zawsze pozostała wdzięczna pamięć i owoce Najświętszej Ofiary, którąśmy dzi", + "id": "Postcommunio" + } + ], + "2025-06-05": [ + { + "body": "*Iz 65:19; 65:23*\nRadować się będę z Jeruzalem i będę się weselić z powodu mego ludu; odtąd nie będzie w nim słychać gło", + "id": "Introitus" + }, + { + "body": "Boże, który wiele narodów raczyłeś powołać do poznania Twego imienia dzięki gorliwości św. Bonifacego, Twego Męczennika ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Syr 44:1-15*\nWysławiajmy mężów znakomitych i naszych ojców co do pochodzenia. Pan (w nich) ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Iz 66:10; 66:14*\nWeselcie się z Jerozolimą i radujcie się z nią wszyscy, którzy miłujecie Pana. All", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:1-12*\nOnego czasu: Jezus, widząc rzesze, wstąpił na górę i gdy us", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7-8*\nBłogosławię Panu, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy, aby", + "id": "Offertorium" + }, + { + "body": "Niechaj zstąpi, prosimy Cię, Panie, obfite błogosławieństwo Twoje na te dary ofiarne, niechaj nas łaskawie uświęci i roz", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ap 3:21*\nKto zwycięży, dozwolę mu z sobą zasiąść na tronie moim, jakom i ja zwyciężył i zasiadł z Ojcem moim na tronie ", + "id": "Communio" + }, + { + "body": "Uświęceni zbawiennym misterium, prosimy Cię, Panie, aby nie brakło nam troskliwego wstawiennictwa św. Bonifacego, Twego ", + "id": "Postcommunio" + } + ], + "2025-06-06": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, który uczyniłeś świętego Norberta, Twego Wyznawcę i Biskupa, znakomitym głosicielem Twojego słowa i przez niego wz", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n*Ps 109:4*\nTyś kapłanem na wieki na wzór Melchizedeka. Alleluja.\n℣. Oto kapłan, którego uwieńczył Pa", + "id": "GradualeP" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + } + ], + "2025-06-07": [ + { + "body": "*Ez 36:23; 36:24; 36:25-26*\nGdy zajaśnieje świętość moja w was, zgromadzę was ze wszystkich ziem i wyleję na was wodę cz", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, spraw, niech zabłyśnie nad nami blask Twojej chwały, a światło Twej jasności niechaj umocni oświeceni", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 19:1-8*\nW one dni: Gdy Apollo bawił w Koryncie, stało się, iż Paweł obszedłszy wyże", + "id": "Lectio" + }, + { + "body": "Alleluja\n*Ps 106:1*\n℣. Sławcie Pana, bo dobry, bo na wieki miłosierdzie Jego.\n*Ps 116:1-2*\nChwalcie Pana, wszystkie naro", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 14:15-21*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli mnie miłujecie,", + "id": "Evangelium" + }, + { + "body": "*Ps 103:30-31*\nZeślij Ducha Twojego, a powstanie życie i odnowisz oblicze ziemi: niech chwała Pańska trwa na wieki, alle", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uświęć złożone dary i oczyść nasze serca światłem Ducha Świętego.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 7:37-39*\nW ostatnim dniu święta mówił Jezus: Kto wierzy we mnie, rzeki wody żywej popłyną z jego wnętrza. A to mówił ", + "id": "Communio" + }, + { + "body": "Panie, niech tchnienie Ducha Świętego oczyści nasze serca i użyźni je rosą Jego łaski.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-06-08": [ + { + "body": "*Mdr 1:7*\nDuch Pański napełnił okrąg ziemi, alleluja: A Ten, który wszystko obejmuje, zna każde słowo, alleluja, alleluj", + "id": "Introitus" + }, + { + "body": "Boże, któryś w dniu dzisiejszym pouczył serca wiernych światłem Ducha Świętego, daj nam w tymże Duchu poznać co jest pra", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 2:1-11*\n*Dar języków jest potwierdzeniem powszechnej misji Kościoła. Wszystkie naro", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 103:30*\nZeślij Ducha Twojego, a powstanie życie i odnowisz oblicze ziemi, alleluja. (Tu się przyk", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 14:23-31*\nOnego czasu rzekł Jezus uczniom swoim: «Jeśli mnie kto miłuje,", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nUtwierdź to, Boże, czegoś w nas dokonał. Przez wzgląd na Twoją świątynię, która jest w Jeruzalem, niech kr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uświęć złożone dary i oczyść nasze serca światłem Ducha Świętego.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*Dz 2:2; 2:4*\nNagle dał się słyszeć z nieba szum jakby nadchodzącego wichru gwałtownego tam gdzie przebywali, alleluja. ", + "id": "Communio" + }, + { + "body": "Panie, niech tchnienie Ducha Świętego oczyści nasze serca, i użyźni je rosą Jego łaski.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-06-09": [ + { + "body": "*Ps 80:17*\nNakarmił ich wyborną pszenicą, alleluja, alleluja, i nasycił miodem z opoki, alleluja, alleluja.\n*Ps 80:2*\nRa", + "id": "Introitus" + }, + { + "body": "Boże, Tyś zesłał Ducha Świętego na Swoich Apostołów; spełnij pobożne prośby Swego ludu i racz obdarzyć pokojem tych, któ", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 10:34; 10:42-48*\n*Św. Piotr pouczony widzeniem udał się do domu oficera rzymskiego,", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Dz 2:4*\nOpowiadali Apostołowie rozmaitymi językami wielkie dzieła Boże. Alleluja. (Tu się przyklęka)", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 3:16-21*\n*Wiara w Jezusa Zbawiciela świata jest koniecznym warunkiem zba", + "id": "Evangelium" + }, + { + "body": "*Ps 17:14; 17:16*\nZagrzmiał Pan na niebiosach, Najwyższy dał słyszeć swój głos; i otworzyły się źródła wody, alleluja.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uświęć miłościwie te dary, a przyjmując złożoną Ci ofiarę duchową spraw, byśmy sami stali się wieczy", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 14:26*\nDuch Święty nauczy was, alleluja, wszystkiego, cokolwiek wam powiedziałem, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Panie, przyjdź z pomocą ludowi Twojemu, który pouczyłeś niebieskimi tajemnicami, i broń go przed zaciekłością wrogów.\nPr", + "id": "Postcommunio" + } + ], + "2025-06-10": [ + { + "body": "*Ezd 2:36 2:37*\nWielce się radujcie z chwały waszej, alleluja, i dzięki czyńcie Bogu, alleluja, że was powołał do Króles", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niechaj zstąpi na nas moc Ducha Świętego, aby oczyścić miłościwie nasze serca i strzec nas od wszelk", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 8:14-17*\n*Apostołowie udzielają sakramentu Bierzmowania Samarytanom ochrzczonym prz", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 14:26*\nDuch Święty nauczy was wszystkiego, cokolwiek wam powiedziałem. Alleluja. (Tu się przyklęk", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:1-10*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Zaprawdę, zaprawdę po", + "id": "Evangelium" + }, + { + "body": "*Ps 77:23-25*\nBramy nieba Pan otworzył; jak deszcz im spuścił mannę na pokarm; obdarzył ich chlebem niebieskim; chleb An", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niechaj nas oczyści złożona dzisiaj ofiara i czyni godnymi uczestnictwa w świętych tajemnicach.\nPrze", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 15:26; 16:14*\nDuch, który od Ojca pochodzi, alleluja, On mnie uwielbi, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech Duch Święty odnowi nasze dusze przez ten Boski Sakrament, gdyż On sam jest odpuszczeniem wszys", + "id": "Postcommunio" + } + ], + "2025-06-11": [ + { + "body": "*Ps 67:8 67:9*\nO Boże, gdyś wyruszał wobec ludu swego, wskazując im drogę i wśród nich mieszkając, alleluja, ziemia zadr", + "id": "Introitus" + }, + { + "body": "Panie, niech Pocieszyciel, który od Ciebie pochodzi, oświeci nasze umysły i doprowadzi je do wszelkiej prawdy, jak to ob", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 2:14-21*\nW one dni: Powstawszy Piotr Wraz z jedenastoma podniósł głos swój i przemó", + "id": "LectioL1" + }, + { + "body": "Alleluja.\n*Ps 32:6*\nPrzez słowo Pana powstały niebiosa i wszystkie ich zastępy przez tchnienie ust Jego.", + "id": "GradualeL1" + }, + { + "body": "Wszechmogący i miłosierny Boże, spraw, prosimy, aby Duch Święty przez swe zamieszkanie raczył uczynić z nas świątynię sw", + "id": "OratioL1" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 5:12-16*\nW one dni: Przez ręce Apostołów działy się wśród ludu liczne znaki i cuda.", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja.\n℣. (Tu się przyklęka) Przyjdź, Duchu Święty, napełnij serca Twych wiernych i zapal w nich ogień Twoj", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 6:44-52*\nOnego czasu: Mówił Jezus rzeszom żydowskim: «Nikt nie może przy", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47-48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnę do przykazań Twoich, które umiłowałe", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij złożony dar ofiarny i spraw łaskawie, abyśmy zbożnymi czynami uczcili to, co sprawujemy w t", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 14:27*\nPokój zostawiam wam, alleluja: pokój mój daję wam, alleluja, alleluja.", + "id": "Communio" + }, + { + "body": "Przyjmując niebieski Sakrament, błagamy łaskawość Twoją, Panie, abyśmy w wieczności cieszyli się tym, co sprawujemy w do", + "id": "Postcommunio" + } + ], + "2025-06-12": [ + { + "body": "*Mdr 1:7*\nDuch Pański napełnił okrąg ziemi, alleluja: A Ten, który wszystko obejmuje, zna każde słowo, alleluja, alleluj", + "id": "Introitus" + }, + { + "body": "Boże, któryś w dniu dzisiejszym pouczył serca wiernych światłem Ducha Świętego, daj nam w tymże Duchu poznać co jest pra", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 8:5-8*\nW one dni: Filip zaszedłszy do miasta Samarii głosił im Chrystusa. I rzesze ", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 103:30*\nZeślij Ducha Twojego, a powstanie życie i odnowisz oblicze ziemi, alleluja. (Tu się przyk", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 9:1-6*\nOnego czasu: Jezus wezwawszy dwunastu Apostołów dał im władzę", + "id": "Evangelium" + }, + { + "body": "*Ps 67:29-30*\nUtwierdź to, Boże, czegoś w nas dokonał. Przez wzgląd na Twoją świątynię, która jest w Jeruzalem, niech kr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, uświęć złożone dary i oczyść nasze serca światłem Ducha Świętego.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*Dz 2:2; 2:4*\nNagle dał się słyszeć z nieba szum jakby nadchodzącego wichru gwałtownego tam gdzie przebywali, alleluja. ", + "id": "Communio" + }, + { + "body": "Panie, niech tchnienie Ducha Świętego oczyści nasze serca, i użyźni je rosą Jego łaski.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-06-13": [ + { + "body": "*Ps 70:8 70:23*\nPełne niech będą me usta chwały Twojej, alleluja, ażebym mógł śpiewać, alleluja; a gdy się rozśpiewam, r", + "id": "Introitus" + }, + { + "body": "Miłosierny Boże, prosimy Cię, spraw, aby Kościół Twój zjednoczony przez Ducha Świętego nigdy nie został zaniepokojony pr", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Joela.\n*Jl 2:23-24; 2:26-27*\nTo mówi Pan Bóg: Synowie Syjonu weselcie się i radujcie się w Pan", + "id": "Lectio" + }, + { + "body": "Alleluja, alleluja\n*Ps 12:1*\nO jak dobry i słodki jest dla nas Duch Twój, o Panie. Alleluja. (Tu się przyklęka)\n℣. Przyj", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 5:17-26*\nOnego czasu: Stało się dnia jednego, że Jezus siedział nauc", + "id": "Evangelium" + }, + { + "body": "*Mdr 145:2*\nChwal, duszo moja, Pana! Boga wielbić pragnę przez całe me życie; śpiewać Mu będę, dopóki będę żył, alleluja", + "id": "Offertorium" + }, + { + "body": "Panie, niech ofiary złożone przed Twoim obliczem strawi ów Boski ogień, którym Duch Święty zapalił serca uczniów Chrystu", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 14:18*\nNie zostawię was sierotami; przyjdę do was, i radować się będzie serce wasze, alleluja.", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, dary świętego misterium pokornie błagając, aby to, co kazałeś nam czynić na Twoją pamiątkę, przynios", + "id": "Postcommunio" + } + ], + "2025-06-14": [ + { + "body": "*Rz 5:5*\nMiłość Boża rozlana jest w sercach naszych, alleluja, przez Ducha Świętego, mieszkającego w nas, alleluja, alle", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, wlej łaskawie Ducha Świętego w dusze nasze; Jego bowiem mądrość nas stworzyła, a Opatrzność nami rzą", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Joela.\n*Jl 2:28-32*\n*Na proroctwo Joela powołał się św. Piotr w dniu Zesłania Ducha Świętego.*", + "id": "LectioL1" + }, + { + "body": "Alleluja.\n*J 6:64*\nDuch jest tym, który ożywia, ciało nic nie pomoże.", + "id": "GradualeL1" + }, + { + "body": "Prosimy Cię, Panie, niech Duch Święty zapali nas tym ogniem, który Pan nasz Jezus Chrystus zesłał na ziemię, pragnąc, by", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 23:9-11; 23:15-17; 23:21*\n*W Starym Testamencie w Pięćdziesiątnicę składano na ofiar", + "id": "LectioL2" + }, + { + "body": "Alleluja\n*Job 26:13*\nDuch Jego ozdobił niebiosa.", + "id": "GradualeL2" + }, + { + "body": "Boże, który nakazałeś dla zdrowia dusz umartwiać ciało nasze postem, spraw łaskawie, abyśmy zawsze duszą i ciałem byli T", + "id": "OratioL2" + }, + { + "body": "Czytanie z Księgi Powtórzonego Prawa.\n*Pp 26:1-11*\n*Żydzi składali Panu Bogu pierwociny w dowód wdzięczności za wyzwolen", + "id": "LectioL3" + }, + { + "body": "Alleluja\n*Dz 2:1*\nGdy nadeszły dni Pięćdziesiątnicy, siedzieli wszyscy razem.", + "id": "GradualeL3" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy wyćwiczeni przez zbawienne posty powstrzymywali się od wszelkich występków", + "id": "OratioL3" + }, + { + "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 26:3-12*\n*Wierność Panu Bogu zapewnia Jego szczególną opiekę.*\nW one dni: Rzekł Pan ", + "id": "LectioL4" + }, + { + "body": "Alleluja\n℣. (Tu się przyklęka) Przyjdź, Duchu Święty, napełnij serca Twych wiernych i zapal w nich ogień Twojej miłości.", + "id": "GradualeL4" + }, + { + "body": "Wszechmogący Boże, prosimy Cię, daj nam tak wstrzymywać się od pokarmów mięsnych, abyśmy również powstrzymywali się od n", + "id": "OratioL4" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:47-51*\nW one dni: Anioł Pański zstąpił z Azariaszem i towarzyszami jego w piec ", + "id": "LectioL5" + }, + { + "body": "Alleluja.\n*Dn 3:52*\nBłogosławiony jesteś Panie, Boże ojców naszych, i chwalebny na wieki.", + "id": "GradualeL5" + }, + { + "body": "Boże, któryś złagodził płomienie ognia dla trzech młodzieńców, spraw łaskawie, aby nas, sług Twoich, nie strawił płomień", + "id": "OratioL5" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 5:1-5*\n*Wiara w Chrystusa i obecność Ducha Świętego zamieniają ", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nChwalcie Pana, wszystkie narody, wysławiajcie Go, wszystkie ludy.\n℣. Bo miłosierdzie Jego nad nami utwierdz", + "id": "Graduale" + }, + { + "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 4:38-44*\n*Za przykładem Zbawiciela Kościół spieszy z pomocą w każdej", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nPanie, Boże, Zbawicielu mój, podczas dnia wołam i w nocy żalę się przed Tobą, niech moja modlitwa dojdzie do", + "id": "Offertorium" + }, + { + "body": "Aby nasze posty podobały się Tobie, Panie, daj nam złożyć Ci w ofierze serca oczyszczone mocą tej tajemnicy.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", + "id": "Prefatio" + }, + { + "body": "*J 3:8*\nDuch tchnie, kędy chce: i głos Jego słyszysz, alleluja, alleluja, ale nie wiesz, skąd przychodzi ani dokąd idzie", + "id": "Communio" + }, + { + "body": "Panie, niech Twoje święte tajemnice obudzą w nas Boży zapał, abyśmy czerpali radość zarówno z ich sprawowania, jak z owo", + "id": "Postcommunio" + } + ], + "2025-06-15": [ + { + "body": "*Tob 12:6*\nBłogosławiona Niech będzie Święta Trójca i nierozdzielna Jedność. Uwielbiajmy ją, albowiem okazała nad nami m", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który przez wyznawanie prawdziwej wiary dałeś poznać sługom Twoim chwałę przedwiecznej Trójc", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 11:33-36*\n*Tajemnica Trójcy Przenajświętszej, podobnie jak wszy", + "id": "Lectio" + }, + { + "body": "*Dn 3:55-56*\nBłogosławiony jesteś, Panie, który wzrokiem zgłębiasz przepaści, a siedzisz na Cherubinach.\n℣. Błogosławion", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 28:18-20*\n*Chrzest święty czyni nas przybranymi dziećmi Bożymi i uc", + "id": "Evangelium" + }, + { + "body": "*Tob 12:6*\nBłogosławiony niech będzie Bóg Ojciec i Jednorodzony Syn Boży, a także i Duch Święty: gdyż okazał nad nami mi", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie Boże nasz, uświęć przez wezwanie świętego imienia Twojego, ofiarę, którą Ci składamy, i przez nią ucz", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Tob 12:6*\nBłogosławimy Boga niebios, i wobec wszystkich istot żyjących dziękować Mu będziemy, gdyż okazał nad nami miło", + "id": "Communio" + }, + { + "body": "Panie, Boże nasz, niech przyjęcie tego sakramentu oraz wyznanie Przedwiecznej i Świętej Trójcy oraz Jej nierozdzielnej j", + "id": "Postcommunio" + } + ], + "2025-06-16": [ + { + "body": "*Ps 12:6*\nO Panie, zaufałem miłosierdziu Twemu; serce me cieszy się z Twojej pomocy, będę śpiewał Panu, co darzy mnie do", + "id": "Introitus" + }, + { + "body": "Boże, mocy ufających Tobie, wysłuchaj łaskawie błagania nasze, a że ludzka ułomność bez Ciebie nic uczynić nie może, wsp", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 4:8-21*\nNajmilsi: Bóg jest miłością. W tym okazała się miłość Boża ku nam,", + "id": "Lectio" + }, + { + "body": "*Ps 40:5; 40:2*\nJa mówię: Panie, zmiłuj się nade mną; uzdrów mnie, bo przeciw Tobie zgrzeszyłem.\n℣. Błogosławiony ten, k", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 6:36-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Bądźcie miłosierni", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4*\nZwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij łaskawie ofiarowane Ci dary i spraw, by się stały dla nas nieustanną pomocą.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nOpowiem wszystkie cudowne dzieła Twoje, będę się cieszyć i radować Tobą, śpiewać imieniu Twemu, o Najwyższy.", + "id": "Communio" + }, + { + "body": "Nasyceni tak wielkim darem, prosimy Cię, Panie: daj, byśmy czerpali zbawienne łaski i nigdy nie przestawali Cię wielbić.", + "id": "Postcommunio" + } + ], + "2025-06-17": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, z Twojej woli święty Grzegorz, Twój Wyznawca i Biskup, jaśniał pasterską gorliwością i miłosierdziem wobec biednyc", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + } + ], + "2025-06-18": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, który chciałeś oświecić swój Kościół zadziwiającą nauką i chwalebnymi zasługami życia św. Efrema, Twego Wyznawcy i", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Marka i Marcelina*\nSpraw, prosimy Cię, wszechmogący Boże, aby od wszelkich niebezpieczeństw uwolniło na", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Marka i Marcelina*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętych Twoich Męczenników Marka i M", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Marka i Marcelina*\nPosileni darem zbawiennym, pokornie błagamy Cię, Panie, aby Sakrament, który z radoś", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-19": [ + { + "body": "*Ps 80:17*\nNakarmił ich pszenicą przewyborną, alleluja. A z opoki miodem nasycił ich, alleluja, alleluja, alleluja.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Boże, który w przedziwnym Sakramencie zostawiłeś nam pamiątkę Swej męki, dozwól, prosimy, taką czcią otaczać święte taje", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 11:23-29*\n*Św. Paweł zapewnia nas, że udział we Mszy święt", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOczy wszystkich w Tobie, Panie, pokładają nadzieję, a Ty im dajesz pokarm we właściwym czasie.\n℣. Ty otwi", + "id": "Graduale" + }, + { + "body": "Zbawiciela chwal, Syjonie,\nW hymnów i kantyków tonie,\nWodza i pasterza.\n\nZ całej duszy chwal Go śmiało,\nGdyż przewyższa ", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 6:56-59*\nOnego czasu: Rzekł Jezus rzeszom żydowskim: «Ciało moje prawdzi", + "id": "Evangelium" + }, + { + "body": "*Kpł 21:6*\nKapłani Pańscy kadzenie i chleb składają Bogu w ofierze, przeto świętymi być powinni wobec Boga swego, by nie", + "id": "Offertorium" + }, + { + "body": "Prosimy Ciebie, Panie, użycz łaskawie Kościołowi Twemu darów jedności i pokoju, które mistycznie wyraża ofiara przez nas", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*1 Kor 11:26-27*\nIlekroć ten chleb pożywać, a kielich pić będziecie, śmierć Pańską będziecie zwiastować, aż przybędzie. ", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię Panie, aby w wieczności napełniała nas radość z posiadania Bóstwa Twojego, co wyobraża już doczesne s", + "id": "Postcommunio" + } + ], + "2025-06-20": [ + { + "body": "*Ps 12:6*\nO Panie, zaufałem miłosierdziu Twemu; serce me cieszy się z Twojej pomocy, będę śpiewał Panu, co darzy mnie do", + "id": "Introitus" + }, + { + "body": "Boże, mocy ufających Tobie, wysłuchaj łaskawie błagania nasze, a że ludzka ułomność bez Ciebie nic uczynić nie może, wsp", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Sylweriusza, Papieża i Męczennika*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieu", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 4:8-21*\nNajmilsi: Bóg jest miłością. W tym okazała się miłość Boża ku nam,", + "id": "Lectio" + }, + { + "body": "*Ps 40:5; 40:2*\nJa mówię: Panie, zmiłuj się nade mną; uzdrów mnie, bo przeciw Tobie zgrzeszyłem.\n℣. Błogosławiony ten, k", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 6:36-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Bądźcie miłosierni", + "id": "Evangelium" + }, + { + "body": "*Ps 5:3-4*\nZwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij łaskawie ofiarowane Ci dary i spraw, by się stały dla nas nieustanną pomocą.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Sylweriusza, Papieża i Męczennika*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 9:2-3*\nOpowiem wszystkie cudowne dzieła Twoje, będę się cieszyć i radować Tobą, śpiewać imieniu Twemu, o Najwyższy.", + "id": "Communio" + }, + { + "body": "Nasyceni tak wielkim darem, prosimy Cię, Panie: daj, byśmy czerpali zbawienne łaski i nigdy nie przestawali Cię wielbić.", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Sylweriusza, Papieża i Męczennika*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym prz", + "id": "Commemoratio Postcommunio" + } + ], + "2025-06-21": [ + { + "body": "*Ps 8:6*\nUczyniłeś go niewiele mniejszym od Aniołów, chwałą i czcią go uwieńczyłeś.\n*Ps 148:2*\nChwalcie Pana, wszyscy Je", + "id": "Introitus" + }, + { + "body": "Boże, rozdawco darów niebieskich, który w anielskim młodzieńcu Alojzym połączyłeś przedziwną niewinność życia z równie w", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 70:5-6*\nPanie, nadziejo moja od młodości mojej, na Tobie wsparty jestem od powicia: byłeś mym opiekunem od żywota ma", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:29-40*\n*Św. Alojzy wypełnił doskonale oba przykazania miłości. D", + "id": "Evangelium" + }, + { + "body": "*Ps 23:3-4*\nKto wstąpi na górę Pana lub stanie na świętym Jego miejscu? Człowiek rąk nieskalanych i czystego serca.", + "id": "Offertorium" + }, + { + "body": "Spraw, Panie, abyśmy zasiedli do uczty niebieskiej odziani w szatę godową, którą zdobiły bezcennymi perłami pobożne przy", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 77:24-25*\nObdarzył ich chlebem niebieskim, chleb Aniołów pożywał człowiek.", + "id": "Communio" + }, + { + "body": "Daj, Panie, abyśmy posileni chlebem Anielskim żyli na wzór Aniołów i za przykładem tego, którego dziś czcimy, stale trwa", + "id": "Postcommunio" + } + ], + "2025-06-22": [ + { + "body": "*Ps 17:19-20*\nPan stał się moją obroną; wywiódł mnie na pole rozległe: zbawił mnie bo mnie miłuje.\n*Ps 17:2-3*\nMiłuję Ci", + "id": "Introitus" + }, + { + "body": "Racz nas obdarzyć Panie ustawiczną bojaźnią i miłością świętego imienia Twojego, albowiem nigdy opieki Swej nie odmawias", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 3:13-18*\nNajmilsi: Nie dziwcie się, jeśli świat was nienawidzi. My wiemy, ", + "id": "Lectio" + }, + { + "body": "*Ps 119:1-2*\nDo Pana wołałem, gdym był w utrapieniu, a On mnie wysłuchał.\n℣. Wybaw mnie Panie od ust kłamliwych, i od po", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:16-24*\nOnego czasu: Powiedział Jezus faryzeuszom tę przypowieść: ", + "id": "Evangelium" + }, + { + "body": "*Ps 6:5*\nPowróć, o Panie, wyrwij duszę moją, przez miłosierdzie Twoje mnie wybaw.", + "id": "Offertorium" + }, + { + "body": "Panie, ofiara, którą mamy złożyć Twojemu imieniu, niech nas oczyszcza, i z dnia na dzień doskonali w prowadzeniu życia g", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 12:6*\nBędę śpiewał Panu, który darzy mnie dobrem, zanucę psalm imieniu Najwyższego Pana.", + "id": "Communio" + }, + { + "body": "Przyjąwszy Twoje święte dary, prosimy Cię, Panie, aby poprzez częste uczestnictwo w tym Sakramencie, wzrastał w nas jego", + "id": "Postcommunio" + } + ], + "2025-06-23": [ + { + "body": "*Łk 1:13; 1:15; 1:14*\nNie lękaj się, Zachariaszu, wysłuchana jest prośba twoja. Żona twoja Elżbieta urodzi ci syna, i na", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby rodzina Twych sług kroczyła drogą zbawienia, a wierna napomnieniom świętego J", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 1:4-10*\nW one dni: Stało się słowo Pańskie do mnie, mówiąc: «Pierwej, niźlim ", + "id": "Lectio" + }, + { + "body": "*J 1:6-7*\nBył człowiek posłany od Boga, a Jan mu było na imię.\n℣. Przyszedł on, aby świadczyć o światłości; aby przygoto", + "id": "Graduale" + }, + { + "body": "Początek ☩ Ewangelii świętej według Łukasza.\n*Łk 1:5-17*\nBył za dni Heroda, króla Judei, kapłan pewien, imieniem Zachari", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", + "id": "Offertorium" + }, + { + "body": "Uświęć, Panie, złożone dary i za wstawiennictwem św. Jana Chrzciciela oczyść nas ze zmazy naszych grzechów.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 20:6*\nChwała jego jest wielka dzięki Twej pomocy: blask i dostojeństwo na niego włożyłeś, o Panie.", + "id": "Communio" + }, + { + "body": "Panie, niechaj nam towarzyszy dostojna modlitwa świętego Jana Chrzciciela i niech nam uprosi zmiłowanie u Tego, którego ", + "id": "Postcommunio" + } + ], + "2025-06-24": [ + { + "body": "*Iz 49:1; 49:2*\nJuż w łonie matki mojej nazwał mnie Pan imieniem moim: włożył w me usta słowa jak ostry miecz: opieką sw", + "id": "Introitus" + }, + { + "body": "Boże, któryś dzień dzisiejszy uczynił nam wiekopomnym przez narodzenie świętego Jana, daj ludowi swojemu łaskę radości d", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 49:1-3; 49:5-7*\nSłuchajcie, wyspy, i wy, ludy odległe zważajcie: Pan mnie powoła", + "id": "Lectio" + }, + { + "body": "*Jer 1:5; 1:9*\n℣. Zanim cię ukształtowałem w żywocie znałem ciebie, jeszcze nie wyszedłeś z żywota, już cię oświeciłem. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:57-68*\nElżbiecie wypełnił się czas rozwiązania i porodziła syna. I", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie. Alleluja.", + "id": "Offertorium" + }, + { + "body": "Ołtarz Twój, Panie pokrywamy darami święcąc ze czcią narodziny tego, który zapowiadał przyjście Zbawiciela świata i wska", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 1:76*\nTy, dzieciątko nazwane będziesz prorokiem Najwyższego, bo pójdziesz przed obliczem Pana, by przygotować drogi ", + "id": "Communio" + }, + { + "body": "Kościół Twój Boże, niech czerpie radość z narodzin świętego Jana Chrzciciela, przez którego poznał sprawcę odrodzenia sw", + "id": "Postcommunio" + } + ], + "2025-06-25": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który dla ułatwienia drogi zbawienia zapewniłeś naszej słabości przykład i pomoc w swoich Świętych, daj nam tak cz", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam ku zbawieni", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N., Opata, abyśmy naśladowali jego wzo", + "id": "Postcommunio" + } + ], + "2025-06-26": [ + { + "body": "*Ps 33:20-21*\nWiele ucisków spotyka sprawiedliwych, lecz Pan ich wyzwala ze wszystkich; strzeże wszystkich ich kości: ni", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, niech nas ogarnie zdwojona radość dzisiejszej uroczystości, płynąca z uczczenia świętych", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Syr 44:10-15*\nCi są mężami pełnymi miłosierdzia, których dobre czyny nie poszły w niepamięć", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nOto jak dobrze i jak miło braciom zamieszkać społem.\n℣. Jako wyborny olejek na głowie, co spływa na brodę, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:1-8*\nOnego czasu: Rzekł Jezus uczniom swoim: «Strzeżcie się kwasu", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nNiech się radują ci wszyscy, co Twe imię miłują, bo Ty, Panie, sprawiedliwemu dasz błogosławieństwo; Panie,", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij łaskawie przez zasługi świętych Twoich Męczenników Jana i Pawła ofiarę, którą Ci składamy, ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył, jak złoto w piecu ich wypróbował, jak ofiarę", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, niebieski Sakrament, obchodząc uroczystość świętych Męczenników Twoich Jana i Pawła; daj, prosimy Ci", + "id": "Postcommunio" + } + ], + "2025-06-27": [ + { + "body": "*Ps 32:11; 32:19*\nZamysły Jego serca trwają poprzez pokolenia, by wyrwać ich dusze od śmierci i w czasie głodu ich żywić", + "id": "Introitus" + }, + { + "body": "Boże, w Sercu Twojego Syna zranionym naszymi grzechami darzysz nad niewyczerpanymi skarbami miłości; spraw, prosimy, aby", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:8-12, 14-19*\nBracia: Mnie najmniejszemu ze wszystkich świętyc", + "id": "Lectio" + }, + { + "body": "*Ps 24:8-9*\nPan jest dobry i prawy: dlatego o drodze poucza grzeszników.\n℣. W sprawiedliwości rządzi pokornymi, pokornyc", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:11-37*\nOnego czasu: Żydzi (ponieważ był to dzień Przygotowania), aby ", + "id": "Evangelium" + }, + { + "body": "*Ps 68:21*\nUrąganiem złamane me serce i sił mi zabrakło: Na współczującego czekałem, ale go nie było, i na pocieszającyc", + "id": "Offertorium" + }, + { + "body": "Wejrzyj, prosimy Cię, Panie, na niewymowną miłość Serca umiłowanego Syna Twojego i spraw, aby ofiara nasza była miłą dla", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszym Sercu Jezusowym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzi", + "id": "Prefatio" + }, + { + "body": "*J 19:34*\nJeden z żołnierzy włócznią otworzył bok Jego, a natychmiast wypłynęła krew i woda.", + "id": "Communio" + }, + { + "body": "Panie Jezu, niech Twoje święte tajemnice obudzą w nas Boży zapał, abyśmy skosztowawszy słodyczy najmilszego Serca Twojeg", + "id": "Postcommunio" + } + ], + "2025-06-28": [ + { + "body": "*J 21:18-19*\nMówi Pan do Piotra: Gdy byłeś młodym, przepasywałeś się i chodziłeś, dokąd chciałeś; lecz gdy się zestarzej", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, by żadne przeciwności nie zachwiały nami, skoroś nas ugruntował na opoce wiary ap", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 3:1-10*\nW one dni: Piotr i Jan wchodzili do świątyni na modlitwę o godzinie dziewią", + "id": "Lectio" + }, + { + "body": "*Ps 18:5; 18:2*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.\n℣. Niebiosa głoszą chwałę Boga, dz", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 21:15-10*\nOnego czasu: Rzekł Jezus do Szymona Piotra: «Szymonie, synu Ja", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przez wstawiennictwo Apostołów poświęć dary Swojego ludu i oczyść nas ze zmazy naszych grzechów.\nPrz", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 21:15; 21:17*\nSzymonie, synu Jana, miłujesz mnie więcej niż ci? Panie, Ty wszystko wiesz, Ty wiesz, że Cię miłuję.", + "id": "Communio" + }, + { + "body": "Panie, za przyczyną świętych Apostołów strzeż od wszelkich przeciwności tych, których posiliłeś niebieskim pokarmem.\nPrz", + "id": "Postcommunio" + } + ], + "2025-06-29": [ + { + "body": "*Dz 12:11*\nTeraz wiem prawdziwie iż Pan posłał Anioła swego i wyrwał mnie z ręki Heroda oraz z tego wszystkiego, czego o", + "id": "Introitus" + }, + { + "body": "Boże, który uświęciłeś dzień dzisiejszy męczeństwem Apostołów Twoich Piotra i Pawła, daj Kościołowi Swemu we wszystkim i", + "id": "Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 12:1-11*\nW one dni: Król Herod postanowił wszcząć prześladowanie przeciw niektórym ", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi: głosić będą Twe imię, o Panie. Synowie twoi zajmą miejsce twoich", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi: przez wszystkie pokolenia głosić będą Twe imię, o Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech modlitwa apostolska towarzyszy darom, które składamy w ofierze Twojemu imieniu: dzięki niej racz nas oczysz", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Panie, za przyczyną świętych Apostołów strzeż od wszelkich przeciwności tych, których posiliłeś niebieskim pokarmem.\nPrz", + "id": "Postcommunio" + } + ], + "2025-06-30": [ + { + "body": "*2 Tm 1:12*\nWiem, komu zawierzyłem, i pewien jestem, że mocen jest przechować skarb mój aż do onego dnia, Sędzia sprawie", + "id": "Introitus" + }, + { + "body": "Boże, który oświeciłeś wiele narodów przez nauczanie świętego Pawła Apostoła, daj nam, prosimy Cię, abyśmy doznali wstaw", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Gal 1:11-20*\nBracia: Oznajmiam wam, że Ewangelia głoszona przeze m", + "id": "Lectio" + }, + { + "body": "*Gal 2:8-9*\nTen sam, który w Piotrze był sprawcą apostolstwa żydów, sprawił i we mnie apostolstwo wśród pogan, i poznali", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:16-22*\nOnego czasu: Rzekł Jezus uczniom swoim: «Oto ja posyłam w", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże: na zawsze jest utrwalone ich władanie.", + "id": "Offertorium" + }, + { + "body": "Dla próśb Twego Apostoła Pawła poświęć, Panie dary ludu Twojego: miłe Ci są, boś je ustanowił, niech się staną milsze pr", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę, powiadam wam, że wy, którzyście opuścili wszystko i za mną poszli, stokroć więcej otrzymacie i ż", + "id": "Communio" + }, + { + "body": "Po przyjęciu Sakramentu błagamy Cię, Panie, za przyczyną św. Pawła, Twego Apostoła, aby ofiara złożona ku jego chwale pr", + "id": "Postcommunio" + } + ], + "2025-07-01": [ + { + "body": "*Ap 5:9-10*\nOdkupiłeś nas Panie przez Krew swoją; ludzi ze wszelkiego pokolenia, języka, ludu i narodu; i uczyniłeś nas ", + "id": "Introitus" + }, + { + "body": "Wszechmogący wieczny Boże, który Jednorodzonego Syna Twego ustanowiłeś Odkupicielem świata i dałeś się przebłagać Jego K", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 9:11-15*\n*Ofiara krzyżowa Chrystusa to wejście Arcykapłan", + "id": "Lectio" + }, + { + "body": "*1 J 5:6; 5:7-8*\nJest to ten sam Jezus Chrystus, który przyszedł przez wodę i krew, nie w wodzie tylko, ale w wodzie i w", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:30-35*\nOnego czasu: Jezus, gdy skosztował octu, rzekł: «Wykonało się»", + "id": "Evangelium" + }, + { + "body": "*1 Kor 10:16*\nKielich błogosławieństwa, który błogosławimy, czyż nie jest uczestniczeniem we Krwi Chrystusowej? A chleb,", + "id": "Offertorium" + }, + { + "body": "Błagamy Cię, Boże zastępów, niech nam wolno będzie przez te święte tajemnice przystąpić do Pośrednika nowego przymierza ", + "id": "Secreta" + }, + { + "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", + "id": "Prefatio" + }, + { + "body": "*Hbr 9:28*\nChrystus raz jeden był ofiarowany dla usunięcia grzechów wielu, drugi raz ukaże się nie dla zgładzenia grzech", + "id": "Communio" + }, + { + "body": "Dopuszczeni do świętej uczty, z radością czerpaliśmy, Panie, wodę ze źródeł Zbawiciela: błagamy, niech Krew Jego stanie ", + "id": "Postcommunio" + } + ], + "2025-07-02": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, udziel sługom Twoim daru łaski niebieskiej: jak macierzyństwo Najświętszej Dziewicy stało się dla ni", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Procesa i Martyniana, Męczenników*\nBoże, który ze względu na chwalebne wyznanie wiary przez świętych Mę", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Pieśni nad Pieśniami.\n*Pnp 2:8-14*\n*Kościół odnosi do Matki Bożej słowa Pieśni nad pieśniami. W drodze do Heb", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:39-47*\nOnego czasu: Powstawszy Maryja udała się śpiesznie w okolic", + "id": "Evangelium" + }, + { + "body": "Błogosławiona jesteś, Panno Maryjo, któraś nosiła Stwórcę wszechrzeczy. Porodziłaś Tego, który Cię stworzył, i na wieki ", + "id": "Offertorium" + }, + { + "body": "Niech nas wspomaga, Panie, człowieczeństwo Jednorodzonego Syna Twojego; On to, zrodzony z Dziewicy, nie naruszył panieńs", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Procesa i Martyniana, Męczenników*\nPrzyjmij, Panie, prośby i ofiary, a modlitwa Twoich Świętych niech n", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Panie, przyjęliśmy Sakrament obchodząc doroczną uroczystość: spraw, prosimy, niech on udzieli nam pomocy na życie doczes", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Procesa i Martyniana, Męczenników*\nPosileni w czasie uczty ofiarnej Najświętszym Ciałem i Najdroższą Kr", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-03": [ + { + "body": "*Ml 2:6*\nZakon prawdy był w jego ustach, a nieprawość nie znalazła się na jego wargach; w pokoju i w prawości chodził ze", + "id": "Introitus" + }, + { + "body": "Boże, który sprawiłeś, że św. Ireneusz prawdziwą nauką zwalczał herezje i szczęśliwie umocnił pokój w Kościele, prosimy ", + "id": "Oratio" + }, + { + "body": "*2 Tm 3:14-17; 4:1-15*\nNajmilszy! Trwaj w tym, czegoś się nauczył i co ci zostało zwierzone, wiedząc, od kogoś się naucz", + "id": "Lectio" + }, + { + "body": "*Ps 121:8*\nPrzez wzgląd na mych braci i towarzyszy moich mówić będę: «Pokój w tobie».\n*Ps 36:37*\nStrzeż niewinności, pat", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:28-33*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie bójcie się t", + "id": "Evangelium" + }, + { + "body": "*Syr 24:44*\n*«Jak stworzone przez Boga słońce oświeca cały świat, tak promieniuje przepowiadanie Prawdy, a jej światło d", + "id": "Offertorium" + }, + { + "body": "Boże, który nie dozwalasz, aby narody w Ciebie wierzące zostały wstrząśnięte jakąkolwiek trwogą, racz przyjąć prośby i o", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Syr 24:47*\nZobaczcie, że nie dla samego siebie pracowałem, lecz dla wszystkich szukających prawdy.", + "id": "Communio" + }, + { + "body": "Boże, sprawco i miłośniku pokoju, którego znać to żyć, któremu służyć to królować; chroń proszących Cię od wszelkich nap", + "id": "Postcommunio" + } + ], + "2025-07-04": [ + { + "body": "*Ps 24:16; 24:18*\nWejrzyj na mnie Panie i zlituj się nade mną, bo sam jestem i biedny. Zobacz moją nędzę i utrudzenie, i", + "id": "Introitus" + }, + { + "body": "Obrońco ufających w Tobie, Boże, bez którego nic mocnym, nic świętym nie jest, pomnóż nad nami miłosierdzie Twoje, abyśm", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:6-11*\nNajmilsi: Uniżajcie się pod możną ręką Bożą, aby Was wywyższył w", + "id": "Lectio" + }, + { + "body": "*Ps 54:23; 54:17; 54:19*\nPorucz swą troskę Panu, On sam o tobie mieć będzie pieczę.\n℣. Kiedy wołałem do Pana, On wysłuch", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 15:1-10*\nOnego czasu: Zbliżali się do Jezusa celnicy i grzesznicy, a", + "id": "Evangelium" + }, + { + "body": "*Ps 9:11-12 9:13*\nTobie ufać winni wyznawcy Twego Imienia, bo nie opuszczasz Panie szukających Ciebie. Śpiewajcie psalm ", + "id": "Offertorium" + }, + { + "body": "Wejrzyj Panie na błagania i ofiary Kościoła Twego, nieustannie je uświęcając użycz ich jako pokarmu dla zbawienia wierny", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 15:10*\nPowiadam wam, iż radość panuje wśród Aniołów Bożych nawet z jednego grzesznika czyniącego pokutę.", + "id": "Communio" + }, + { + "body": "Niechaj nas ożywi spożycie Tych darów świętych, i oczyszczonych niechaj nas przygotuje do otrzymania zmiłowania wieczneg", + "id": "Postcommunio" + } + ], + "2025-07-05": [ + { + "body": "*1 Kor 2:4*\nMowa moja i nauczanie moje nie polegały na przekonywających słowach mądrości ludzkiej, ale na okazaniu ducha", + "id": "Introitus" + }, + { + "body": "Panie Boże, spraw, abyśmy w duchu świętego Pawła Apostoła Posiedli tę najszczytniejszą znajomość Jezusa Chrystusa, w któ", + "id": "Oratio" + }, + { + "body": "*1 Tm 4:8-16*\n*Św. Paweł przypomina Tymoteuszowi i apostołom wszystkich czasów, że podstawą owocności ich działania jest", + "id": "Lectio" + }, + { + "body": "*Flp 1:8-9*\nŚwiadkiem mi jest Bóg, jak pragnę, abyście wszyscy byli w sercu Jezusa Chrystusa. A modlę się o to, aby miło", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 10:15-21*\n*Św. Antoni w młodym wieku usłyszał wezwanie Boże i poszedł ", + "id": "Evangelium" + }, + { + "body": "*Ps 137:1-2*\nWobec Aniołów będę Ci śpiewał; upadnę na twarz w Twoim świętym przybytku i będę sławił Twe imię.", + "id": "Offertorium" + }, + { + "body": "Spraw, Panie, byśmy do stołu uczty niebieskiej przynosili taką czystość duszy i ciała, jaką przedziwnie jaśniał św. Anto", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Flp 3:17*\nNaśladowcami moimi bądźcie, bracia, i zapatrujcie się na tych, którzy tak postępują, jak tego wzór macie w na", + "id": "Communio" + }, + { + "body": "Panie Jezu Chryste, niechaj niebieska uczta, która nas posiliła, rozpłomieni serca nasze takim ogniem miłości, z jakim ś", + "id": "Postcommunio" + } + ], + "2025-07-06": [ + { + "body": "*Ps 26:1; 26:2*\nPan światłością i zbawieniem moim, kogóż mam się lękać? Obrońcą życia mojego Pan, przed kim będę drżał? ", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię Panie, niech pod Twoimi rządami dzieje świata toczą się w pokoju, a Twój Kościół niech Ci służy w nie", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:18-23*\n*Od chwili dokonania odkupienia ludzkość i cały świat ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nO Panie, przebacz nam grzechy, aby nie drwili z nas poganie: «Gdzie jest ich Bóg?»\n℣. Wspomóż nas, Boże", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 5:1-11*\n*Od zesłania Ducha Świętego spełnia się zapowiedź Chrystusa ", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nOświeć me oczy, bym nie zasnął w śmierci, by wróg mój nie mówił: Ja go zwyciężyłem.", + "id": "Offertorium" + }, + { + "body": "Przyjmij Panie nasze ofiary i daj się nimi przejednać i zwróć łaskawie ku sobie nawet oporną naszą wolę.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 17:3*\nPan opoką i ucieczką moją, On moim wybawicielem, Bóg, mój wspomożyciel.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech tajemnice, któreśmy przyjęli oczyszczą nas i chronią swoim działaniem.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-07-07": [ + { + "body": "*Ps 131:9-10*\nNiech kapłani Twoi odzieją się w sprawiedliwość, a święci Twoi niech się radują; przez wzgląd na Dawida, s", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, Tyś sprawił, że ludy słowiańskie doszły do poznania Twego imienia dzięki świętym Twoim Wyzna", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 7:23-27*\nBracia: Kapłanów było wielu, dlatego że śmierć i", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\nKapłanów Syjonu odzieję zbawienną pomocą, a jego święci radośnie będą się weselić.\n℣. Tam dla Dawida wzbu", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nPrzedziwny jest Bóg w Swoich Świętych: Bóg Izraela sam Swojemu ludowi daje potęgę i siłę: błogosławiony Bóg.", + "id": "Offertorium" + }, + { + "body": "Wejrzyj, Panie, na modły i ofiary Swoich wiernych: niech przy uroczystości Twoich Świętych będą Ci miłe, a nam niech wyj", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 10:27*\nCo wam mówię w ciemności, opowiadajcie na świetle, mówi Pan, i co usłyszycie na ucho, głoście na dachach.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, skoro raczysz udzielać nam darów niebieskich, daj, nam za wstawiennictwem świętych Twoic", + "id": "Postcommunio" + } + ], + "2025-07-08": [ + { + "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", + "id": "Introitus" + }, + { + "body": "Najłaskawszy Boże, który wśród innych wspaniałych darów obdarzyłeś świętą królową Elżbietę przywilejem uśmierzania gróźb", + "id": "Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2025-07-09": [ + { + "body": "*Ps 26:1; 26:2*\nPan światłością i zbawieniem moim, kogóż mam się lękać? Obrońcą życia mojego Pan, przed kim będę drżał? ", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię Panie, niech pod Twoimi rządami dzieje świata toczą się w pokoju, a Twój Kościół niech Ci służy w nie", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:18-23*\n*Od chwili dokonania odkupienia ludzkość i cały świat ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nO Panie, przebacz nam grzechy, aby nie drwili z nas poganie: «Gdzie jest ich Bóg?»\n℣. Wspomóż nas, Boże", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 5:1-11*\n*Od zesłania Ducha Świętego spełnia się zapowiedź Chrystusa ", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nOświeć me oczy, bym nie zasnął w śmierci, by wróg mój nie mówił: Ja go zwyciężyłem.", + "id": "Offertorium" + }, + { + "body": "Przyjmij Panie nasze ofiary i daj się nimi przejednać i zwróć łaskawie ku sobie nawet oporną naszą wolę.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 17:3*\nPan opoką i ucieczką moją, On moim wybawicielem, Bóg, mój wspomożyciel.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech tajemnice, któreśmy przyjęli oczyszczą nas i chronią swoim działaniem.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-07-10": [ + { + "body": "*Ps 112:1; 112:9*\nChwalcie, o dzieci, Pana, chwalcie imię Pańskie: On tej, co była niepłodna, każe mieszkać w domu jako ", + "id": "Introitus" + }, + { + "body": "Spraw, wszechmogący Boże, abyśmy, podziwiając męstwo sławnych Męczenników w wyznawaniu wiary, doznali miłościwego ich ws", + "id": "Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 123:7-8*\nDusza nasza niby ptak wyrwała się z sidła łowców.\n℣. Sidło się podarło, a my zostaliśmy uwolnieni. Wspomoże", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 12:46-50*\nOnego czasu: Gdy Jezus mówił do rzeszy, oto matka Jego i ", + "id": "Evangelium" + }, + { + "body": "*Ps 123:7*\nDusza nasza niby ptak wyrwała się z sidła łowców; sidło się podarło, a my zostaliśmy uwolnieni.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę: niech ona za wstawiennictwem Świętych Twoich utwierdzi nas w Twojej s", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 12:50*\nKtobykolwiek czynił wolę Ojca mego, który jest w niebie, ten moim bratem, i siostrą, i matką jest, mówi Pan.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, abyśmy za wstawiennictwem Twoich Świętych osiągnęli zbawienie, którego zadatek otrzymali", + "id": "Postcommunio" + } + ], + "2025-07-11": [ + { + "body": "*Ps 26:1; 26:2*\nPan światłością i zbawieniem moim, kogóż mam się lękać? Obrońcą życia mojego Pan, przed kim będę drżał? ", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię Panie, niech pod Twoimi rządami dzieje świata toczą się w pokoju, a Twój Kościół niech Ci służy w nie", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Piusa I, Papieża i Męczennika*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustan", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:18-23*\n*Od chwili dokonania odkupienia ludzkość i cały świat ", + "id": "Lectio" + }, + { + "body": "*Ps 78:9; 78:10*\nO Panie, przebacz nam grzechy, aby nie drwili z nas poganie: «Gdzie jest ich Bóg?»\n℣. Wspomóż nas, Boże", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 5:1-11*\n*Od zesłania Ducha Świętego spełnia się zapowiedź Chrystusa ", + "id": "Evangelium" + }, + { + "body": "*Ps 12:4-5*\nOświeć me oczy, bym nie zasnął w śmierci, by wróg mój nie mówił: Ja go zwyciężyłem.", + "id": "Offertorium" + }, + { + "body": "Przyjmij Panie nasze ofiary i daj się nimi przejednać i zwróć łaskawie ku sobie nawet oporną naszą wolę.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Piusa I, Papieża i Męczennika*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trz", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 17:3*\nPan opoką i ucieczką moją, On moim wybawicielem, Bóg, mój wspomożyciel.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech tajemnice, któreśmy przyjęli oczyszczą nas i chronią swoim działaniem.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Piusa I, Papieża i Męczennika*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez ś", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-12": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Jana, Opata, abyśmy za jego przyczyną otrzymali to, c", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Nabora i Feliksa*\nSpraw, prosimy Cię, Panie, abyśmy stale doznawali pomocy świętych Męczenników Twoich ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:43-48*\nOnego czasu rzekł Jezus uczniom swoim: «Słyszeliście, że p", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam ku zbawieni", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Nabora i Feliksa*\nProsimy Cię, Panie, niech wstawiennictwo świętych Męczenników Twoich Nabora i Feliksa", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N., Opata, abyśmy naśladowali jego wzo", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Nabora i Feliksa*\nW rocznicę narodzin dla nieba Twoich Świętych prosimy Cię, Panie, abyśmy posileni sak", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-13": [ + { + "body": "*Ps 26:7; 62:9*\nUsłysz, Panie, głos mój, którym wołam. Tyś mą pomocą, nie odrzucaj mnie i nie opuszczaj mnie, ani mną ni", + "id": "Introitus" + }, + { + "body": "Boże, Tyś miłującym Ciebie zgotował niewidzialne dobra; wlej w nasze serca gorącą miłość ku Tobie, abyśmy miłując Cię we", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 3:8-15*\nNajmilsi: Bądźcie wszyscy jednomyślni w modlitwie, współczujący,", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nSpojrzyj obrońco nasz, Boże i wejrzyj na sługi Twoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług Sw", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:20-24*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli nie będzie ", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7; 15:8*\nBłogosławię Pana, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy,", + "id": "Offertorium" + }, + { + "body": "Daj się przebłagać Panie naszymi modłami i łaskawie przyjmij te ofiary sług i służebnic Twoich, a co każdy złożył na chw", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję, bym w domu Pańskim przebywał po wszystkie dni mego życia.", + "id": "Communio" + }, + { + "body": "Nasyciwszy nas Panie, darem niebieskim, oczyść nas z ukrytych grzechów i wybaw od zasadzek nieprzyjacielskich.\nPrzez Pan", + "id": "Postcommunio" + } + ], + "2025-07-14": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś dał ludowi Swemu świętego Bonawenturę za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech doroczna uroczystość świętego Bonawentury, Twego Wyznawcy i Biskupa, uczyni nas godnymi Twojej", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Boże, Ty nagradzasz dusze wierne, spraw, abyśmy dostąpili przebaczenia przez prośby świętego Bonawentury, Twego Wyznawcy", + "id": "Postcommunio" + } + ], + "2025-07-15": [ + { + "body": "*Iz 42:6*\nJa, Pan, wezwałem cię sprawiedliwie i ująłem cię za rękę i dałem cię na przymierze dla ludu, na światłość naro", + "id": "Introitus" + }, + { + "body": "Najmiłosierniejszy Boże, za szerzenie wiary w Ciebie święty Brunon, Biskup i Męczennik wielkodusznie przelał krew na tyc", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Henryka, Cesarza i Wyznawcy*\nBoże, który w dniu dzisiejszym przeniosłeś św. Henryka, Twego Wyznawcę, ze", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 6:10-22*\n*Św. Brunon znał osobiście wielu władców i udzielał im rad oraz napomnień.*\nDo", + "id": "Lectio" + }, + { + "body": "*Ps 118:46-47*\nŚwiadczyłem o Twej prawdzie wobec królów, a nie wstydziłem się.\n℣. I rozważałem Twoją naukę, bo bardzo ją", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:12-16*\nOnego czasu: Rzekł Jezus uczniom swoim: «To jest przykazanie m", + "id": "Evangelium" + }, + { + "body": "*Kol 1:24-25*\nRaduję się w cierpieniach i dopełniam na ciele własnym tego, czego nie dostaje cierpieniom Chrystusa; za c", + "id": "Offertorium" + }, + { + "body": "Panie, niech ta ofiara uwolni nas od więzów naszych grzechów i za wstawiennictwem świętego Brunona, Twego Męczennika i B", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Henryka, Cesarza i Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Flp 1:20-21*\nUwielbiony będzie Chrystus w moim ciele czy to przez życie, czy też przez śmierć; bo dla mnie życiem jest ", + "id": "Communio" + }, + { + "body": "Posileni ucztą niebieską, błagamy Cię, Panie, byś łaskawie rozpalił w nas ogień Twego Ducha, który świętego Brunona, Męc", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Henryka, Cesarza i Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-16": [ + { + "body": "*Ps 26:7; 62:9*\nUsłysz, Panie, głos mój, którym wołam. Tyś mą pomocą, nie odrzucaj mnie i nie opuszczaj mnie, ani mną ni", + "id": "Introitus" + }, + { + "body": "Boże, Tyś miłującym Ciebie zgotował niewidzialne dobra; wlej w nasze serca gorącą miłość ku Tobie, abyśmy miłując Cię we", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Wspomnienie N. M. P. z Góry Karmelu*\nBoże, Tyś ozdobił zakon karmelitański szczególnym zaszczytem noszenia ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 3:8-15*\nNajmilsi: Bądźcie wszyscy jednomyślni w modlitwie, współczujący,", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nSpojrzyj obrońco nasz, Boże i wejrzyj na sługi Twoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług Sw", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:20-24*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli nie będzie ", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7; 15:8*\nBłogosławię Pana, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy,", + "id": "Offertorium" + }, + { + "body": "Daj się przebłagać Panie naszymi modłami i łaskawie przyjmij te ofiary sług i służebnic Twoich, a co każdy złożył na chw", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Wspomnienie N. M. P. z Góry Karmelu*\nPoświęć, prosimy Cię, Panie, złożone dary ofiarne i spraw za przemożny", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję, bym w domu Pańskim przebywał po wszystkie dni mego życia.", + "id": "Communio" + }, + { + "body": "Nasyciwszy nas Panie, darem niebieskim, oczyść nas z ukrytych grzechów i wybaw od zasadzek nieprzyjacielskich.\nPrzez Pan", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Wspomnienie N. M. P. z Góry Karmelu*\nProsimy Cię, Panie, niech nas wspiera dostojne wstawiennictwo Twojej c", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-17": [ + { + "body": "*Ps 26:7; 62:9*\nUsłysz, Panie, głos mój, którym wołam. Tyś mą pomocą, nie odrzucaj mnie i nie opuszczaj mnie, ani mną ni", + "id": "Introitus" + }, + { + "body": "Boże, Tyś miłującym Ciebie zgotował niewidzialne dobra; wlej w nasze serca gorącą miłość ku Tobie, abyśmy miłując Cię we", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Aleksego, Wyznawcy*\nBoże, który co roku uweselasz nas uroczystością świętego Aleksego, Twojego Wyznawcy", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 3:8-15*\nNajmilsi: Bądźcie wszyscy jednomyślni w modlitwie, współczujący,", + "id": "Lectio" + }, + { + "body": "*Ps 83:10; 83:9*\nSpojrzyj obrońco nasz, Boże i wejrzyj na sługi Twoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług Sw", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:20-24*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli nie będzie ", + "id": "Evangelium" + }, + { + "body": "*Ps 15:7; 15:8*\nBłogosławię Pana, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy,", + "id": "Offertorium" + }, + { + "body": "Daj się przebłagać Panie naszymi modłami i łaskawie przyjmij te ofiary sług i służebnic Twoich, a co każdy złożył na chw", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Aleksego, Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybaw", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję, bym w domu Pańskim przebywał po wszystkie dni mego życia.", + "id": "Communio" + }, + { + "body": "Nasyciwszy nas Panie, darem niebieskim, oczyść nas z ukrytych grzechów i wybaw od zasadzek nieprzyjacielskich.\nPrzez Pan", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Aleksego, Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech n", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-18": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który wsławiłeś błogosławionego Szymona, Twego Wyznawcę, darem głoszenia Ewangelii, spraw ła", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Kamila de Lellis*\nBoże, który wyróżniłeś świętego Kamila szczególnym darem miłości, by niósł pomoc dusz", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Kamila de Lellis*\nBoże Ojcze Wszechmogący, niech ta niepokalana ofiara, w której odnawiamy dzieło niezm", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Kamila de Lellis*\nPrzez ten pokarm niebieski, któryśmy z nabożeństwem przyjęli, obchodząc uroczystość ś", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-19": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, który obdarowałeś św. Wincentego apostolską gorliwością dla głoszenia Ewangelii ubogim i podniesienia blasku stanu", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + } + ], + "2025-07-20": [ + { + "body": "*Ps 27:8-9*\nPan jest mocą dla Swojego ludu i twierdzą zbawienia dla Swego Pomazańca; ocal lud swój, o Panie, i błogosław", + "id": "Introitus" + }, + { + "body": "Boże zastępów, od którego pochodzi wszelka doskonałość, zaszczep w naszych sercach miłość Twojego imienia i daj nam wzro", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:3-11*\n*Święty Paweł czyni aluzję do obrzędu Chrztu przez zanu", + "id": "Lectio" + }, + { + "body": "*Ps 89:13; 89:1*\nZwróć się do nas, Panie, na chwilę i daj się ubłagać sługom Swoim.\n℣. Panie, Tyś był ucieczką naszą z p", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 8:1-9*\nOnego czasu: Gdy rzesza wielka była z Jezusem, a nie miała co j", + "id": "Evangelium" + }, + { + "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", + "id": "Offertorium" + }, + { + "body": "Daj się przebłagać, Panie, naszymi modlitwami i przyjmij łaskawie te dary Twojego ludu; aby zaś niczyje pragnienie nie b", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 26:6*\nZłożę w Jego przybytku ofiary radości, zaśpiewam i psalm zanucę Panu.", + "id": "Communio" + }, + { + "body": "Nasyceni Twoimi darami, prosimy Cię Panie, spraw, aby ich skuteczne działanie oczyściło nas, a ich pomoc wsparła.\nPrzez ", + "id": "Postcommunio" + } + ], + "2025-07-21": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, który udzieliłeś św. Wawrzyńcowi, Wyznawcy Twemu i Doktorowi, ducha mądrości i męstwa do pokonywania największych ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Praksedy*\nWysłuchaj nas, Boże, nasz Zbawicielu i spraw, abyśmy radując się z uroczystości świętej Twoje", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Praksedy*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Świętych Twoich, wiedząc, że d", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Praksedy*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami; wzmacniaj nas za wstawiennictwem tej, której", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-22": [ + { + "body": "*Ps 118:95-96*\nCzekali na mnie grzesznicy, ażeby mnie zgubić, a ja pojęłam Twoje nakazy: widziałam, że ma granice Wszelk", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niechaj nas wspiera pośrednictwo świętej Marii Magdaleny, której prośbami ubłagany wskrzesiłeś jej b", + "id": "Oratio" + }, + { + "body": "*Pnp 3:2-5; 8:6-7*\n*Liturgia stosuje do św. Marii Magdaleny tekst Pieśni nad pieśniami. O świcie dnia zmartwychwstania u", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił Cię olejkiem wesela. A", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:36-50*\nOnego czasu: Pewien faryzeusz zaprosił Jezusa na posiłek ze", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą Ci naprzeciw, po Twej prawicy stoi królowa strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech dary nasze będą Tobie miłe dzięki chwalebnym zasługom świętej Marii Magdaleny, której ofiarną ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:121-122; 118:128*\nPrzestrzegałam prawa i sprawiedliwości, niech nie ciemiężą mnie pyszni; stosowałam się do wszy", + "id": "Communio" + }, + { + "body": "Przyjąwszy jedyny zbawienny lek, Ciało Twoje i Krew Najdroższą, prosimy Cię, Panie: niech nas opieka świętej Marii Magda", + "id": "Postcommunio" + } + ], + "2025-07-23": [ + { + "body": "*Dn 3:84; 3:87*\nKapłani Boży, błogosławcie Panu, święci i pokornego serca chwalcie Boga.\n*Dan 3:57*\nBłogosławcie Panu, w", + "id": "Introitus" + }, + { + "body": "Boże, który nagradzasz dusze wierne, a dzień dzisiejszy uświęciłeś męczeństwem świętego Kapłana Twego Apolinarego; spraw", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Liboriusza*\nSpraw, prosimy Cię, wszechmogący Boże, aby chwalebna uroczystość świętego Liboriusza, Twego", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-11*\nNajmilsi! Starszych, którzy są wśród was, proszę, jako równie st", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 22:24-30*\nOnego czasu: Powstał między uczniami spór, kto by z nich z", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na te dary, które składamy dla uczczenia pamięci świętego Kapłana i Męczennika Twego Apolinarego", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Liboriusza*\nPanie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi dozn", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:20-21*\nPanie, dałeś mi pięć talentów, otom drugie pięć zyskał. Dobrze, sługo prawy i wierny, żeś w małym był wier", + "id": "Communio" + }, + { + "body": "Przyjmując Najświętszy Sakrament, prosimy Cię, Panie, by nas otaczała ciągła opieka św. Apolinarego, bo nie przestajesz ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Liboriusza*\nWszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną ś", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-24": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Boże, który błogosławioną Kingę obdarzyłeś słodyczą Twego błogosławieństwa i zachowałeś dziewicą nawet w małżeństwie, sp", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Krystyny, Dziewicy i Męczennicy*\nProsimy Cię, Panie, aby święta Krystyna, Dziewica i Męczennica Twoja, ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Panie, zlej łaskawie błogosławieństwo Twe na dary, które Ci składamy ku czci błogosławionej Kingi, Twojej Dziewicy: niec", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Krystyny, Dziewicy i Męczennicy*\nProsimy Cię, Panie, przyjmij łaskawie ofiarę, którą Ci składamy przez ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, za wstawiennictwem błogosławionej Kingi, Twojej Dziewicy, niech przyjęte przez nas święte tajemnice ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Krystyny, Dziewicy i Męczennicy*\nDarem Bożym szczodrze nasyceni, prosimy Cię, Panie Boże nasz, abyśmy z", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-25": [ + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", + "id": "Introitus" + }, + { + "body": "Bądź, Panie, dla ludu Twego tym, który uświęca i strzeże, aby wsparty opieką Apostoła Twego Jakuba, podobał Ci się swym ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Krzysztofa*\nProsimy Cię, wszechmogący Boże, abyśmy obchodząc urodziny dla nieba świętego Krzysztofa, Tw", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-15*\nBracia: Sądzę, że Bóg nas, Apostołów, uważał jako ", + "id": "Lectio" + }, + { + "body": "*Ps 44:17; 44:18*\nUstanowisz ich książętami po całej ziemi, przez wszystkie pokolenia głosić będą Twe imię, o Panie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:20-23*\nOnego czasu: Przystąpiła do Jezusa matka synów Zebedeuszo", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech błogosławione męczeństwo świętego Jakuba Apostoła zaleci Tobie dary Twego ludu; a skoro nie są", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Krzysztofa*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28*\nWy, którzyście ze mną poszli, zasiądźcie na stolicach, sądząc dwanaście pokoleń Izraela.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, wspomagaj nas przez przyczynę Twojego Apostoła Jakuba, w którego uroczystość przyjęliśmy z radością ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Krzysztofa*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wiecz", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-26": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci świętej Anny; z Jej uroczystości radują się Aniołowie i wychwa", + "id": "Introitus" + }, + { + "body": "Boże, który raczyłeś udzielić świętej Annie tej łaski, że stała się matką Rodzicielki Twego Jednorodzonego Syna; spraw ł", + "id": "Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą Ci naprzeciw, po Twej prawicy stoi królowa strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę: aby za wstawiennictwem św. Anny, która stała się matką Rodzicielki Sy", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na twoich wargach, przeto Bóg pobłogosławił cię na wieki.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie Boże nasz, abyśmy pokrzepieni niebieskim Sakramentem, za przyczyną św. Anny, która z woli Twojej była", + "id": "Postcommunio" + } + ], + "2025-07-27": [ + { + "body": "*Ps 46:2*\nWszystkie narody, klaskajcie w dłonie, wykrzykujcie Bogu głosem radosnym.\n*Ps 46:3*\nBo Pan Najwyższy jest stra", + "id": "Introitus" + }, + { + "body": "O Boże, Opatrzność Twoja nie myli się nigdy w zarządzeniach swoich! Usilnie więc Ciebie błagamy, abyś usunął od nas co s", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:19-23*\n*Człowiek, który ulega namiętnościom, żyje w prawdziwe", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nPójdźcie, synowie, słuchajcie mnie bojaźni Pańskiej was nauczę.\n℣. Zbliżcie się do Niego, a opromieni w", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 7:15-21*\nOnego czasu rzekł Jezus uczniom swoim: «Strzeżcie się fałs", + "id": "Evangelium" + }, + { + "body": "*Dn 3:40*\nW miejsce całopalenia baranów, wołów oraz tysięcy tłustych baranków – tak niech się dokona ofiara nasza przed ", + "id": "Offertorium" + }, + { + "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nSkłoń ku mnie ucho twoje i wybaw mnie prędko.", + "id": "Communio" + }, + { + "body": "Panie! Łaski Twej zbawienne działanie niechaj nas uwolni od złych skłonności i doprowadzi do tego, co godziwe.\nPrzez Pan", + "id": "Postcommunio" + } + ], + "2025-07-28": [ + { + "body": "*Ps 78:11-12; 78:10*\nNiech jęk pojmanych dojdzie do Ciebie, Panie: naszym sąsiadom odpłać siedmiokroć w ich zanadrze, po", + "id": "Introitus" + }, + { + "body": "Panie, niech błogosławione wyznanie wiary Świętych Twoich Nazariusza, Celsa, Wiktora i Innocentego umacnia nas i wyjedna", + "id": "Oratio" + }, + { + "body": "*Mdr 10:17-29*\nBóg dał świętym nagrodę za ich pracę, prowadził ich drogą godną podziwu. Stał się dla nich osłoną za dnia", + "id": "Lectio" + }, + { + "body": "*Wj 15:11*\nChwalebny jest Bóg w Swoich Świętych, przedziwny w majestacie, dokonuje cudów.\n*Wj 15:6*\n℣. Prawica Twoja, Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:9-19*\n*Wszystkie prześladowania, jakich doznają męczennicy, stano", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nPrzedziwny jest Bóg w Swoich Świętych: Bóg Izraela, sam Swojemu ludowi daje potęgę i siłę: błogosławiony Bóg,", + "id": "Offertorium" + }, + { + "body": "Daj nam wszechmogący Boże, abyśmy przebłagali Ciebie przez ofiarowanie darów ku czci Świętych Twoich Nazariusza, Celsa, ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył: jak złoto w piecu ich wypróbował, jak ofiarę", + "id": "Communio" + }, + { + "body": "Przejednany wstawiennictwem Twoich Świętych: Nazariusza, Celsa, Wiktora i Innocentego, daj nam, prosimy Cię, Panie, abyś", + "id": "Postcommunio" + } + ], + "2025-07-29": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy Marty, nabyli u", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Feliksa, Symplicjusza, Faustyna i Beatryczy*\nProsimy Cię, Panie, aby lud chrześcijański, radując się z ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:38-42*\nOnego czasu: Jezus wszedł do jednej osady, a niewiasta pew", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Feliksa, Symplicjusza, Faustyna i Beatryczy*\nSkładamy Tobie, Panie, ofiary ku uczczeniu pamięci świętyc", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Feliksa, Symplicjusza, Faustyna i Beatryczy*\nProsimy Cię, wszechmogący Boże, aby uroczystość świętych M", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-30": [ + { + "body": "*Ps 46:2*\nWszystkie narody, klaskajcie w dłonie, wykrzykujcie Bogu głosem radosnym.\n*Ps 46:3*\nBo Pan Najwyższy jest stra", + "id": "Introitus" + }, + { + "body": "O Boże, Opatrzność Twoja nie myli się nigdy w zarządzeniach swoich! Usilnie więc Ciebie błagamy, abyś usunął od nas co s", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Abdona i Sennena, Męczenników*\nBoże, który Świętym Twoim Abdonowi i Sennenowi dla osiągnięcia obecnej c", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:19-23*\n*Człowiek, który ulega namiętnościom, żyje w prawdziwe", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nPójdźcie, synowie, słuchajcie mnie bojaźni Pańskiej was nauczę.\n℣. Zbliżcie się do Niego, a opromieni w", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 7:15-21*\nOnego czasu rzekł Jezus uczniom swoim: «Strzeżcie się fałs", + "id": "Evangelium" + }, + { + "body": "*Dn 3:40*\nW miejsce całopalenia baranów, wołów oraz tysięcy tłustych baranków – tak niech się dokona ofiara nasza przed ", + "id": "Offertorium" + }, + { + "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Abdona i Sennena, Męczenników*\nProsimy Cię, Panie, niech ta ofiara, którą składamy wspominając narodzin", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nSkłoń ku mnie ucho twoje i wybaw mnie prędko.", + "id": "Communio" + }, + { + "body": "Panie! Łaski Twej zbawienne działanie niechaj nas uwolni od złych skłonności i doprowadzi do tego, co godziwe.\nPrzez Pan", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Abdona i Sennena, Męczenników*\nPanie, niech działanie Twego Sakramentu oczyści nas ze złych skłonności ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-07-31": [ + { + "body": "*Flp 2:10-11*\n*Św. Ignacy chciał, aby jego zakon nosił imię Jezusa.*\nNa imię Jezus niechaj się zgina wszelkie kolano mie", + "id": "Introitus" + }, + { + "body": "*«Dla większej chwały Bożej» – to hasło zakonu Jezuitów.*\nBoże, który dla rozszerzenia większej chwały Twojego imienia p", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 2:8-10; 3:10-12*\nNajmilszy: Pamiętaj, że Pan Jezus Chrystu", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Panie Boże, niech ofiarom naszym towarzyszy łaskawe orędownictwo św. Ignacego, aby najświętsze misteria, w których ustan", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:49*\nOgień przyszedłem rzucić na ziemię, a czegóż chcę, jeno aby zapłonął.", + "id": "Communio" + }, + { + "body": "Ofiara chwały, którą złożyliśmy Tobie, Panie, dzięki czyniąc za świętego Ignacego, niechaj nas za jego przyczyną doprowa", + "id": "Postcommunio" + } + ], + "2025-08-01": [ + { + "body": "*Ps 46:2*\nWszystkie narody, klaskajcie w dłonie, wykrzykujcie Bogu głosem radosnym.\n*Ps 46:3*\nBo Pan Najwyższy jest stra", + "id": "Introitus" + }, + { + "body": "O Boże, Opatrzność Twoja nie myli się nigdy w zarządzeniach swoich! Usilnie więc Ciebie błagamy, abyś usunął od nas co s", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Siedmiu Braci Machabejskich, Męczenników*\nNiech nas, Panie, uraduje wspólne zwycięstwo Braci Męczenników, n", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:19-23*\n*Człowiek, który ulega namiętnościom, żyje w prawdziwe", + "id": "Lectio" + }, + { + "body": "*Ps 33:12; 33:6*\nPójdźcie, synowie, słuchajcie mnie bojaźni Pańskiej was nauczę.\n℣. Zbliżcie się do Niego, a opromieni w", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 7:15-21*\nOnego czasu rzekł Jezus uczniom swoim: «Strzeżcie się fałs", + "id": "Evangelium" + }, + { + "body": "*Dn 3:40*\nW miejsce całopalenia baranów, wołów oraz tysięcy tłustych baranków – tak niech się dokona ofiara nasza przed ", + "id": "Offertorium" + }, + { + "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Siedmiu Braci Machabejskich, Męczenników*\nDozwól nam, Panie, pobożnie sprawować Twoje misteria ku czci Twoi", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 30:3*\nSkłoń ku mnie ucho twoje i wybaw mnie prędko.", + "id": "Communio" + }, + { + "body": "Panie! Łaski Twej zbawienne działanie niechaj nas uwolni od złych skłonności i doprowadzi do tego, co godziwe.\nPrzez Pan", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Siedmiu Braci Machabejskich, Męczenników*\nProsimy Cię, wszechmogący Boże, abyśmy coraz lepiej naśladowali w", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-02": [ + { + "body": "*Łk 4:18*\nDuch Pański nade mną: dlatego mnie namaścił, abym głosił Ewangelię ubogim. Posłał mię, abym uzdrowił skruszony", + "id": "Introitus" + }, + { + "body": "Boże, Tyś przez św. Alfonsa Marię, Twego Wyznawcę i Biskupa, obdarzył Twój Kościół nową rodziną zakonną; prosimy Cię, ab", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Stefana I*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczy", + "id": "Commemoratio Oratio" + }, + { + "body": "*2 Tm 2:1-7*\n*Św. Alfons, podobnie jak św. Paweł, nie tylko sam głosił słowo Boże, lecz pozostawił uczniów, którzy prowa", + "id": "Lectio" + }, + { + "body": "*Ps 118:52-53*\nPamiętam, Panie, o dawnych Twych Sądach, są one dla mnie pociechą. Gniew mnie ogarnia z powodu grzesznikó", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Prz 3:9; 3:27*\nSkładaj Panu ofiary z twojej majętności, dawaj Mu z pierwocin wszystkich twoich plonów. Nie zabraniaj cz", + "id": "Offertorium" + }, + { + "body": "Panie Jezu Chryste, który św. Alfonsowi Marii dozwoliłeś sprawować te misteria i przez nie samego siebie złożyć Tobie w ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Stefana I*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzi", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Syr 50:1; 50:9*\nOto Kapłan wielki, który za swego życia podparł dom i za dni swoich umocnił świątynię. Był jak ogień ja", + "id": "Communio" + }, + { + "body": "*Św. Alfons gorliwie zabiegał o przywrócenie zwyczaju częstej Komunii świętej, nie praktykowanego w jego czasach.*\nBoże,", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Stefana I*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby po", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-03": [ + { + "body": "*Ps 47:10-11*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak imię Twe Boże, tak i chwała Twoja się", + "id": "Introitus" + }, + { + "body": "Użycz nam łaskawie, prosimy Cię Panie, stałej prawości ducha w myśleniu i działaniu, abyśmy, nie mogąc istnieć bez Ciebi", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:12-17*\n*«Abba (Ojcze)!» – to modlitwa Chrystusa, wyrażająca ż", + "id": "Lectio" + }, + { + "body": "*Ps 30:5; 70:1*\nBądź mi Boże obrońcą, bądź zamkiem warownym, abyś mnie ocalił.\n℣. Boże, do Ciebie się uciekam, Panie, ni", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 16:1-9*\n*Jezus nie pochwala nieuczciwości włodarza. Stawia jednak za", + "id": "Evangelium" + }, + { + "body": "*Ps 17:28; 17:32*\nTy wybawiasz naród uniżony, a pognębiasz oczy wyniosłe, bo któż prócz Pana jest Bogiem?", + "id": "Offertorium" + }, + { + "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 33:9*\nSkosztujcie i zobaczcie jak słodki jest Pan. Szczęśliwy człowiek, który mu ufa.", + "id": "Communio" + }, + { + "body": "Panie, niech niebieski Sakrament odnowi nasze dusze i ciała, abyśmy doznali skutków tego, co ze czcią sprawujemy.\nPrzez ", + "id": "Postcommunio" + } + ], + "2025-08-04": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który raczyłeś oświecić swój Kościół zasługami i nauką św. Dominika, Twojego Wyznawcy, spraw, by za jego wstawienn", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\n℣. Sprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\n℣. By", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim innemu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, złożone Ci dary, aby przez zasługi św. Dominika, Twego Wyznawcy, stały się dla nas lekarstwem.\nPrzez Pan", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, aby każdemu przydzielał żywność w o", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby podźwignęło nas wstawiennictwo św. Dominika, gdy przytłacza nas ciężar własny", + "id": "Postcommunio" + } + ], + "2025-08-05": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2025-08-06": [ + { + "body": "*Ps 76:19*\nBłyskawice Twoje rozjaśniły widnokrąg: zatrzęsła się ziemia i zadygotała.\n*Ps 83:2-3*\nJak miłe są przybytki T", + "id": "Introitus" + }, + { + "body": "Boże, Tyś przy chwalebnym Przemienieniu jednorodzonego Syna Twojego potwierdził tajemnice wiary świadectwem Ojców, a prz", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Sykstusa II oraz Felicysyma i Agapita*\nBoże, który nam pozwalasz obchodzić narodziny dla nieba świętych", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*2 P 1:16-19*\n*Św. Piotr, naoczny świadek Przemienienia, powołuje się na świa", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejszy nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 17:1-9*\nOnego czasu: Wziął Jezus Piotra i Jakuba, i Jana brata jego", + "id": "Evangelium" + }, + { + "body": "*Ps 111:3*\nZasoby i bogactwa będą w jego domu, a hojność jego będzie trwała zawsze. Alleluja.", + "id": "Offertorium" + }, + { + "body": "Panie, poświęć składane ofiary przez chwalebne Przemienienie jednorodzonego Syna Twego, a nas oczyść od zmaz grzechowych", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Sykstusa II oraz Felicysyma i Agapita*\nOfiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjm", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Mt 17:9*\nNikomu nie mówcie o widzeniu, aż Syn Człowieczy zmartwychwstanie.", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli najświętszą tajemnicą Przemienienia Syna Twego", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Sykstusa II oraz Felicysyma i Agapita*\nProsimy Cię, Panie, za wstawiennictwem Twoich Męczenników Sykstu", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-07": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który pozwoliłeś świętemu Kajetanowi, Twemu Wyznawcy, naśladować sposób życia Apostołów; daj nam za jego wstawienn", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Donata*\nBoże, chwało Twych kapłanów, daj, prosimy Cię, niech doznamy pomocy świętego Donata, Twego Męcz", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:24-33*\n*Chrystus nie zaleca lenistwa, lecz gani zbytnią troskę o ", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie miła i", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Donata*\nSpraw, prosimy Cię, Panie, aby dzięki wstawiennictwu św. Donata, Twego Męczennika i Biskupa, kt", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Donata*\nWszechmogący i miłosierny Boże, który czynisz nas uczestnikami i szafarzami Twoich Sakramentów,", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-08": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Wszechmogący i wieczny Boże, który św. Jana Marię uczyniłeś godnym podziwu dla jego pasterskiej gorliwości oraz wytrwałe", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Cyriaka, Larga i Szmaragda*\nBoże, który co roku uweselasz nas uroczystością świętych Męczenników Twoich", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Cyriaka, Larga i Szmaragda*\nPanie, niech nasza ofiara znajdzie przyjęcie u Ciebie i niech posłuży nam k", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Cyriaka, Larga i Szmaragda*\nPokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie Boże nasz, a", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-09": [ + { + "body": "*Ps 111:9*\nRozdziela, daje ubogim: hojność jego będzie trwała zawsze, Potęga jego wzmoże się z chwałą.\n*Ps 111:1*\nBłogos", + "id": "Introitus" + }, + { + "body": "Usłysz, Panie, błagania nasze i za przyczyną św. Wawrzyńca, Twego Męczennika, którego uroczystość uprzedzamy, okazuj nam", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Romana*\nProsimy Cię, wszechmogący Boże, za przyczyną świętego Romana, Twego Męczennika, uwolnij nasze c", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", + "id": "Lectio" + }, + { + "body": "*Ps 111:9; 111:2*\nRozdziela, daje ubogim: hojność jego będzie trwała zawsze.\n℣. Potomstwo jego będzie potężne na ziemi, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:24-27*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli kto chce z", + "id": "Evangelium" + }, + { + "body": "*Job 16:20*\nModlitwa moja jest czysta, przeto błagam, by dano miejsce wołaniu memu w niebie; bo tam jest sędzia mój i św", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na ofiary, które Ci składamy, i za wstawiennictwem św. Wawrzyńca, Twego Męczennika, wyzwól nas z", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Romana*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i ł", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:24*\nJeśli kto chce za mną iść, niech się zaprze samego siebie i weźmie krzyż swój, i naśladuje mię.", + "id": "Communio" + }, + { + "body": "Daj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem św. Wawrzyńca, Twego Męczennika, w wieczności, jak z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Romana*\nProsimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelki", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-10": [ + { + "body": "*Ps 53:6-7*\nOto Bóg mi dopomaga, Pan podtrzymuje me życie. Odwróć zło ku moim przeciwnikom i według Twej obietnicy zniwe", + "id": "Introitus" + }, + { + "body": "Panie, niech uszy miłosierdzia Twego otworzą się na modlitwy błagających i abyś mógł spełnić ich pragnienia, daj im pros", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Wawrzyńca*\nDaj nam, prosimy Cię, wszechmogący Boże, tak stłumić płomienie naszych namiętności, jak świę", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 10:6-13*\n*Św. Paweł poucza nas, że dzieje Starego Testamen", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nO Panie, Panie nasz, jak przedziwne Twe imię po wszystkiej ziemi.\n℣. Tyś swój majestat wyniósł nad niebiosa. Al", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:41-47*\nOnego czasu: Gdy przybliżył się Jezus do Jeruzalem i ujrza", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nPrzykazania Pańskie słuszne, radują serca; sądy Pańskie słodsze od miodu płynącego z plas", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię Panie, dozwól nam godnie uczestniczyć w tym misterium, ilekroć bowiem sprawujemy pamiątkę ofiary Chrystusa, ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Wawrzyńca*\nProsimy Cię, Panie, przyjmij dary ze czcią złożone i spraw, niech przez zasługi św. Wawrzyńc", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*J 6:57*\nKto pożywa moje Ciało i pije moją Krew, we mnie mieszka, a ja w nim, mówi Pan.", + "id": "Communio" + }, + { + "body": "Panie, niech udział w Twoim Sakramencie, oczyści nas i zjednoczy.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Wawrzyńca*\nDarem świętym nasyceni, kornie błagamy Cię, Panie, abyśmy składając przez tę ofiarę należny ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-11": [ + { + "body": "*Ps 53:6-7*\nOto Bóg mi dopomaga, Pan podtrzymuje me życie. Odwróć zło ku moim przeciwnikom i według Twej obietnicy zniwe", + "id": "Introitus" + }, + { + "body": "Panie, niech uszy miłosierdzia Twego otworzą się na modlitwy błagających i abyś mógł spełnić ich pragnienia, daj im pros", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Tyburcjusza i Zuzanny, Męczenników*\nPanie, niech nas otacza ciągła opieka świętych Twoich Męczenników T", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 10:6-13*\n*Św. Paweł poucza nas, że dzieje Starego Testamen", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nO Panie, Panie nasz, jak przedziwne Twe imię po wszystkiej ziemi.\n℣. Tyś swój majestat wyniósł nad niebiosa. \n*", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:41-47*\nOnego czasu: Gdy przybliżył się Jezus do Jeruzalem i ujrza", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nPrzykazania Pańskie słuszne, radują serca; sądy Pańskie słodsze od miodu płynącego z plas", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię Panie, dozwól nam godnie uczestniczyć w tym misterium, ilekroć bowiem sprawujemy pamiątkę ofiary Chrystusa, ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Tyburcjusza i Zuzanny, Męczenników*\nPanie, wejrzyj łaskawie na prośby Twego ludu, wejrzyj na dary: niec", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 6:57*\nKto pożywa moje Ciało i pije moją Krew, we mnie mieszka, a ja w nim, mówi Pan.", + "id": "Communio" + }, + { + "body": "Panie, niech udział w Twoim Sakramencie, oczyści nas i zjednoczy.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Tyburcjusza i Zuzanny, Męczenników*\nPrzyjęliśmy, Panie, zadatek zbawienia wiecznego: prosimy Cię, niech", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-12": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy Klary, nabyli u", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2025-08-13": [ + { + "body": "*Ps 53:6-7*\nOto Bóg mi dopomaga, Pan podtrzymuje me życie. Odwróć zło ku moim przeciwnikom i według Twej obietnicy zniwe", + "id": "Introitus" + }, + { + "body": "Panie, niech uszy miłosierdzia Twego otworzą się na modlitwy błagających i abyś mógł spełnić ich pragnienia, daj im pros", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Hipolita i Kasjana, Męczenników*\nSpraw, prosimy Cię, wszechmogący Boże, aby chwalebna uroczystość święt", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 10:6-13*\n*Św. Paweł poucza nas, że dzieje Starego Testamen", + "id": "Lectio" + }, + { + "body": "*Ps 8:2*\nO Panie, Panie nasz, jak przedziwne Twe imię po wszystkiej ziemi.\n℣. Tyś swój majestat wyniósł nad niebiosa. \n*", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:41-47*\nOnego czasu: Gdy przybliżył się Jezus do Jeruzalem i ujrza", + "id": "Evangelium" + }, + { + "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nPrzykazania Pańskie słuszne, radują serca; sądy Pańskie słodsze od miodu płynącego z plas", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię Panie, dozwól nam godnie uczestniczyć w tym misterium, ilekroć bowiem sprawujemy pamiątkę ofiary Chrystusa, ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Hipolita i Kasjana, Męczenników*\nWejrzyj, Panie, na dary ludu Swojego ofiarowane w uroczystość Świętych", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 6:57*\nKto pożywa moje Ciało i pije moją Krew, we mnie mieszka, a ja w nim, mówi Pan.", + "id": "Communio" + }, + { + "body": "Panie, niech udział w Twoim Sakramencie, oczyści nas i zjednoczy.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Hipolita i Kasjana, Męczenników*\nPanie, niech przyjęcie Twego Sakramentu zachowa nas i utwierdzi w świe", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-14": [ + { + "body": "*Ps 44:13; 44:15; 44:16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Ni", + "id": "Introitus" + }, + { + "body": "Boże, Tyś raczył obrać sobie na mieszkanie dziewicze łono Najświętszej Maryi; daj nam bezpiecznie pod Jej opieką brać ra", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Euzebiusza*\nBoże, który co roku uweselasz nas uroczystością św. Euzebiusza, Twojego Wyznawcy, spraw, ab", + "id": "Commemoratio Oratio" + }, + { + "body": "*Syr 24:23-31*\nJako krzew winny wydałam wdzięczną woń, a kwiaty moje owocem czci i godności. Jam matką pięknej miłości i", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "Błogosławiona jesteś, Panno Maryjo, któraś nosiła Stwórcę wszechrzeczy. Porodziłaś Tego, który Cię stworzył, i na wieki ", + "id": "Offertorium" + }, + { + "body": "Panie, niech nasze dary poleca Twojej łaskawości modlitwa Bożej Rodzicielki, którą po to zabrałeś z tego świata, aby ufn", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Euzebiusza*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Miłosierny Boże, udziel pomocy naszej ułomności, abyśmy powstali z naszych nieprawości za wstawiennictwem Najświętszej B", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Euzebiusza*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas broni", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-15": [ + { + "body": "*Ap 12:1*\nZnak wielki ukazał się na niebie: Niewiasta obleczona w słońce i księżyc u jej stóp, a na jej głowie korona z ", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, Ty wziąłeś do niebieskiej chwały ciało i duszę Niepokalanej Dziewicy Maryi, Matki Twego Syna", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Judyty.\n*Jdt 13, 22-25; 15:10*\n*Podobnie jak Judyta w Starym Testamencie, Maryja poświęciła się dla do", + "id": "Lectio" + }, + { + "body": "*Ps 44:11-12; 44:14*\n*Wniebowzięcie to triumfalny pochód Królowej nieba.*\nPosłuchaj, córko, spójrz i nakłoń twego ucha, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:41-50*\nOnego czasu: Napełniona została Elżbieta Duchem Świętym i z", + "id": "Evangelium" + }, + { + "body": "*Rdz 3:15*\n*W Maryi, Matce Zbawiciela, spełniła się obietnica dana przez Boga w raju.*\nPołożę nieprzyjaźń między tobą, a", + "id": "Offertorium" + }, + { + "body": "Ofiara naszego oddania niechaj się wzniesie do Ciebie, Panie, i za wstawiennictwem Najświętszej Maryi Panny Wniebowzięte", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*Łk 1:48-49*\n*Chwała, którą Maryja już posiadała, ma stać się również naszym udziałem.*\nBłogosławioną zwać mnie będą wsz", + "id": "Communio" + }, + { + "body": "Przyjąwszy zbawczy Sakrament, prosimy Cię, Panie, daj, byśmy przez zasługi i wstawiennictwo Najświętszej Maryi Panny Wni", + "id": "Postcommunio" + } + ], + "2025-08-16": [ + { + "body": "*Ps 111:9*\nRozdziela, daje ubogim: hojność jego będzie trwała zawsze, potęga jego wzmoże się z chwałą.\n*Ps 111:1*\nBłogos", + "id": "Introitus" + }, + { + "body": "Boże, który pośród wszystkich Świętych wybrałeś św. Joachima na ojca Rodzicielki Twojego Syna, daj, prosimy, abyśmy zaws", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 111:9; 111:2*\nRozdziela, daje ubogim: hojność jego będzie trwała zawsze.\n℣. Potomstwo jego będzie potężne na ziemi, ", + "id": "Graduale" + }, + { + "body": "Początek ☩ Ewangelii świętej według Mateusza.\n*Mt 1:1-16*\n*Syn Boży stał się prawdziwym człowiekiem. Jako człowiek jest ", + "id": "Evangelium" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami Twoich rąk, o Panie.", + "id": "Offertorium" + }, + { + "body": "Najłaskawszy Boże, przyjmij ofiarę złożoną majestatowi Twojemu ku uczczeniu świętego patriarchy Joachima, ojca Maryi Dzi", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby Sakrament, któryśmy przyjęli, przez zasługi i modlitwy świętego Joachima, ojca Rodzi", + "id": "Postcommunio" + } + ], + "2025-08-17": [ + { + "body": "*Ps 54:17-20; 54:23*\nKiedy wołałem do Pana, wysłuchał głosu mego przeciw tym, którzy na mnie nastają; i poniżył ich Ten,", + "id": "Introitus" + }, + { + "body": "Boże, który najbardziej okazujesz swoją wszechmoc przebaczając i litując się, pomnóż w nas łaski Twego miłosierdzia, aby", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 12:2-11*\n*Duch Święty nadal działa w Kościele, obdarzając ", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nStrzeż mnie, o Panie, jak źrenicy oka; w cieniu Twych skrzydeł mnie ukryj.\n℣. Sprzed Twego oblicza niech", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:9-14*\nOnego czasu: Mówił Jezus do niektórych, którzy samym sobie ", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże mój, Tobie ufam, niech nie doznam wstydu; niech się nie śmieją ze m", + "id": "Offertorium" + }, + { + "body": "Niechaj wrócą do Ciebie, Panie, poświęcone ofiary, Panie, które pozwoliłeś tak składać na chwałę imienia Twojego, że zar", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nPrzyjmiesz ofiary prawe, dary i całopalenia, na ołtarzu Twoim, Panie.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, racz nie odmawiać Twojej pomocy tym, których nieustannie posilasz Boskim Sakramentem.\nPrz", + "id": "Postcommunio" + } + ], + "2025-08-18": [ + { + "body": "*Ps 54:17-20; 54:23*\nKiedy wołałem do Pana, wysłuchał głosu mego przeciw tym, którzy na mnie nastają; i poniżył ich Ten,", + "id": "Introitus" + }, + { + "body": "Boże, który najbardziej okazujesz swoją wszechmoc przebaczając i litując się, pomnóż w nas łaski Twego miłosierdzia, aby", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Agapita, Męczennika*\nNiech się raduje Kościół Twój, Boże, ufny w pośrednictwo św. Agapita, Twojego Męcz", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 12:2-11*\n*Duch Święty nadal działa w Kościele, obdarzając ", + "id": "Lectio" + }, + { + "body": "*Ps 16:8; 16:2*\nStrzeż mnie, o Panie, jak źrenicy oka; w cieniu Twych skrzydeł mnie ukryj.\n℣. Sprzed Twego oblicza niech", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:9-14*\nOnego czasu: Mówił Jezus do niektórych, którzy samym sobie ", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże mój, Tobie ufam, niech nie doznam wstydu; niech się nie śmieją ze m", + "id": "Offertorium" + }, + { + "body": "Niechaj wrócą do Ciebie, Panie, poświęcone ofiary, Panie, które pozwoliłeś tak składać na chwałę imienia Twojego, że zar", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Agapita, Męczennika*\nPrzyjmij, Panie, dary, które Ci składamy w uroczystość tego, którego wstawiennictw", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 50:21*\nPrzyjmiesz ofiary prawe, dary i całopalenia, na ołtarzu Twoim, Panie.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, racz nie odmawiać Twojej pomocy tym, których nieustannie posilasz Boskim Sakramentem.\nPrz", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Agapita, Męczennika*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami; wzmacniaj nas stale za wstawienni", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-19": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, Ty obudziłeś w świętym Janie, Twoim Wyznawcy, przedziwny zapał do szerzenia czci Najświętszych Serc Jezusa i Maryi", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2025-08-20": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś dał ludowi Swemu świętego Bernarda za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć or", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Syr 39:6-14*\nSprawiedliwy już od zarania czujnie zwraca swe serce do Pana, który go stworzy", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Bernarda, Twego Biskupa i Doktora, która zaleci Tobie naszą ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty Bernard, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoj", + "id": "Postcommunio" + } + ], + "2025-08-21": [ + { + "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", + "id": "Introitus" + }, + { + "body": "Wszechmogący i miłosierny Boże, Ty rozpaliwszy świętą Joannę Franciszkę ogniem Swojej miłości, obdarzyłeś ją przedziwną ", + "id": "Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta zbawcza ofiara zapali nas takim ogniem miłości, jaki zapłonął w sercu świętej Joanny Franci", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Communio" + }, + { + "body": "Tchnij w nas, o Panie, Ducha Twojej miłości, i spraw, abyśmy nasyceni mocą niebiańskiego chleba wzgardzili tym, co ziems", + "id": "Postcommunio" + } + ], + "2025-08-22": [ + { + "body": "*Hbr 4:16*\nZbliżmy się z ufnością do tronu łaski, abyśmy otrzymali zmiłowanie i dostąpili łaski w pomocy na czasie.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, któryś w sercu Najświętszej Maryi Panny zgotował godne mieszkanie dla Ducha Świętego, daj ła", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Tymoteusza, Hipolita i Symforiana*\nPanie, udziel nam łaskawie Twej pomocy i za wstawiennictwem świętych", + "id": "Commemoratio Oratio" + }, + { + "body": "*Syr 24:23-31*\nJako krzew winny wydałam wdzięczną woń, a kwiaty moje owocem czci i godności. Jam matką pięknej miłości i", + "id": "Lectio" + }, + { + "body": "*Ps 12:6*\nSerce me cieszy się z Twojej pomocy, będę śpiewał Panu, co darzy mnie dobrem, zanucę psalm imieniu Najwyższego", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:25-27*\nOnego czasu: Pod krzyżem Jezusowym stała Matka Jego i siostra ", + "id": "Evangelium" + }, + { + "body": "*Łk 1:46; 1:49*\nRozradował się duch mój w Bogu, Zbawicielu moim: albowiem uczynił mi wielkie rzeczy, który możny jest i ", + "id": "Offertorium" + }, + { + "body": "Ofiarując majestatowi Twojemu niepokalanego Baranka, prosimy Cię, Panie, aby serca nasze rozpalił ów ogień niebieski, kt", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Tymoteusza, Hipolita i Symforiana*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci święt", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*J 19:27*\nRzekł Jezus do Matki swojej: Niewiasto, oto syn Twój; potem rzekł uczniowi: Oto Matka twoja! I od onej godziny", + "id": "Communio" + }, + { + "body": "Posileni boskimi darami, kornie błagamy Cię, Panie, abyśmy za wstawiennictwem Najświętszej Maryi Panny, której uroczysto", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Tymoteusza, Hipolita i Symforiana*\nDarem Bożym szczodrze nasyceni prosimy Cię, Panie, Boże nasz, abyśmy", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-23": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, który w świętym Filipie, Twoim Wyznawcy, ukazałeś nam niezwykły przykład pokory, daj nam, sługom Swoim, abyśmy za ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + } + ], + "2025-08-24": [ + { + "body": "*Ps 67:6-7; 67:36*\nBóg w mieszkaniu swoim świętym. Ten Bóg wprowadza samotnych do domu. On lud swój potęgą i siłą obdarz", + "id": "Introitus" + }, + { + "body": "Wszechmocny, wiekuisty Boże, Ty przewyższasz obfitością dobrodziejstw Twoich pragnienia i zasługi błagających Ciebie, ob", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Bartłomieja, Apostoła*\nWszechmogący, wieczny Boże, który w dniu dzisiejszym napełniłeś nas pełną powagi", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 15:1-10*\nBracia: Przypominam wam Ewangelię, którą wam głos", + "id": "Lectio" + }, + { + "body": "*Ps 27:7 27:1*\nNa Boga się zdałem, a On mnie pokrzepił, przeto me serce radością przejęte i dzięki Mu składam ochotnie.\n", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 7:31-37*\nOnego czasu: Jezus, wyszedłszy z granic Tyru przez Sydon, prz", + "id": "Evangelium" + }, + { + "body": "*Ps 29:2-3*\nWysławiam Cię, Panie, żeś mnie ocalił i nie dałeś mym wrogom cieszyć się z mej zguby, Panie, wołam do Ciebie", + "id": "Offertorium" + }, + { + "body": "Wejrzyj łaskawie, prosimy Cię Panie, na usłużność naszą, a ofiara nasza niechaj będzie dla Ciebie miłą daniną, a dla nas", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Bartłomieja, Apostoła*\nObchodząc uroczystość świętego Bartłomieja, Twojego Apostoła, prosimy Cię, Panie", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Prz 3:9-10*\nCzyń Panu ofiary z majętności twojej i z pierwocin plonów twoich, a napełnią się spichlerze twoje zbożem i ", + "id": "Communio" + }, + { + "body": "Prosimy cię, Panie, daj nam doznać spożywając Twój Sakrament, pomocy na duszy i ciele, abyśmy całkowicie uzdrowieni cies", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Bartłomieja, Apostoła*\nProsimy Cię, Panie, niech przyjęty zadatek zbawienia wiecznego, za przyczyną św.", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-25": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne, prawo jego mieszka w jego sercu.\n*Ps ", + "id": "Introitus" + }, + { + "body": "Boże, Tyś św. Ludwika z królestwa ziemskiego przeniósł do chwały Królestwa Niebieskiego. Prosimy Cię, przez jego zasługi", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 10: 10-14*\n*Opatrzność Boża kierowała losami prześladowanego patriarchy Jakuba i Józefa", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:12-26*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «Pe", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, abyśmy się stali miłymi Tobie przez modlitwy św. Ludwika, Twego Wyznawcy, który wzgardzi", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Boże, który uczyniłeś św. Ludwika, Twego Wyznawcę, godnym podziwu na ziemi, i nagrodziłeś go chwałą w niebie: prosimy Ci", + "id": "Postcommunio" + } + ], + "2025-08-26": [ + { + "body": "*Ps 86:1-2*\nMiłuje Pan to, co na górach świętych zbudował: bramy Syjonu więcej niż wszystkie namioty Jakuba.\n*Ps 86:3*\nG", + "id": "Introitus" + }, + { + "body": "Wszechmogący i miłosierny Boże, który w Najświętszej Maryi Pannie przedziwnie ustanowiłeś nieustanną pomoc dla obrony na", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Przysłów.\n*Prz 8:17-24; 8:32-35*\nJa miłuję tych, którzy mnie miłują, i ci, co rano dla mnie czuwają, z", + "id": "Lectio" + }, + { + "body": "Bramą niebios i gwiazdą morską jesteś, Panno Maryjo, Matko Króla przedwiecznego i nasza Królowo.\n℣. Uczyń nas miłymi Syn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 2:1-11*\nOnego czasu: odbywały się gody weselne w Kanie Galilejskiej i by", + "id": "Evangelium" + }, + { + "body": "*Ps 47:13-15*\nZwiedzajcie Syjon. obchodźcie go wkoło, policzcie jego wieżyce. Przypatrzcie się jego basztom, przebiegajc", + "id": "Offertorium" + }, + { + "body": "Błagając o triumf religii chrześcijańskiej, składamy Ci, Panie, ofiary, aby zaś one były dla nas skuteczne, niechaj nas ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 86:3; 86:2*\nGłoszą o tobie rzeczy pełne chwały, o miasto Boże; miłuje Pan bramy Syjonu więcej niż wszystkie namioty ", + "id": "Communio" + }, + { + "body": "Wspomagaj, Panie, lud, który pokrzepiasz uczestnictwem w Ciele i Krwi Twojej, i przy pomocy Najświętszej Rodzicielki Two", + "id": "Postcommunio" + } + ], + "2025-08-27": [ + { + "body": "*Ps 33:12*\nPójdźcie, synowie, słuchajcie mnie: nauczę was Pańskiej bojaźni.\n*Ps 33:2*\nW każdym czasie będę błogosławił P", + "id": "Introitus" + }, + { + "body": "Boże, który przez świętego Józefa, Twego Wyznawcę, raczyłeś zesłać Kościołowi swemu nową pomoc do kształcenia młodzieży ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 10: 10-14*\n*Opatrzność Boża kierowała losami prześladowanego patriarchy Jakuba i Józefa", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-5*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", + "id": "Evangelium" + }, + { + "body": "*Ps 9:17*\nPragnień nieszczęśliwych wysłuchałeś, Panie, wołanie ich serca usłyszało ucho Twoje.", + "id": "Offertorium" + }, + { + "body": "Na ołtarzu Twoim, Panie, gromadzimy dary, aby nam wyjednały miłosierdzie dzięki modlitwom tego, któremu oddałeś nas pod ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 10:14*\nDopuśćcie dzieciom przychodzić do mnie i nie wzbraniajcie im, albowiem takich jest Królestwo Boże.", + "id": "Communio" + }, + { + "body": "Uświęceni zbawiennym misterium, prosimy Cię, Panie, abyśmy za wstawiennictwem św. Józefa, Twego Wyznawcy, coraz bardziej", + "id": "Postcommunio" + } + ], + "2025-08-28": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Przychyl się ku prośbom naszym, wszechmogący Boże, a skoro pozwalasz nam ufać Twojej dobroci, za wstawiennictwem św. Aug", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Hermesa*\nBoże, któryś świętego Hermesa, Twego Męczennika, uzbroił cnotą stałości wśród cierpień, daj na", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Hermesa*\nSkładamy Ci, Panie, ofiarę uwielbienia, wspominając Twoich Świętych; spraw, prosimy, aby to, c", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Hermesa*\nNapełnieni niebieskim błogosławieństwem błagamy Twoją, Panie, łaskawość, abyśmy za przyczyną ś", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-29": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłem o Twej prawdzie wobec królów, a nie wstydziłem się, i rozważałem Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niechaj chwalebna uroczystość św. Jana Chrzciciela, Twego Przesłańca i Męczennika, sprowadzi nam zba", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Sabiny*\nBoże, który między innymi cudami Twojej potęgi obdarzyłeś zwycięstwem w męczeństwie także płeć ", + "id": "Commemoratio Oratio" + }, + { + "body": "*Jer 1:17-19*\nW one dni: Stało się do mnie słowo Pańskie mówiąc: Opasz biodra twe, a powstań i mów do Judy to wszystko, ", + "id": "Lectio" + }, + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosić z ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 6:17-29*\nOnego czasu: Herod posłał i pojmał był Jana, i skuł go w więz", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie jeg", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, aby dary, które składamy Tobie ku uczczeniu śmierci św. Jana Chrzciciela, Twego Męczennika, za jego ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Sabiny*\nProsimy Cię, Panie, przyjmij łaskawie ofiarę, którą Ci składamy przez zasługi świętej Sabiny, T", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni.", + "id": "Communio" + }, + { + "body": "Panie, niechaj uroczystość św. Jana Chrzciciela sprawi, abyśmy czcili pod osłoną znaków ten wielki Sakrament, któryśmy p", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Sabiny*\nDarem Bożym szczodrze nasyceni, prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem świętej", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-30": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, Dawco wszelkich dóbr, Tyś sprawił, że święta Róża zroszona łaską niebieską zakwitła wśród Indian wdzi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Feliksa i Adaukta*\nPokornie błagamy Twój majestat, Panie, abyś nas zawsze bronił dzięki modlitwom Twoic", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Feliksa i Adaukta*\nWejrzyj, Panie, na ofiary Twego ludu, a skoro on składa je Tobie z oddaniem ku czci ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Feliksa i Adaukta*\nNasyceni świętymi darami, prosimy Cię, Panie, abyśmy za przyczyną Twych Świętych zaw", + "id": "Commemoratio Postcommunio" + } + ], + "2025-08-31": [ + { + "body": "*Ps 69:2-3*\nBoże, wejrzyj ku wspomożeniu memu, Panie pospiesz ku ratunkowi memu. Niech się zawstydzą i okryją rumieńcem,", + "id": "Introitus" + }, + { + "body": "Wszechmocny, miłosierny Boże, dzięki Twej łasce wierni Twoi służą Ci godnie i chwalebnie, daj nam prosimy Cię, dążyć bez", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 3:4-9*\n*Apostołowie, ich następcy biskupi i kapłani oraz w", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nW każdym czasie będę błogosławił Panu; na ustach moich zawsze Jego chwała.\n℣. W Panu dusza moja będzie się c", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:23-37*\n*Zasada moralności chrześcijańskiej jest bardzo prosta, le", + "id": "Evangelium" + }, + { + "body": "*Wj 32:11 32:13; 32:14*\nMojżesz modlił się do Pana, Boga swego mówiąc: Czemuż Panie, gniewa się zapalczywość Twoja przec", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na dary ofiarne, które składamy na Twoim świętym ołtarzu, aby wyjednując nam przebaczenie przyni", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13; 103:14-15*\n*Chleb, wino i oliwa podtrzymują doczesne życie człowieka. Jako materia sakramentów służą życiu n", + "id": "Communio" + }, + { + "body": "Prosimy Cię Panie, niech udział w świętym misterium wleje w nas nowe życie, uwolni od win i zapewni obronę.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-09-01": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Panie Jezu Chryste, któryś wstępowanie do Siebie wyznaczył w pokornym kroczeniu za Krzyżem swoim, spraw łaskawie, abyśmy", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Panie Jezu Chryste, dla próśb błogosławionej Dziewicy Twej Bronisławy poświęć dary ludu Twojego: miłe Ci są, bo je ustan", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Święta uczta Ciała i Krwi Twojej, Panie, za wstawiennictwem błogosławionej Dziewicy Bronisławy niech nas odwróci od wsze", + "id": "Postcommunio" + } + ], + "2025-09-02": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, daj Kościołowi Twojemu, aby miał w niebie chwalebnego obrońcę w świętym Stefanie, Twoim ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:12-26*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «Pe", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wszechmogący Boże, wejrzyj na ofiary, które składamy Tobie, i praw, abyśmy sprawując misteria Męki Pańskiej, naśladowali", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy z należnym oddaniem naśladowali wiarę świętego Stefana, Twojego Wyznawcy, ", + "id": "Postcommunio" + } + ], + "2025-09-03": [ + { + "body": "*Ps 88:20-22*\nWyniosłem wybrańca z ludu, namaściłem go świętym olejem moim, by moja ręka zawsze z nim była, i ramię moje", + "id": "Introitus" + }, + { + "body": "*Tekst kolekty nawiązuje do dewizy św. Piusa X: «Odnowić wszystko w Chrystusie».*\nBoże, który dla obrony wiary katolicki", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 2:2-8*\nBracia: Zaufawszy Bogu naszemu głosiliśmy wam Ew", + "id": "Lectio" + }, + { + "body": "*Ps 39:10-11*\nTwą sprawiedliwość głosiłem w wielkim zgromadzeniu, oto nie powściągałem warg moich, Ty wiesz, o Panie.\n℣.", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 21:15-17*\nOnego czasu: Rzekł Jezus do Szymona Piotra: «Szymonie, synu Ja", + "id": "Evangelium" + }, + { + "body": "*Ps 33:12*\nPójdźcie, synowie, słuchajcie mnie: nauczę was Pańskiej bojaźni.", + "id": "Offertorium" + }, + { + "body": "Przyjąwszy łaskawie nasze ofiary, daj nam, prosimy Cię, Panie, abyśmy za wstawiennictwem św. Piusa, Papieża, sprawowali ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 6:56-57*\nCiało moje prawdziwie jest pokarmem, a Krew moja prawdziwie jest napojem. Kto pożywa moje Ciało i pije moją ", + "id": "Communio" + }, + { + "body": "Pokrzepieni mocą uczty niebieskiej prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem świętego Piusa, Papieża, stal", + "id": "Postcommunio" + } + ], + "2025-09-04": [ + { + "body": "*Ps 69:2-3*\nBoże, wejrzyj ku wspomożeniu memu, Panie pospiesz ku ratunkowi memu. Niech się zawstydzą i okryją rumieńcem,", + "id": "Introitus" + }, + { + "body": "Wszechmocny, miłosierny Boże, dzięki Twej łasce wierni Twoi służą Ci godnie i chwalebnie, daj nam prosimy Cię, dążyć bez", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 3:4-9*\n*Apostołowie, ich następcy biskupi i kapłani oraz w", + "id": "Lectio" + }, + { + "body": "*Ps 33:2-3*\nW każdym czasie będę błogosławił Panu; na ustach moich zawsze Jego chwała.\n℣. W Panu dusza moja będzie się c", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:23-37*\n*Zasada moralności chrześcijańskiej jest bardzo prosta, le", + "id": "Evangelium" + }, + { + "body": "*Wj 32:11 32:13; 32:14*\nMojżesz modlił się do Pana, Boga swego mówiąc: Czemuż Panie, gniewa się zapalczywość Twoja przec", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na dary ofiarne, które składamy na Twoim świętym ołtarzu, aby wyjednując nam przebaczenie przyni", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 103:13; 103:14-15*\n*Chleb, wino i oliwa podtrzymują doczesne życie człowieka. Jako materia sakramentów służą życiu n", + "id": "Communio" + }, + { + "body": "Prosimy Cię Panie, niech udział w świętym misterium wleje w nas nowe życie, uwolni od win i zapewni obronę.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-09-05": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby chwalebna uroczystość świętego N., Twego Wyznawcy i Biskupa, przysporzyła nam", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + } + ], + "2025-09-06": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2025-09-07": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki; powstań, o", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, pomnóż w nas wiarę, nadzieję i miłość, abyśmy zaś mogli osiągnąć to, co obiecujesz, daj nam ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 3:16-22*\n*Żydzi, zwłaszcza faryzeusze, wierzyli, że osiągną zba", + "id": "Lectio" + }, + { + "body": "*Ps 73:20; 73:19; 73:22*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki.\n℣. Powstań", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 17:11-19*\n*Zbawiciel uzdrawiał Żydów i Samarytan, którzy weń wierzyl", + "id": "Evangelium" + }, + { + "body": "*Mdr 16:20*\nTobie ufam, o Panie; mówię: Ty jesteś Bogiem moim, w Twoim ręku losy moje.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na Twój lud, wejrzyj łaskawie na jego dary, a przejednany tą ofiarą udziel nam przebaczenia i wy", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Mdr 16:20*\nPanie, dałeś nam chleb z nieba, mający w sobie wszystkie rozkosze i słodkość wszelkiego smaku.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, aby przez przyjęcie niebieskiego Sakramentu wzrastała w nas łaska wiecznego Odkupienia.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-09-08": [ + { + "body": "*Seduliusz*\nBądź pozdrowiona święta Rodzicielko, Panno, któraś zrodziła Króla, co niebem i ziemią rządzi na wieki wieków", + "id": "Introitus" + }, + { + "body": "Udziel, prosimy Cię, Panie, sługom swoim darów łaski niebieskiej, a jako Boskie Macierzyństwo Przenajświętszej Dziewicy ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Hadriana*\nProsimy Cię, wszechmogący Boże, abyśmy obchodząc urodziny dla nieba świętego Hadriana, Twego ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Przysłów.\n*Prz 8:22-35*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dziewic", + "id": "Lectio" + }, + { + "body": "Błogosławionaś i godna uwielbienia Panno Maryjo: któraś bez zmazy dziewictwa stała się Matką Zbawiciela.\n℣. Panno Bogaro", + "id": "Graduale" + }, + { + "body": "Początek ☩ Ewangelii świętej według Mateusza.\n*Mt 1:1-16*\n*Syn Boży stał się prawdziwym człowiekiem. Jako człowiek jest ", + "id": "Evangelium" + }, + { + "body": "Błogosławiona jesteś Panno Maryjo, któraś nosiła Stwórcę wszystkich. Pozostając na wieki Dziewicą, porodziłaś Tego, któr", + "id": "Offertorium" + }, + { + "body": "Niech człowieczeństwo Jednorodzonego Syna Twego, Panie, będzie nam pomocą; a jako On z Dziewicy narodzony, Matki swej pa", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Hadriana*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Dziewicy, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, najświętsze Sakramenty w uroczystość, którą dorocznie ze czcią obchodzimy; spraw tedy prosimy, aby n", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Hadriana*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wieczno", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-09": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki; powstań, o", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, pomnóż w nas wiarę, nadzieję i miłość, abyśmy zaś mogli osiągnąć to, co obiecujesz, daj nam ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Gorgoniusza, Męczennika*\nPanie, niechaj Twój święty Męczennik Gorgoniusz raduje nas swoim wstawiennictw", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 3:16-22*\n*Żydzi, zwłaszcza faryzeusze, wierzyli, że osiągną zba", + "id": "Lectio" + }, + { + "body": "*Ps 73:20; 73:19; 73:22*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki.\n℣. Powstań", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 17:11-19*\n*Zbawiciel uzdrawiał Żydów i Samarytan, którzy weń wierzyl", + "id": "Evangelium" + }, + { + "body": "*Mdr 16:20*\nTobie ufam, o Panie; mówię: Ty jesteś Bogiem moim, w Twoim ręku losy moje.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na Twój lud, wejrzyj łaskawie na jego dary, a przejednany tą ofiarą udziel nam przebaczenia i wy", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Gorgoniusza, Męczennika*\nNiech wstawiennictwo świętego Gorgoniusza sprawi, aby miłą Tobie, Panie, była ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mdr 16:20*\nPanie, dałeś nam chleb z nieba, mający w sobie wszystkie rozkosze i słodkość wszelkiego smaku.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, aby przez przyjęcie niebieskiego Sakramentu wzrastała w nas łaska wiecznego Odkupienia.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Gorgoniusza, Męczennika*\nBoże, niech wieczna słodycz przeniknie i pokrzepi Twoją rodzinę, aby w świętym", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-10": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Przychyl się, Panie, ku prośbom naszym, które zanosimy w uroczystość świętego Mikołaja, Twojego Wyznawcy, a skoro nie uf", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + } + ], + "2025-09-11": [ + { + "body": "*Ps 73:20; 73:19; 73:23*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki; powstań, o", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, pomnóż w nas wiarę, nadzieję i miłość, abyśmy zaś mogli osiągnąć to, co obiecujesz, daj nam ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Prota i Jacka, Męczenników*\nPanie, niech nas podtrzymuje wspaniałe wyznanie wiary świętych Męczenników ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 3:16-22*\n*Żydzi, zwłaszcza faryzeusze, wierzyli, że osiągną zba", + "id": "Lectio" + }, + { + "body": "*Ps 73:20; 73:19; 73:22*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki.\n℣. Powstań", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 17:11-19*\n*Zbawiciel uzdrawiał Żydów i Samarytan, którzy weń wierzyl", + "id": "Evangelium" + }, + { + "body": "*Mdr 16:20*\nTobie ufam, o Panie; mówię: Ty jesteś Bogiem moim, w Twoim ręku losy moje.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na Twój lud, wejrzyj łaskawie na jego dary, a przejednany tą ofiarą udziel nam przebaczenia i wy", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Prota i Jacka, Męczenników*\nDla uczczenia pamięci Męczenników Twoich Prota i Jacka składamy Tobie, Pani", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mdr 16:20*\nPanie, dałeś nam chleb z nieba, mający w sobie wszystkie rozkosze i słodkość wszelkiego smaku.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, aby przez przyjęcie niebieskiego Sakramentu wzrastała w nas łaska wiecznego Odkupienia.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Prota i Jacka, Męczenników*\nProsimy Cię, Panie, niech modlitwa świętych Męczenników Twoich Prota i Jack", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-12": [ + { + "body": "*Ps 44:13; 44:15-16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Niego ", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby wierni Twoi, którzy się cieszą imieniem i opieką Najświętszej Maryi Panny, za", + "id": "Oratio" + }, + { + "body": "*Syr 24:23-31*\nJako krzew winny wydałam wdzięczną woń, a kwiaty moje owocem czci i godności. Jam matką pięknej miłości i", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2025-09-13": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2025-09-14": [ + { + "body": "*Ps 83:10-11*\nObrońco nasz, spojrzyj, Boże, i wejrzyj na oblicze Pomazańca swego. Zaiste, lepszy dzień jeden w przedsion", + "id": "Introitus" + }, + { + "body": "Strzeż Twój Kościół, prosimy Cię Panie, w nieustannym miłosierdziu swoim, a że bez Twej pomocy nie ostoi się człowiek śm", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Podwyższenia Świętego Krzyża*\nBoże, który w dniu dzisiejszym uweselasz nas doroczną uroczystością Podwyższe", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:16-24*\n*Wyrazem «duch» św. Paweł określa całe życie nadprzyro", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nLepiej zawierzyć Panu, niż zawierzyć człowiekowi.\n℣. Lepiej zaufać Bogu, niż zaufać możnym świata. Alleluja", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:24-33*\n*Chrystus nie zaleca lenistwa, lecz gani zbytnią troskę o ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nAnioł Pański czuwa nad bogobojnymi i chroni ich od złego. Skosztujcie i zobaczcie, jak dobry jest Pan!", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię Panie, aby ta Hostia zbawienna z grzechów nas oczyściła i wyjednała nam przychylność Twej potęgi.\nPrz", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Podwyższenia Świętego Krzyża*\nGdy posilać się mamy Ciałem i Krwią Jezusa Chrystusa, Pana naszego, który uśw", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Mt 6:33*\nSzukajcie naprzód Królestwa Bożego, a wszystko będzie wam przydane, tak Pan powiada.", + "id": "Communio" + }, + { + "body": "Boże, niechaj Twój Sakrament nas oczyści, wzmocni i doprowadzi do wiecznego zbawienia.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Podwyższenia Świętego Krzyża*\nPrzybądź nam z pomocą, Panie Boże nasz, i otaczaj nieustanną opieką tych, któ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-15": [ + { + "body": "*J 19:25*\nPod krzyżem Jezusowym stały Matka Jego i siostra Matki Jego, Maria Kleofasowa i Salome, oraz Maria Magdalena.\n", + "id": "Introitus" + }, + { + "body": "Boże, podczas Twej męki, według przepowiedni Symeona, miecz boleści przeszył najsłodszą duszę chwalebnej Dziewicy i Matk", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Nikomedesa*\nPanie, przybądź z pomocą Twojemu ludowi, aby, powołując się na przesławne zasługi świętego ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Judyty.\n*Jdt 13:22; 13:23-25*\nPobłogosławił Cię Pan w mocy swojej, bo przez Cię wniwecz obrócił naszyc", + "id": "Lectio" + }, + { + "body": "Bolejąca i zalana łzami stoisz, Dziewico Maryjo, pod krzyżem Pana Jezusa, Syna Swojego i Odkupiciela.\n℣. Bogarodzico Dzi", + "id": "Graduale" + }, + { + "body": "Bolejąca Matka stała\nU stóp krzyża, we łzach cała,\nKiedy na nim zawisł Syn.\n\nA w Jej pełnej jęku duszy,\nOd męczarni i ka", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:25-27*\nOnego czasu: Pod krzyżem Jezusowym stała Matka Jego i siostra ", + "id": "Evangelium" + }, + { + "body": "*Jer 18:20*\nPamiętaj o nas, Matko Dziewico, przed obliczem Boga, abyś prosiła o dobra dla nas i aby od nas odwrócił swój", + "id": "Offertorium" + }, + { + "body": "Przedkładamy Ci, Panie Jezu Chryste, modlitwy i ofiary i pokornie błagamy, abyśmy rozpamiętując w modlitwach ranę przesł", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Nikomedesa*\nPanie, przyjmij łaskawie ofiarowane dary, a modlitwa świętego Męczennika Nikomedesa niech j", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Błogosławione serce Najświętszej Maryi Panny, które nawet bez śmierci zasłużyło sobie na palmę męczeństwa pod Krzyżem Pa", + "id": "Communio" + }, + { + "body": "Panie Jezu Chryste, niech ofiara, z której pożywaliśmy czcząc z oddaniem przebicie serca Twojej Matki-Dziewicy, wyjedna ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Nikomedesa*\nPanie, niech nas oczyści Sakrament, któryśmy przyjęli, a za wstawiennictwem świętego Nikome", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-16": [ + { + "body": "*Ps 78:11-12; 78:10*\nNiech jęk pojmanych dojdzie do Ciebie, Panie: naszym sąsiadom odpłać siedmiokroć w ich zanadrze, po", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech obchód uroczystości świętych Męczenników Twoich i Biskupów Korneliusza i Cypriana zjedna nam o", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Eufemii, Łucji i Geminiana*\nPanie, udziel nam radości z wysłuchania naszych próśb, abyśmy czcząc dorocz", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 3:1-8*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom gł", + "id": "Lectio" + }, + { + "body": "*Wj 15:11*\nChwalebny jest Bóg w Swoich Świętych, przedziwny w majestacie, dokonuje cudów.\n*Wj 15:6*\n℣. Prawica Twoja, Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:9-19*\n*Wszystkie prześladowania, jakich doznają męczennicy, stano", + "id": "Evangelium" + }, + { + "body": "*Ps 67:36*\nPrzedziwny jest Bóg w Swoich Świętych: Bóg Izraela, sam Swojemu ludowi daje potęgę i siłę: błogosławiony Bóg,", + "id": "Offertorium" + }, + { + "body": "Wysłuchaj, Panie, naszych próśb, które zanosimy czcząc pamięć Twoich Świętych, a skoro nie ufamy własnej sprawiedliwości", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Eufemii, Łucji i Geminiana*\nPanie, wejrzyj łaskawie na ofiary swojego ludu i napełnij go radością ze ws", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył: jak złoto w piecu ich wypróbował, jak ofiarę", + "id": "Communio" + }, + { + "body": "Nasyceni zbawiennym Sakramentem prosimy Cię, Panie, aby wspierały nas modły tych, których uroczystość obchodzimy.\nPrzez ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Eufemii, Łucji i Geminiana*\nWysłuchaj, Panie, próśb naszych: niech zawsze doznajemy pomocy świętych Two", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-17": [ + { + "body": "*Ps 83:10-11*\nObrońco nasz, spojrzyj, Boże, i wejrzyj na oblicze Pomazańca swego. Zaiste, lepszy dzień jeden w przedsion", + "id": "Introitus" + }, + { + "body": "Strzeż Twój Kościół, prosimy Cię Panie, w nieustannym miłosierdziu swoim, a że bez Twej pomocy nie ostoi się człowiek śm", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Stygmatów św. Franciszka, Wyznawcy*\nBoże, który za pośrednictwem św. Franciszka wzbogacasz Kościół swój now", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:16-24*\n*Wyrazem «duch» św. Paweł określa całe życie nadprzyro", + "id": "Lectio" + }, + { + "body": "*Ps 117:8-9*\nLepiej zawierzyć Panu, niż zawierzyć człowiekowi.\n℣. Lepiej zaufać Bogu, niż zaufać możnym świata. \n*Ps 94:", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:24-33*\n*Chrystus nie zaleca lenistwa, lecz gani zbytnią troskę o ", + "id": "Evangelium" + }, + { + "body": "*Ps 33:8-9*\nAnioł Pański czuwa nad bogobojnymi i chroni ich od złego. Skosztujcie i zobaczcie, jak dobry jest Pan!", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię Panie, aby ta Hostia zbawienna z grzechów nas oczyściła i wyjednała nam przychylność Twej potęgi.\nPrz", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Stygmatów św. Franciszka, Wyznawcy*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego Franciszka oczy", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 6:33*\nSzukajcie naprzód Królestwa Bożego, a wszystko będzie wam przydane, tak Pan powiada.", + "id": "Communio" + }, + { + "body": "Boże, niechaj Twój Sakrament nas oczyści, wzmocni i doprowadzi do wiecznego zbawienia.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Stygmatów św. Franciszka, Wyznawcy*\nProsimy Cię, Panie, niech łaska niebieska daje wzrost Twojemu Kościołow", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-18": [ + { + "body": "*Syr 1:14-15*\nMiłość Boga jest mądrością chwalebną; a ci, którym się ukazuje w widzeniu, miłują ją, kiedy ujrzą i poznaj", + "id": "Introitus" + }, + { + "body": "Boże, któryś zamierzył wszystko przyciągnąć do jednorodzonego Syna Twego podwyższonego nad ziemię, spraw łaskawie, abyśm", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 13:1-8*\nBracia: Gdybym mówił językami ludzi i Aniołów, a m", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:1-14*\nOnego czasu: Jezus mówił do przedniejszych kapłanów i fary", + "id": "Evangelium" + }, + { + "body": "*Ps 34:13*\n*Św. Józef z Kupertynu bardzo wiele wycierpiał wskutek niezrozumienia go i niedowierzania mu ze strony współc", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 68:30-31*\nJa jestem nędzny i zbolały: niech strzeże mnie, Boże, Twa pomoc. Pochwalę pieśnią imię Boże i zaśpiewam Mu", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2025-09-19": [ + { + "body": "*Ps 36:39*\nZbawienie sprawiedliwych pochodzi od Pana: On ich ucieczką w czasie utrapienia.\n*Ps 36:1*\nNie unoś się z powo", + "id": "Introitus" + }, + { + "body": "Boże, Ty co roku uweselasz nas uroczystością świętych Męczenników Twoich Januarego i Towarzyszy, spraw łaskawie, abyśmy ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 10:32-38*\nBracia: Przypomnijcie sobie dni dawniejsze, w k", + "id": "Lectio" + }, + { + "body": "*Ps 33:18-19*\nWołali sprawiedliwi, a Pan ich wysłuchał i wyzwolił ich ze wszystkich ucisków.\n℣. Bliski jest Pan dla skru", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:3-13*\nOnego czasu: Gdy Jezus siedział na Górze Oliwnej, przystąp", + "id": "Evangelium" + }, + { + "body": "*Mdr 3:1-3*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom głupich, że pomarli, a oni trw", + "id": "Offertorium" + }, + { + "body": "Panie, daj się przebłagać złożonymi darami, i za wstawiennictwem świętych Męczenników Twoich N. i N. broń nas od wszelki", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 10:27*\nCo wam mówię w ciemności, opowiadajcie na świetle – mówi Pan – i co usłyszycie na ucho, głoście na dachach.", + "id": "Communio" + }, + { + "body": "Panie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętych Męczenników Twoich N. i N. stanie się dla nas nie", + "id": "Postcommunio" + } + ], + "2025-09-20": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Eustachego i Towarzyszy, Męczenników*\nBoże, który nam pozwalasz obchodzić narodziny dla nieba świętych ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Eustachego i Towarzyszy, Męczenników*\nOfiarujemy Ci, Panie te dary jako wyraz naszego oddania; przyjmij", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Eustachego i Towarzyszy, Męczenników*\nProsimy Cię, Panie, za wstawiennictwem Twoich Męczenników N. i N.", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-21": [ + { + "body": "*Ps 85:1; 85:2-3*\nNakłoń swe ucho, wysłuchaj mnie Panie; ratuj mój Boże, sługę swego, który Ci zaufał; zmiłuj się nade m", + "id": "Introitus" + }, + { + "body": "Niechaj Twe miłosierdzie nieustannie oczyszcza i wzmacnia Twój Kościół, o Panie, a że bez Ciebie nie może trwać nienarus", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Mateusza, Apostoła i Ewangelisty*\nProsimy Cię, Panie, niech nas wspomagają zasługi św. Mateusza, Aposto", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:25-26; 6:1-10*\nBracia: Jeśli żyjemy duchem, według Ducha też ", + "id": "Lectio" + }, + { + "body": "*Ps 91:2-3*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.\n℣. Głosić z rana miłosierdzie Twoje, a wier", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:11-16*\nOnego czasu: Jezus szedł do miasta, które zowią Naim, a z n", + "id": "Evangelium" + }, + { + "body": "*Ps 39:2; 39:3; 39:4*\nUfałem, Panu ufałem, a schylił się nade mną i wysłuchał mojego wołania, i w usta moje włożył śpiew", + "id": "Offertorium" + }, + { + "body": "Panie, niech Twoje Sakramenty nas strzegą i zawsze bronią od napaści szatańskich.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Mateusza, Apostoła i Ewangelisty*\nProsimy Cię, Panie, niech modlitwy św. Mateusza, Apostoła i Ewangelis", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*J 6:52*\nChlebem, który Ja dam, jest Ciało moje na życie świata.", + "id": "Communio" + }, + { + "body": "Prosimy Cię Panie, niechaj działanie Tego niebieskiego daru zawładnie naszą duszą i ciałem, aby stale miała w nas pierws", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Mateusza, Apostoła i Ewangelisty*\nPo przyjęciu Sakramentu, błagamy Cię, Panie, za przyczyną św. Mateusz", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-22": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, Ty ozdobiłeś świętego Biskupa Tomasza cnotą niezwykłego miłosierdzia dla ubogich; prosimy Cię, abyś za jego wstawi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Maurycego i Towarzyszy*\nDozwól nam, wszechmogący Boże, cieszyć się z uroczystości świętych Twoich Męcze", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech doroczna uroczystość św. Tomasza, Twego Wyznawcy i Biskupa, uczyni nas godnymi Twojej miłości,", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Maurycego i Towarzyszy*\nWejrzyj, Panie, na dary, które Ci składamy na pamiątkę świętych Twoich Męczenni", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Boże, Ty nagradzasz dusze wierne; spraw, abyśmy dostąpili przebaczenia przez prośby św. Tomasza, Twego Wyznawcy i Biskup", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Maurycego i Towarzyszy*\nPokrzepieni niebieskim Sakramentem i płynącą zeń radością pokornie prosimy Cię,", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-23": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego N., (Twojego Męc", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Tekli*\nProsimy Cię, wszechmogący Boże, spraw, abyśmy obchodząc narodziny dla nieba świętej Tekli, Twoje", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Tekli*\nPrzyjmij, Panie, dary, które Ci składamy w uroczystość świętej N., Dziewicy i Męczennicy Twojej:", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Tekli*\nPanie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej N., Twojej Dziewicy i", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-24": [ + { + "body": "*Ps 80:2; 80:3; 80:4; 80:5*\nRadośnie śpiewajcie Bogu, obrońcy naszemu, wykrzykujcie Bogu Jakuba, uderzcie w cytrę, słodk", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech miłosierdzie Twoje uleczy i podtrzyma naszą ułomną naturę: a skoro sama z siebie wyczerpuje si", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Amosa.\n*Am 9:13-15*\n*Prorok Amos zapowiada odbudowę i pomyślność Izraela po powrocie z wygnani", + "id": "LectioL1" + }, + { + "body": "*Ps 112,5-7*\nKtóż jako Pan, nasz Bóg, co w górze ma siedzibę, a oczy swoje zniża na niebo i ziemię?\n℣. Podnosi z prochu ", + "id": "GradualeL1" + }, + { + "body": "Prosimy Cię, Panie, racz spełnić błagania Twojej rodziny, a gdy powstrzymuje się od pokarmów cielesnych, niech w duszy w", + "id": "OratioL1" + }, + { + "body": "*Wspomnienie N. M. P. od Wykupu Jeńców*\nBoże, Ty przez chwalebną Matkę Syna Twojego raczyłeś wzbogacić Twój Kościół nową", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Nehemiasza.\n*Neh 8:1-10*\n*Po powrocie z wygnania uroczyście odczytano ludowi Prawo Mojżeszowe,", + "id": "Lectio" + }, + { + "body": "*Ps 32:12 ; 32:6*\nBłogosławiony lud, którego Bogiem jest Pan: naród, który On sobie wybrał na dziedzictwo.\n℣. Przez słow", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 9:16-28*\nOnego czasu: Jeden z rzeszy odpowiadając rzekł do Jezusa: «Na", + "id": "Evangelium" + }, + { + "body": "*Ps 118:47; 18:48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnięte do przykazań Twoich, które um", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", + "id": "Secreta" + }, + { + "body": "*Wspomnienie N. M. P. od Wykupu Jeńców*\nPanie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dzie", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Neh 8:10*\nPożywajcie z tłuszczem, pijcie miód, a część tym poślijcie, którzy sobie nie przygotowali, bo to jest święty ", + "id": "Communio" + }, + { + "body": "Spożywając niebieskie dary, pokornie prosimy Cię, Panie, abyśmy dzięki Twojej łasce z godnym usposobieniem przyjęli to, ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie N. M. P. od Wykupu Jeńców*\nPrzyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustanni", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-25": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, który sprawiłeś, że błogosławiony Władysław przyświecał wszystkim jako wzór doskonałości zakonnej; daj łaskawie, a", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Panie, gdy składamy ofiary na ołtarzu Twoim, daj nam takie uczucie pobożności, jakim obdarzyłeś błogosławionego Władysła", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, niech za wstawiennictwem błogosławionego Wyznawcy Twojego Władysława święta uczta udzieli nam pomocy,", + "id": "Postcommunio" + } + ], + "2025-09-26": [ + { + "body": "*Ps 104:3-4*\nNiech się weseli serce szukających Pana, szukajcie Pana i umacniajcie się, szukajcie zawsze Jego oblicza.\n*", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy Cię, abyśmy wiernie obchodząc doroczny post, podobali się Tobie duszą i ciałem.\nPrzez ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Cypriana i Justyny, Męczenników*\nPanie, niech nas otacza ciągła opieka świętych Męczenników Cypriana i ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Ozeasza.\n*Oz 14:2-10*\nTo mówi Pan Bóg: Nawróć się, Izraelu, do Pana, Boga Twego, boś się potkn", + "id": "Lectio" + }, + { + "body": "*Ps 89:13; 89:1*\nZwróć się ku nam, Panie, na chwilę i daj się ubłagać Swoim sługom.\n℣. Panie, Tyś był ucieczką naszą z p", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:36-50*\nOnego czasu: Pewien faryzeusz zaprosił Jezusa na posiłek do", + "id": "Evangelium" + }, + { + "body": "*Ps 102:2; 102:5*\nBłogosław, duszo moja, Pana i nie zapominaj wszystkich dobrodziejstw Jego, a młodość twoja odnowi się ", + "id": "Offertorium" + }, + { + "body": "Racz przyjąć, prosimy Cię, Panie, nasze posty. Niech one nas oczyszczą i uczynią godnymi Twej łaski i zawiodą do wiekuis", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Cypriana i Justyny, Męczenników*\nOfiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij je ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:22; 118:24*\nOddal ode mnie szyderstwo i wzgardę, bo chowam Twoje przykazania, o Panie, bo stale rozważam Twoje P", + "id": "Communio" + }, + { + "body": "Spraw, prosimy, wszechmogący Boże, abyśmy składając dzięki za przyjęte dary otrzymywali coraz większe dobrodziejstwa.\nPr", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Cypriana i Justyny, Męczenników*\nProsimy Cię, Panie, za wstawiennictwem świętych Męczenników Twoich Cyp", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-27": [ + { + "body": "*Ps 94:6-7*\nPójdźcie, oddajmy cześć Bogu, padnijmy na twarz przed Panem, zegnijmy kolana przed Tym, który nas stworzył, ", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który zbawienną wstrzemięźliwością leczysz ciała i dusze, prosimy kornie Twój majestat: daj ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 23:26-32*\n*W Święto Oczyszczenia odbywała się jedna z najuroczystszych ofiar Starego", + "id": "LectioL1" + }, + { + "body": "*Ps 78:9; 78:10*\nO Panie, przebacz nam grzechy, aby nie drwili z nas poganie: «Gdzie jest ich Bóg?»\n℣. Wspomóż nas, Boże", + "id": "GradualeL1" + }, + { + "body": "Daj nam, prosimy Cię, wszechmogący Boże, abyśmy przez posty zostali nasyceni Twoją łaską, a przez wstrzemięźliwość stali", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 23:39-43*\n*Święto Namiotów trwało osiem dni. W tym czasie Żydzi mieszkali w szałasac", + "id": "LectioL2" + }, + { + "body": "*Ps 83:10; 83:9*\nSpojrzyj, obrońco nasz, Boże, i wejrzyj na sługi Swoje.\n℣. Panie, Boże Zastępów, wysłuchaj modlitwy słu", + "id": "GradualeL2" + }, + { + "body": "Prosimy Cię, Panie, roztocz opiekę nad Twoją rodziną, abyśmy z Twej szczodrobliwości osiągnęli środki wiecznego zbawieni", + "id": "OratioL2" + }, + { + "body": "Czytanie z Księgi Proroka Micheasza.\n*Mi 7:14; 7:16; 7:18-20*\nPanie, Boże nasz, paś swój lud laską swoją, trzodę swego d", + "id": "LectioL3" + }, + { + "body": "*Ps 89:13; 89:1*\nZwróć się ku nam, Panie, na chwilę i daj się ubłagać sługom Swoim.\n℣. Panie, Tyś był ucieczką naszą z p", + "id": "GradualeL3" + }, + { + "body": "Prosimy Cię, Panie, daj nam tak się wstrzymywać od pokarmów mięsnych, abyśmy również powstrzymywali się od namiętności, ", + "id": "OratioL3" + }, + { + "body": "Czytanie z Księgi Proroka Zachariasza.\n*Zch 8:14-19*\nW one dni: Przemówiło słowo Pańskie do mnie: To mówi Pan Zastępów: ", + "id": "LectioL4" + }, + { + "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna.", + "id": "GradualeL4" + }, + { + "body": "Panie, Ty nam pozwalasz ofiarować Ci uroczysty post; prosimy Cię, wzmocnij nas udzielając przebaczenia.\nPrzez Pana…", + "id": "OratioL4" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:49-51*\n*Poważną przeszkodą do zbawienia są nasze namiętności, które wykorzystuj", + "id": "LectioL5" + }, + { + "body": "Boże, któryś złagodził płomień ognia dla trzech młodzieńców, spraw łaskawie, aby nas, sług Twoich, nie pożarł płomień na", + "id": "OratioL5" + }, + { + "body": "*Wspomnienie Św. Kosmy i Damiana, Męczenników*\nSpraw, prosimy Cię, wszechmogący Boże, aby od wszelkich niebezpieczeństw ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 9:2-12*\n*Chrystus, Arcykapłan Nowego Testamentu, wszedł z", + "id": "Lectio" + }, + { + "body": "*Ps 116:1-2*\nChwalcie Pana, wszystkie narody, wysławiajcie Go, wszystkie ludy.\n℣. Bo miłosierdzie Jego nad nami utwierdz", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 13:6-17*\nOnego czasu: Mówił Jezus do rzesz tę przypowieść: «Człowiek", + "id": "Evangelium" + }, + { + "body": "*Ps 87:2-3*\nPanie Boże, Zbawicielu mój, podczas dnia wołam i w nocy żalę się przed Tobą, niech moja modlitwa dojdzie do ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, niech dar złożony przed oczyma Twojego majestatu wyjedna nam łaskę oddania się Tobie i p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Kosmy i Damiana, Męczenników*\nNiechaj nie braknie nam, Panie, pobożnej modlitwy Świętych Twoich: niech ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Kpł 23:41; 23:43*\nW miesiącu siódmym będziecie obchodzić święto, bo sprawiłem, że synowie Izraelowi mieszkali pod szała", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech Twój Sakrament udzieli nam łaski, którą zawiera, abyśmy w rzeczywistości posiedli to, co teraz", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Kosmy i Damiana, Męczenników*\nProsimy Cię, Panie, niech uczestnictwo w Uczcie niebieskiej, do której na", + "id": "Commemoratio Postcommunio" + } + ], + "2025-09-28": [ + { + "body": "*Ps 85:3; 85:5*\nZmiłuj się nade mną, Panie, bo ustawicznie wołam do Ciebie. Tyś Panie dobry i łaskawy, wielce miłosierny", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niechaj Twa łaska uprzedza nas i towarzyszy nam zawsze, oraz niechaj w nas wzbudzi gorliwość oddawan", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:13-21*\n*W liście do Efezjan św. Paweł wyłożył naukę o Kościel", + "id": "Lectio" + }, + { + "body": "*Ps 101:16-17*\nUczczą narody Imię Twoje Panie, a królowie ziemscy chwałę Twą uznają.\n℣. Pan bowiem odbudował Syjon i tam", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:1-11*\nOnego czasu: Gdy wszedł Jezus w szabat do domu jednego z pr", + "id": "Evangelium" + }, + { + "body": "*Ps 39:14-15*\nPanie pospiesz mi z pomocą, niechaj się zawstydzą, którzy szukają mej duszy, aby ją zgubić. Panie pospiesz", + "id": "Offertorium" + }, + { + "body": "Oczyść nas, Panie, działaniem Twej ofiary i w miłosierdziu Twoim spraw, byśmy zasłużyli brać w niej udział.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 70:16-18*\nWspominać będę sprawiedliwość: Tobie Panie jedynie właściwą. Tyś mnie, Boże, uczył od młodości mojej, więc", + "id": "Communio" + }, + { + "body": "Panie, oczyść łaskawie umysły nasze i odnów je niebiańskim Sakramentem, tak żeby i ciała nasze czerpały zeń pomoc na ter", + "id": "Postcommunio" + } + ], + "2025-09-29": [ + { + "body": "*Ps 102:20*\nBłogosławcie Pana, wszyscy Jego Aniołowie, potężni mocą, pełniący Jego rozkazy, abyście posłuszni byli Jego ", + "id": "Introitus" + }, + { + "body": "Boże, Ty w przedziwny sposób wyznaczasz obowiązki Aniołom i ludziom; spraw miłościwie, aby na ziemi strzegli naszego życ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 1:1-5*\nW one dni: Bóg jawnym uczynił to, co ma się stać niebawe", + "id": "Lectio" + }, + { + "body": "*Ps 102:20; 102:1*\nBłogosławcie Pana, wszyscy Jego Aniołowie, potężni mocą, pełniący Jego rozkazy.\n℣. Błogosław, duszo m", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-10*\n*Życia nadprzyrodzone ma taką wartość, że trzeba ponieść w", + "id": "Evangelium" + }, + { + "body": "*Ap 8:3; 8:4*\n*Św. Jan opisuje w Apokalipsie Anioła ze złotą kadzielnicą, który przedstawia Bogu modlitwy świętych.*\nAni", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiarę uwielbienia i pokornie prosimy, abyś za wstawiennictwem anielskim łaskawie ją przyjął i obróc", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Dn 3:58*\nBłogosławcie Pana, wszyscy Aniołowie Pańscy, wysławiajcie Go hymnem i wywyższajcie na wieki.", + "id": "Communio" + }, + { + "body": "Wsparci wstawiennictwem św. Archanioła Twego Michała, kornie błagamy Cię Panie, abyśmy pojęli umysłem to, cośmy spożyli ", + "id": "Postcommunio" + } + ], + "2025-09-30": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś raczył dać Kościołowi Swemu świętego Hieronima, Twego Wyznawcę, jako wielkiego mistrza w wyjaśnianiu Pisma świ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Pomóż nam, Panie, łaską niebieską służyć Ci ze swobodnym umysłem, aby dary, które składamy za wstawiennictwem św. Hieron", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Nasyceni pokarmem niebieskim prosimy Cię, Panie, abyśmy za wstawiennictwem świętego Hieronima, Twojego Wyznawcy, mogli o", + "id": "Postcommunio" + } + ], + "2025-10-01": [ + { + "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", + "id": "Introitus" + }, + { + "body": "Boże, który ozdobiłeś błogosławionego Jana, Twego Wyznawcę, darami szczególnej pokory i cierpliwości, dozwól łaskawie, a", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Remigiusza, Biskupa i Wyznawcy*\nSpraw, Prosimy Cię, wszechmogący Boże, aby chwalebna uroczystość święte", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", + "id": "Evangelium" + }, + { + "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Remigiusza, Biskupa i Wyznawcy*\nPanie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspomina", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Remigiusza, Biskupa i Wyznawcy*\nWszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-02": [ + { + "body": "*Ps 102:20*\nBłogosławcie Pana, wszyscy Jego Aniołowie, potężni mocą, pełniący Jego rozkazy, abyście posłuszni byli Jego ", + "id": "Introitus" + }, + { + "body": "Boże, który w niewysłowionej Opatrzności raczysz świętych Twoich Aniołów posyłać nam jako stróżów, prosimy Cię pokornie:", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Wyjścia.\n*Wj 23:20-23*\nTo mówi Pan Bóg: «Oto ja poślę Anioła mego, który by szedł przed tobą i strzegł", + "id": "Lectio" + }, + { + "body": "*Ps 90:11-12*\nSwoim Aniołom Bóg dał rozkaz o tobie, aby cie strzegli na wszystkich twych drogach.\n℣. Na rękach swoich bę", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-10*\n*Życia nadprzyrodzone ma taką wartość, że trzeba ponieść w", + "id": "Evangelium" + }, + { + "body": "*Ps 102:20-21*\nBłogosławcie Pana, wszyscy Jego Aniołowie, słudzy Jego, pełniący Jego rozkazy, abyście posłuszni byli Jeg", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które składamy ku czci świętych Twoich Aniołów i spraw łaskawie, abyśmy pod nieustanną ich opieką", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Dn 3:58*\nBłogosławcie Pana, wszyscy Aniołowie Pańscy, wysławiajcie Go hymnem i wywyższajcie na wieki.", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, Boski Sakrament radując się z uroczystości Twoich świętych Aniołów; prosimy Cię, abyśmy pod ich opie", + "id": "Postcommunio" + } + ], + "2025-10-03": [ + { + "body": "*Pnp 4:8-9*\nPójdźże z Libanu, oblubienico moja, pójdź z Libanu, pójdź. Zraniłaś moje serce, siostro moja, oblubienico, z", + "id": "Introitus" + }, + { + "body": "Panie, któryś powiedział: «Jeśli się nie staniecie jako dzieci, nie wejdziecie do Królestwa Niebieskiego»; prosimy Cię, ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 66:12-14*\n*Chwała św. Teresy ogarnęła cały świat jak rzeka. Równocześnie poznano", + "id": "Lectio" + }, + { + "body": "*Mt 11:25*\nWysławiam Cię Ojcze, Panie nieba i ziemi, żeś te rzeczy zakrył przed mądrymi i roztropnymi, a objawiłeś je ma", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-4*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", + "id": "Evangelium" + }, + { + "body": "*Łk 1:46-49*\nUwielbia dusza moja Pana, i rozradował się duch mój w Bogu, Zbawicielu moim. Bo wejrzał na uniżenie służebn", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech modlitwa świętej Dziewicy Teresy poleca Tobie nasza ofiarę, aby uroczyście składana ku jej chw", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Pp 32:10-12*\nWiódł ją i uczył, i strzegł jak źrenicy oka swego. Jak orzeł rozpostarł swe skrzydła, i wziął ją i nosił n", + "id": "Communio" + }, + { + "body": "Panie, niech niebieskie misterium rozpłomieni nas tym ogniem miłości, dzięki któremu święta Dziewica Teresa samą siebie ", + "id": "Postcommunio" + } + ], + "2025-10-04": [ + { + "body": "*Gal 6:14*\nNie daj Boże, bym miał się chlubić z czego innego, jeno z krzyża Pana naszego Jezusa Chrystusa, przez którego", + "id": "Introitus" + }, + { + "body": "Boże, który za pośrednictwem św. Franciszka wzbogacasz Kościół swój nową rodziną zakonną, daj nam za jego przykładem pog", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Gal 6:14-18*\nBracia: Ale co do mnie, nie daj Boże, bym się miał ch", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:25-30*\nOnego czasu: Odpowiadając Jezus rzekł: «Wysławiam Cię, Oj", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, złożone Ci dary i za przyczyną świętego Franciszka oczyść nas od wszelkiej zmazy przewinień.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech łaska niebieska daje wzrost Twojemu Kościołowi, który raczyłeś oświecić nauką i chwalebnymi za", + "id": "Postcommunio" + } + ], + "2025-10-05": [ + { + "body": "*Ps 118:137; 118:124*\nSprawiedliwy jesteś, Panie, i słuszne są wyroki Twoje. Postąp ze sługą Twoim, wedle Twej litości.\n", + "id": "Introitus" + }, + { + "body": "Daj, Panie, ludowi Twemu unikać wpływu szatana, aby czystym sercem Ciebie szukał jedynie, Boga swojego.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:1-6*\n*List do Efezjan napisał św. Paweł z więzienia w Rzymie.", + "id": "Lectio" + }, + { + "body": "*Ps 32:12; 32:6*\nSzczęśliwy naród, którego Bogiem jest Pan, ten lud, który Pan sobie na dziedzictwo wybrał.\n℣. Słowem Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:34-46*\n*Po rozstrzygnięciu zagadnienie moralnego Chrystus Pan st", + "id": "Evangelium" + }, + { + "body": "*Dn 9:17; 9:18; 9:19*\nModliłem się do Boga mego ja, Daniel, mówiąc: Wysłuchaj, Panie, modlitwy sługi Twego, rozjaśnij ob", + "id": "Offertorium" + }, + { + "body": "Przed Majestat Twój, Panie, zanosimy pokornie błagania nasze, niechaj te święte tajemnice, które dzisiaj sprawujemy, uwo", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 75:12-13*\nCzyńcie śluby i wypełniajcie Panu, Bogu waszemu. Wszyscy wokoło dary przynoście straszliwemu, który dumę k", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie Boże nasz, aby przenajświętsza Tajemnica, którą ustanowiłeś dla utrwalenia odkupienia naszego, była z", + "id": "Postcommunio" + } + ], + "2025-10-06": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech nas wspomaga wstawiennictwo św. Brunona, Twojego Wyznawcy, abyśmy, obraziwszy Twój majestat ci", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + } + ], + "2025-10-07": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci Najświętszej Maryi Panny; z Jej uroczystości radują się Anioło", + "id": "Introitus" + }, + { + "body": "Boże, którego Jednorodzony Syn przez swe życie, śmierć i zmartwychwstanie wysłużył nam nagrodę życia wiecznego, spraw, a", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Marka*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną ś", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Przysłów.\n*Prz 8:22-24; 8:32-35*\nPan posiadł mnie na początku dróg swoich, zanim cokolwiek od początku", + "id": "Lectio" + }, + { + "body": "*Ps 44:5; 44:11; 44:12*\nW obronie wiary i sprawiedliwości niech cudów dokona Twoja prawica.\n℣. Posłuchaj, córko, spójrz ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "*Syr 24:25; Syr 39:17*\nWe mnie łaska wszelkiej drogi i prawdy, we mnie cała nadzieja życia i cnoty. Ja wydałam owoc, jak", + "id": "Offertorium" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy należycie się usposobili do ofiarowania Tobie tych darów i rak rozważali w tajemnicach", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Marka*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sp", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*Syr 39:19*\nKwitnijcie jak lilia, roztaczajcie woń, wypuszczajcie wdzięczne gałązki i pieśń pochwalną śpiewajcie i błogo", + "id": "Communio" + }, + { + "body": "Niech nas wspomagają, Panie, modlitwy Rodzicielki Twojej, której uroczystość różańcową święcimy, abyśmy doznali mocy taj", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Marka*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Tw", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-08": [ + { + "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", + "id": "Introitus" + }, + { + "body": "Panie Boże nasz, Ty przez Jednorodzonego Syna Twego objawiłeś świętej Brygidzie niebieskie tajemnice: za jej łaskawym or", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Sergiusza, Bachusa, Marcelego i Apuliusza*\nNiech nas wspierają, Panie, błogosławione zasługi świętych T", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*1 Tm 5:3-10*\nNajmilszy: Szanuj wdowy, które prawdziwie są wdowa", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Sergiusza, Bachusa, Marcelego i Apuliusza*\nProsimy Cię, Panie, aby ta hostia, którą składamy w ofierze,", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Sergiusza, Bachusa, Marcelego i Apuliusza*\nPrzyjęte Sakramenty niech nas uzbroją, Panie, a pomoc z nieb", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-09": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, za pogardę zaszczytów ziemskich błogosławionego Wincentego, Twego Wyznawcę i Biskupa, okryłeś chwałą pokory: prosi", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Jana Leonardi, Wyznawcy*\nBoże, który raczyłeś przedziwnie powołać św. Jana, Twego Wyznawcę, do krzewien", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Jana Leonardi, Wyznawcy*\n*Dzięki misjonarzom wychowanym w Kolegium Rozkrzewiania Wiary, założonym przez", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Jana Leonardi, Wyznawcy*\nPokrzepieni świętymi tajemnicami drogocennego Ciała i Krwi Twojej, prosimy Cię", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-10": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Panie Jezu Chryste, wzorze i nagrodo prawdziwej pokory, prosimy Cię, jak św. Franciszka uczyniłeś chwalebnym naśladowcą ", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Dziękczynienie za zwycięstwo chocimskie z roku 1621*\nBoże, który w największych niebezpieczeństwach naszego", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech święty Franciszek, Wyznawca, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Dziękczynienie za zwycięstwo chocimskie z roku 1621*\nPrzyjmij, Panie, wonność tej dziękczynnej ofiary, i st", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Franciszka, Wyznawcy, abyśmy naśladowa", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Dziękczynienie za zwycięstwo chocimskie z roku 1621*\nBoże, Ty nie dopuszczasz, aby ktokolwiek z ufających T", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-11": [ + { + "body": "*Iz 7:14*\nOto Panna pocznie i porodzi Syna i nazwą imię Jego Emmanuel (Bóg z nami).\n*Ps 97:1*\nŚpiewajcie Panu pieśń nowa", + "id": "Introitus" + }, + { + "body": "Boże, któryś zrządził, że za zwiastowaniem Anielskim w żywocie Najświętszej Maryi Panny Słowo Twoje Ciałem się stało, po", + "id": "Oratio" + }, + { + "body": "*Syr 24:23-31*\nJako krzew winny wydałam wdzięczną woń, a kwiaty moje owocem czci i godności. Jam matką pięknej miłości i", + "id": "Lectio" + }, + { + "body": "*Iz 11:1-2*\nWyjdzie różdżka z korzenia Jessego, a kwiat z korzenia jego wzejdzie.\n℣. I spocznie na nim Duch Pana. Allelu", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:43-51*\nOnego czasu: Gdy wracali, zostało Dziecię Jezus w Jerozolim", + "id": "Evangelium" + }, + { + "body": "*Mt 1:18*\nGdy poślubiona była Matka Jego, Maryja, Józefowi, okazało się, że poczęła z Ducha Świętego.", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Tego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, Matki Syna Twego Jednorodzonego, of", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", + "id": "Communio" + }, + { + "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", + "id": "Postcommunio" + } + ], + "2025-10-12": [ + { + "body": "*Syr 36:18*\nUżycz pokoju, o Panie, tym, którzy oczekują pomocy od Ciebie, aby się spełniły obietnice Twoich proroków. Wy", + "id": "Introitus" + }, + { + "body": "Prosimy Cię Panie, kieruj litościwie naszymi sercami, bez Ciebie bowiem nie możemy się Tobie podobać.\nPrzez Pana…", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 1:4-8*\nBracia: Dziękuję Bogu mojemu zawsze za was, za łask", + "id": "Lectio" + }, + { + "body": "*Ps 121:1; 121:7*\nUradowałem się, bo mi powiedziano: Pójdziemy do domu Pańskiego.\n℣. Niech pokój będzie w murach twoich,", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:1-8*\nOnego czasu: Jezus wstąpiwszy do łodzi przeprawił się i przy", + "id": "Evangelium" + }, + { + "body": "*Wj 24:4; 24:5*\nPoświęcił Mojżesz ołtarz dla Pana, składając na nim ofiary całopalne i ofiarując żertwy ze zwierząt. Wob", + "id": "Offertorium" + }, + { + "body": "Boże, który przez udział w tej czcigodnej ofierze, czynisz nas uczestnikami jedynego i najwyższego Bóstwa, spraw, prosim", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 95:8-9*\nOfiary nieście i wchodźcie do Jego przedsieni: uczcijcie Pana w świętym Jego majestacie.", + "id": "Communio" + }, + { + "body": "Posileni świętym darem dzięki Ci składamy, Panie, i błagamy Twe miłosierdzie, abyś nas uczynił godnymi pełnego w nim ucz", + "id": "Postcommunio" + } + ], + "2025-10-13": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, który ukoronowałeś chwałą wiekuistą Swojego Wyznawcę świętego Króla Edwarda, daj nam tak czcić go na ziemi, abyśmy", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + } + ], + "2025-10-14": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Boże, który widzisz, że upadamy wskutek swojej ułomności, odnów w nas litościwie miłość ku Tobie przez przykłady Twoich ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Panie, niech nas wspomaga ta tajemnicza ofiara, niech nas wyzwoli od naszych przewinień i zapewni nam wieczne zbawienie.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, by najświętszy dar oczyścił nas i dopomógł prowadzić uczciwe życie.\nPrzez Pana…", + "id": "Postcommunio" + } + ], + "2025-10-15": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy Teresy, nabyli ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Teresy, Twojej Dziewicy, karmil", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2025-10-16": [ + { + "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", + "id": "Introitus" + }, + { + "body": "Boże, który św. Jadwigę pobudziłeś do przejścia całym sercem od przepychu światowego do pokornego naśladowania Krzyża Tw", + "id": "Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2025-10-17": [ + { + "body": "*Pnp 2:3*\nUsiadłam w cieniu Tego, za którym tęskniłam i owoc Jego słodki memu gardłu.\n*Ps 83:2-3*\nJak miłe są przybytki ", + "id": "Introitus" + }, + { + "body": "Panie Jezu Chryste, któryś św. Dziewicy Małgorzacie Marii cudownie odsłonił niedościgłe bogactwo Serca swego, daj nam, a", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:8-9; 14-19*\n*Św. Małgorzata Maria została wybrana, aby przypo", + "id": "Lectio" + }, + { + "body": "*Pnp 8:7*\nWody mnogie nie mogły ugasić miłości i rzeki nie zatopią jej.\n*Ps 72:26*\nNiszczeje me ciało i serce moje: Bóg ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:25-30*\nOnego czasu: Odpowiadając Jezus rzekł: «Wysławiam Cię, Oj", + "id": "Evangelium" + }, + { + "body": "*Zch 9:17*\n*Częsta i dobra Komunia jest wynagrodzeniem za lekceważenie Eucharystii przez oziębłych.*\nCóż jest dobrem jeg", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary ludu Swojego i spraw, by nas zapalił ten Boski ogień, który wychodząc z Serca Syna Twojego, tak mo", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Pnp 6:2*\nJa dla umiłowanego mego i dla mnie umiłowany mój; on pasie trzody swe wśród lilii.", + "id": "Communio" + }, + { + "body": "Przyjąwszy Sakrament Ciała i Krwi Twojej prosimy Cię, Panie Jezu, spraw za przyczyną św. Dziewicy Małgorzaty Marii, abyś", + "id": "Postcommunio" + } + ], + "2025-10-18": [ + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech się przyczynia za nami św. Łukasz, Twój Ewangelista, który dla chwały Twojego imienia stale no", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 8:16-24*\n*Prawdopodobnie św. Paweł Apostoł wysłał z Tytuse", + "id": "Lectio" + }, + { + "body": "*Ps 18:5; 18:2*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.\n℣. Niebiosa głoszą chwałę Boga, dz", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", + "id": "Evangelium" + }, + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.", + "id": "Offertorium" + }, + { + "body": "Pomóż nam, Panie, łaską niebieską służyć Ci swobodnym umysłem, aby dary, które składamy, za wstawiennictwem św. Łukasza,", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28*\nWy, którzyście poszli za mną, zasiądźcie na stolicach, sądząc dwanaście pokoleń Izraela.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby przez modlitwy świętego Ewangelisty Twego Łukasza Sakrament, któryśmy przyjęli z Two", + "id": "Postcommunio" + } + ], + "2025-10-19": [ + { + "body": "Ja jestem zbawieniem ludu, mówi Pan: w jakimkolwiek ucisku wołać będą do mnie, wysłucham ich i będę ich Panem na wieki.\n", + "id": "Introitus" + }, + { + "body": "Wszechmogący i miłosierny Boże, usuń łaskawie wszystko, co nam się sprzeciwia, abyśmy wolni od niebezpieczeństw duszy i ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:23-28*\n*Szata jest znakiem godności. Oblec się w nowego człow", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna. Al", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:1-14*\nOnego czasu: Jezus mówił do przedniejszych kapłanów i fary", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nGdy chodzę wśród utrapienia, Ty mnie trzymasz przy życiu, o Panie; Swą rękę wyciągasz na przekór gniewowi myc", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, spraw, niech te dary zaniesione przed oblicze Twojego majestatu, wyjednają nam zbawienie.\nPrzez Pana", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nTy wydałeś Swoje przykazania, by pilnie ich przestrzegano. Oby me drogi były niezawodne ku przestrzeganiu T", + "id": "Communio" + }, + { + "body": "Panie, niech Twoje uzdrawiające działanie uwolni nas łaskawie od naszych złych skłonności i przywiąże do Twoich przykaza", + "id": "Postcommunio" + } + ], + "2025-10-20": [ + { + "body": "*Syr 18:12-13*\nMiłosierdzie człowieka względem bliźniego, ale miłosierdzie Boże względem wszelkiego ciała. Kto ma miłosi", + "id": "Introitus" + }, + { + "body": "Wszechmogący Boże, spraw, abyśmy doskonaląc się w umiejętności Świętych i okazując miłosierdzie bliźnim za przykładem św", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 2:12-17*\nNajmilsi: Mówcie i czyńcie tak, jak ludzie, którzy będą sądzeni ", + "id": "Lectio" + }, + { + "body": "*Ps 106:8-9*\nNiech dzięki czynią Panu za jego miłosierdzie, za Jego cuda dla synów człowieczych.\n℣. Bo duszę zgłodniałą ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Job 29:14-16*\n*Część darów złożonych przez wiernych na ofiarowanie przeznaczano dla ubogich. Obecnie ofiary pieniężne z", + "id": "Offertorium" + }, + { + "body": "Przez zasługi świętego Jana, Twego Wyznawcy, racz Panie, przyjąć łaskawie te ofiary i spraw, abyśmy miłując Ciebie ponad", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 6:38*\nDawajcie, a będzie wam dane, miarę dobrą, napełnioną, potrzęsioną i opływającą dadzą wam w zanadrze wasze.", + "id": "Communio" + }, + { + "body": "Nakarmieni słodyczą drogocennego Ciała i Krwi Twojej, Panie, kornie błagamy Twą łaskawość, abyśmy przez zasługi i za prz", + "id": "Postcommunio" + } + ], + "2025-10-21": [ + { + "body": "*Iz 61:1*\nDuch Pański nade mną, dlatego mnie namaścił i posłał mnie, abym głosił dobrą nowinę cichym. (O. W. Alleluja, a", + "id": "Introitus" + }, + { + "body": "Boże, Ty w błogosławionym Jakubie, Twoim Wyznawcy i Biskupie, przedziwnie wznowiłeś apostolskiego ducha głoszenia Ewange", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Hilariona, Opata*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego N., Opata, abyśmy ", + "id": "Commemoratio Oratio" + }, + { + "body": "*Flp 1:3-11*\nDzięki czynię Bogu mojemu, ilekroć was wspominam, zawsze, we wszystkich modlitwach moich modląc się za was ", + "id": "Lectio" + }, + { + "body": "*Syr 44:16-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n℣. Nie znalazł się jemu podobny, który by zacho", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "Wybrał go sobie Pan na kapłana, aby Mu składał ofiarę pochwalną. (O. W. Alleluja.)", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, aby Twoja ofiara wznieciła w nas taki płomień najczystszej miłości, jakim pałał błogosławiony Jakub ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Hilariona, Opata*\nProsimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na święty", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 10:27*\nCo wam mówię w ciemności, opowiadajcie na świetle: i co usłyszycie na ucho, głoście na dachach. (O. W. Allelu", + "id": "Communio" + }, + { + "body": "Najmiłościwszy Boże, niech łaska tego Sakramentu, który przyjęliśmy, trwa w sercach naszych: abyśmy nią umocnieni, za pr", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Hilariona, Opata*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N.,", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-22": [ + { + "body": "Ja jestem zbawieniem ludu, mówi Pan: w jakimkolwiek ucisku wołać będą do mnie, wysłucham ich i będę ich Panem na wieki.\n", + "id": "Introitus" + }, + { + "body": "Wszechmogący i miłosierny Boże, usuń łaskawie wszystko, co nam się sprzeciwia, abyśmy wolni od niebezpieczeństw duszy i ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:23-28*\n*Szata jest znakiem godności. Oblec się w nowego człow", + "id": "Lectio" + }, + { + "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna. \n*", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:1-14*\nOnego czasu: Jezus mówił do przedniejszych kapłanów i fary", + "id": "Evangelium" + }, + { + "body": "*Ps 137:7*\nGdy chodzę wśród utrapienia, Ty mnie trzymasz przy życiu, o Panie; Swą rękę wyciągasz na przekór gniewowi myc", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, spraw, niech te dary zaniesione przed oblicze Twojego majestatu, wyjednają nam zbawienie.\nPrzez Pana", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:4-5*\nTy wydałeś Swoje przykazania, by pilnie ich przestrzegano. Oby me drogi były niezawodne ku przestrzeganiu T", + "id": "Communio" + }, + { + "body": "Panie, niech Twoje uzdrawiające działanie uwolni nas łaskawie od naszych złych skłonności i przywiąże do Twoich przykaza", + "id": "Postcommunio" + } + ], + "2025-10-23": [ + { + "body": "*Ps 131,9-10*\nNiech kapłani Twoi odzieją się w sprawiedliwość, a święci Twoi niech się radują; przez wzgląd na Dawida, s", + "id": "Introitus" + }, + { + "body": "Boże, który ozdobiłeś apostolskimi cnotami świętego Antoniego Marię, Swojego Wyznawcę i Biskupa, i przez niego utworzyłe", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 7:23-27*\nBracia: Kapłanów było wielu, dlatego że śmierć i", + "id": "Lectio" + }, + { + "body": "*Ps 131:16-17*\nKapłanów Syjonu odzieję zbawienną pomocą, a jego święci radośnie będą się weselić.\n℣. Tam dla Dawida wzbu", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:42-47*\nOnego czasu: Rzekł Jezus uczniom swoim: «Czuwajcie, bo ni", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech doroczna uroczystość świętego Antoniego Marii Claret, Twego Wyznawcy i Biskupa, uczyni nas god", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Boże, Ty nagradzasz dusze wierne; spraw, abyśmy dostąpili przebaczenia przez prośby świętego Antoniego Marii Claret, Twe", + "id": "Postcommunio" + } + ], + "2025-10-24": [ + { + "body": "*Ps 102:20*\nBłogosławcie Pana, wszyscy jego Aniołowie, potężni mocą, pełniący Jego rozkazy, abyście posłuszni byli Jego ", + "id": "Introitus" + }, + { + "body": "Boże, który dałeś słudze Swemu Tobiaszowi za towarzysza W podróży św. Archanioła Rafała, daj nam sługom Swoim, aby nas z", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Tobiasza.\n*Tob 12:7-15*\nW one dni: Rzekł Rafał do Tobiasza: «Dobrze jest ukrywać tajemnicę królewską, ", + "id": "Lectio" + }, + { + "body": "*Tob 8:3*\nAnioł Pański Rafał pojmał i związał złego ducha.\n*Ps 146:5.*\n℣. Wielki jest Pan i wielka moc Jego. Alleluja, a", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 5:1-4*\nOnego czasu. Było święto żydowskie i przyszedł Jezus do Jerozolim", + "id": "Evangelium" + }, + { + "body": "*Ap 8:3-4*\nAnioł stanął przy ołtarzu świątyni, mając w ręku złotą kadzielnicę; i dano mu wiele kadzideł, i wzniósł się w", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, ofiarę uwielbienia i pokornie prosimy, abyś za wstawiennictwem anielskim łaskawie ją przyjął i obróc", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Dn 3:58*\nBłogosławcie Pana, wszyscy Aniołowie Pańscy, wysławiajcie Go hymnem i wywyższajcie na wieki.", + "id": "Communio" + }, + { + "body": "Panie Boże, racz zesłać nam na pomoc świętego Rafała Archanioła; wierzymy, że przebywa on zawsze W obecności Twojego maj", + "id": "Postcommunio" + } + ], + "2025-10-25": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Śś. Chryzanta i Darii, Męczenników*\nProsimy Cię, Panie, niech nas wspiera modlitwa świętych Twoich Męczenni", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Śś. Chryzanta i Darii, Męczenników*\nNiech Ci miłą będzie, Panie, ofiara Twojego ludu, którą uroczyście skła", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Śś. Chryzanta i Darii, Męczenników*\nNapełniwszy nas, Panie, duchowymi pragnieniami i radością, daj, prosimy", + "id": "Commemoratio Postcommunio" + } + ], + "2025-10-26": [ + { + "body": "*Ap 5:12; 1:6*\n*Wizja z Apokalipsy św. Jana ukazuje nam Chrystusa odbierającego hołdy Aniołów i odkupionej ludzkości.*\nG", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, Ty postanowiłeś wszystko odnowić w umiłowanym Synu Twoim jako Królu wszechrzeczy, spraw łask", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:12-20*\nBracia: Dzięki czyńcie Bogu Ojcu, że nas uczynił godn", + "id": "Lectio" + }, + { + "body": "*Ps 71:8; 78:11*\nPanować będzie od morza do morza i od rzeki aż po krańce ziemi. I uwielbią Go wszyscy królowie, wszystk", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 18:33-37*\nOnego czasu: Rzekł Piłat do Jezusa: «Czy Ty jesteś Król żydows", + "id": "Evangelium" + }, + { + "body": "*Ps 2:8*\nŻądaj ode mnie, a dam ci narody w dziedzictwo i krańce ziemi w Twoje posiadanie.", + "id": "Offertorium" + }, + { + "body": "Ofiarujemy Ci, Panie, żertwę jednającą ludzi z Tobą, spraw, aby Ten, którego w tej ofierze składamy, użyczył wszystkim n", + "id": "Secreta" + }, + { + "body": "*Prefacja o Chrystusie Królu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 28:10; 28:11*\nPan zasiądzie jako król na wieki. Pan obdarzy lud swój pokojem.", + "id": "Communio" + }, + { + "body": "Po przyjęciu pokarmu, który jest zadatkiem nieśmiertelności, prosimy Cię, Panie, abyśmy dostąpiwszy zaszczytu pełnienia ", + "id": "Postcommunio" + } + ], + "2025-10-27": [ + { + "body": "*Dn 3:31; 31:29; 31:35*\nWszystko, coś na nas dopuścił, Panie, według sprawiedliwego wyroku nas spotkało, bośmy zgrzeszyl", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, użycz wiernym Twoim przebaczenia i pokoju, aby oczyszczeni ze wszystkich win swoich mogli Ci służyć ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 5:15-21*\n*Duch święty napełnia serca wiernych wykonawców woli B", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOczy wszystkich z ufnością patrzą na Ciebie, Panie: Ty dajesz im pokarm we właściwej porze.\n℣. Otwierasz ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:46-53*\n*Bóg udziela nam swojej łaski w miarę naszej ufności.*\nOnego cz", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\n*Syjon jest symbolem ojczyzny niebieskiej, Babilon to zmienia wygnania, na której przebywamy.*\nNad rzekami Ba", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie niechaj te święte Tajemnice udzielą nam z niebios lekarstwa, które oczyści z nieprawości serca nasze.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nPomnij na obietnicę daną słudze Twemu, Panie, w którą kazałeś mi wierzyć. Ona mnie pociesza w mojej nędzy", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy przez pilne posłuszeństwo Twoim przykazaniom stali się godnymi świętych darów Twoich.\n", + "id": "Postcommunio" + } + ], + "2025-10-28": [ + { + "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", + "id": "Introitus" + }, + { + "body": "Boże, któryś raczył doprowadzić nas do poznania Twojego imienia przez świętych Apostołów Twoich Szymona i Judę, spraw, a", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:7-13*\n*Każdy chrześcijanin w sposób właściwy swemu powołaniu ", + "id": "Lectio" + }, + { + "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi, przez wszystkie pokolenia głosić będą Twe imię, o Panie.\n℣. Syno", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:17-25*\nW owym czasie: Rzekł Jezus uczniom swoim: To wam przykazuję, a", + "id": "Evangelium" + }, + { + "body": "*Ps 18:5*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.", + "id": "Offertorium" + }, + { + "body": "Czcząc wieczną chwałę świętych Apostołów Twoich Szymona i Judy, prosimy Cię, Panie, abyśmy oczyszczeni przez święte mist", + "id": "Secreta" + }, + { + "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", + "id": "Prefatio" + }, + { + "body": "*Mt 19:28*\nWy, którzyście poszli za mną, zasiądziecie na stolicach, sądząc dwanaście pokoleń Izraela.", + "id": "Communio" + }, + { + "body": "Po przyjęciu Sakramentu, błagamy Cię, Panie, za przyczyną świętych Apostołów Twoich Szymona i Judy, aby ofiara złożona k", + "id": "Postcommunio" + } + ], + "2025-10-29": [ + { + "body": "*Dn 3:31; 31:29; 31:35*\nWszystko, coś na nas dopuścił, Panie, według sprawiedliwego wyroku nas spotkało, bośmy zgrzeszyl", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, użycz wiernym Twoim przebaczenia i pokoju, aby oczyszczeni ze wszystkich win swoich mogli Ci służyć ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 5:15-21*\n*Duch święty napełnia serca wiernych wykonawców woli B", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOczy wszystkich z ufnością patrzą na Ciebie, Panie: Ty dajesz im pokarm we właściwej porze.\n℣. Otwierasz ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:46-53*\n*Bóg udziela nam swojej łaski w miarę naszej ufności.*\nOnego cz", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\n*Syjon jest symbolem ojczyzny niebieskiej, Babilon to zmienia wygnania, na której przebywamy.*\nNad rzekami Ba", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie niechaj te święte Tajemnice udzielą nam z niebios lekarstwa, które oczyści z nieprawości serca nasze.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nPomnij na obietnicę daną słudze Twemu, Panie, w którą kazałeś mi wierzyć. Ona mnie pociesza w mojej nędzy", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy przez pilne posłuszeństwo Twoim przykazaniom stali się godnymi świętych darów Twoich.\n", + "id": "Postcommunio" + } + ], + "2025-10-30": [ + { + "body": "*Dn 3:31; 31:29; 31:35*\nWszystko, coś na nas dopuścił, Panie, według sprawiedliwego wyroku nas spotkało, bośmy zgrzeszyl", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, użycz wiernym Twoim przebaczenia i pokoju, aby oczyszczeni ze wszystkich win swoich mogli Ci służyć ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 5:15-21*\n*Duch święty napełnia serca wiernych wykonawców woli B", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOczy wszystkich z ufnością patrzą na Ciebie, Panie: Ty dajesz im pokarm we właściwej porze.\n℣. Otwierasz ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:46-53*\n*Bóg udziela nam swojej łaski w miarę naszej ufności.*\nOnego cz", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\n*Syjon jest symbolem ojczyzny niebieskiej, Babilon to zmienia wygnania, na której przebywamy.*\nNad rzekami Ba", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie niechaj te święte Tajemnice udzielą nam z niebios lekarstwa, które oczyści z nieprawości serca nasze.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nPomnij na obietnicę daną słudze Twemu, Panie, w którą kazałeś mi wierzyć. Ona mnie pociesza w mojej nędzy", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy przez pilne posłuszeństwo Twoim przykazaniom stali się godnymi świętych darów Twoich.\n", + "id": "Postcommunio" + } + ], + "2025-10-31": [ + { + "body": "*Dn 3:31; 31:29; 31:35*\nWszystko, coś na nas dopuścił, Panie, według sprawiedliwego wyroku nas spotkało, bośmy zgrzeszyl", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, użycz wiernym Twoim przebaczenia i pokoju, aby oczyszczeni ze wszystkich win swoich mogli Ci służyć ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 5:15-21*\n*Duch święty napełnia serca wiernych wykonawców woli B", + "id": "Lectio" + }, + { + "body": "*Ps 144:15-16*\nOczy wszystkich z ufnością patrzą na Ciebie, Panie: Ty dajesz im pokarm we właściwej porze.\n℣. Otwierasz ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:46-53*\n*Bóg udziela nam swojej łaski w miarę naszej ufności.*\nOnego cz", + "id": "Evangelium" + }, + { + "body": "*Ps 136:1*\n*Syjon jest symbolem ojczyzny niebieskiej, Babilon to zmienia wygnania, na której przebywamy.*\nNad rzekami Ba", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie niechaj te święte Tajemnice udzielą nam z niebios lekarstwa, które oczyści z nieprawości serca nasze.", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:49-50*\nPomnij na obietnicę daną słudze Twemu, Panie, w którą kazałeś mi wierzyć. Ona mnie pociesza w mojej nędzy", + "id": "Communio" + }, + { + "body": "Spraw, prosimy Cię, Panie, abyśmy przez pilne posłuszeństwo Twoim przykazaniom stali się godnymi świętych darów Twoich.\n", + "id": "Postcommunio" + } + ], + "2025-11-01": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci Wszystkich Świętych; z ich uroczystości radują się Aniołowie i", + "id": "Introitus" + }, + { + "body": "Wszechmogący, wieczny Boże, który dozwalasz nam wspólnym obchodem czcić zasługi Wszystkich Świętych: prosimy Cię, abyś n", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 7:2-12*\nW one dni: Oto ja, Jan, ujrzałem innego Anioła, wstępuj", + "id": "Lectio" + }, + { + "body": "*Ps 33:10; 33:11*\nBójcie się Pana, święci Jego, niczego nie braknie tym, co się Go boją.\n℣. Tym zaś, co Pana szukają, do", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:1-12*\nOnego czasu: Jezus, widząc rzesze, wstąpił na górę i gdy us", + "id": "Evangelium" + }, + { + "body": "*Mdr 3:1; 3:2; 3:3*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom głupich, że pomarli, a", + "id": "Offertorium" + }, + { + "body": "Ofiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij je łaskawie ku chwale Twoich Świętych i spraw w Swoim", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 5:8-10*\nBłogosławieni czystego serca, albowiem oni Boga oglądać będą. Błogosławieni pokój czyniący, albowiem synami ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, daj, aby wierny lud zawsze z radością czcił Wszystkich Świętych i za ich nieustannym wstawiennictwem", + "id": "Postcommunio" + } + ], + "2025-11-02": [ + { + "body": "*Est 13:9; 13:10-11*\nNa mocy Twojej, Panie, wszystko się opiera i nikt nie może sprzeciwić się Twej woli. Ty bowiem stwo", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, strzeż nieustannie Twojej rodziny z ojcowską dobrocią, aby pod Twoją opieką była wolna od wszelkich ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 6:10-17*\n*Treścią dziejów Kościoła jest walka z szatanem o zbaw", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie.\n℣. Zanim góry stanęły, nim ziemia i świat zostały st", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:23-35*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «P", + "id": "Evangelium" + }, + { + "body": "*Job 1:1*\n*Job wśród ciężkich doświadczeń zachował wiarę w sprawiedliwość Bożą, pokonując w ten sposób zasadzkę szatana.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie ofiary, przez które i sam dajesz się przebłagać, i dzięki ogromnej Twej dobroci przywracasz nam", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nDusza moja słabnie z tęsknoty za Twą pomocą. W słowie Twoich cała nadzieja moja. Kiedy osądz", + "id": "Communio" + }, + { + "body": "Otrzymawszy pokarm nieśmiertelności, prosimy Cię, Panie, abyśmy czystą duszą poszli za tym, co usta nasze przyjęły.\nPrze", + "id": "Postcommunio" + } + ], + "2025-11-03": [ + { + "body": "*4 Ezd 2:34; 2:35*\nWieczny odpoczynek racz im dać, Panie, a światłość wiekuista niechaj im świeci.\n*Ps 64:2-3*\nCiebie, B", + "id": "Introitus" + }, + { + "body": "Boże, Stwórco i Odkupicielu wszystkich wiernych, udziel duszom zmarłych sług i służebnic Swoich odpuszczenia wszystkich ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 15:51-57*\nBracia: Oto wam powiadam tajemnicę: Nie wszyscy ", + "id": "Lectio" + }, + { + "body": "*4 Ezdr 2:34-35*\nWieczny odpoczynek racz im dać, Panie, a światłość wiekuista niechaj im świeci.\n*Ps 111:7*\n℣. W wieczne", + "id": "Graduale" + }, + { + "body": "W gniewu dzień, w tę pomsty chwilę,\nŚwiat w popielnym legnie pyle:\nZważ Dawida i Sybillę.\n\nJakiż będzie płacz i łkanie,\n", + "id": "Sequentia" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 5:25-29*\nOnego czasu: Rzekł Jezus rzeszom żydowskim: Zaprawdę, zaprawdę ", + "id": "Evangelium" + }, + { + "body": "Panie Jezu Chryste, Królu chwały, zachowaj dusze wszystkich wiernych zmarłych od kar piekielnych i głębokiej czeluści. W", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj łaskawie na ofiary, które Ci składamy za dusze sług i służebnic Twoich, i obdarz nagrodą tych, którym dał", + "id": "Secreta" + }, + { + "body": "*Prefacja o Zmarłych*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dzi", + "id": "Prefatio" + }, + { + "body": "*4 Ezdr 2:35; 2:34*\nŚwiatłość wiekuista niechaj im świeci, o Panie:\n* Wśród Świętych Twoich na wieki, bo jesteś pełen do", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech pokorna modlitwa pomocną będzie duszom sług i służebnic Twoich; racz je oczyścić z wszelkich g", + "id": "Postcommunio" + } + ], + "2025-11-04": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Osłaniaj, Panie, swój Kościół nieustanną opieką świętego Karola, Twojego Wyznawcy i Biskupa, a jak jemu gorliwość paster", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Witalisa i Agrykoli*\nSpraw, prosimy Cię, wszechmogący Boże, abyśmy obchodząc uroczystość świętych Twoic", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Witalisa i Agrykoli*\nDaj się przebłagać, Panie, złożonymi darami, a za wstawiennictwem świętych Twoich ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Witalisa i Agrykoli*\nPanie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętych Męczenników", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-05": [ + { + "body": "*Est 13:9; 13:10-11*\nNa mocy Twojej, Panie, wszystko się opiera i nikt nie może sprzeciwić się Twej woli. Ty bowiem stwo", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, strzeż nieustannie Twojej rodziny z ojcowską dobrocią, aby pod Twoją opieką była wolna od wszelkich ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 6:10-17*\n*Treścią dziejów Kościoła jest walka z szatanem o zbaw", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie.\n℣. Zanim góry stanęły, nim ziemia i świat zostały st", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:23-35*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «P", + "id": "Evangelium" + }, + { + "body": "*Job 1:1*\n*Job wśród ciężkich doświadczeń zachował wiarę w sprawiedliwość Bożą, pokonując w ten sposób zasadzkę szatana.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie ofiary, przez które i sam dajesz się przebłagać, i dzięki ogromnej Twej dobroci przywracasz nam", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nDusza moja słabnie z tęsknoty za Twą pomocą. W słowie Twoich cała nadzieja moja. Kiedy osądz", + "id": "Communio" + }, + { + "body": "Otrzymawszy pokarm nieśmiertelności, prosimy Cię, Panie, abyśmy czystą duszą poszli za tym, co usta nasze przyjęły.\nPrze", + "id": "Postcommunio" + } + ], + "2025-11-06": [ + { + "body": "*Est 13:9; 13:10-11*\nNa mocy Twojej, Panie, wszystko się opiera i nikt nie może sprzeciwić się Twej woli. Ty bowiem stwo", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, strzeż nieustannie Twojej rodziny z ojcowską dobrocią, aby pod Twoją opieką była wolna od wszelkich ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 6:10-17*\n*Treścią dziejów Kościoła jest walka z szatanem o zbaw", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie.\n℣. Zanim góry stanęły, nim ziemia i świat zostały st", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:23-35*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «P", + "id": "Evangelium" + }, + { + "body": "*Job 1:1*\n*Job wśród ciężkich doświadczeń zachował wiarę w sprawiedliwość Bożą, pokonując w ten sposób zasadzkę szatana.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie ofiary, przez które i sam dajesz się przebłagać, i dzięki ogromnej Twej dobroci przywracasz nam", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nDusza moja słabnie z tęsknoty za Twą pomocą. W słowie Twoich cała nadzieja moja. Kiedy osądz", + "id": "Communio" + }, + { + "body": "Otrzymawszy pokarm nieśmiertelności, prosimy Cię, Panie, abyśmy czystą duszą poszli za tym, co usta nasze przyjęły.\nPrze", + "id": "Postcommunio" + } + ], + "2025-11-07": [ + { + "body": "*Est 13:9; 13:10-11*\nNa mocy Twojej, Panie, wszystko się opiera i nikt nie może sprzeciwić się Twej woli. Ty bowiem stwo", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, strzeż nieustannie Twojej rodziny z ojcowską dobrocią, aby pod Twoją opieką była wolna od wszelkich ", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 6:10-17*\n*Treścią dziejów Kościoła jest walka z szatanem o zbaw", + "id": "Lectio" + }, + { + "body": "*Ps 89:1-2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie.\n℣. Zanim góry stanęły, nim ziemia i świat zostały st", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:23-35*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «P", + "id": "Evangelium" + }, + { + "body": "*Job 1:1*\n*Job wśród ciężkich doświadczeń zachował wiarę w sprawiedliwość Bożą, pokonując w ten sposób zasadzkę szatana.", + "id": "Offertorium" + }, + { + "body": "Panie, przyjmij łaskawie ofiary, przez które i sam dajesz się przebłagać, i dzięki ogromnej Twej dobroci przywracasz nam", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:81; 118:84; 118:86*\nDusza moja słabnie z tęsknoty za Twą pomocą. W słowie Twoich cała nadzieja moja. Kiedy osądz", + "id": "Communio" + }, + { + "body": "Otrzymawszy pokarm nieśmiertelności, prosimy Cię, Panie, abyśmy czystą duszą poszli za tym, co usta nasze przyjęły.\nPrze", + "id": "Postcommunio" + } + ], + "2025-11-08": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Świętych Czterech Ukoronowanych Męczenników*\nSpraw, wszechmogący Boże, abyśmy podziwiając męstwo sławnych M", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Świętych Czterech Ukoronowanych Męczenników*\nPanie, niech hojne błogosławieństwo Twoje zstąpi na nasze dary", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Świętych Czterech Ukoronowanych Męczenników*\nPokrzepieni niebieskim Sakramentem i płynącą zeń radością pros", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-09": [ + { + "body": "*Ps 129:3-4*\nJeśli zachowasz pamięć o występkach, Panie, Panie, któż się ostoi? Ale u Ciebie, Boże Izraela, jest przebac", + "id": "Introitus" + }, + { + "body": "Boże, ucieczko nasza i mocy, wysłuchaj pokornych modłów Twojego Kościoła, skoro pobożność, która je zrodziła, Twoim jest", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Rocznica Konsekracji Bazyliki Najświętszego Zbawiciela na Lateranie*\nBoże, który co roku pozwalasz nam obch", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 1:6-11*\nBracia: Ufamy, w Panu Jezusie, że Ten, który rozpoczą", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\n*Życie w społeczności Kościoła przygotowuje nas do życia wiecznego, w którym miłość usunie wszelkie różnice", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:15-21*\nOnego czasu: Faryzeusze odszedłszy naradzali się, jakby G", + "id": "Evangelium" + }, + { + "body": "*Est 14:12; 14:13*\nWspomnij na mnie, o Panie, któremu wszelka zwierzchność podlega. Włóż w moje usta mowę właściwą, aby ", + "id": "Offertorium" + }, + { + "body": "Daj, miłosierny Boże, aby ta zbawienna ofiara zawsze nas wyzwalała z naszych grzechów i broniła od wszelkich przeciwnośc", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Rocznica Konsekracji Bazyliki Najświętszego Zbawiciela na Lateranie*\nProsimy Cię Panie, wysłuchaj modlitwy ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 16:6*\nWzywam Cię, Boże, bo Ty mnie wysłuchasz. Nakłoń ku mnie Twe ucho, usłysz moje słowa.", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, dary świętego misterium, pokornie błagając, aby to, co kazałeś nam czynić na Twoją pamiątkę, przynio", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Rocznica Konsekracji Bazyliki Najświętszego Zbawiciela na Lateranie*\nBoże, Ty z żywych i wybranych kamieni ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-10": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Boże, Tyś sprawił, że święty Andrzej, Twój Wyznawca, przez trudny ślub codziennego postępu w cnotach przedziwnie wznosił", + "id": "Oratio" + }, + { + "body": "*Wspomnienie śś. Tryfona, Respicjusza i Nimfy*\nDaj nam, Panie, zawsze tak obchodzić uroczystość świętych Twoich Męczenni", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", + "id": "Secreta" + }, + { + "body": "*Wspomnienie śś. Tryfona, Respicjusza i Nimfy*\nOfiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij je łas", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie śś. Tryfona, Respicjusza i Nimfy*\nProsimy Cię, Panie, za wstawiennictwem świętych Twoich Męczenników Tryfon", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-11": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach, spraw miłościwie, aby wstawiennictwo św. Marcina, Twego Wyznawc", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Mennasa*\nProsimy Cię, wszechmogący Boże, abyśmy obchodząc urodziny dla nieba świętego Mennasa, Twego Mę", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\nNie znalazł się jemu podobny, który by ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:33-36*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nikt nie zapala ś", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie Boże, poświęć te dary składane w uroczystość świętego Twego Biskupa Marcina: niech one wszędzie kieru", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Mennasa*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i ł", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, aby te tajemnice, sprawowane ku czci Świętych, stały się dla nas źródłem zbawienia za ich", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Mennasa*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wiecznoś", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-12": [ + { + "body": "*Ps 33:20-21*\nWiele ucisków spotyka sprawiedliwych, lecz Pan ich wyzwala ze wszystkich; strzeże wszystkich ich kości: ni", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, niech źródłem radości będzie dzisiaj dla nas chwalebne zwycięstwo Twoich Męczenników Benedykta, Jana", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Syr 44:10-15*\nCi są mężami pełnymi miłosierdzia, których dobre czyny nie poszły w niepamięć", + "id": "Lectio" + }, + { + "body": "*Ps 132:1-2*\nOto jak dobrze i jak miło braciom zamieszkać społem.\n℣. Jako wyborny olejek na głowie, co spływa na brodę, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:1-8*\nOnego czasu: Rzekł Jezus uczniom swoim: «Strzeżcie się kwasu", + "id": "Evangelium" + }, + { + "body": "*Ps 5:12-13*\nNiech się radują ci wszyscy, co Twe imię miłują, bo Ty, Panie, sprawiedliwemu dasz błogosławieństwo; Panie,", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, przyjmij łaskawie przez zasługi świętych Twoich Męczenników ofiarę, którą Ci składamy i spraw, aby s", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył, jak złoto w piecu ich wypróbował, jak ofiarę", + "id": "Communio" + }, + { + "body": "Przyjęliśmy, Panie, niebieski Sakrament, obchodząc uroczystość świętych Twoich Męczenników Benedykta, Jana, Mateusza, Iz", + "id": "Postcommunio" + } + ], + "2025-11-13": [ + { + "body": "*Mdr 4:13-14*\nStawszy się w krótkim czasie doskonałym, wypełnił czasów wiele. Podobała się bowiem Bogu dusza jego; dlate", + "id": "Introitus" + }, + { + "body": "Boże, któryś wśród wielu cudów Swej mądrości udzielił łaski dojrzałej świętości nawet w wieku młodzieńczym, spraw, prosi", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Mądrości.\n*Mdr 4:7-18*\nSprawiedliwy, jeśli umrze przedwcześnie, dozna ochłody. Czcigodna bowiem staroś", + "id": "Lectio" + }, + { + "body": "*Ps 20:3-4*\nSpełniłeś pragnienie jego serca, prośbie ust jego nie odmówiłeś.\n℣. Uprzedziłeś go hojnym błogosławieństwem.", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:13-21*\nOnego czasu: Przywiedziono do Jezusa dzieci: aby włożył n", + "id": "Evangelium" + }, + { + "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech nas uczyni godnymi Chleba anielskiego wstawiennictwo św. Stanisława, który zasłużył, by go ręc", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Syr 15:3*\nNakarmił go Pan Chlebem żywota i rozumienia, i napoił go wodą zbawiennej mądrości.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, za wstawiennictwem św. Stanisława, Twojego Wyznawcy, aby Pokarm niebieski, któryśmy przyjęli, przyni", + "id": "Postcommunio" + } + ], + "2025-11-14": [ + { + "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci świętego Jozafata; z jego męczeństwa radują się Aniołowie i wy", + "id": "Introitus" + }, + { + "body": "Wzbudź, Panie, w Kościele Swoim Ducha, pod którego natchnieniem św. Jozafat, Twój Męczennik i Biskup, położył życie swoj", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 5:1-6*\nBracia: Każdy arcykapłan, spośród ludzi wzięty, dl", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", + "id": "Evangelium" + }, + { + "body": "*J 15:13*\nNikt nie ma większej miłości nad tę, aby kto życie swe oddał za przyjaciół swoich.", + "id": "Offertorium" + }, + { + "body": "Najłaskawszy Boże, zlej Swoje błogosławieństwo na te dary i utwierdź nas w wierze, którą święty Jozafat, Twój Męczennik ", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*J 10:14*\nJam jest pasterz dobry; znam swoje owce i one mnie znają.", + "id": "Communio" + }, + { + "body": "Panie, niech nam ducha męstwa udzieli ta uczta niebieska, która stale krzepiła życie świętego Jozafata, Twojego Męczenni", + "id": "Postcommunio" + } + ], + "2025-11-15": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, który świętego Alberta, Twego Biskupa i Doktora, uczyniłeś wielkim w podporządkowaniu ludzkiej mądrości wierze prz", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj litościwie na tę ofiarę i spraw, abyśmy za przykładem i przyczyną św. Alberta z nabożnym sercem korzystal", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Broń nas, Panie, od napaści wrogów przez ten święty Sakrament, któryśmy przyjęli, i za wstawiennictwem św. Alberta, Tweg", + "id": "Postcommunio" + } + ], + "2025-11-16": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Odpuść, prosimy Cię, Panie, przewiny ludu Twojego; i w miłosierdziu Twoim uwolnij nas od więzów grzechowych, któreśmy za", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:17-21; 4:1-3*\nBracia: Naśladowcami moimi bądźcie i zapatruj", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:18-26*\nOnego czasu: Gdy Jezus mówił do rzesz, oto książę pewien p", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Składamy Ci, Panie, tę ofiarę chwały, dla pomnożenia naszej gorliwości w Twojej służbie; sam racz łaskawie dokonać tego,", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, nie dopuść, aby Ci, którym pozwalasz się cieszyć udziałem w Boskich tajemnicach, podlega", + "id": "Postcommunio" + } + ], + "2025-11-17": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Boże, któryś w błogosławionej Salomei połączył pogardę dla ziemskiego królestwa z blaskiem dziewictwa w małżeństwie, wsp", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Grzegorza Cudotwórcy, Biskupa i Wyznawcy*\nSpraw, prosimy Cię, wszechmogący Boże, aby chwalebna uroczyst", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Grzegorza Cudotwórcy, Biskupa i Wyznawcy*\nPanie, niech nam wszędzie sprawiają radość Twoi Święci, abyśm", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Grzegorza Cudotwórcy, Biskupa i Wyznawcy*\nWszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-18": [ + { + "body": "*Rdz 28:17*\nBojaźnią przejmuje to miejsce: tu jest dom Boży i brama niebios, i zwać się będzie mieszkaniem Boga.\n*Ps 83:", + "id": "Introitus" + }, + { + "body": "Boże, który co roku pozwalasz nam obchodzić dzień konsekracji Twojej świątyni i uczestniczyć w świętych obrzędach, wysłu", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 21:2-5*\n*Kościół materialny jest obrazem «Jeruzalem niebieskieg", + "id": "Lectio" + }, + { + "body": "Bóg uczynił z tego miejsca bez skazy bezcenny znak swojej obecności.\n℣. Boże, którego otacza chór aniołów, wysłuchaj pro", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:1-10*\nOnego czasu: Jezus przechodził przez Jerycho. I oto mąż imi", + "id": "Evangelium" + }, + { + "body": "*1 Krn 29:17-18*\n*Modlitwa Dawida, który przygotował budowę pierwszej świątyni w Jerozolimie.*\nPanie Boże, w szczerości ", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię Panie, wysłuchaj modlitwy nasze (abyśmy wszyscy zebrani w tej świątyni, której rocznicę konsekracji obchodzi", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 21:13*\nDom mój będzie nazwany domem modlitwy, mówi Pan. Każdy, kto w nim prosi otrzymuje; a kto szuka, znajduje; a k", + "id": "Communio" + }, + { + "body": "Boże, Ty z żywych i wybranych kamieni przygotowujesz Swemu majestatowi wiekuisty przybytek; wspomóż lud Twój, który korn", + "id": "Postcommunio" + } + ], + "2025-11-19": [ + { + "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", + "id": "Introitus" + }, + { + "body": "Miłosierny Boże, oświeć serca Twych wiernych i za chwalebną przyczyną św. Elżbiety spraw, abyśmy pogardzali pomyślnością", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Poncjana*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyn", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Poncjana*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Poncjana*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-20": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego N., (Twojego Męc", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Feliksa Walezego, Wyznawcy*\nBoże, który świętego Feliksa, Twego Wyznawcę, przez natchnienie niebieskie ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Feliksa Walezego, Wyznawcy*\nProsimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze sk", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Feliksa Walezego, Wyznawcy*\nProsimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, ch", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-21": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Boże, dzisiaj z Twojej woli Najświętszą Maryję Pannę, mieszkanie Ducha Świętego, stawiono w świątyni; racz sprawić, byśm", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + } + ], + "2025-11-22": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłam o Twej prawdzie wobec królów, a nie wstydziłam się, i rozważałam Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Boże, który co roku sprawiasz nam radość z uroczystości świętej Cecylii, Twojej Dziewicy i Męczennicy, daj, prosimy, aby", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:13-17*\nPanie Boże mój, ku Tobie wzniosłam prośbę moją i błagałam, gdy śmierć mi gr", + "id": "Lectio" + }, + { + "body": "*Ps 44:11; 44:12*\nPosłuchaj, córko, spójrz i nakłoń twego ucha, bo Król pragnie twej piękności.\n*Ps 44:5*\n℣. W chwale i ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, niech ta ofiara przebłagalna i pochwalna za wstawiennictwem św. Cecylii, Twojej Dziewicy i Męczennic", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nNiech zawstydzą się pyszni, bo niewinnie mnie dręczą, ja będę rozmyślać o Twych przykazaniach, o pra", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami; wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", + "id": "Postcommunio" + } + ], + "2025-11-23": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Prosimy Cię Panie, pobudź wolę wiernych Twoich, aby gorliwie korzystając z owoców służby Bożej, otrzymywali większą pomo", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:9-14*\nBracia: Nie przestajemy modlić się za was i prosić, ab", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:15-35*\n*Chrystus Pan zapowiada dwa wydarzenia: zburzenie Jerozol", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj miłościwie na nasze pokorne prośby, a przyjąwszy ofiary i modlitwy Swojego ludu, zwróć wszystkie nasze se", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, spraw, aby uzdrawiająca moc Sakramentu, który przyjęliśmy, uleczyła nasze dusze ze wszystkich złych ", + "id": "Postcommunio" + } + ], + "2025-11-24": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, który św. Jana, Twego Wyznawcę i Doktora, uczyniłeś szczególnym miłośnikiem Krzyża i zupełnego wyrzeczenia się sie", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Chryzogona*\nPrzychyl się, Panie, do naszych kornych próśb, a że obciążeni grzechami uświadamiamy sobie ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Jana, Twego Wyznawcy i Doktora, która zaleci Tobie naszą ofi", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Chryzogona*\nPanie, daj się przebłagać złożonymi darami, a za wstawiennictwem św. Chryzogona, Twojego Mę", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty Jan, Twój Wyznawca i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Chryzogona*\nPanie, niech przyjęcie Twego Sakramentu oczyści nas z ukrytych grzechów i wybawi od zasadze", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-25": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłam o Twej prawdzie wobec królów, a nie wstydziłam się, i rozważałam Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Boże, Ty na szczycie góry Synaj dałeś prawo Mojżeszowi i w tym samym miejscu cudownie umieściłeś przez świętych mnichów ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość świętej Katarzyny, Dziewicy i Męczennicy Twojej: ufamy, że jej ws", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nNiech zawstydzą się pyszni, bo niewinnie mnie dręczą, ja będę rozmyślać o Twych przykazaniach, o pra", + "id": "Communio" + }, + { + "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej Katarzyny, Twojej Dziewicy i Męczennicy, niec", + "id": "Postcommunio" + } + ], + "2025-11-26": [ + { + "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", + "id": "Introitus" + }, + { + "body": "Najłaskawszy Boże, gdy święty Opat Sylwester rozmyślał przy otwartym grobie nad znikomością tego świata, raczyłeś go pow", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Piotra z Aleksandrii*\nWszechmogący Boże, wejrzyj na słabość naszą, a skoro nas obciąża brzemię własnej ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", + "id": "Lectio" + }, + { + "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", + "id": "Evangelium" + }, + { + "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", + "id": "Offertorium" + }, + { + "body": "Gdy z czcią składamy te dary boskiemu majestatowi Twojemu, błagamy Cię, Panie, abyśmy za przykładem św. Sylwestra, Opata", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Piotra z Aleksandrii*\nPanie, przyjmij łaskawie przez zasługi świętego Piotra Męczennika i Biskupa ofiar", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", + "id": "Communio" + }, + { + "body": "Panie, gdy nas posiliłeś Boską ucztą, daj nam tak iść śladami świętego Opata Sylwestra, abyśmy wespół ze Świętymi otrzym", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Piotra z Aleksandrii*\nPokrzepieni uczestnictwem w świętej uczcie prosimy Cię, Panie, Boże nasz, abyśmy ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-27": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Prosimy Cię Panie, pobudź wolę wiernych Twoich, aby gorliwie korzystając z owoców służby Bożej, otrzymywali większą pomo", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:9-14*\nBracia: Nie przestajemy modlić się za was i prosić, ab", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:15-35*\n*Chrystus Pan zapowiada dwa wydarzenia: zburzenie Jerozol", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj miłościwie na nasze pokorne prośby, a przyjąwszy ofiary i modlitwy Swojego ludu, zwróć wszystkie nasze se", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, spraw, aby uzdrawiająca moc Sakramentu, który przyjęliśmy, uleczyła nasze dusze ze wszystkich złych ", + "id": "Postcommunio" + } + ], + "2025-11-28": [ + { + "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", + "id": "Introitus" + }, + { + "body": "Prosimy Cię Panie, pobudź wolę wiernych Twoich, aby gorliwie korzystając z owoców służby Bożej, otrzymywali większą pomo", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:9-14*\nBracia: Nie przestajemy modlić się za was i prosić, ab", + "id": "Lectio" + }, + { + "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:15-35*\n*Chrystus Pan zapowiada dwa wydarzenia: zburzenie Jerozol", + "id": "Evangelium" + }, + { + "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", + "id": "Offertorium" + }, + { + "body": "Panie, wejrzyj miłościwie na nasze pokorne prośby, a przyjąwszy ofiary i modlitwy Swojego ludu, zwróć wszystkie nasze se", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, spraw, aby uzdrawiająca moc Sakramentu, który przyjęliśmy, uleczyła nasze dusze ze wszystkich złych ", + "id": "Postcommunio" + } + ], + "2025-11-29": [ + { + "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", + "id": "Introitus" + }, + { + "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Saturnina, Męczennika*\nBoże, pozwalając nam cieszyć się z narodzenia dla nieba św. Saturnina, Twego Męc", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", + "id": "Lectio" + }, + { + "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", + "id": "Offertorium" + }, + { + "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Saturnina, Męczennika*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego Saturnina, Twojego Męcze", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", + "id": "Communio" + }, + { + "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Saturnina, Męczennika*\nProsimy Cię, Panie, niech nas uświęci przyjęcie Twojego Sakramentu i za wstawien", + "id": "Commemoratio Postcommunio" + } + ], + "2025-11-30": [ + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", + "id": "Introitus" + }, + { + "body": "Wzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od niebezpieczeństw grożących nam ws", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:11-14*\nBracia: Wiecie, że pora nam już powstać ze snu. Teraz", + "id": "Lectio" + }, + { + "body": "*Ps 24:3; 24:4*\nWszyscy, co ufają Tobie, wstydu nie doznają.\n℣. Ukaż mi, Panie, drogi Twoje, i naucz mnie Twoich ścieżek", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:25-33*\nOnego czasu rzekł Jezus uczniom swoim: «Będą znaki na słoń", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", + "id": "Offertorium" + }, + { + "body": "Panie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej czystości dojść do swojego Stwórc", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13*\nPan użyczy błogosławieństwa, a ziemia nasza wyda swój plon.", + "id": "Communio" + }, + { + "body": "Obdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali godnym przygotowaniem nadchodzące ", + "id": "Postcommunio" + } + ], + "2025-12-01": [ + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", + "id": "Introitus" + }, + { + "body": "Wzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od niebezpieczeństw grożących nam ws", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:11-14*\nBracia: Wiecie, że pora nam już powstać ze snu. Teraz", + "id": "Lectio" + }, + { + "body": "*Ps 24:3; 24:4*\nWszyscy, co ufają Tobie, wstydu nie doznają.\n℣. Ukaż mi, Panie, drogi Twoje, i naucz mnie Twoich ścieżek", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:25-33*\nOnego czasu rzekł Jezus uczniom swoim: «Będą znaki na słoń", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", + "id": "Offertorium" + }, + { + "body": "Panie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej czystości dojść do swojego Stwórc", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13*\nPan użyczy błogosławieństwa, a ziemia nasza wyda swój plon.", + "id": "Communio" + }, + { + "body": "Obdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali godnym przygotowaniem nadchodzące ", + "id": "Postcommunio" + } + ], + "2025-12-02": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Boże, Tyś cudownie objawił Swoją wolą, by na rządcę i nauczyciela Twego Kościoła wybrano św. Piotra Chryzologa, spraw, p", + "id": "Oratio" + }, + { + "body": "*Wspomnienie św. Barbary*\nPanie, niech nas broni od wszelkich przeciwności wstawiennictwo św. Barbary, Dziewicy i Męczen", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", + "id": "Lectio" + }, + { + "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\nNie znalazł się jemu podobny, który by ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", + "id": "Offertorium" + }, + { + "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Piotra Chryzologa, Twego Biskupa i Doktora, która zaleci Tob", + "id": "Secreta" + }, + { + "body": "*Wspomnienie św. Barbary*\nPrzyjmij, Panie, dary, które Ci składamy w uroczystość świętej Barbary, Dziewicy i Męczennicy ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 25:20; 25:21*\nPanie, dałeś mi pięć talentów, otom drugie pięć zyskał. Dobrze, sługo prawy i wierny, żeś w małym był ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech święty Piotr Chryzolog, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie św. Barbary*\nPanie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej Barbary, Twojej Dzi", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-03": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłem o Twej prawdzie wobec królów, a nie wstydziłem się, i rozważałem Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Boże, któryś raczył przyłączyć do Twego Kościoła narody Indii dzięki nauczaniu i cudom świętego Franciszka, spraw łaskaw", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nWzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 10:10-18*\nBracia: Bo sercem przyjęta wiara prowadzi do usprawie", + "id": "Lectio" + }, + { + "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:15-18*\nOnego czasu: Rzekł Jezus uczniom swoim: «Idąc na cały świat,", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą Ci w pokorze składamy ku czci Twoich Świętych, była Tobie", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nPanie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego: zaprawdę, powiadam wam, że postawi go ", + "id": "Communio" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nObdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-04": [ + { + "body": "*Ps 118:46-47*\nŚwiadczyłam o Twej prawdzie wobec królów, a nie wstydziłam się, i rozważałam Twoją naukę, bo bardzo ją po", + "id": "Introitus" + }, + { + "body": "Panie, niech nas broni od wszelkich przeciwności wstawiennictwo św. Barbary, Dziewicy i Męczennicy Twojej. Obyśmy za jej", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nWzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość świętej N., Dziewicy i Męczennicy Twojej: ufamy, że jej wstawienn", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nPanie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:78; 118:80*\nNiech zawstydzą się pyszni, bo niewinnie mnie dręczą, ja będę rozmyślać o Twych przykazaniach, o pra", + "id": "Communio" + }, + { + "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej N., Twojej Dziewicy i Męczennicy, niech spraw", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nObdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-05": [ + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", + "id": "Introitus" + }, + { + "body": "Wzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od niebezpieczeństw grożących nam ws", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Saby, Opata*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Saby Opata, abyśmy za j", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:11-14*\nBracia: Wiecie, że pora nam już powstać ze snu. Teraz", + "id": "Lectio" + }, + { + "body": "*Ps 24:3; 24:4*\nWszyscy, co ufają Tobie, wstydu nie doznają.\n℣. Ukaż mi, Panie, drogi Twoje, i naucz mnie Twoich ścieżek", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:25-33*\nOnego czasu rzekł Jezus uczniom swoim: «Będą znaki na słoń", + "id": "Evangelium" + }, + { + "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", + "id": "Offertorium" + }, + { + "body": "Panie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej czystości dojść do swojego Stwórc", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Saby, Opata*\nProsimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na świętym ołt", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 84:13*\nPan użyczy błogosławieństwa, a ziemia nasza wyda swój plon.", + "id": "Communio" + }, + { + "body": "Obdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali godnym przygotowaniem nadchodzące ", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Saby, Opata*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Saby, Op", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-06": [ + { + "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", + "id": "Introitus" + }, + { + "body": "Boże, któryś św. Mikołaja, Biskupa, wsławił niezliczonymi cudami, spraw, byśmy przez jego zasługi i modlitwy uszli ognia", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nWzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 13:7-17*\nBracia: Pamiętajcie o przełożonych waszych, któr", + "id": "Lectio" + }, + { + "body": "*Ps 88:21-23*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", + "id": "Evangelium" + }, + { + "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie Boże, poświęć te dary składane w uroczystość świętego Biskupa Twego Mikołaja: niech one wszędzie kier", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nPanie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 88:36-38*\nRaz przysiągłem na świętość moją: potomstwo jego trwać będzie na wieki i jego tron będzie przede mną jak s", + "id": "Communio" + }, + { + "body": "Panie, niech dary ofiarne przyjęte z powodu uroczystości św. Biskupa Twego Mikołaja otaczają nas nieustanną opieką.\nPrze", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 1 Niedziela Adwentu*\nObdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali ", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-07": [ + { + "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", + "id": "Introitus" + }, + { + "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", + "id": "Offertorium" + }, + { + "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", + "id": "Communio" + }, + { + "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", + "id": "Postcommunio" + } + ], + "2025-12-08": [ + { + "body": "*Iz 61:10*\nWeselę się wielce w Panu i raduje się duch mój w moim Bogu: gdyż oblókł mnie w szaty zbawienia i odział płasz", + "id": "Introitus" + }, + { + "body": "Boże, któryś przez Niepokalane Poczęcie Najświętszej Dziewicy przygotował Synowi Swojemu godne mieszkanie, prosimy Cie: ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Przysłów.\n*Prz 8:22-35*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dziewic", + "id": "Lectio" + }, + { + "body": "*Jdt 13:23*\nBłogosławiona jesteś, Panno Maryjo, od Pana, Boga, wysokiego, ponad wszystkie niewiasty na ziemi.\n*Jdt 15:10", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-28*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28*\nZdrowaś Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami, alleluja.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę zbawienia, którą Tobie składamy w uroczystość Niepokalanego Poczęcia Najświętszej Maryi Panny: j", + "id": "Secreta" + }, + { + "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", + "id": "Prefatio" + }, + { + "body": "*Ps 86:3, Łk 1:49*\nMaryjo, głoszą o Tobie rzeczy pełne chwały, albowiem uczynił Ci wielkie rzeczy, który możny jest.", + "id": "Communio" + }, + { + "body": "Panie Boże nasz, niech Sakrament, który przyjęliśmy, wyleczy nas z ran tego grzechu, od którego w wyjątkowy sposób zacho", + "id": "Postcommunio" + } + ], + "2025-12-09": [ + { + "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", + "id": "Introitus" + }, + { + "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", + "id": "Offertorium" + }, + { + "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", + "id": "Communio" + }, + { + "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", + "id": "Postcommunio" + } + ], + "2025-12-10": [ + { + "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", + "id": "Introitus" + }, + { + "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Melchiadesa, Papieża i Męczennika*\nBoże, któryś przez Niepokalane Poczęcie Najświętszej Dziewicy przygo", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", + "id": "Offertorium" + }, + { + "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Melchiadesa, Papieża i Męczennika*\nPrzyjmij, Panie, ofiarę zbawienia, którą Tobie składamy w uroczystoś", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", + "id": "Communio" + }, + { + "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Melchiadesa, Papieża i Męczennika*\nPanie Boże nasz, niech Sakrament, który przyjęliśmy, wyleczy nas z r", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-11": [ + { + "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", + "id": "Introitus" + }, + { + "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego Damazego, Papież", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nPobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięk", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", + "id": "Lectio" + }, + { + "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", + "id": "Evangelium" + }, + { + "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", + "id": "Offertorium" + }, + { + "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nDaj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam z", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nPosileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-12": [ + { + "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", + "id": "Introitus" + }, + { + "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", + "id": "Lectio" + }, + { + "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", + "id": "Offertorium" + }, + { + "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", + "id": "Communio" + }, + { + "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", + "id": "Postcommunio" + } + ], + "2025-12-13": [ + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", + "id": "Introitus" + }, + { + "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Łucji, Dziewicy i Męczennicy Tw", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nPobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięk", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", + "id": "Lectio" + }, + { + "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", + "id": "Evangelium" + }, + { + "body": "*Ps 44:15-16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nDaj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam z", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 118:161-162*\nBez powodu mię prześladują książęta, lecz moje serce tylko Twoich słów się lęka. Z Twych wypowiedzi się", + "id": "Communio" + }, + { + "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas za wstawiennictwem tej, której uroczystość obchodzimy.\nPr", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 2 Niedziela Adwentu*\nPosileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-14": [ + { + "body": "*Flp 4:4-6*\nWeselcie się w Panu zawsze, mówię powtórnie, weselcie się. Skromność wasza niech będzie znana wszystkim ludz", + "id": "Introitus" + }, + { + "body": "Nakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności naszego umysłu łaską Twego nawiedzenia.\nKtóry żyjesz…", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-7*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nPanie, który siedzisz na Cherubinach, wzbudź Twą potęgę i przyjdź.\n℣. Pasterzu Izraela posłuchaj, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:19-28*\nOnego czasu: Żydzi z Jerozolimy wysłali do Jana kapłanów i lewi", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nŁaskawym okazałeś się, Panie, dla Twej ziemi, na dobre odmieniłeś los Jakuba: ludowi Twemu darowałeś winę.", + "id": "Offertorium" + }, + { + "body": "Daj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddania. Niech przez nią spełniają się ustanowione przez Ci", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Iz 35:4*\nRzeczcie bojaźliwym: «Wzmocnijcie się, a nie bójcie się: oto Bóg nasz przyjdzie i zbawi nas».", + "id": "Communio" + }, + { + "body": "Błagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił nas z grzechów i przygotował na zbliżające się święta.\nP", + "id": "Postcommunio" + } + ], + "2025-12-15": [ + { + "body": "*Flp 4:4-6*\nWeselcie się w Panu zawsze, mówię powtórnie, weselcie się. Skromność wasza niech będzie znana wszystkim ludz", + "id": "Introitus" + }, + { + "body": "Nakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności naszego umysłu łaską Twego nawiedzenia.\nKtóry żyjesz…", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-7*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nPanie, który siedzisz na Cherubinach, wzbudź Twą potęgę i przyjdź.\n℣. Pasterzu Izraela posłuchaj, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:19-28*\nOnego czasu: Żydzi z Jerozolimy wysłali do Jana kapłanów i lewi", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nŁaskawym okazałeś się, Panie, dla Twej ziemi, na dobre odmieniłeś los Jakuba: ludowi Twemu darowałeś winę.", + "id": "Offertorium" + }, + { + "body": "Daj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddania. Niech przez nią spełniają się ustanowione przez Ci", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Iz 35:4*\nRzeczcie bojaźliwym: «Wzmocnijcie się, a nie bójcie się: oto Bóg nasz przyjdzie i zbawi nas».", + "id": "Communio" + }, + { + "body": "Błagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił nas z grzechów i przygotował na zbliżające się święta.\nP", + "id": "Postcommunio" + } + ], + "2025-12-16": [ + { + "body": "*Dn 3:84; 3:87*\nKapłani Boży błogosławcie Pana: święci i pokornego serca, chwalcie Boga.\n*Dn 3:57*\nBłogosławcie Pana, ws", + "id": "Introitus" + }, + { + "body": "Boże, co roku uweselasz nas uroczystością świętego Euzebiusza, Twojego Męczennika i Biskupa; spraw łaskawie, abyśmy cies", + "id": "Oratio" + }, + { + "body": "*Wspomnienie 3 Niedziela Adwentu (Niedziela Gaudete)*\nNakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności ", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 1:3-7*\nBracia: Błogosławiony Bóg i Ojciec Pana naszego Jez", + "id": "Lectio" + }, + { + "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią.\n℣. Obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie. Alleluja, alleluja.\n", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:24-27*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli kto chce z", + "id": "Evangelium" + }, + { + "body": "*Ps 88:21-22*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", + "id": "Offertorium" + }, + { + "body": "Poświęć, Panie, złożone Ci dary i za przyczyną świętego Euzebiusza, Twego Męczennika i Biskupa, daj się nimi przebłagać ", + "id": "Secreta" + }, + { + "body": "*Wspomnienie 3 Niedziela Adwentu (Niedziela Gaudete)*\nDaj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddan", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 20:4*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni.", + "id": "Communio" + }, + { + "body": "Panie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętego Euzebiusza, Twego Męczennika i Biskupa, stanie si", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie 3 Niedziela Adwentu (Niedziela Gaudete)*\nBłagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił na", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-17": [ + { + "body": "*Iz 45:8*\nNiebiosa, spuśćcie rosę z góry, a obłoki niech zleją z deszczem Sprawiedliwego. Niech się otworzy ziemia i zro", + "id": "Introitus" + }, + { + "body": "Spraw, prosimy Cię, wszechmogący Boże, aby nadchodząca uroczystość naszego odkupienia przyniosła nam pomoc w życiu docze", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 2:2-5*\nW one dni rzekł Izajasz prorok: I będzie w ostateczne dni przygotowana gó", + "id": "LectioL1" + }, + { + "body": "*Ps 23:7; 23:3; 23:4*\nBramy, podnieście swe szczyty i rozstąpcie się, prastare podwoje, aby mógł wkroczyć Król chwały.\n℣", + "id": "GradualeL1" + }, + { + "body": "Pośpiesz, prosimy Cie, Panie, i nie zwlekaj, lecz ześlij nam potężną pomoc z nieba, aby radość z Twego przyjścia podnios", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 7:10-15*\nW one dni: Rzekł Pan do Achaza, mówiąc: «Proś Pana Boga twego o znak dl", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPan jest blisko wszystkich, którzy Go wzywają; wszystkich wzywających Go szczerze.\n℣. Chwałę Pańską ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", + "id": "Evangelium" + }, + { + "body": "*Iz 35:4*\nWzmocnijcie się, a nie bójcie się; oto bowiem Bóg nasz wymierzy sprawiedliwość, Bóg sam przyjdzie i zbawi nas.", + "id": "Offertorium" + }, + { + "body": "Racz przyjąć, prosimy Cie, Panie, nasze posty. Niech one nas oczyszczą i uczynią godnymi Twej łaski oraz zawiodą do wiek", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Iz 7:14*\nOto Panna pocznie i porodzi Syna i nazwą imię Jego Emmanuel.", + "id": "Communio" + }, + { + "body": "Posileni zbawiennym Darem, pokornie błagamy Cię, Panie, aby to, co z radością przyjmujemy, przyniosło nam odnowienie.\nPr", + "id": "Postcommunio" + } + ], + "2025-12-18": [ + { + "body": "*Flp 4:4-6*\nWeselcie się w Panu zawsze, mówię powtórnie, weselcie się. Skromność wasza niech będzie znana wszystkim ludz", + "id": "Introitus" + }, + { + "body": "Nakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności naszego umysłu łaską Twego nawiedzenia.\nKtóry żyjesz…", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-7*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", + "id": "Lectio" + }, + { + "body": "*Ps 79:2; 79:3; 79:2*\nPanie, który siedzisz na Cherubinach, wzbudź Twą potęgę i przyjdź.\n℣. Pasterzu Izraela posłuchaj, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:19-28*\nOnego czasu: Żydzi z Jerozolimy wysłali do Jana kapłanów i lewi", + "id": "Evangelium" + }, + { + "body": "*Ps 84:2*\nŁaskawym okazałeś się, Panie, dla Twej ziemi, na dobre odmieniłeś los Jakuba: ludowi Twemu darowałeś winę.", + "id": "Offertorium" + }, + { + "body": "Daj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddania. Niech przez nią spełniają się ustanowione przez Ci", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Iz 35:4*\nRzeczcie bojaźliwym: «Wzmocnijcie się, a nie bójcie się: oto Bóg nasz przyjdzie i zbawi nas».", + "id": "Communio" + }, + { + "body": "Błagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił nas z grzechów i przygotował na zbliżające się święta.\nP", + "id": "Postcommunio" + } + ], + "2025-12-19": [ + { + "body": "*Ps 118:151-152*\nBlisko Ty jesteś, o Panie, a wszystkie nakazy Twe wierne. Poznałem dawniej z rozkazów Twoich, że Ty trw", + "id": "Introitus" + }, + { + "body": "Wzbudź, prosimy Cię, Panie, potęgę Twoją i przyjdź, aby ci, którzy zaufali Twojej dobroci, rychlej zostali wybawieni od ", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 11:1-5*\nTo mówi Pan Bóg: I wyjdzie różdżka z korzenia Jessego, a kwiat z korzeni", + "id": "Lectio" + }, + { + "body": "*Ps 84:8; 84:2*\nOkaż nam, Panie, miłosierdzie Swoje i daj nam Swoje zbawienie.\n℣. Łaskawym okazałeś się, Panie, dla Twej", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:39-47*\nOnego czasu: Powstawszy Maryja udała się śpiesznie w okolic", + "id": "Evangelium" + }, + { + "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", + "id": "Offertorium" + }, + { + "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy oraz oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrz", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Zch 14:5*\nOto przyjdzie Pan i wraz z Nim wszyscy Święci Jego: i zajaśnieje owego dnia światłość wielka.", + "id": "Communio" + }, + { + "body": "Niech nas odrodzi, o Panie, święta uczta ofiarna, na której pożywamy Twój Sakrament, i po oczyszczeniu ze starej przewin", + "id": "Postcommunio" + } + ], + "2025-12-20": [ + { + "body": "*Ps 79:4; 79:2*\nPrzyjdź i okaż nam Twe oblicze, Panie, który siedzisz na Cherubach, abyśmy byli zbawieni.\n*Ps 79:2*\nPast", + "id": "Introitus" + }, + { + "body": "Boże, Ty widzisz, że cierpimy wskutek naszych nieprawości, racz nas pocieszyć łaską Twego nawiedzenia:\nKtóry żyjesz…", + "id": "Oratio" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 19:20-22*\n*Prorok zapowiada, że poganie poznają prawdziwego Boga i będą Mu służy", + "id": "LectioL1" + }, + { + "body": "*Ps 18:7; 18:2*\nJego wyjście na krańcu nieba się zaczyna, a jego obieg aż po kraniec niebios.\n℣. Niebiosa głoszą chwałę ", + "id": "GradualeL1" + }, + { + "body": "Wszechmogący Boże, od dawna gniecie nas w niewoli jarzmo grzechów; spraw, prosimy, aby nas wyzwoliło upragnione nowe nar", + "id": "OratioL1" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 35:1-7*\n*Prorocza wizja błogosławieństwa czasów mesjańskich. Przyroda bierze udz", + "id": "LectioL2" + }, + { + "body": "*Ps 18:6; 18:7*\nTam słońcu namiot swój wystawił, ono jak oblubieniec wychodzi ze swej komnaty.\n℣. Jego wyjście na krańcu", + "id": "GradualeL2" + }, + { + "body": "Oto zasmucają nas własne złe czyny; prosimy Cię, Panie, napełnij nas radością z przyjścia Jedynego Syna Twojego:\nKtóry z", + "id": "OratioL2" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 40:9-11*\n*Odkupiciel to potężny Bóg, a zarazem troskliwy pasterz.*\nTo mówi Pan: ", + "id": "LectioL3" + }, + { + "body": "*Ps 79:20; 79:3*\nPanie, Boże Zastępów, odnów nas i okaż Twe oblicze, abyśmy byli zbawieni.\n℣. Wzbudź, Panie, Twą potęgę ", + "id": "GradualeL3" + }, + { + "body": "Spraw, prosimy, wszechmocny Boże, aby nadchodząca uroczystość Syna Twego zaradziła naszym brakom w życiu doczesnym i zje", + "id": "OratioL3" + }, + { + "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 45:1-8*\n*Cyrus, król perski, który uwolnił Izraelitów z niewoli babilońskiej, je", + "id": "LectioL4" + }, + { + "body": "*Ps 79:3,; 79:2; 79:3*\nWzbudź, Panie, Twą potęgę i przyjdź nas zbawić.\n℣. Pasterzu Izraela, posłuchaj: Ty, co jak trzodę", + "id": "GradualeL4" + }, + { + "body": "Prosimy Cię, Panie, wysłuchaj łaskawie modlitwy ludu Twego, a gdy słusznie cierpimy za grzechy nasze, niech nas pocieszy", + "id": "OratioL4" + }, + { + "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:49-51*\n*Poważną przeszkodą do zbawienia są nasze namiętności, które wykorzystuj", + "id": "LectioL5" + }, + { + "body": "Boże, któryś złagodził płomień ognia dla trzech młodzieńców, spraw łaskawie, aby nas, sług Twoich, nie pożarł płomień na", + "id": "OratioL5" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*2 Tes 2:1-8*\n*Oczekiwanie ostatecznego przyjścia Chrystusa na", + "id": "Lectio" + }, + { + "body": "*Ps:79:2-3*\nPasterzu Izraela, posłuchaj: Ty, co jak trzodę wiedziesz ród Józefa.\n℣. Zabłyśnij, który siedzisz na Cheruba", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 3:1-6*\nRoku piętnastego panowania Tyberiusza, gdy Piłat Poncjusz zar", + "id": "Evangelium" + }, + { + "body": "*Zch 9:9*\nRaduj się wielce, córko syjońska! Wołaj radośnie, córko Jeruzalem! Oto do ciebie przychodzi twój Król: On, spr", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdza w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Ps 18:6-7*\n*Słońce wschodzące wśród mroków nocy jest obrazem Chrystusa, który w Eucharystii przychodzi rozproszyć nasze", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się zbaw", + "id": "Postcommunio" + } + ], + "2025-12-21": [ + { + "body": "*Iz 45:8*\nNiebiosa, spuśćcie rosę z góry, a obłoki niech zleją z deszczem Sprawiedliwego. Niech się otworzy ziemia i zro", + "id": "Introitus" + }, + { + "body": "Wzbudź swą potęgę, prosimy Cię, Panie, i przyjdź, i z wielką siłą pośpiesz nam na pomoc, aby miłosierdzie Twoje, wspomag", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:1-5*\nBracia: Tak niechaj każdy nas uważa za sługi Chryst", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPan jest blisko wszystkich, którzy Go wzywają; wszystkich, wzywających Go szczerze.\n℣. Chwałę Pańską", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 3:1-6*\n*Św. Łukasz z wielką ścisłością określa czas wystąpienia Jana", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą; błogosławionaś Ty między niewiastami i błogosławiony owoc żywota Two", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", + "id": "Prefatio" + }, + { + "body": "*Iz 7:14*\nOto Panna pocznie i porodzi syna i nazwą imię Jego Emmanuel.", + "id": "Communio" + }, + { + "body": "Przyjąwszy Twe dary, prosimy Cię, Panie, aby przez częste uczestnictwo w tym Sakramencie wzrastał w nas jego zbawienny o", + "id": "Postcommunio" + } + ], + "2025-12-22": [ + { + "body": "*Iz 45:8*\nNiebiosa, spuśćcie rosę z góry, a obłoki niech zleją z deszczem Sprawiedliwego. Niech się otworzy ziemia i zro", + "id": "Introitus" + }, + { + "body": "Wzbudź swą potęgę, prosimy Cię, Panie, i przyjdź, i z wielką siłą pośpiesz nam na pomoc, aby miłosierdzie Twoje, wspomag", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:1-5*\nBracia: Tak niechaj każdy nas uważa za sługi Chryst", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPan jest blisko wszystkich, którzy Go wzywają; wszystkich, wzywających Go szczerze.\n℣. Chwałę Pańską", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 3:1-6*\n*Św. Łukasz z wielką ścisłością określa czas wystąpienia Jana", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą; błogosławionaś Ty między niewiastami i błogosławiony owoc żywota Two", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Iz 7:14*\nOto Panna pocznie i porodzi syna i nazwą imię Jego Emmanuel.", + "id": "Communio" + }, + { + "body": "Przyjąwszy Twe dary, prosimy Cię, Panie, aby przez częste uczestnictwo w tym Sakramencie wzrastał w nas jego zbawienny o", + "id": "Postcommunio" + } + ], + "2025-12-23": [ + { + "body": "*Iz 45:8*\nNiebiosa, spuśćcie rosę z góry, a obłoki niech zleją z deszczem Sprawiedliwego. Niech się otworzy ziemia i zro", + "id": "Introitus" + }, + { + "body": "Wzbudź swą potęgę, prosimy Cię, Panie, i przyjdź, i z wielką siłą pośpiesz nam na pomoc, aby miłosierdzie Twoje, wspomag", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:1-5*\nBracia: Tak niechaj każdy nas uważa za sługi Chryst", + "id": "Lectio" + }, + { + "body": "*Ps 144:18; 144:21*\nPan jest blisko wszystkich, którzy Go wzywają; wszystkich, wzywających Go szczerze.\n℣. Chwałę Pańską", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 3:1-6*\n*Św. Łukasz z wielką ścisłością określa czas wystąpienia Jana", + "id": "Evangelium" + }, + { + "body": "*Łk 1:28*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą; błogosławionaś Ty między niewiastami i błogosławiony owoc żywota Two", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Iz 7:14*\nOto Panna pocznie i porodzi syna i nazwą imię Jego Emmanuel.", + "id": "Communio" + }, + { + "body": "Przyjąwszy Twe dary, prosimy Cię, Panie, aby przez częste uczestnictwo w tym Sakramencie wzrastał w nas jego zbawienny o", + "id": "Postcommunio" + } + ], + "2025-12-24": [ + { + "body": "*Wj 16:6; 16:7*\nDziś poznacie, że przyjdzie Pan i zbawi nas; a rano ujrzycie chwałę Jego.\n*Ps 23:1*\nPana jest ziemia i c", + "id": "Introitus" + }, + { + "body": "Boże, co roku uweselasz nas oczekiwaniem naszego Odkupiciela: dozwól, abyśmy przyjmując radośnie Jednorodzonego Syna Twe", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 1:1-6*\nPaweł, sługa Jezusa Chrystusa, powołany na Apostoła, prz", + "id": "Lectio" + }, + { + "body": "*Wj 16:6; 16:7*\nDziś poznacie, że przyjdzie Pan i zbawi nas; a rano ujrzycie chwałę Jego.\n*Ps 79:2-3*\nPasterzu Izraela, ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 1:18-21*\nGdy poślubiona była Matka Jezusa; Maryja, Józefowi, pierwe", + "id": "Evangelium" + }, + { + "body": "*Ps 23:7*\nBramy, podnieście swe szczyty i rozstąpcie się, prastare podwoje, aby mógł wkroczyć Król chwały.", + "id": "Offertorium" + }, + { + "body": "Obchodząc wigilię chwalebnych narodzin Twojego Syna, prosimy Cię, wszechmogący Boże, abyśmy z radością odebrali Jego wie", + "id": "Secreta" + }, + { + "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", + "id": "Prefatio" + }, + { + "body": "*Iz 40:5*\nObjawi się chwała Pańska i ujrzy wszelkie ciało zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Prosimy Cię, Panie, niech odnowi nasze życie obchód narodzin Jednorodzonego Syna Twojego, którego niebieska tajemnica na", + "id": "Postcommunio" + } + ], + "2025-12-25": [ + { + "body": "*Ps 2:7*\nPan rzekł do mnie: «Tyś Synem moim, Ja Cię dziś zrodziłem».\n*Ps 2:1*\nDlaczego się burzą narody, czemu ludy knuj", + "id": "Introitus" + }, + { + "body": "Boże, Tyś sprawił, że ta najświętsza noc zajaśniała blaskiem prawdziwej światłości, spraw, prosimy, abyśmy w niebie mogl", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", + "id": "Lectio" + }, + { + "body": "*Ps 109:3; 109:1*\nPrzy Tobie panowanie od dnia Twych narodzin; w blaskach świętości przed jutrzenką wydałem Cię z łona.\n", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:1-14*\nOnego czasu wydany został dekret przez cesarza Augusta, aby ", + "id": "Evangelium" + }, + { + "body": "*Ps 95:11; 95:13*\nNiech cieszy się niebo i ziemia raduje przed Panem, dlatego że nadchodzi.", + "id": "Offertorium" + }, + { + "body": "Przyjmij łaskawie, o Panie, ofiarę, którą Ci składamy w dzisiejszą uroczystość, abyśmy za łaską Twoją przez tę tajemnicz", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 109:3*\nW blaskach świętości przed jutrzenką wydałem Cię z łona.", + "id": "Communio" + }, + { + "body": "Panie, Boże nasz, z radością uczestniczymy w misteriach narodzenia Pana naszego Jezusa Chrystusa; daj nam, prosimy, abyś", + "id": "Postcommunio" + } + ], + "2025-12-26": [ + { + "body": "*Ps 118:23; 118:86; 118:23*\nZasiedli możni i zmówili się przeciw mnie, niesłusznie mię prześladują. Ty wspomóż mnie, Pan", + "id": "Introitus" + }, + { + "body": "Daj nam, prosimy Cię, Panie, naśladować to, co czcimy, i nauczyć się miłować także nieprzyjaciół; obchodzimy bowiem naro", + "id": "Oratio" + }, + { + "body": "*W Oktawie Narodzenia*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Dziejów Apostolskich.\n*Dz 6:8-10; 7:54-59*\n*Lekcja kreśli obraz idealnej śmierci chrześcijanina, podobnego we", + "id": "Lectio" + }, + { + "body": "*Ps 118:23; 118:86*\nZasiedli możni i zmówili się przeciw mnie, niesłusznie mię prześladują.\n*Ps 6:5*\nTy wspomóż mnie, Pa", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 23:34-39*\nOnego czasu: Mówił Jezus do uczonych w Piśmie i faryzeusz", + "id": "Evangelium" + }, + { + "body": "*Dz 6:5; 7:59*\n*Słowami św. Szczepana ofiarujemy Bogu naszą duszę i całe nasze życie.*\nWybrali Apostołowie diakonem Szcz", + "id": "Offertorium" + }, + { + "body": "Przyjmij, o Panie, dary, które Ci składamy obchodząc pamiątkę Twoich Świętych, a jak męczeństwo zapewniło im chwałę, tak", + "id": "Secreta" + }, + { + "body": "*W Oktawie Narodzenia*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy nas", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Dz 7:56; 7:59-60*\n*Św. Szczepan widział Pana Jezusa po prawicy Bożej. Pan Jezus ukryty pod postaciami sakramentalnymi p", + "id": "Communio" + }, + { + "body": "Przyjęty Sakrament niechaj nas wspomaga, o Panie, i za wstawiennictwem św. Szczepana, Twojego Męczennika, niech nam zape", + "id": "Postcommunio" + }, + { + "body": "*W Oktawie Narodzenia*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosim", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-27": [ + { + "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", + "id": "Introitus" + }, + { + "body": "Oświecaj łaskawie Twój Kościół, o Panie, aby dzięki naukom św. Jana, Twojego Apostoła i Ewangelisty, osiągnął dobra wiek", + "id": "Oratio" + }, + { + "body": "*W Oktawie Narodzenia*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Księgi Syracydesa.\n*Syr 15:1-6*\nKto Boga się boi, będzie czynił dobrze, a kto sprawiedliwości przestrzega, do", + "id": "Lectio" + }, + { + "body": "*J 21:23; 21:19*\nRozeszła się wieść między braćmi, że uczeń ów nie umrze. Ale Jezus nie powiedział: «Nie umrze».\n℣. Jeno", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 21:19-24*\nOnego czasu: Rzekł Jezus do Piotra: «Pójdź za mną». Piotr obró", + "id": "Evangelium" + }, + { + "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie. Alleluja.", + "id": "Offertorium" + }, + { + "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość św. Jana. Ufamy, że jego wstawiennictwo przyczyni się do naszego ", + "id": "Secreta" + }, + { + "body": "*W Oktawie Narodzenia*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy nas", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*J 21:23*\nRozeszła się tedy ta wieść między braćmi, że uczeń ów nie umrze. Ale Jezus nie powiedział: «Nie umrze», jeno: ", + "id": "Communio" + }, + { + "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", + "id": "Postcommunio" + }, + { + "body": "*W Oktawie Narodzenia*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosim", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-28": [ + { + "body": "*Mdr 18:14-15*\nGdy wszystko było w głębokim milczeniu, a noc w swym biegu połowy drogi dosięgła, wszechmocne Słowo Twoje", + "id": "Introitus" + }, + { + "body": "Wszechmocny, wieczny Boże, kieruj naszymi czynami według Twojego upodobania, abyśmy\nw Imię umiłowanego Syna Twego mogli ", + "id": "Oratio" + }, + { + "body": "*W Oktawie Narodzenia*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 4:1-7*\n*Św. Paweł poucza nas, że Wcielenie Syna Bożego przynios", + "id": "Lectio" + }, + { + "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejszy nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:33-40*\nOnego czasu: Józef i Maryja, Matka Jezusowa, dziwili się te", + "id": "Evangelium" + }, + { + "body": "*Ps 92:1-2*\nBóg okrąg ziemi utwierdził, iż się nie poruszy. Od wieków tron Twój niewzruszony, o Boże, Ty od wieków jeste", + "id": "Offertorium" + }, + { + "body": "Prosimy Cię, wszechmogący Boże, niech dar złożony przed oczyma Twego Majestatu wyjedna nam łaskę dziecięcego oddania się", + "id": "Secreta" + }, + { + "body": "*W Oktawie Narodzenia*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy nas", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Mt 2:20*\nWeźmij Dziecię i Matkę Jego, a idź do ziemi izraelskiej, pomarli bowiem ci, którzy czyhali na życie Dziecięcia", + "id": "Communio" + }, + { + "body": "Panie, niech działanie tego Sakramentu oczyści nas ze złych skłonności i spełni nasze godziwe pragnienia.\nPrzez Pana…", + "id": "Postcommunio" + }, + { + "body": "*W Oktawie Narodzenia*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosim", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-29": [ + { + "body": "*Iz 9:6*\n*Liturgia celowo zmieniła nieco tekst wyjęty z Izajasza, aby podkreślić, że Chrystus przychodzi wykonać wielki ", + "id": "Introitus" + }, + { + "body": "Dozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego wyzwoliło nas z jarzma", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Tomasza z Canterbury, Biskupa i Męczennika*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Uświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy naszych grzechów.\nPrzez te", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Tomasza z Canterbury, Biskupa i Męczennika*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego ", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosimy, aby nam udzielił dar", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Tomasza z Canterbury, Biskupa i Męczennika*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przyw", + "id": "Commemoratio Postcommunio" + } + ], + "2025-12-30": [ + { + "body": "*Iz 9:6*\n*Liturgia celowo zmieniła nieco tekst wyjęty z Izajasza, aby podkreślić, że Chrystus przychodzi wykonać wielki ", + "id": "Introitus" + }, + { + "body": "Dozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego wyzwoliło nas z jarzma", + "id": "Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Uświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy naszych grzechów.\nPrzez te", + "id": "Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosimy, aby nam udzielił dar", + "id": "Postcommunio" + } + ], + "2025-12-31": [ + { + "body": "*Iz 9:6*\n*Liturgia celowo zmieniła nieco tekst wyjęty z Izajasza, aby podkreślić, że Chrystus przychodzi wykonać wielki ", + "id": "Introitus" + }, + { + "body": "Dozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego wyzwoliło nas z jarzma", + "id": "Oratio" + }, + { + "body": "*Wspomnienie Św. Sylwestra I, papieża i wyznawcy*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciel", + "id": "Commemoratio Oratio" + }, + { + "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", + "id": "Lectio" + }, + { + "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", + "id": "Graduale" + }, + { + "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", + "id": "Evangelium" + }, + { + "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", + "id": "Offertorium" + }, + { + "body": "Uświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy naszych grzechów.\nPrzez te", + "id": "Secreta" + }, + { + "body": "*Wspomnienie Św. Sylwestra I, papieża i wyznawcy*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojeg", + "id": "Commemoratio Secreta" + }, + { + "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", + "id": "Prefatio" + }, + { + "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", + "id": "Communio" + }, + { + "body": "Wszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosimy, aby nam udzielił dar", + "id": "Postcommunio" + }, + { + "body": "*Wspomnienie Św. Sylwestra I, papieża i wyznawcy*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam s", + "id": "Commemoratio Postcommunio" + } + ] +} \ No newline at end of file diff --git a/tests/fixtures/propers_pl_2020.json b/tests/fixtures/propers_pl_2020.json deleted file mode 100644 index 38839ea6..00000000 --- a/tests/fixtures/propers_pl_2020.json +++ /dev/null @@ -1,17246 +0,0 @@ -{ - "2020-01-01": [ - { - "body": "*Iz 9:6*\nMaleńki nam się narodził i Syn został nam dany; władza spoczęła na Jego ramionach, a imię Jego nazwano: Zwiastu", - "id": "Introitus" - }, - { - "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", - "id": "Offertorium" - }, - { - "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", - "id": "Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", - "id": "Communio" - }, - { - "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", - "id": "Postcommunio" - } - ], - "2020-01-02": [ - { - "body": "*Iz 9:6*\nMaleńki nam się narodził i Syn został nam dany; władza spoczęła na Jego ramionach, a imię Jego nazwano: Zwiastu", - "id": "Introitus" - }, - { - "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", - "id": "Offertorium" - }, - { - "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", - "id": "Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", - "id": "Communio" - }, - { - "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", - "id": "Postcommunio" - } - ], - "2020-01-03": [ - { - "body": "*Iz 9:6*\nMaleńki nam się narodził i Syn został nam dany; władza spoczęła na Jego ramionach, a imię Jego nazwano: Zwiastu", - "id": "Introitus" - }, - { - "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", - "id": "Offertorium" - }, - { - "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", - "id": "Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", - "id": "Communio" - }, - { - "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", - "id": "Postcommunio" - } - ], - "2020-01-04": [ - { - "body": "*Ps 44:13; 44:15; 44:16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Ni", - "id": "Introitus" - }, - { - "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejsza nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", - "id": "Evangelium" - }, - { - "body": "Szczęśliwa jesteś, święta Dziewico Maryjo, i wszelkiej chwały najgodniejsza, z Ciebie bowiem narodziło się Słońce sprawi", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", - "id": "Communio" - }, - { - "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", - "id": "Postcommunio" - } - ], - "2020-01-05": [ - { - "body": "*Flp 2:10-11*\nNa imię Jezusa niechaj się zgina wszelkie kolano mieszkańców nieba, ziemi i podziemia: i wszelki język nie", - "id": "Introitus" - }, - { - "body": "Boże, któryś ustanowił jedynego Syna Twojego Zbawicielem rodzaju ludzkiego i kazałeś Mu nadać imię Jezus, spraw miłościw", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 4:8-12*\nW one dni: Piotr napełniony Duchem Świętym, rzekł do nich: «Przełożeni ludu", - "id": "Lectio" - }, - { - "body": "*Ps 105:47*\nRatuj nas Panie nasz Boże, zgromadź nas z krajów pogańskich, abyśmy wielbili święte imię Twoje i dumni byli ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:21*\nOnego czasu: Gdy upłynęło osiem dni, aby obrzezano Dzieciątko,", - "id": "Evangelium" - }, - { - "body": "*Ps 85:12; 85:5*\nPanie, mój Boże, będę Cię chwalił z całego serca mojego i na wieczność będę głosił imię Twoje. Ty bowie", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię najłaskawszy Boże, niech Twe błogosławieństwo, źródło życia całego stworzenia, uświęci ofiarę, którą składam", - "id": "Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 85:9-10*\nPrzyjdą wszystkie ludy, które uczyniłeś i będą Cię Panie wielbiły, i będą głosić Twe imię: boś Ty jest wiel", - "id": "Communio" - }, - { - "body": "Wszechmogący wieczny Boże, Tyś nas stworzył i odkupił, wejrzyj miłościwie na nasze prośby i racz łaskawie przyjąć tę zba", - "id": "Postcommunio" - } - ], - "2020-01-06": [ - { - "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", - "id": "Introitus" - }, - { - "body": "Boże, w dniu dzisiejszym za przewodem gwiazdy objawiłeś narodom Jedynego Syna Twojego; skoro tedy poznaliśmy Ciebie prze", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\n*Jerozolima jest typem Kościoła katolickiego, do którego garną się wszys", - "id": "Lectio" - }, - { - "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:1-12*\nGdy się tedy narodził Jezus w Betlejem Judzkim za dni króla", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", - "id": "Offertorium" - }, - { - "body": "Wejrzyj miłościwie na dary Twojego Kościoła, który składa ci już nie złoto kadzidło i mirrę, lecz Tego, którego one wyob", - "id": "Secreta" - }, - { - "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", - "id": "Prefatio" - }, - { - "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", - "id": "Communio" - }, - { - "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli tajemnicę uroczyście dziś obchodzoną.\nPrzez Pa", - "id": "Postcommunio" - } - ], - "2020-01-07": [ - { - "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", - "id": "Introitus" - }, - { - "body": "Boże, w dniu dzisiejszym za przewodem gwiazdy objawiłeś narodom Jedynego Syna Twojego; skoro tedy poznaliśmy Ciebie prze", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\n*Jerozolima jest typem Kościoła katolickiego, do którego garną się wszys", - "id": "Lectio" - }, - { - "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:1-12*\nGdy się tedy narodził Jezus w Betlejem Judzkim za dni króla", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", - "id": "Offertorium" - }, - { - "body": "Wejrzyj miłościwie na dary Twojego Kościoła, który składa ci już nie złoto kadzidło i mirrę, lecz Tego, którego one wyob", - "id": "Secreta" - }, - { - "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", - "id": "Prefatio" - }, - { - "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", - "id": "Communio" - }, - { - "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli tajemnicę uroczyście dziś obchodzoną.\nPrzez Pa", - "id": "Postcommunio" - } - ], - "2020-01-08": [ - { - "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", - "id": "Introitus" - }, - { - "body": "Boże, w dniu dzisiejszym za przewodem gwiazdy objawiłeś narodom Jedynego Syna Twojego; skoro tedy poznaliśmy Ciebie prze", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\n*Jerozolima jest typem Kościoła katolickiego, do którego garną się wszys", - "id": "Lectio" - }, - { - "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:1-12*\nGdy się tedy narodził Jezus w Betlejem Judzkim za dni króla", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", - "id": "Offertorium" - }, - { - "body": "Wejrzyj miłościwie na dary Twojego Kościoła, który składa ci już nie złoto kadzidło i mirrę, lecz Tego, którego one wyob", - "id": "Secreta" - }, - { - "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", - "id": "Prefatio" - }, - { - "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", - "id": "Communio" - }, - { - "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli tajemnicę uroczyście dziś obchodzoną.\nPrzez Pa", - "id": "Postcommunio" - } - ], - "2020-01-09": [ - { - "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", - "id": "Introitus" - }, - { - "body": "Boże, w dniu dzisiejszym za przewodem gwiazdy objawiłeś narodom Jedynego Syna Twojego; skoro tedy poznaliśmy Ciebie prze", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\n*Jerozolima jest typem Kościoła katolickiego, do którego garną się wszys", - "id": "Lectio" - }, - { - "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:1-12*\nGdy się tedy narodził Jezus w Betlejem Judzkim za dni króla", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", - "id": "Offertorium" - }, - { - "body": "Wejrzyj miłościwie na dary Twojego Kościoła, który składa ci już nie złoto kadzidło i mirrę, lecz Tego, którego one wyob", - "id": "Secreta" - }, - { - "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", - "id": "Prefatio" - }, - { - "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", - "id": "Communio" - }, - { - "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli tajemnicę uroczyście dziś obchodzoną.\nPrzez Pa", - "id": "Postcommunio" - } - ], - "2020-01-10": [ - { - "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", - "id": "Introitus" - }, - { - "body": "Boże, w dniu dzisiejszym za przewodem gwiazdy objawiłeś narodom Jedynego Syna Twojego; skoro tedy poznaliśmy Ciebie prze", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\n*Jerozolima jest typem Kościoła katolickiego, do którego garną się wszys", - "id": "Lectio" - }, - { - "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:1-12*\nGdy się tedy narodził Jezus w Betlejem Judzkim za dni króla", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", - "id": "Offertorium" - }, - { - "body": "Wejrzyj miłościwie na dary Twojego Kościoła, który składa ci już nie złoto kadzidło i mirrę, lecz Tego, którego one wyob", - "id": "Secreta" - }, - { - "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", - "id": "Prefatio" - }, - { - "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", - "id": "Communio" - }, - { - "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli tajemnicę uroczyście dziś obchodzoną.\nPrzez Pa", - "id": "Postcommunio" - } - ], - "2020-01-11": [ - { - "body": "*Ps 44:13; 44:15; 44:16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Ni", - "id": "Introitus" - }, - { - "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejsza nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", - "id": "Evangelium" - }, - { - "body": "Szczęśliwa jesteś, święta Dziewico Maryjo, i wszelkiej chwały najgodniejsza, z Ciebie bowiem narodziło się Słońce sprawi", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", - "id": "Communio" - }, - { - "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", - "id": "Postcommunio" - } - ], - "2020-01-12": [ - { - "body": "*Prz 23:24; 23:25*\nRaduje się bardzo Ojciec Sprawiedliwego. Niech się weseli Ojciec Twój i Matka Twoja; niech się raduje", - "id": "Introitus" - }, - { - "body": "Panie Jezu Chryste, Tyś w posłuszeństwie Maryi i Józefowi, życie rodzinne niewysłowionymi cnotami uświęcił, spraw za ich", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:12-17*\n*Wzajemna wyrozumiałość i wspólna modlitwa mają donio", - "id": "Lectio" - }, - { - "body": "*Ps 26:4*\nO jedno proszę Pana, jednego pragnę, bym mógł przebywać w domu Pańskim po wszystkie dni życia mego.\n*Ps 83:5*\n", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:42-52*\nGdy Jezus miał lat dwanaście, udali się do Jerozolimy wedłu", - "id": "Evangelium" - }, - { - "body": "*Łk 2:22*\nPrzynieśli Jezusa Rodzice Jego do Jeruzalem, aby Go stawić przed Panem.", - "id": "Offertorium" - }, - { - "body": "Składamy Ci Panie przebłagalną ofiarę i prosimy w pokorze, abyś za wstawiennictwem Bogarodzicy Dziewicy i świętego Józef", - "id": "Secreta" - }, - { - "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", - "id": "Prefatio" - }, - { - "body": "*Łk 2:51*\nWrócił Jezus z Nimi, przyszedł do Nazaretu i był im poddany.", - "id": "Communio" - }, - { - "body": "Panie Jezu, Ty nas posilasz niebiańskim Sakramentem: spraw, byśmy zawsze naśladowali wzór Twej świętej Rodziny, a przez ", - "id": "Postcommunio" - } - ], - "2020-01-13": [ - { - "body": "*Ml 3:1; 1 Krn 29:12*\nOto już nadszedł Władca najwyższy: a w ręku Jego królewska władza i moc i rządy świata.\n*Ps 71:1*\n", - "id": "Introitus" - }, - { - "body": "Boże, Twój Jednorodzony Syn objawił się w naszej cielesnej naturze; spraw, abyśmy zostali wewnętrznie przekształceni prz", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 60:1-6*\nPowstań, Jeruzalem, i rozbłyśnij jasnością, bo przybywa światłość twoja ", - "id": "Lectio" - }, - { - "body": "*Iz 60:6; 60:1*\nWszyscy ze Saby przyjdą, złoto i kadzidło przynosząc i chwałę Pańską rozgłaszając. Powstań, Jeruzalem i ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:29-34*\nOnego czasu ujrzał Jan nadchodzącego Jezusa i rzekł: «Oto Baran", - "id": "Evangelium" - }, - { - "body": "*Ps 71:10-11*\nKrólowie Tarszisz i wysp przyniosą dary, królowie Arabii i Saby złożą daninę. I oddadzą mu pokłon wszyscy ", - "id": "Offertorium" - }, - { - "body": "Składamy Ci, Panie, ofiary ku uczczeniu objawienia się Syna Twojego, który stał się człowiekiem, i pokornie prosimy: aby", - "id": "Secreta" - }, - { - "body": "*Prefacja o Objawieniu Pańskim*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie sk", - "id": "Prefatio" - }, - { - "body": "*Mt 2:2*\nUjrzeliśmy gwiazdę Jego na wschodzie i przybyliśmy z darami pokłonić się Panu.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech nas uprzedza zawsze i wszędzie niebiańskie światło: abyśmy czystym wejrzeniem przeniknęli i z ", - "id": "Postcommunio" - } - ], - "2020-01-14": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, Tyś dał ludowi Swemu świętego Hilarego za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć or", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Feliksa*\nProsimy Cię, wszechmogący Boże, niechaj przykłady Twoich Świętych zachęcą nas do lepszego życi", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Feliksa*\nProsimy Cię, Panie, przyjmij łaskawie przez zasługi św. Feliksa, Twego Męczennika, ofiarę, któ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Feliksa*\nNasyceni zbawiennym Sakramentem prosimy Cię, Panie, aby wspierały nas modły św. Feliksa, Męcze", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-15": [ - { - "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", - "id": "Introitus" - }, - { - "body": "Boże, który co roku uweselasz nas uroczystością św. Pawła, Twojego Wyznawcy, spraw łaskawie, abyśmy naśladowali czyny te", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Maura*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Maura Opata, abyśmy za jego p", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:7-12*\n*Celem wysiłków ascetów chrześcijańskich jest udział ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Sprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\n℣. By", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:25-30*\nOnego czasu: Odpowiadając Jezus rzekł: «Wysławiam Cię, Oj", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Maura*\nProsimy Cię, Panie, niech święty Maur, Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią.", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Maura*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Maura, Opata, ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-16": [ - { - "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, wysłuchaj łaskawie próśb Swojego ludu: niech nas wspierają zasługi św. Marcelego, Twojego Męczennika", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", - "id": "Offertorium" - }, - { - "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", - "id": "Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", - "id": "Postcommunio" - } - ], - "2020-01-17": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Antoniego, Opata, abyśmy za jego przyczyną otrzymali ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam ku zbawieni", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N., Opata, abyśmy naśladowali jego wzo", - "id": "Postcommunio" - } - ], - "2020-01-18": [ - { - "body": "*Ps 44:13; 44:15; 44:16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Ni", - "id": "Introitus" - }, - { - "body": "Boże, któryś przez dziewicze macierzyństwo Najświętszej Maryi Panny obdarzył rodzaj ludzki łaską zbawienia wiecznego, da", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Pryski, Dziewicy*\nProsimy Cię, wszechmogący Boże, spraw, abyśmy obchodząc narodziny dla nieba św. Prysk", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejsza nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", - "id": "Evangelium" - }, - { - "body": "Szczęśliwa jesteś, święta Dziewico Maryjo, i wszelkiej chwały najgodniejsza, z Ciebie bowiem narodziło się Słońce sprawi", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Pryski, Dziewicy*\nProsimy Cię, Panie, niech ta ofiara, którą składamy wspominając narodziny dla nieba T", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", - "id": "Communio" - }, - { - "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziewicy Bogarodzicy Maryi stanie się dla ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Pryski, Dziewicy*\nNasyceni zbawiennym Sakramentem, prosimy Cię, Panie, aby wspomagały nas modlitwy tej,", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-19": [ - { - "body": "*Ps 65:4*\nNiechaj Cię wielbi cała ziemia i niechaj śpiewa Tobie; niech imię Twoje opiewa, o Najwyższy.\n*Ps 65:1-2*\nZ rad", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, który rządzisz niebem i ziemią, wysłuchaj łaskawie próśb ludu Twojego i racz obdarzyć nasze ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:6-16*\nBracia: Mamy dary według użyczonej nam łaski różne: Bą", - "id": "Lectio" - }, - { - "body": "*Ps 106:20-21*\nPosłał Pan swe słowo, aby ich uleczyć i od zagłady ich wyrwać. Niech dzięki czynią Panu za Jego miłosierd", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 2:1-11*\nOnego czasu: odbywały się gody weselne w Kanie Galilejskiej i by", - "id": "Evangelium" - }, - { - "body": "*Ps 65:1-2; 65:16*\nZ radością sławcie Boga wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się Bo", - "id": "Offertorium" - }, - { - "body": "Poświęć, Panie, ofiarowane dary i oczyść nas ze zmazy naszych grzechów.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*J 2:7; 2:8; 2:9; 2:10-11*\nPan mówi: «Napełnijcie stągwie wodą i zanieście gospodarzowi wesela». A gdy gospodarz skoszto", - "id": "Communio" - }, - { - "body": "Niech wzrośnie w nas działanie Twojej mocy, prosimy Cię, Panie, aby łaska Twoja przygotowała nas do otrzymania dóbr wiek", - "id": "Postcommunio" - } - ], - "2020-01-20": [ - { - "body": "*Ps 78:11-12; 78:10*\nNiech jęk pojmanych dojdzie do Ciebie, Panie: naszym sąsiadom odpłać siedmiokroć w ich zanadrze, po", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, wejrzyj na naszą słabość, a skoro nas obciąża brzemię własnej działalności, niech nas osłania dostojn", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 11:33-39*\nBracia: Święci przez wiarę pokonali królestwa, ", - "id": "Lectio" - }, - { - "body": "*Wj 15:11*\nChwalebny jest Bóg w swoich Świętych; przedziwny w majestacie, dokonuje cudów.\n*Wj 15:6*\nPrawica Twoja, Panie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 6:17-23*\n*Msza Sapientiam została ułożona na uroczystość świętych le", - "id": "Evangelium" - }, - { - "body": "*Ps 31:11*\nSprawiedliwi, cieszcie się i weselcie w Panu, wszyscy prawego serca, głośno się radujcie.", - "id": "Offertorium" - }, - { - "body": "Panie, przyjmij łaskawie przez zasługi świętych Męczenników Twoich Fabiana i Sebastiana ofiarę, którą Ci składamy, i spr", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 6:18; 6:19*\nMnóstwo chorych i dręczonych przez duchy nieczyste przychodziło do Niego, albowiem wychodziła zeń moc i ", - "id": "Communio" - }, - { - "body": "Pokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie, Boże nasz, abyśmy za przyczyną świętych Męczenników Twoi", - "id": "Postcommunio" - } - ], - "2020-01-21": [ - { - "body": "*Ps 118:95-96*\nCzekali na mnie grzesznicy, aby mię zgubić, a ja pojęłam Twoje nakazy: widziałam, że ma granice wszelka d", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, który wybierasz co słabe u świata, aby zawstydzić wszystko, co uchodzi za mocne: spraw łaska", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", - "id": "Lectio" - }, - { - "body": "*Ps 44:3*\nWdzięk rozlał się na twoich wargach, przeto Bóg pobłogosławi cię na wieki.\n*Ps 44:5*\nW obronie wiary i sprawie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", - "id": "Offertorium" - }, - { - "body": "Panie, wejrzyj łaskawie na ofiary, które Ci składamy, i za wstawiennictwem św. Agnieszki, Dziewicy i Męczennicy Twojej, ", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje wraz z lampami. A o północy rozległo się wołanie: Oto ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tej, w której święt", - "id": "Postcommunio" - } - ], - "2020-01-22": [ - { - "body": "*Ps 78:11-12; 78:10*\nNiech jęk pojmanych dojdzie do Ciebie, Panie: naszym sąsiadom odpłać siedmiokroć w ich zanadrze, po", - "id": "Introitus" - }, - { - "body": "Przychyl się, Panie, do naszych kornych próśb, a że obciążeni grzechami uświadamiamy sobie naszą winę, niech nas wyzwoli", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 3:1-8*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom gł", - "id": "Lectio" - }, - { - "body": "*Wj 15:11*\nChwalebny jest Bóg w Swoich Świętych, przedziwny w majestacie, dokonuje cudów.\n*Wj 15:6*\n℣. Prawica Twoja, Pa", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:9-19*\n*Wszystkie prześladowania, jakich doznają męczennicy, stano", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nPrzedziwny jest Bóg w Swoich Świętych: Bóg Izraela, sam Swojemu ludowi daje potęgę i siłę: błogosławiony Bóg,", - "id": "Offertorium" - }, - { - "body": "Ofiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij je łaskawie ku chwale Twoich Świętych i spraw w Swoim", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył: jak złoto w piecu ich wypróbował, jak ofiarę", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, który przyjęliśmy za wstawiennictwem świętych Męczenników Twoich W", - "id": "Postcommunio" - } - ], - "2020-01-23": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, który powołałeś św. Rajmunda na wybitnego Szafarza sakramentu Pokuty i cudownie przeprowadziłeś go po falach morsk", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Emercjanny*\nProsimy Cię, Panie, aby święta Emerencjana, Dziewica i Męczennica Twoja, wybłagała nam prze", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Emercjanny*\nPanie, wejrzyj łaskawie na ofiary, które Ci składamy, i za wstawiennictwem św. Emerencjanny", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Emerencjanny*\nDarem Bożym szczodrze nasyceni, prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem ś", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-24": [ - { - "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", - "id": "Introitus" - }, - { - "body": "*Starożytny Rzym przyznawał wybitnym obywatelom przywilej skutecznego wpływania na wyroki sądowe: intercessio gloriosa. ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*1 Tm 6:11-16*\nNajmilszy: Ubiegaj się o sprawiedliwość, pobożnoś", - "id": "Lectio" - }, - { - "body": "*Ps 88:21-23*\n*W czasie konsekracji biskup otrzymał namaszczenie Krzyżmem świętym na znak umocnienia do walki w obronie ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:26-33*\nOnego czasu: Mówił Jezus do rzesz: «Jeśli kto przychodzi d", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Panie, przyjmij łaskawie przez zasługi świętego N., Męczennika i Biskupa ofiarę, którą Ci składamy, i spraw, aby się sta", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 88:36; 88:37-38*\nRaz przysiągłem na świętość moją: potomstwo jego trwać będzie na wieki i jego tron będzie przede mn", - "id": "Communio" - }, - { - "body": "Pokrzepieni uczestnictwem w świętej uczcie prosimy Cię, Panie, Boże nasz, abyśmy za przyczyną świętego N., Twego Męczenn", - "id": "Postcommunio" - } - ], - "2020-01-25": [ - { - "body": "*2 Tm 1:12*\nWiem, komu zawierzyłem, i pewien jestem, że mocen jest przechować skarb mój aż do onego dnia, Sędzia sprawie", - "id": "Introitus" - }, - { - "body": "Boże, któryś cały świat pouczył słowem głoszonym przez św. Pawła Apostoła, daj nam, prosimy Cię, abyśmy czcząc jego nawr", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Piotra*\nBoże, powierzając Swojemu Apostołowi świętemu Piotrowi klucze Królestwa Niebieskiego, udzieliłe", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 9:1-22*\nW one dni: Szaweł dysząc jeszcze groźbami i pragnieniem mordu przeciw uczni", - "id": "Lectio" - }, - { - "body": "*Gal 2:8; 2:9*\nTen sam, który w Piotrze był sprawcą apostolstwa żydów, sprawił i we mnie apostolstwo wśród pogan, i pozn", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.", - "id": "Offertorium" - }, - { - "body": "Dla próśb Twego Apostoła Pawła poświęć, Panie, dary ludu Twojego: miłe Ci są, boś je ustanowił, niech się staną milsze p", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Piotra*\nProsimy Cię, Panie, niech modlitwa św. Piotra Apostoła zaleca prośby i ofiary Kościoła Twojego,", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28; 19:29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i za mną poszli, stokroć więcej otrzymacie ", - "id": "Communio" - }, - { - "body": "Uświęceni zbawiennym Sakramentem, prosimy Cię, Panie, aby nie brakło nam wstawiennictwa tego, pod którego opiekę i rządy", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Piotra*\nZłożona ofiara niech nam będzie źródłem radości, o Panie, a jako sławimy przedziwne Twe dary w ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-26": [ - { - "body": "*Ps 96:7-8*\nPokłon oddajcie Bogu, wszyscy Aniołowie Jego; słyszy o tym i cieszy się Syjon, i radują się miasta Judy.\n*Ps", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, wejrzyj łaskawie na naszą ułomność i wyciągnij w naszej obronie prawicę Twego majestatu.\nPrz", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 12:16-21*\n*Św. Paweł podaje szczegółowe wskazania jak wykonywać", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nPoganie będą czcili Imię Twoje, Panie, i wszyscy królowie ziemi Twoją chwałę.\n℣. Bo Pan odbuduje Syjon i ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:1-13*\nOnego czasu: Gdy Jezus zstąpił z góry, szły za Nim rzesze w", - "id": "Evangelium" - }, - { - "body": "*Ps 117:16; 117:17*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Nie umrę, ale będę żył i głosił dzieła Pa", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Łk 4:22*\nDziwili się wszyscy słowom, które wychodziły z ust Bożych.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, racz nas przysposobić do przyjęcia owoców wzniosłych misteriów, w których pozwalasz nam uczestniczyć", - "id": "Postcommunio" - } - ], - "2020-01-27": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech łaska niebieska daje wzrost Twojemu Kościołowi, który raczyłeś oświecić nauką i chwalebnymi za", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\nNie znalazł się jemu podobny, który by ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Jana Złotoustego, Twego Biskupa i Doktora, która zaleci Tobi", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty Jan Złotousty, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiar", - "id": "Postcommunio" - } - ], - "2020-01-28": [ - { - "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", - "id": "Introitus" - }, - { - "body": "Boże, Tyś cudownie pouczył św. Piotra, by na wzór Twojej miłości obdarzył Twój Kościół nowym zgromadzeniem dla wykupu wi", - "id": "Oratio" - }, - { - "body": "*Drugie wspomnienie św. Agnieszki*\nBoże, który co roku sprawiasz nam radość uroczystością świętej Agnieszki, Dziewicy i ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych, składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości", - "id": "Secreta" - }, - { - "body": "*Drugie wspomnienie św. Agnieszki*\nNiechaj zstąpi, prosimy Cię, Panie, obfite błogosławieństwo Twoje na te dary ofiarne,", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie. Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - }, - { - "body": "*Drugie wspomnienie św. Agnieszki*\nPanie, przyjęliśmy Sakrament obchodząc doroczną uroczystość; spraw, prosimy, niech on", - "id": "Commemoratio Postcommunio" - } - ], - "2020-01-29": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, z Twojej woli święty Franciszek, wyznawca Twój i Biskup, dla zbawienia dusz stał się wszystkim dla wszystkich; spr", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", - "id": "Postcommunio" - } - ], - "2020-01-30": [ - { - "body": "*Ps 118:46-47*\nŚwiadczyłam o Twej prawdzie wobec królów, a nie wstydziłam się, i rozważałam Twoją naukę, bo bardzo ją po", - "id": "Introitus" - }, - { - "body": "Boże, który między innymi cudami Twojej potęgi obdarzyłeś zwycięstwem w męczeństwie także płeć słabszą, spraw łaskawie, ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", - "id": "Lectio" - }, - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość świętej N., Dziewicy i Męczennicy Twojej: ufamy, że jej wstawienn", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 118:78; 118:80*\nNiech zawstydzą się pyszni, bo niewinnie mnie dręczą, ja będę rozmyślać o Twych przykazaniach, o pra", - "id": "Communio" - }, - { - "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej N., Twojej Dziewicy i Męczennicy, niech spraw", - "id": "Postcommunio" - } - ], - "2020-01-31": [ - { - "body": "*3 Krl 4:29*\nBóg mu dał mądrość i roztropność bardzo wielką, i przestronność serca jak piaszczyste wybrzeże morskie.\n*Ps", - "id": "Introitus" - }, - { - "body": "Boże, Tyś św. Jana, Twego Wyznawcę, powołał na ojca i nauczyciela młodzieży, a z woli Twojej, przy pomocy Maryi Panny, z", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-9*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", - "id": "Lectio" - }, - { - "body": "*Ps 36:3-5*\nMiej ufność w Panu i czyń co dobre, byś był mieszkańcem ziemi i raczył się jej bogactwami.\n℣. Miej radość w ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-5*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", - "id": "Evangelium" - }, - { - "body": "*Ps 33:12*\nPójdźcie, synowie, słuchajcie mnie: nauczę was Pańskiej bojaźni.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę czystą zbawczej Hostii i spraw, abyśmy miłując Ciebie we wszystkim i ponad wszystko, mogli żyć k", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Rz 4:18*\nPrzeciw nadziei uwierzył on w nadzieję, aby stał się ojcem wielu narodów według tego, co było mu powiedziane.", - "id": "Communio" - }, - { - "body": "Nasyceni Sakramentem Ciała i Krwi Twojej, prosimy Cię, Panie, abyśmy za wstawiennictwem św. Jana, Wyznawcy, zawsze trwal", - "id": "Postcommunio" - } - ], - "2020-02-01": [ - { - "body": "*Gal 6:14*\n*«Wolę umrzeć w Chrystusie Jezusie aniżeli królować po krańce ziemi. Szukam Tego, który umarł za nas, pragnę ", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, wejrzyj na słabość naszą, a skoro nas obciąża brzemię własnej działalności, niech nas osłania dostojn", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:35-39*\n*Pisząc do Rzymian św. Ignacy używa podobnych zwrotów ", - "id": "Lectio" - }, - { - "body": "*W liście do Smyrneńczyków św. Ignacy uczy o roli biskupa: «Bądźcie posłuszni biskupowi jak Jezus Chrystus Ojcu. Niech n", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:24-26*\nOnego czasu: Rzekł Jezus uczniom swoim: «Zaprawdę, zaprawdę po", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", - "id": "Offertorium" - }, - { - "body": "Panie, przyjmij łaskawie przez zasługi św. Ignacego, Twego Męczennika i Biskupa, ofiarę, którą Ci składamy, i spraw, aby", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Słowa św. Ignacego w Liście do Rzymian:*\nJestem pszenicą Chrystusową: niech zmielą mię zęby dzikich zwierząt, bym stał ", - "id": "Communio" - }, - { - "body": "Pokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie Boże nasz, abyśmy za przyczyną św. Ignacego, Twego Męczen", - "id": "Postcommunio" - } - ], - "2020-02-02": [ - { - "body": "*Jeśli poświęcenie świec oraz procesja nie mogą zostać odprawione w uroczystej formie, ze względu na brak wyświęconych d", - "id": "De Benedictione Candelarum" - }, - { - "body": "*Następnie starszy kleryk podchodzi do ołtarza i podaje świece celebransowi, który nie przyklęka ani nie całuje ręki kle", - "id": "De Distributione Candelarum" - }, - { - "body": "*Najpierw celebrans nakłada kadzidło do trybularza, następnie diakon odwraca się w stronę ludu i mówi:*\n℣. Idźmy w pokoj", - "id": "De Processione" - }, - { - "body": "*Ps 47:10-11*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak Imię Twe, Boże, tak i chwała Twoja si", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, błagamy pokornie Twój majestat, spraw, abyśmy stanęli przed Tobą z oczyszczonymi sercami, ja", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Malachiasza.\n*Ml 3:1-4*\n*Przyjście Chrystusa do świątyni rozpoczyna dzieło oczyszczenia i uświ", - "id": "Lectio" - }, - { - "body": "*Ps 47:10-11; 47:9*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak Imię Twe, Boże, tak i chwała Tw", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:22-32*\nOnego czasu: Gdy się wypełniły dni oczyszczenia Maryi wedłu", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", - "id": "Offertorium" - }, - { - "body": "Wysłuchaj, Panie, próśb naszych i użycz Swej miłościwej pomocy, by godnymi stały się dary, które przed oblicze majestatu", - "id": "Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Łk 2:26*\nSymeon otrzymał zapowiedź od Ducha Świętego, że nie umrze, dopóki by pierwej nie oglądał Chrystusa Pańskiego.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się nam, ", - "id": "Postcommunio" - } - ], - "2020-02-03": [ - { - "body": "*Ps 96:7-8*\nPokłon oddajcie Bogu, wszyscy Aniołowie Jego; słyszy o tym i cieszy się Syjon, i radują się miasta Judy.\n*Ps", - "id": "Introitus" - }, - { - "body": "Boże, Ty wiesz, że z powodu ludzkiej ułomności nie możemy się ostać wśród tak wielkich niebezpieczeństw; daj nam moc dus", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Błażeja, Biskupa i Męczennika*\nBoże, co roku uweselasz nas uroczystością świętego Błażeja, Twojego Męcz", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:8-10*\n*Prawdziwą miłość bliźniego okazujemy zachowując przyk", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nPoganie będą czcili Imię Twoje, Panie, i wszyscy królowie ziemi Twoją chwałę.\n℣. Bo Pan odbuduje Syjon i ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:23-27*\nOnego czasu: Gdy Jezus wstąpił do łodzi, weszli za Nim ucz", - "id": "Evangelium" - }, - { - "body": "*Ps 117:16; 117:17*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Nie umrę, ale będę żył i głosił dzieła Pa", - "id": "Offertorium" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, aby ten dar złożony w ofierze nieustannie oczyszczał i zachowywał od wszelkiego z", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Błażeja, Biskupa i Męczennika*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego Błażeja, Twego M", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 4:22*\nDziwili się wszyscy słowom, które wychodziły z ust Bożych.", - "id": "Communio" - }, - { - "body": "Niech Twoje dary, o Boże, oderwą nas od rozkoszy ziemskich i nieustannie wzmacniają pokarmem niebieskim.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Błażeja, Biskupa i Męczennika*\nPanie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętego B", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-04": [ - { - "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", - "id": "Introitus" - }, - { - "body": "Boże, który wzbudzasz m Twoim Kościele wciąż nowe przykłady cnót, spraw, niech lud Twój tak wstępuje w ślady św. Andrzej", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", - "id": "Postcommunio" - } - ], - "2020-02-05": [ - { - "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci św. Agaty, Dziewicy i Męczennicy; z jej męczeństwa radują się ", - "id": "Introitus" - }, - { - "body": "Boże, który między innymi cudami Twojej potęgi obdarzyłeś zwycięstwem w męczeństwie także płeć słabszą, spraw łaskawie, ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 1:26-31*\n*Na pytanie pretora, czy nie wstydzi się być chrz", - "id": "Lectio" - }, - { - "body": "*Ps 45:6; 45:5*\nBóg ją wspomaga swoim wejrzeniem: Bóg jest w jej wnętrzu, będzie niewzruszona.\n℣. Prąd rzeki cieszy mias", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:3-12*\n*Powodem uwięzienia św. Agaty było stanowcze odrzucenie za", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą do Ciebie.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość św. Agaty, Dziewicy i Męczennicy Twojej: ufamy, że jej wstawienni", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Akta męczeństwa św. Agaty opowiadają, że w więzieniu ukazał się jej św. Piotr i uleczył cudownie jej rany.*\nTego wzywam", - "id": "Communio" - }, - { - "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem św. Agaty, Dziewicy i Męczennicy Twojej, niech sprawi", - "id": "Postcommunio" - } - ], - "2020-02-06": [ - { - "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", - "id": "Introitus" - }, - { - "body": "Boże, który ozdobiłeś św. Tytusa, Twego Wyznawcę i Biskupa, apostolskimi cnotami, spraw dla jego zasług i wstawiennictwa", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Doroty*\nProsimy Cię, Panie, aby święta N., Dziewica i Męczennica Twoja, wybłagała nam przebaczenie; ona", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Doroty*\nProsimy Cię, Panie, przyjmij łaskawie ofiarę, którą Ci składamy przez zasługi świętej Doroty, T", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Doroty*\nDarem Bożym szczodrze nasyceni, prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem świętej", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-07": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Romualda, Opata, abyśmy za jego przyczyną otrzymali t", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech święty Romuald, Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam ku zba", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Romualda, Opata, abyśmy naśladowali je", - "id": "Postcommunio" - } - ], - "2020-02-08": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, Tyś raczył za pośrednictwem świętego Jana cudownie ustanowić zakon Trójcy Przenajświętszej dla wykupu jeńców z nie", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - } - ], - "2020-02-09": [ - { - "body": "*Ps 17:5; 17:6; 17:7*\nOgarnęły mnie boleści śmiertelne, męki piekielne mnie otoczyły. W mym utrapieniu Pana wezwałem, i ", - "id": "Introitus" - }, - { - "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy ludu Twego i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miło", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 9:24-27; 10:1-5*\n*Aby osiągnąć zbawienie, nie wystarczy na", - "id": "Lectio" - }, - { - "body": "*Ps 9:10-11; 9:19-20*\nPan ucieczką dogodną w czasie utrapienia: zaufają Tobie znający Twe imię, bo nie opuszczasz, Panie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:1-16*\nOnego czasu rzekł Jezus uczniom swoim tę przypowieść: Podo", - "id": "Evangelium" - }, - { - "body": "*Ps 91:2*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 30:17-18*\nUkaż Twe pogodne oblicze słudze Twemu, wybaw mnie w swym miłosierdziu, Panie, niech się nie wstydzę, skoro", - "id": "Communio" - }, - { - "body": "Umocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je, nieustannie ich szukali, a szukając, bez końca je przy", - "id": "Postcommunio" - } - ], - "2020-02-10": [ - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Introitus" - }, - { - "body": "Boże, który dla ukazania drogi niewinności sprawiłeś, że dusza św. Dziewicy Twojej Scholastyki wstąpiła do nieba w posta", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", - "id": "Tractus" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - } - ], - "2020-02-11": [ - { - "body": "*Ap 21:2*\nUjrzałem święte miasto, Jeruzalem nowe, zstępujące z nieba od Boga, gotowe jak oblubienica strojna dla męża sw", - "id": "Introitus" - }, - { - "body": "Boże, któryś przez Niepokalane Poczęcie Najświętszej Dziewicy przygotował Synowi Swojemu godne mieszkanie, kornie Cię pr", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 11:19; 12:1; 12:10*\nOtwarła się świątynia Boża w niebiesiech i ", - "id": "Lectio" - }, - { - "body": "*Jdt 15:10*\n*Według słów św. Bernadety żaden wizerunek ziemski nie może oddać piękności Maryi.*\nTyś chwałą Jeruzalem, Ty", - "id": "Tractus" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-31*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28*\nZdrowaś Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami.", - "id": "Offertorium" - }, - { - "body": "Ofiara uwielbienia, którą Tobie, Panie, składamy przez zasługi chwalebnej i Niepokalanej Dziewicy, niech Ci będzie jako ", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*Ps 64:10*\n*W grocie Massabielskiej wytrysnęło źródło obdarzone cudowną mocą.*\nTyś ziemię nawiedził i nawodnił, obficie ", - "id": "Communio" - }, - { - "body": "Panie, niechże nas, których posiliłeś pokarmem niebieskim, dźwiga prawica Niepokalanej Rodzicielki Twojej, abyśmy przy J", - "id": "Postcommunio" - } - ], - "2020-02-12": [ - { - "body": "*Mdr 10:20-21*\nSprawiedliwi wysławiali Twoje święte imię, Panie, i zwycięską rękę Twoją jednomyślnie wychwalali: bo mądr", - "id": "Introitus" - }, - { - "body": "Panie Jezu Chryste, który dla odnawiania pamięci o boleściach Najświętszej Matki Twojej przez siedmiu świętych Ojców obd", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Syr 44:1-15*\nWysławiajmy mężów znakomitych i naszych ojców co do pochodzenia. Pan (w nich) ", - "id": "Lectio" - }, - { - "body": "*Iz 65:23*\nWybrani moi nie będą trudzić się na próżno ani ich potomstwo nie ulegnie zagładzie, bo są pokoleniem błogosła", - "id": "Tractus" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", - "id": "Evangelium" - }, - { - "body": "*Iz 56:7*\nPrzywiodę ich na świętą górę moją, i uweselę ich w moim domu modlitwy; ich całopalenia i ofiary będą mi przyje", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą Ci składamy i za wstawiennictwem Twoich świętych spraw, abyśmy służyli Tobie swobodnym um", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*J 15:16*\nJa was wybrałem ze świata, abyście poszli i owoc przynieśli, i żeby owoc wasz trwał.", - "id": "Communio" - }, - { - "body": "Gdyś nas, panie, zasilił niebieski Sakramentem, błagamy Cię, abyśmy naśladując przykład tych, których święto obchodzimy,", - "id": "Postcommunio" - } - ], - "2020-02-13": [ - { - "body": "*Ps 17:5; 17:6; 17:7*\nOgarnęły mnie boleści śmiertelne, męki piekielne mnie otoczyły. W mym utrapieniu Pana wezwałem, i ", - "id": "Introitus" - }, - { - "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy ludu Twego i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miło", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 9:24-27; 10:1-5*\n*Aby osiągnąć zbawienie, nie wystarczy na", - "id": "Lectio" - }, - { - "body": "*Ps 9:10-11; 9:19-20*\nPan ucieczką dogodną w czasie utrapienia: zaufają Tobie znający Twe imię, bo nie opuszczasz, Panie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:1-16*\nOnego czasu rzekł Jezus uczniom swoim tę przypowieść: Podo", - "id": "Evangelium" - }, - { - "body": "*Ps 91:2*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 30:17-18*\nUkaż Twe pogodne oblicze słudze Twemu, wybaw mnie w swym miłosierdziu, Panie, niech się nie wstydzę, skoro", - "id": "Communio" - }, - { - "body": "Umocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je, nieustannie ich szukali, a szukając, bez końca je przy", - "id": "Postcommunio" - } - ], - "2020-02-14": [ - { - "body": "*Ps 17:5; 17:6; 17:7*\nOgarnęły mnie boleści śmiertelne, męki piekielne mnie otoczyły. W mym utrapieniu Pana wezwałem, i ", - "id": "Introitus" - }, - { - "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy ludu Twego i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miło", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Walentego, Kapłana i Męczennika*\nSpraw, prosimy Cię, wszechmogący Boże, aby od wszelkich niebezpieczeńs", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 9:24-27; 10:1-5*\n*Aby osiągnąć zbawienie, nie wystarczy na", - "id": "Lectio" - }, - { - "body": "*Ps 9:10-11; 9:19-20*\nPan ucieczką dogodną w czasie utrapienia: zaufają Tobie znający Twe imię, bo nie opuszczasz, Panie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:1-16*\nOnego czasu rzekł Jezus uczniom swoim tę przypowieść: Podo", - "id": "Evangelium" - }, - { - "body": "*Ps 91:2*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Walentego, Kapłana i Męczennika*\nPrzyjmij, prosimy Cię, Panie, dary ze czcią złożone i spraw, niech prz", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 30:17-18*\nUkaż Twe pogodne oblicze słudze Twemu, wybaw mnie w swym miłosierdziu, Panie, niech się nie wstydzę, skoro", - "id": "Communio" - }, - { - "body": "Umocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je, nieustannie ich szukali, a szukając, bez końca je przy", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Walentego, Kapłana i Męczennika*\nPanie, niech niebieski sakrament odnowi nasze dusze i ciała, abyśmy za", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-15": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Śś. Faustyna i Jowity, Męczenników*\nBoże, Ty co roku uweselasz nas uroczystością świętych Męczenników Twoic", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Tractus" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "Szczęśliwa jesteś, święta Dziewico Maryjo, i wszelkiej chwały najgodniejsza, z Ciebie bowiem narodziło się Słońce sprawi", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Śś. Faustyna i Jowity, Męczenników*\nWysłuchaj, Panie, prośby nasze, które zanosimy czcząc pamięć Twych Świę", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Śś. Faustyna i Jowity, Męczenników*\nNasyceni zbawiennym Sakramentem prosimy Cię, Panie, aby wspierały nas m", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-16": [ - { - "body": "*Ps 43:23-26*\nOcknij się: dlaczego śpisz, Panie? Przebudź się! Nie odrzucaj na zawsze. Dlaczego Twe oblicze ukrywasz? Za", - "id": "Introitus" - }, - { - "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach; spraw miłościwie, aby opieka Nauczyciela Narodów broniła nas od", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 11:19-33; 12:1-9*\n*Broniąc się przeciw zarzutom św. Paweł ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nNiech poznają Ciebie poganie i wiedzą, Pan Twoje imię, żeś sam jeden wzniesiony nad całą ziemię.\n℣. O ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 8:4-15*\nOnego czasu: Gdy zgromadziła się rzesza wielka i z miast zdą", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", - "id": "Offertorium" - }, - { - "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", - "id": "Communio" - }, - { - "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Twoim Sakramentem, godnie Tobie służyli według ", - "id": "Postcommunio" - } - ], - "2020-02-17": [ - { - "body": "*Ps 43:23-26*\nOcknij się: dlaczego śpisz, Panie? Przebudź się! Nie odrzucaj na zawsze. Dlaczego Twe oblicze ukrywasz? Za", - "id": "Introitus" - }, - { - "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach; spraw miłościwie, aby opieka Nauczyciela Narodów broniła nas od", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 11:19-33; 12:1-9*\n*Broniąc się przeciw zarzutom św. Paweł ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nNiech poznają Ciebie poganie i wiedzą, Pan Twoje imię, żeś sam jeden wzniesiony nad całą ziemię.\n℣. O ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 8:4-15*\nOnego czasu: Gdy zgromadziła się rzesza wielka i z miast zdą", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", - "id": "Offertorium" - }, - { - "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", - "id": "Communio" - }, - { - "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Twoim Sakramentem, godnie Tobie służyli według ", - "id": "Postcommunio" - } - ], - "2020-02-18": [ - { - "body": "*Ps 43:23-26*\nOcknij się: dlaczego śpisz, Panie? Przebudź się! Nie odrzucaj na zawsze. Dlaczego Twe oblicze ukrywasz? Za", - "id": "Introitus" - }, - { - "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach; spraw miłościwie, aby opieka Nauczyciela Narodów broniła nas od", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Symeona, Biskupa i Męczennika*\nWszechmogący Boże, wejrzyj na słabość naszą, a skoro nas obciąża brzemię", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 11:19-33; 12:1-9*\n*Broniąc się przeciw zarzutom św. Paweł ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nNiech poznają Ciebie poganie i wiedzą, Pan Twoje imię, żeś sam jeden wzniesiony nad całą ziemię.\n℣. O ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 8:4-15*\nOnego czasu: Gdy zgromadziła się rzesza wielka i z miast zdą", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", - "id": "Offertorium" - }, - { - "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Symeona, Biskupa i Męczennika*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez ni", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", - "id": "Communio" - }, - { - "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Twoim Sakramentem, godnie Tobie służyli według ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Symeona, Biskupa i Męczennika*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoi", - "id": "Commemoratio Postcommunio" - } - ], - "2020-02-19": [ - { - "body": "*Ps 43:23-26*\nOcknij się: dlaczego śpisz, Panie? Przebudź się! Nie odrzucaj na zawsze. Dlaczego Twe oblicze ukrywasz? Za", - "id": "Introitus" - }, - { - "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach; spraw miłościwie, aby opieka Nauczyciela Narodów broniła nas od", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 11:19-33; 12:1-9*\n*Broniąc się przeciw zarzutom św. Paweł ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nNiech poznają Ciebie poganie i wiedzą, Pan Twoje imię, żeś sam jeden wzniesiony nad całą ziemię.\n℣. O ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 8:4-15*\nOnego czasu: Gdy zgromadziła się rzesza wielka i z miast zdą", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", - "id": "Offertorium" - }, - { - "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", - "id": "Communio" - }, - { - "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Twoim Sakramentem, godnie Tobie służyli według ", - "id": "Postcommunio" - } - ], - "2020-02-20": [ - { - "body": "*Ps 43:23-26*\nOcknij się: dlaczego śpisz, Panie? Przebudź się! Nie odrzucaj na zawsze. Dlaczego Twe oblicze ukrywasz? Za", - "id": "Introitus" - }, - { - "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach; spraw miłościwie, aby opieka Nauczyciela Narodów broniła nas od", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 11:19-33; 12:1-9*\n*Broniąc się przeciw zarzutom św. Paweł ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nNiech poznają Ciebie poganie i wiedzą, Pan Twoje imię, żeś sam jeden wzniesiony nad całą ziemię.\n℣. O ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 8:4-15*\nOnego czasu: Gdy zgromadziła się rzesza wielka i z miast zdą", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", - "id": "Offertorium" - }, - { - "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", - "id": "Communio" - }, - { - "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Twoim Sakramentem, godnie Tobie służyli według ", - "id": "Postcommunio" - } - ], - "2020-02-21": [ - { - "body": "*Ps 43:23-26*\nOcknij się: dlaczego śpisz, Panie? Przebudź się! Nie odrzucaj na zawsze. Dlaczego Twe oblicze ukrywasz? Za", - "id": "Introitus" - }, - { - "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach; spraw miłościwie, aby opieka Nauczyciela Narodów broniła nas od", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 11:19-33; 12:1-9*\n*Broniąc się przeciw zarzutom św. Paweł ", - "id": "Lectio" - }, - { - "body": "*Ps 82:19; 82:14*\nNiech poznają Ciebie poganie i wiedzą, Pan Twoje imię, żeś sam jeden wzniesiony nad całą ziemię.\n℣. O ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 8:4-15*\nOnego czasu: Gdy zgromadziła się rzesza wielka i z miast zdą", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", - "id": "Offertorium" - }, - { - "body": "Panie, niech ofiara Tobie złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", - "id": "Communio" - }, - { - "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Twoim Sakramentem, godnie Tobie służyli według ", - "id": "Postcommunio" - } - ], - "2020-02-22": [ - { - "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", - "id": "Introitus" - }, - { - "body": "Boże, powierzając Swojemu Apostołowi świętemu Piotrowi klucze Królestwa Niebieskiego, udzieliłeś mu arcykapłańskiej wład", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 1:1-7*\n*Pierwszy list św. Piotra to pierwsze ogniwo łańcucha encyklik pa", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", - "id": "Tractus" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\n*Ewangelia ze Mszy wspólnej nr 8 Si diligis*\nOnego czasu:", - "id": "Evangelium" - }, - { - "body": "*Mt 16:18-19*\nTy jesteś Opoką, a na tej Opoce zbuduje Kościół mój i bramy piekielne nie zwycięża go. I tobie dam klucze ", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech modlitwa świętego Piotra Apostoła poleca prośby i ofiary Kościoła Twojego, a co sprawujemy ku ", - "id": "Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", - "id": "Communio" - }, - { - "body": "Złożona ofiara niech nam będzie źródłem radości, o Panie; a jako sławimy przedziwne Twe dary w Apostole Twoim Piotrze, t", - "id": "Postcommunio" - } - ], - "2020-02-23": [ - { - "body": "*Ps 30:3-4*\nBądź mi, Boże, obrońcą, bądź zamkiem warownym, abyś mnie ocalił; boś Ty jest skałą mą i twierdzą, wywiedzies", - "id": "Introitus" - }, - { - "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy nasze, wyzwól nas z więzów grzechowych i zachowaj od wszelkiej przeciwn", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 13:1-13*\n*Hymn św. Pawła o miłości to jedna z najpiękniejs", - "id": "Lectio" - }, - { - "body": "*Ps 76:15; 76:16*\nTyś jest Bogiem, który cuda działasz; potęgę Swoją ludom objawiłeś.\n℣. Ramieniem Swoim zbawiłeś Twój l", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:31-43*\nOnego czasu: Jezus wziąwszy z sobą dwunastu, mówił do nich", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12-13*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich. Wargami moimi opowiadam wszystkie wyroki ust Twoich", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 77:29-30*\nJedli i nasycili się bardzo, i pożądanie ich Pan zaspokoił: nie zawiedli się w swych pragnieniach.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności.\nPrzez Pa", - "id": "Postcommunio" - } - ], - "2020-02-24": [ - { - "body": "*Ps 30:3-4*\nBądź mi, Boże, obrońcą, bądź zamkiem warownym, abyś mnie ocalił; boś Ty jest skałą mą i twierdzą, wywiedzies", - "id": "Introitus" - }, - { - "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, modlitwy nasze, wyzwól nas z więzów grzechowych i zachowaj od wszelkiej przeciwn", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 13:1-13*\n*Hymn św. Pawła o miłości to jedna z najpiękniejs", - "id": "Lectio" - }, - { - "body": "*Ps 76:15; 76:16*\nTyś jest Bogiem, który cuda działasz; potęgę Swoją ludom objawiłeś.\n℣. Ramieniem Swoim zbawiłeś Twój l", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:31-43*\nOnego czasu: Jezus wziąwszy z sobą dwunastu, mówił do nich", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12-13*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich. Wargami moimi opowiadam wszystkie wyroki ust Twoich", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 77:29-30*\nJedli i nasycili się bardzo, i pożądanie ich Pan zaspokoił: nie zawiedli się w swych pragnieniach.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności.\nPrzez Pa", - "id": "Postcommunio" - } - ], - "2020-02-25": [ - { - "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", - "id": "Introitus" - }, - { - "body": "Boże, który przyłączyłeś św. Macieja do grona Twoich Apostołów, spraw, prosimy, abyśmy za jego wstawiennictwem doznawali", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 1:15-26*\nW one dni powstał Piotr wpośród braci (a był poczet osób zebranych około s", - "id": "Lectio" - }, - { - "body": "*Ps 138:17-18*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n℣. ", - "id": "Tractus" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:25-30*\nOnego czasu: Odpowiadając Jezus rzekł: «Wysławiam Cię, Oj", - "id": "Evangelium" - }, - { - "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi, przez wszystkie pokolenia głosić będą Twe imię, o Panie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech ta modlitwa św. Apostoła Twojego Macieja towarzyszy darom, które składamy w ofierze Twojemu imieniu: dzięki", - "id": "Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28*\nWy, którzy za mną poszli, zasiądziecie na stolicach, sądząc dwanaście pokoleń Izraela.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, spraw, abyśmy dzięki przyjęciu świętego daru, za wstawiennictwem świętego Apostoła Twego", - "id": "Postcommunio" - } - ], - "2020-02-26": [ - { - "body": "*Antyfona*\n*Ps 68:17*\nWysłuchaj nas, Panie, gdyż łaskawe jest miłosierdzie Twoje, w wielkiej litości swojej wejrzyj na n", - "id": "Benedictio cinerum" - }, - { - "body": "*Mdr 11:24 11:25; 11:27*\nWszystkim okazujesz miłosierdzie, Panie, i żadnego ze swych stworzeń nie masz w nienawiści. Dar", - "id": "Introitus" - }, - { - "body": "Udziel, Panie, wiernym Twoim łaski, aby rozpoczęli ten czcigodny i uroczysty post z należną pobożnością i przebyli go sł", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Joela.\n*Jl 2:12-19*\n*Słowami proroka Joela Kościół wzywa nas do postu i wewnętrznego nawróceni", - "id": "Lectio" - }, - { - "body": "*Ps 56:2; 56:4*\nZmiłuj się nade mną, Boże, zmiłuj się nade mną, bo Tobie ufa dusza moja.\n℣. Sięgnął nieba i wybawił mnie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:16-21*\nOnego czasu: Mówił Jezus uczniom swoim: «Gdy pościcie, nie", - "id": "Evangelium" - }, - { - "body": "*Ps 29:2-3*\nSławić Cię będę, Panie, bo mnie wybawiłeś i nie sprawiłeś ze mnie uciechy mym wrogom. Panie, do Ciebie wołał", - "id": "Offertorium" - }, - { - "body": "Spraw, prosimy Cię, Panie, abyśmy należycie się usposobili do ofiarowania Tobie tych darów, przez które obchodzimy począ", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 1:2,3*\nKto rozważa Prawo Pańskie dniem i nocą, ten wyda owoc w swym czasie.", - "id": "Communio" - }, - { - "body": "Niech nas wspomaga, Panie, przyjęty Sakrament, aby nasze posty były miłe Tobie, a nam przyniosły wyleczenie.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\n*Diakon, jeżeli służy do Mszy, zwrócony w stronę ludu, ze złączonymi rękoma mówi. W przeciwnym razie mówi C", - "id": "Super populum" - } - ], - "2020-02-27": [ - { - "body": "*Ps 54:17-23*\nKiedy wołałem do Pana, wysłuchał głosu mego przeciw tym, co na mnie nastają; i poniżył ich Ten, który król", - "id": "Introitus" - }, - { - "body": "Boże, którego obraża występek, a przejednywa pokuta, wejrzyj miłościwie na błagania ludu Twojego i odwróć od nas chłostę", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 38:1-6*\n*Gdy król Ezechiasz śmiertelnie zachorował, zwrócił się do Boga z gorącą", - "id": "Lectio" - }, - { - "body": "*Ps 54:23, 17, 18, 19*\nZłóż troskę swoją na Pana, On sam cię podtrzyma.\n℣. Kiedy wołałem do Pana, wysłuchał głosu mego p", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 8:5-13*\nOnego czasu, gdy Jezus wszedł do Kafarnaum, przystąpił do n", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże, mój, Tobie ufam, niech nie doznam wstydu; niech się nie śmieją ze ", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nPrzyjmiesz ofiary prawe, dary i całopalenia na ołtarzu Twoim, Panie.", - "id": "Communio" - }, - { - "body": "Po przyjęciu błogosławionego daru niebieskiego, pokornie Cię prosimy, wszechmogący Boże, aby ten dar stał się źródłem ła", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPrzepuść, Panie, przepuść ludowi Twojemu, aby po odcierpieniu słusznej ", - "id": "Super populum" - } - ], - "2020-02-28": [ - { - "body": "*Ps 29:11*\nPan mnie wysłuchał i zmiłował się nade mną; Pan stał się moim wspomożycielem.\n*Ps 29:2*\nSławić Cię będę, Pani", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, wspieraj łaskawie rozpoczęte posty, abyśmy szczerze przestrzegali w duszy wyrzeczenia, które cieleśn", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Gabriela od Matki Bożej Bolesnej*\nBoże, Tyś św. Gabriela nauczył wytrwale rozważać boleści Najsłodszej ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 58:1-9*\nTo mówi Pan: Wołaj, nie ustawaj, jak trąba podnieś głos twój, a opowiada", - "id": "Lectio" - }, - { - "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję; bym w domu Pańskim przebywał po wszystkie dni mego życia.\n℣. Abym zażywał", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:43-48; 6:1-4*\nOnego czasu rzekł Jezus uczniom swoim: «Słyszeliści", - "id": "Evangelium" - }, - { - "body": "*Ps 118:154; 118:125*\nPanie, obdarz mnie życiem według Twojej obietnicy, abym poznał Twe ustawy.", - "id": "Offertorium" - }, - { - "body": "Spraw, prosimy Cię, Panie, aby ofiara czterdziestodniowego postu, którą składamy, uczyniła nasze dusze miłymi Tobie, a n", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Gabriela od Matki Bożej Bolesnej*\nSkładamy Ci, Panie, ofiarę zbawienia, czcząc pamięć św. Gabriela. Spr", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 2:11-12*\nSłużcie Panu w bojaźni, sławcie Go z lękiem, nabierzcie karności, byście nie zeszli z drogi prawej.", - "id": "Communio" - }, - { - "body": "Tchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zjednocz tych, których posiliłeś jednym chlebem niebiesk", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Gabriela od Matki Bożej Bolesnej*\nPanie, składamy Ci dzięki za dary udzielone nam w uroczystość święteg", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nZachowaj, Panie, lud Twój i oczyść go łaskawie od wszystkich grzechów, ", - "id": "Super populum" - } - ], - "2020-02-29": [ - { - "body": "*Ps 29:11*\nPan mnie wysłuchał i zmiłował się nade mną; Pan stał się moim wspomożycielem.\n*Ps 29:2*\nSławić Cię będę, Pani", - "id": "Introitus" - }, - { - "body": "Przychyl się, Panie, ku prośbom naszym i spraw, abyśmy w posłusznym oddaniu się Tobie obchodzili ten uroczysty post, ust", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 58:9-14*\nTo mówi Pan: Jeśli usuniesz spośród siebie łańcuch, a przestaniesz wyci", - "id": "Lectio" - }, - { - "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję: bym w domu Pańskim przebywał po wszystkie dni mego życia.\n℣. Abym zażywał", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 6:47-56*\nOnego czasu, gdy nadszedł wieczór, łódź była na pełnym morzu,", - "id": "Evangelium" - }, - { - "body": "*Ps 118:154; 118:125*\nPanie, obdarz mnie życiem według Twojej obietnicy, abym poznał Twe ustawy.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, tę ofiarę, którą uznałeś za godną, aby Cię przebłagać, i spraw, abyśmy oczyszczeni jej mocą, mogli Ci z", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 2:11-12*\nSłużcie Panu w bojaźni, sławcie Go z lękiem, nabierzcie karności, byście nie zeszli z drogi prawej.", - "id": "Communio" - }, - { - "body": "Pokrzepieni życiodajnym darem z nieba, prosimy Cię, Panie, aby to, co w obecnym życiu jest dla nas tajemnicą, stało się ", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nUmocnij, Panie, Twoich wiernych Swoimi darami, aby przyjmując je nieust", - "id": "Super populum" - } - ], - "2020-03-01": [ - { - "body": "*Ps 90:15; 90:16*\nBędzie mnie wzywał, a Ja go wysłucham. Wyzwolę go i obdarzę sławą, nasycę go długimi dniami.\n*Ps 90:1*", - "id": "Introitus" - }, - { - "body": "Boże, który co roku oczyszczasz swój Kościół przez czterdziestodniowy post, spraw, aby rodzina Twoja wykorzystała przez ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 6:1-10*\nBracia: Napominamy was, abyście nadaremno łaski Bo", - "id": "Lectio" - }, - { - "body": "*Ps 90,11-12*\nSwoim Aniołom Bóg dał rozkaz o tobie, aby cię strzegli na wszystkich twych drogach.\n℣. Na rękach swoich bę", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 4:1-11*\n*«Wypadało, aby Chrystus zatriumfował nad naszymi pokusami,", - "id": "Evangelium" - }, - { - "body": "*Ps 90:4-5*\nPiórami swymi Pan cię okryje i pod skrzydła Jego się schronisz, wierność Jego za tarczę ci stanie.", - "id": "Offertorium" - }, - { - "body": "Składamy Ci, Panie, uroczystą ofiarę na rozpoczęcie czterdziestodniowego postu i błagamy, abyśmy ujmując pożywienia ciał", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 90:4-5*\nPiórami swymi Pan cię okryje i pod skrzydła Jego się schronisz, wierność Jego za tarczę ci stanie.", - "id": "Communio" - }, - { - "body": "Niech nas odrodzi, o Panie, święta uczta, na której pożywamy Twój Sakrament, i po oczyszczeniu ze starej przewiny, niech", - "id": "Postcommunio" - } - ], - "2020-03-02": [ - { - "body": "*Ps 122:2*\nJak oczy sług zwracają się ku rękom ich panów, tak oczy nasze ku Panu, Bogu naszemu, aż się zmiłuje nad nami.", - "id": "Introitus" - }, - { - "body": "Nawróć nas, Boże, Zbawicielu nasz, i oświeć nasze umysły niebieską nauką, aby post czterdziestodniowy przyniósł nam poży", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 34:11-16*\nTo mówi Pan Bóg: Oto ja sam będę szukał owiec moich i nawiedzę je. Ja", - "id": "Lectio" - }, - { - "body": "*Ps 88:10; 88:9*\nSpojrzyj, obrońco nasz, Boże, i wejrzyj na sługi Swoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:31-46*\nOnego czasu rzekł Jezus uczniom swoim: Gdy przyjdzie Syn ", - "id": "Evangelium" - }, - { - "body": "*Ps 118:18; 118:26; 118:73*\nPodniosę oczy moje i będę rozważał, Panie, dziwy Twoje. Naucz mnie Twego prawa, daj mi rozum", - "id": "Offertorium" - }, - { - "body": "Uświęć, Panie, złożone Ci dary i oczyść nas ze zmazy naszych grzechów.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Mt 25:40; 25:34*\nZaprawdę powiadam wam, coście uczynili jednemu z tych moich braci najmniejszych, mnieście uczynili. Pó", - "id": "Communio" - }, - { - "body": "Nasyceni zbawiennym darem, pokornie prosimy Cię, Panie, abyśmy ciesząc się jego pożywaniem zostali odnowieni jego mocą.\n", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nRozwiąż, prosimy Cię, Panie, więzy naszych grzechów i odwróć łaskawie k", - "id": "Super populum" - } - ], - "2020-03-03": [ - { - "body": "*Ps 89:1; 89:2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie. Ty jesteś od wieków i na wieki.\n*Ps 89:2*\nZanim ", - "id": "Introitus" - }, - { - "body": "Wejrzyj, Panie, na rodzinę Twoją i spraw, aby dusza nasza poprawiona przez umartwienie ciała, jaśniała w Twoich oczach p", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 55:6-11*\nW one dni rzekł Izajasz prorok mówiąc: Szukajcie Pana, póki może być zn", - "id": "Lectio" - }, - { - "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna.", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 21:10-17*\nOnego czasu: Gdy Jezus wszedł do Jerozolimy, poruszyło si", - "id": "Evangelium" - }, - { - "body": "*Ps 30:15-16*\nTobie ufam, o Panie; mówię: Ty jesteś Bogiem moim, w Twoim ręku losy moje.", - "id": "Offertorium" - }, - { - "body": "Daj się przebłagać, Panie, złożonymi darami i broń nas od wszelkich niebezpieczeństw.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 4:2*\nKiedy Cię wezwę, wysłuchaj mnie, Boże, co sprawiedliwość mi wymierzasz; Tyś w utrapieniu mnie podniósł; zmiłuj ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, abyśmy osiągnęli zbawienie, którego zadatek otrzymaliśmy w tych tajemnicach.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nNiechaj nasze modlitwy wzniosą się do Ciebie, Panie, Ty zaś oddal od sw", - "id": "Super populum" - } - ], - "2020-03-04": [ - { - "body": "*Ps 24:6; 24:3; 24:22*\nWspomnij na zmiłowania Twe, Panie, na miłosierdzie, które trwa od wieków, niech nie panują nad na", - "id": "Introitus" - }, - { - "body": "Wysłuchaj łaskawie, prosimy Cię, Panie, nasze modlitwy i przeciw wszystkiemu, co jest nam wrogie, wyciągnij prawicę Tweg", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Wyjścia.\n*Wj 24:12-18*\nW one dni rzekł Pan do Mojżesza: «Wstąp do mnie na górę i bądź tam: dam ci tabl", - "id": "LectioL1" - }, - { - "body": "*Ps 24:17-18*\nUlżyj uciskom serca mojego, wyrwij mnie z moich udręczeń, Panie.\n℣. Wejrzyj na nędzę moją i na mój trud i ", - "id": "GradualeL1" - }, - { - "body": "Wejrzyj łaskawie, prosimy, Panie, na oddanie Twojego ludu, aby umartwiając ciało postem, wzmocnił ducha owocem dobrych u", - "id": "OratioL1" - }, - { - "body": "*Wspomnienie Św. Kazimierza, Wyznawcy*\nBoże, który umocniłeś świętego Kazimierza cnotą stałości wśród rozkoszy dworu kró", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Królewskiej.\n*3 Krl 19:3-8*\nW one dni: Przybył Eliasz do judzkiego Bersabee i zostawił tam sługę swego", - "id": "Lectio" - }, - { - "body": "*Ps 24:17; 24:18; 24:1-4*\nWyrwij mnie z moich udręczeń, Panie, wejrzyj na nędzę moją i na mój trud i odpuść wszystkie me", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 12:38-50*\nOnego czasu: Odpowiedzieli Jezusowi niektórzy z uczonych ", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47; 118:48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnę do przykazań Twoich, które umił", - "id": "Offertorium" - }, - { - "body": "Składamy Ci, Panie, ofiary przebłagalne, abyś miłosiernie odpuścił nasze grzechy i sam pokierował chwiejnymi sercami.\nPr", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Kazimierza, Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wyb", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 5:2-4*\nZważ na moje wołanie, zwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", - "id": "Communio" - }, - { - "body": "Panie, niech przyjęcie Twego Sakramentu oczyści nas z ukrytych grzechów i wybawi od zasadzek nieprzyjacielskich.\nPrzez P", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Kazimierza, Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\n℣. Oświeć, Panie, umysły nasze blaskiem Twej światłości, abyśmy mogli w", - "id": "Super populum" - } - ], - "2020-03-05": [ - { - "body": "*Ps 95:6*\nChwałą i pięknem promienieje Jego oblicze, moc i wspaniałość w Jego świątyni.\n*Ps 95:1*\nŚpiewajcie Panu pieśń ", - "id": "Introitus" - }, - { - "body": "Wejrzyj łaskawie, prosimy, Panie, na oddanie Twojego ludu, aby umartwiając ciało postem, wzmocnił ducha owocem dobrych u", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 18:1-9*\nW one dni stało się słowo Pańskie do mnie mówiąc: Co to jest, że między", - "id": "Lectio" - }, - { - "body": "*Ps 16:8; 16:2*\nStrzeż mnie, o Panie, jak źrenicy oka, w cieniu Twych skrzydeł mnie ukryj.\n℣. Sprzed Twego oblicza niech", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 15:21-28*\n*«Byłbym pozbawiony nadziei, gdybym nie wiedział o Twym m", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nAnioł Pański zakłada obóz warowny wokół tych, którzy się Go boją i On ich wyzwala. Skosztujcie i zobaczcie, ", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech te ofiary, składane wśród uzdrawiającego postu, skutecznie przyczynią się do naszego zbawienia", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*J 6:52*\nChleb, który ja dam, jest ciało moje za życie świata.", - "id": "Communio" - }, - { - "body": "Racz, Panie, obfitością Twoich darów dźwigać nas w życiu doczesnym i odrodzić na życie wieczne.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj, Panie, ludowi chrześcijańskiemu zrozumienie tego, co wyznaje, i um", - "id": "Super populum" - } - ], - "2020-03-06": [ - { - "body": "*Ps 24:17; 24:18*\nWyrwij mnie z moich udręczeń, Panie, wejrzyj na nędzę moją i na mój trud i odpuść wszystkie me występk", - "id": "Introitus" - }, - { - "body": "Bądź miłościw, Panie, ludowi Twojemu, który czynisz sobie oddanym, i w miłosierdziu swoim pokrzep go łaskawą pomocą.\nPrz", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Śś. Perpetui i Felicyty, Męczennic*\nProsimy Cię, Panie Boże nasz, daj nam zawsze z nabożeństwem czcić trium", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 18:20-28*\nTo mówi Pan Bóg: Człowiek, który zgrzeszy, sam śmierć poniesie: syn n", - "id": "Lectio" - }, - { - "body": "*Ps 85:2; 85:6*\nRatuj, mój Boże, sługę swego, który Ci zaufał.\n℣. Usłysz, Panie, modlitwę moją.\n\n*Ps 102:10*\nPanie, nie ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 5:1-15*\n*Paralityk oczekujący uzdrowienia od 38 lat to obraz nałogowego ", - "id": "Evangelium" - }, - { - "body": "*Ps 102:2; 102:5*\nBłogosław, duszo moja, Pana i nie zapominaj wszystkich dobrodziejstw Jego, a młodość twoja odnowi się ", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij ofiary złożone przy naszej posłudze i uświęć dary, które od Ciebie pochodzą.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Śś. Perpetui i Felicyty, Męczennic*\nWejrzyj, prosimy Cię, Panie, na dary złożone na Twoim ołtarzu w uroczys", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 6:11*\nNiech się zawstydzą i zatrwożą wszyscy wrogowie moi, niech zawstydzą się i odstąpią co prędzej.", - "id": "Communio" - }, - { - "body": "Panie, niech działanie Twego Sakramentu oczyści nas ze złych skłonności i spełni nasze godziwe pragnienia.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Śś. Perpetui i Felicyty, Męczennic*\nNapełnieni duchowymi pragnieniami i radością, prosimy Cię, Panie, spraw", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWysłuchaj nas, miłosierny Boże, i ukaż naszym duszom światło Twojej łas", - "id": "Super populum" - } - ], - "2020-03-07": [ - { - "body": "*Ps 87:3*\nNiech dojdzie do Ciebie moja modlitwa, nakłoń ucha Swego na prośbę moją, Panie.\n*Ps 87:2*\nPanie Boże, Zbawicie", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, wejrzyj miłościwie na Twój lud i odwróć odeń chłostę Twego zagniewania.\nPrzez Pana…", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Powtórzonego Prawa.\n*Pp 26:12-19*\nW one dni mówił Mojżesz do ludu: Gdy dopełnisz dziesięciny z wszystk", - "id": "LectioL1" - }, - { - "body": "*Ps 78:9; 78:10*\nO Panie, przebacz nam grzechy, aby poganie z nas nie drwili: «Gdzież jest ich Bóg?»\n℣. Wspomóż nas, Boż", - "id": "GradualeL1" - }, - { - "body": "Boże, obrońco nasz, wejrzyj na nas przygniecionych ciężarem własnych grzechów, abyśmy doznawszy Twego miłosierdzia służy", - "id": "OratioL1" - }, - { - "body": "Czytanie z Księgi Powtórzonego Prawa.\n*Pp 11:22-25*\n*Życie katolików zgodne z prawem Bożym zapewnia Kościołowi moc promi", - "id": "LectioL2" - }, - { - "body": "*Ps 83:10; 83:9*\nSpojrzyj, obrońco nasz, Boże, i wejrzyj na sługi Swoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług ", - "id": "GradualeL2" - }, - { - "body": "Przychyl się, Panie, ku prośbom naszym, abyśmy za łaską Twoją byli pokorni w powodzeniu i bezpieczni wśród przeciwności.", - "id": "OratioL2" - }, - { - "body": "Czytanie z Księgi Machabejskiej.\n*2 Mch 1:23-26; 1:27*\n*W Kościele, podobnie jak w Starym Testamencie, składanie ofiar i", - "id": "LectioL3" - }, - { - "body": "*Ps 89:13; 89:1*\nZwróć się ku nam, Panie, na chwilę i daj się ubłagać sługom Swoim.\n℣. Panie, Tyś był ucieczką naszą z p", - "id": "GradualeL3" - }, - { - "body": "Prosimy Cię, Panie, wysłuchaj łaskawie modlitwy Twego ludu i chociaż słusznie cierpimy za nasze grzechy, wybaw nas miłoś", - "id": "OratioL3" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 36:1-10*\n*Lud Boży, świadomy, że jego grzechy są powodem trudności w spełnieniu Bożeg", - "id": "LectioL4" - }, - { - "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna.", - "id": "GradualeL4" - }, - { - "body": "Prosimy Cię, Panie, uprzedzaj czyny nasze Twoim natchnieniem i pomocą wspieraj, aby każda nasza modlitwa i praca zawsze ", - "id": "OratioL4" - }, - { - "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:47-51*\n*Poważną przeszkodą do zbawienia są nasze namiętności, które wykorzystuj", - "id": "LectioL5" - }, - { - "body": "Boże, któryś złagodził płomień ognia dla trzech młodzieńców, spraw łaskawie, aby nas, sług Twoich, nie pożarł płomień na", - "id": "OratioL5" - }, - { - "body": "*Wspomnienie Św. Tomasza z Akwinu, Wyznawcy i Doktora Kościoła*\nBoże, Ty oświecasz Swój Kościół przedziwną nauką św. Tom", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 5:14-23*\n*W oczekiwaniu na przyjście Chrystusa chrześci", - "id": "Lectio" - }, - { - "body": "*Ps 116:1-2*\nChwalcie Pana, wszystkie narody, wysławiajcie Go, wszystkie ludy.\n℣. Bo miłosierdzie Jego, nad nami utwierd", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 17:1-9*\n*Ewangelia jak w następną niedzielę.*\nOnego czasu: Wziął Je", - "id": "Evangelium" - }, - { - "body": "*Ps 87:2-3*\nPanie Boże, Zbawicielu mój, podczas dnia wołam i w nocy żalę się przed Tobą, niech moja modlitwa dojdzie do ", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, uświęć przez tę ofiarę nasze posty, aby w naszym wnętrzu dokonało się to, co wyrażają nasze zewnętrz", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Tomasza z Akwinu, Wyznawcy i Doktora Kościoła*\nPanie, niech nam nie zabraknie serdecznej modlitwy święt", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 7:2*\nPanie, Boże mój, w Tobie pokładam nadzieję, wybaw mnie od wszystkich wrogów moich i ratuj mnie.", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, niech Twoje uświęcające tajemnice uleczą nasze wady i staną się dla nas rękojmią życia wiecznego.\nPrz", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Tomasza z Akwinu, Wyznawcy i Doktora Kościoła*\nProsimy Cię, Panie, niech święty Tomasz, Twój Biskup i z", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPanie, niech upragnione błogosławieństwo umocni Twoich wiernych, aby ni", - "id": "Super populum" - } - ], - "2020-03-08": [ - { - "body": "*Ps 24:6; 24:3; 24:22*\nWspomnij na zmiłowania Twe, Panie, na miłosierdzie Twoje, które trwa od wieków, niech nie panują ", - "id": "Introitus" - }, - { - "body": "Boże, Ty widzisz, że jesteśmy zupełnie pozbawieni sił. Strzeż naszej duszy i ciała, aby ciało nasze było wolne od wszelk", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 4:1-7*\n*«Wolą Bożą jest nasze uświęcenie». Bóg powołał ", - "id": "Lectio" - }, - { - "body": "*Ps 24:17-18*\nUlżyj uciskom serca mojego, wyrwij mnie z moich udręczeń, Panie.\n℣. Wejrzyj na nędzę moją i na mój trud, i", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 17:1-9*\nOnego czasu: Wziął Jezus Piotra i Jakuba, i Jana brata jego", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47; 118:48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnę do przykazań Twoich, które umił", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 5:2-4*\nZważ na moje wołanie, zwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", - "id": "Communio" - }, - { - "body": "Pokornie prosimy Cię, wszechmogący Boże, spraw, aby ci, których posilasz Swoim sakramentem, godnie Tobie służyli życiem ", - "id": "Postcommunio" - } - ], - "2020-03-09": [ - { - "body": "*Ps 25:11-12*\nWyzwól mię, Panie, i zmiłuj się nade mną, na drodze równej stoi stopa moja; na zgromadzeniach będę błogosł", - "id": "Introitus" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, niech rodzina Twoja, która dla umartwiania ciała powstrzymuje się od pokarmów, za", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Franciszki Rzymianki, Wdowy*\nBoże, Ty między innymi darami Swej łaski zaszczyciłeś służebnicę Twoją świ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 9:15-19*\nW one dni modlił się Daniel do Pana, mówiąc: «Panie Boże nasz, który wyw", - "id": "Lectio" - }, - { - "body": "*Ps 69:6; 69:3*\nBądź wspomożycielem i wybawcą moim, nie zwlekaj, o Panie.\n℣. Niech się zawstydzą, okryją rumieńcem, któr", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:21-29*\nOnego czasu mówił Jezus do rzesz żydowskich: «Ja odchodzę, wy z", - "id": "Evangelium" - }, - { - "body": "*Ps 15:7; 15:8*\nBłogosławię Panu, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy,", - "id": "Offertorium" - }, - { - "body": "Panie, niech ta ofiara przebłagalna i pochwalna uczyni nas godnymi Twojej opieki.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Franciszki Rzymianki, Wdowy*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świę", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 8:2*\nO Panie, Panie nasz, jak przedziwne Twe imię po wszystkiej ziemi.", - "id": "Communio" - }, - { - "body": "Panie, niech ta komunia oczyści nas z grzechów i udzieli nam niebieskiej pomocy.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Franciszki Rzymianki, Wdowy*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za ws", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPrzychyl się ku prośbom naszym, wszechmogący Boże, a skoro pozwalasz na", - "id": "Super populum" - } - ], - "2020-03-10": [ - { - "body": "*Ps 26:8; 26:9*\nDo Ciebie mówi serce moje, oblicze moje Cię szuka, szukam, o Panie, Twojego oblicza; oblicza Twego nie k", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, wspomagaj nas miłościwie w zachowaniu świętej wstrzemięźliwości, abyśmy poznawszy za Twoją sprawą, c", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Śś. Czterdziestu Męczenników*\nSpraw, wszechmogący Boże, abyśmy podziwiając męstwo sławnych Męczenników w wy", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Królewskiej.\n*1 Krl 17:8-16*\nW one dni: Stało się słowo Pańskie do Eliasza Tesbitczyka mówiąc: «Wstań ", - "id": "Lectio" - }, - { - "body": "*Ps 54:23; 54:17; 54:18; 54:19*\nZłóż troskę swoją na Pana, On sam cię podtrzyma.\n℣. Kiedy wołałem do Pana, wysłuchał gło", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 23:1-12*\nOnego czasu rzekł Jezus do rzesz i do uczniów swoich, mówi", - "id": "Evangelium" - }, - { - "body": "*Ps 50:3*\nZmiłuj się nade mną, Panie, w wielkim miłosierdziu Twoim; zgładź, Panie, nieprawość moją.", - "id": "Offertorium" - }, - { - "body": "Panie, dokonaj w nas łaskawie przez te tajemnice dzieła uświęcenia: oczyść nas z błędów ziemskich i doprowadź do nagrody", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Śś. Czterdziestu Męczenników*\nWejrzyj, Panie, na modły i ofiary Swoich wiernych: niech przy uroczystości Tw", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 9:2-3*\nOpowiem wszystkie cudowne dzieła Twoje, będę się cieszyć i radować Tobą, śpiewać imieniu Twemu, o Najwyższy.", - "id": "Communio" - }, - { - "body": "Spraw, prosimy Cię, Panie, abyśmy przez wierne posłuszeństwo Twoim przykazaniom stali się godnymi świętych darów.\nPrzez ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Śś. Czterdziestu Męczenników*\nPrzejednany wstawiennictwem Twoich Świętych, daj, prosimy Cię, Panie, abyśmy ", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj się przejednać, Panie, naszymi modłami i ulecz choroby dusz naszych", - "id": "Super populum" - } - ], - "2020-03-11": [ - { - "body": "*Ps 37:22-23*\nNie opuszczaj mnie, Panie, Boże mój, nie odstępuj ode mnie, spiesz mi na pomoc, Panie, zbawienie moje.\n*Ps", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, wejrzyj łaskawie na Twój lud i spraw, aby ci, którym nakazałeś wstrzemięźliwość od pokarmów mięsnych", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Estery.\n*Est 13:8-11; 13:15-17*\nW one dni: Mardocheusz modlił się do Pana pamiętając o wszystkich spra", - "id": "Lectio" - }, - { - "body": "*Ps 27:9; 27:1*\nOcal lud Twój, o Panie, i błogosław Twojemu dziedzictwu.\n℣. Do Ciebie, Panie, wołam, Boże mój, nie milcz", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:17-28*\nOnego czasu: Jezus wstępując do Jeruzalem wziął dwunastu ", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże mój, Tobie ja ufam: niech nie doznam wstydu, niech się nie śmieją z", - "id": "Offertorium" - }, - { - "body": "*Msza święta jest wymianą między niebem a ziemią, spotkaniem Kościoła z Bogiem, który przyjmuje ofiarę i udziela łaski.*", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 10:8*\nSprawiedliwy jest Pan i sprawiedliwość miłuje, uczciwi zobaczą twarz Jego.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, aby przez przyjęcie Sakramentu wzrastała w nas łaska wiecznego Odkupienia.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBoże, odnowicielu i miłośniku niewinności, kieruj ku sobie serca sług T", - "id": "Super populum" - } - ], - "2020-03-12": [ - { - "body": "*Ps 69:2; 69:3*\nBoże, wejrzyj ku wspomożeniu memu, Panie, pośpiesz ku ratunkowi memu. Niech się zawstydzą i okryją rumie", - "id": "Introitus" - }, - { - "body": "Udziel nam, prosimy Cię, Panie, pomocy łaski Twojej, abyśmy gorliwie trwając w poście i modlitwie, zostali wybawieni od ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Grzegorza Wielkiego, Papieża, Wyznawcy i Doktora Kościoła*\nBoże, który udzieliłeś nagrody wiecznej szcz", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 17:5-10*\nTo mówi Pan Bóg: Przeklęty człowiek, który ufa w człowieku i czyni c", - "id": "Lectio" - }, - { - "body": "*Ps 78:9; 78:10*\nPrzebacz nam, o Panie, grzechy, aby nie drwili z nas poganie: «Gdzie jest ich Bóg»?\n℣. Wspomóż nas, Boż", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 16:19-31*\nOnego czasu rzekł Jezus do faryzeuszów: Był człowiek pewie", - "id": "Evangelium" - }, - { - "body": "*Wj 32:11; 32:13; 32:14*\nMojżesz modlił się do Pana, Boga swego, mówiąc: Czemuż, Panie, gniewasz się na lud Swój? Niech ", - "id": "Offertorium" - }, - { - "body": "Panie, niechaj uświęcą nas posty, które składamy Ci wraz z tą ofiarą na chwałę Twojego imienia, aby w naszym wnętrzu dok", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Grzegorza Wielkiego, Papieża, Wyznawcy i Doktora Kościoła*\nSpraw, prosimy Cię, Panie, aby za wstawienni", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*J 6:57*\nKto pożywa Ciało moje i pije Krew moją, we mnie mieszka, a ja w nim, mówi Pan.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech nas nie opuszcza Twoja łaska, lecz niech nas utwierdza w Twojej świętej służbie i zapewnia nam", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Grzegorza Wielkiego, Papieża, Wyznawcy i Doktora Kościoła*\nBoże, któryś sprawił, że święty Papież Grzeg", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWspieraj, Panie, sługi Swoje i proszącym okazuj nieustannie Twoją dobro", - "id": "Super populum" - } - ], - "2020-03-13": [ - { - "body": "*Ps 16:15*\nJa zaś w sprawiedliwości ukażę się przed Twoim obliczem, nasycę się, gdy się objawi chwała Twoja.\n*Ps 16:1*\nW", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, abyśmy oczyszczeni świętym postem mogli się doczekać zbliżających się świąt.\nPrzez Pana…", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Rodzaju.\n*Rdz 37:6-22*\n*Dzieje Józefa to jeden z najbardziej wyrazistych typów biblijnych męki i zmart", - "id": "Lectio" - }, - { - "body": "*Ps 119:1-2*\nDo Pana wołałem, gdym był w utrapieniu, a On mnie wysłuchał.\n℣. Wybaw mnie, Panie, od ust kłamliwych i od p", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 21:33-46*\nOnego czasu powiedział Jezus do rzesz żydowskich i do prz", - "id": "Evangelium" - }, - { - "body": "*Ps 39:14; 39:15*\nPanie, pośpiesz mi z pomocą; niech się zawstydzą i okryją rumieńcem ci, którzy dybią na życie moje, by", - "id": "Offertorium" - }, - { - "body": "Boże, niech trwa w nas działanie tej ofiary i umacniają się jej skutki.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 11:8*\nTy, Panie, zachowasz nas i na wieki ustrzeżesz nas od tego plemienia (grzeszników).", - "id": "Communio" - }, - { - "body": "Otrzymawszy zadatek zbawienia wiecznego, prosimy Cię, Panie, daj nam tak gorliwie do niego dążyć, abyśmy mogli je osiągn", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj, Panie, ludowi Twojemu zdrowie duszy i ciała, aby oddając się dobry", - "id": "Super populum" - } - ], - "2020-03-14": [ - { - "body": "*Ps 18:8.*\nPrawo Pańskie doskonałe i krzepiące ducha; przykazanie Pańskie niezmienne, poucza prostaczków.\n*Ps 18:2*\nNieb", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, daj zbawienną skuteczność naszym postom, aby podjęte przez nas umartwienie ciała dodało żywotnych si", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Wyjścia.\n*Wj 27:6-40*\n*Utrata pierworodztwa przez Ezawa to zapowiedź utraty przywilejów przez naród wy", - "id": "Lectio" - }, - { - "body": "*Ps 91:2-3*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.\n℣. Głosić z rana miłosierdzie Twoje, a wier", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 15:11-32*\nOnego czasu powiedział Jezus do faryzeuszów i uczonych tę ", - "id": "Evangelium" - }, - { - "body": "*Ps 12:4-5*\nOświeć me oczy, bym nie zasnął w śmierci, by wróg mój nie mówił: Ja go zwyciężyłem.", - "id": "Offertorium" - }, - { - "body": "Przebłagany tą ofiarą, racz sprawić, Panie, aby nie obciążały nas cudze winy, gdy prosimy o odpuszczenie własnych grzech", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Łk 15:32*\nSynu, winieneś weselić się, gdyż brat twój był umarły, a ożył, zaginął był, a odnalazł się.", - "id": "Communio" - }, - { - "body": "Panie, niech sakramentalna ofiara Boskiej Krwi przeniknie do głębi nasze serca i swoją potężną mocą zjednoczy nas ze sob", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nProsimy Cię, Panie, strzeż nieustannie rodziny Twojej z ojcowską dobroc", - "id": "Super populum" - } - ], - "2020-03-15": [ - { - "body": "*Ps 24:15-16*\nOczy moje zawsze ku Panu, gdyż On sam oswobodzi z sideł moje nogi. Wejrzyj na mnie i zmiłuj się nade mną, ", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, wejrzyj, prosimy, na pokorne modły i wyciągnij w naszej obronie prawicę Twego majestatu.\nPrzez Pana…", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 5:1-9*\nBracia: Bądźcież naśladowcami Bożymi jako synowie najmil", - "id": "Lectio" - }, - { - "body": "*Ps 9:20; 9:4*\nPowstań, o Panie, by człowiek nie przemógł, pozwij narody przed Twój trybunał.\n℣. Wrogowie moi cofnęli si", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:14-28*\nOnego czasu: Wyrzucał Jezus czarta, a ten był niemy. A gdy", - "id": "Evangelium" - }, - { - "body": "*Ps 18:9, 10, 11, 12*\nPrzykazania Pańskie słuszne, radują serca, sądy Pańskie słodsze od miodu płynącego z plastrów, prz", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 83:4-5*\nWróbel znajduje sobie dom i jaskółka gniazdo, gdzie złoży swoje pisklęta: Twoje ołtarze, Panie Zastępów, mój", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, uwolnij nas łaskawie od wszelkich przewinień i niebezpieczeństw, skoro pozwalasz nam uczestniczyć w ", - "id": "Postcommunio" - } - ], - "2020-03-16": [ - { - "body": "*Ps 55:5*\nBogu, którego słowem się chlubię, Panu, którego obietnicą się chlubię, Bogu ufam, nie będę się bał, cóż mi ucz", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, wiej miłościwie łaskę Twoją w nasze serca, abyśmy wstrzymując się od pokarmów mięsnych, powściągali ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Królewskiej.\n*4 Krl 5:1-15*\n*Oczyszczenie Naamana z trądu w wodach Jordanu to obraz oczyszczenia duszy", - "id": "Lectio" - }, - { - "body": "*Ps 55:9, 2*\nWyznałem Tobie, Boże, życie moje, położyłeś łzy moje przed sobą.\n℣. Zmiłuj się nade mną, Boże, bo depcze mn", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 4:23-30*\nOnego czasu rzekł Jezus do faryzeuszów: «Pewnie mi powiecie", - "id": "Evangelium" - }, - { - "body": "*Ps 54:2-3*\nBoże, usłysz modlitwę moją i nie odsuwaj się od mojej prośby, zwróć się ku mnie i wysłuchaj mnie.", - "id": "Offertorium" - }, - { - "body": "Przemień, Panie, dar, który Ci składamy jako Twoi słudzy, w Sakrament niosący nam zbawienie.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 13:7*\nNiech przyjdzie ze Syjonu zbawienie Izraela. Gdy Pan odmieni los swego narodu, Jakub się uraduje, Izrael ucies", - "id": "Communio" - }, - { - "body": "Wszechmogący i miłosierny Boże, spraw, abyśmy czystą duszą przyjęli to, co spożyliśmy ustami.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nNiechaj miłosierdzie Twoje, Panie, przyjdzie nam z pomocą i niech Twoja", - "id": "Super populum" - } - ], - "2020-03-17": [ - { - "body": "*Ps 16:6, 8*\nWzywam Cię, Boże, bo Ty mnie wysłuchasz: nakłoń ku mnie Twe ucho, usłysz słowo moje; strzeż mnie jak źrenic", - "id": "Introitus" - }, - { - "body": "Wysłuchaj nas, wszechmocny i miłosierny Boże, i udziel nam łaskawie daru zbawiennej wstrzemięźliwości.\nPrzez Pana…", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Patryka, Biskupa i Wyznawcy*\nBoże, który raczyłeś posłać świętego Patryka, Twego Wyznawcę i Biskupa, by", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Królewskiej.\n*4 Krl 4:1-7*\nW one dni: Niewiasta jedna wołała do Elizeusza mówiąc: «Sługa twój, mąż mój", - "id": "Lectio" - }, - { - "body": "*Ps 18:13-14*\nOczyść mnie, Panie, od błędów, co przede mną skryte. Także od pychy broń sługę Twego.\n℣. Niechaj nade mną ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:15-22*\n*Do uczynków miłosierdzia zaliczamy również upominanie gr", - "id": "Evangelium" - }, - { - "body": "*Ps 117:16, 17*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Nie umrę, ale będę żył i głosił dzieła Pana.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech przez ten Sakrament spłyną na nas skutki Odkupienia, aby nas stale powstrzymywać od wykroczeń ", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Patryka, Biskupa i Wyznawcy*\nPanie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 14:1-2*\nKto będzie przebywał w przybytku Twym, Panie, kto na górze Twej świętej zamieszka? Ten, co żyje bez skazy i ", - "id": "Communio" - }, - { - "body": "Oczyszczeni przez święte tajemnice, prosimy Cię, Panie, racz nam udzielić przebaczenia i obdarzyć nas Swoją łaską.\nPrzez", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Patryka, Biskupa i Wyznawcy*\nWszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dar", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nOchraniaj nas, Panie, Swoją opieką i strzeż zawsze od wszelkiej niepraw", - "id": "Super populum" - } - ], - "2020-03-18": [ - { - "body": "*Ps 30:7-8*\nJa zaś pokładam nadzieję w Panu: weselić się będę i cieszyć z Twego zmiłowania, boś wejrzał na moją nędzę.\n*", - "id": "Introitus" - }, - { - "body": "Spraw, prosimy Cię, Panie, abyśmy wyćwiczeni przez zbawienne posty, powstrzymywali się od zgubnych występków i tym łatwi", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Cyryla Jerozolimskiego, Biskupa, Wyznawcy i Doktora Kościoła*\nProsimy Cię, wszechmogący Boże, przez wst", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Wyjścia.\n*Wj 20:12-24*\nTo mówi Pan Bóg: Czcij ojca twego i matkę twoją, aby dni twoje były przedłużone", - "id": "Lectio" - }, - { - "body": "*Ps 6:3-4*\nZmiłuj się nade mną, Panie, bom słaby; ulecz mnie, Panie.\n℣. Kości moje znękane i dusza moja wielce jest strw", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 15:1-20*\nOnego czasu: Przystąpili do Jezusa uczeni w Piśmie i faryz", - "id": "Evangelium" - }, - { - "body": "*Ps 108:21*\nPanie, postąp ze mną litościwie dla chwały Twego imienia, bo łaskawe jest Twe miłosierdzie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich składane, a gdy sprawujemy Twoje tajemnice, broń nas ", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Cyryla Jerozolimskiego, Biskupa, Wyznawcy i Doktora Kościoła*\nWejrzyj, Panie, na niepokalaną ofiarę, kt", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 15:10*\nTy mi ukażesz ścieżkę żywota, obfitość radości u Ciebie, o Panie.", - "id": "Communio" - }, - { - "body": "Panie, niech nas uświęci Boska uczta, którąśmy się posilili, i oczyściwszy ze wszystkich błędów niech nas uczyni godnymi", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Cyryla Jerozolimskiego, Biskupa, Wyznawcy i Doktora Kościoła*\nPanie Jezu Chryste, niech na prośby św. B", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWszechmogący Boże, dozwól, abyśmy zabiegając o Twoją łaskawą opiekę, zo", - "id": "Super populum" - } - ], - "2020-03-19": [ - { - "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech nas wspomagają zasługi Oblubieńca Twojej Najświętszej Rodzicielki, abyśmy za jego wstawiennict", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Czwartek po 3 Niedzieli Wielkiego Postu*\nPanie, niech Ci przyniesie chwałę uroczystość Twoich świętych Męcz", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 1:18-21*\nGdy poślubiona była Matka Jezusa Maryja Józefowi, pierwej ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie. (O. W. Alleluja.)", - "id": "Offertorium" - }, - { - "body": "Oddajemy Ci, Panie, hołd naszego poddaństwa, pokornie błagając, byś strzegł w nas swoich darów za wstawiennictwem św. Jó", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Czwartek po 3 Niedzieli Wielkiego Postu*\nDla uczczenia chwalebnej śmierci Świętych Twoich składamy Ci, Pani", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o św. Józefie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali ", - "id": "Prefatio" - }, - { - "body": "*Mt 1:20*\nJózefie, Synu Dawidów, nie bój się przyjąć Maryi, małżonki swojej, albowiem co się w Niej poczęło z Ducha Świę", - "id": "Communio" - }, - { - "body": "Przyjdź nam z pomocą, miłosierny Boże, a za wstawiennictwem św. Józefa, Wyznawcy, strzeż w nas łaskawie Swoich darów.\nPr", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Czwartek po 3 Niedzieli Wielkiego Postu*\nPrzez zasługi świętych Męczenników Twoich Kosmy i Damiana prosimy ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-03-20": [ - { - "body": "*Ps 85:17*\nDaj mi znak łaski Twojej, aby ci, którzy mnie nienawidzą, widzieli ku zawstydzeniu swojemu, żeś Ty mi pomógł ", - "id": "Introitus" - }, - { - "body": "Niech łaska Twoja, Panie, towarzyszy naszym postom, abyśmy odmawiając pokarmu ciału, powstrzymywali naszego ducha od grz", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Liczb.\n*Lb 20:1, 3, 6-13*\n*Skała, z której wypłynęła cudowna woda, jest typem Chrystusa, od którego pł", - "id": "Lectio" - }, - { - "body": "*Ps 27:7, 1*\nBogu zaufało me serce i doznałem pomocy; raduje się przeto serce moje i pieśnią moją Go sławię.\n℣. Do Ciebi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:5-42*\nOnego czasu: Przybył Jezus do miasta samarytańskiego, zwanego Sy", - "id": "Evangelium" - }, - { - "body": "*Ps 5:3-4*\nZwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, wejrzyj łaskawie na dary, które Ci składamy w ofierze, niech będą Tobie miłe, a nam zawsze przynoszą", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*J 4:13, 14*\nGdy kto napije się wody, którą ja mu dam, mówi Pan, stanie się ona w nim źródłem wody wytryskującej ku żywo", - "id": "Communio" - }, - { - "body": "Panie, niechaj przyjęcie tego Sakramentu oczyści nas z grzechu i doprowadzi do Królestwa Niebieskiego.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWszechmogący Boże, zaufaliśmy Twojej opiece, spraw, prosimy, abyśmy za ", - "id": "Super populum" - } - ], - "2020-03-21": [ - { - "body": "*Ps 5:2-3*\nPochwyć uszami słowa moje, Panie, zważ na moje wołanie; zwróć się na głos modlitwy mojej, mój Królu i Boże.\n*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, spraw, niech rodzina Twoja, która dla umartwienia ciała wstrzymuje się od pokarmów, zabi", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Benedykta, Opata*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Benedykta, Opata, ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 13:1-9, 15-17, 19-30, 33-62*\n*Przez Chrzest Bóg zachowuje dusze od wpływu szatana", - "id": "Lectio" - }, - { - "body": "*Ps 22:4*\nChociażbym chodził ciemną doliną, zła się nie ulęknę, bo Ty jesteś ze mną, Panie.\n℣. Kij Twój i Twoja łaska: t", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:1-11*\n*Miłosierdzie Boże winno nas pobudzać do głębszej skruchy i popr", - "id": "Evangelium" - }, - { - "body": "*Ps 118:133*\nKrokami mymi kieruj według mowy Twojej, niech żadna niegodziwość we mnie nie panuje.", - "id": "Offertorium" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, aby ten dar złożony w ofierze, nieustannie oczyszczał i zachowywał od wszelkiego ", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Benedykta, Opata*\nProsimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na święty", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*J 8:10, 11*\nNikt cię nie potępił, niewiasto? Nikt, Panie. I ja cię nie potępię. Idź, a nie grzesz więcej.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, racz nas zaliczyć do członków Tego, którego Ciała i Krwi jesteśmy uczestnikami:\nKtóry z ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Benedykta, Opata*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N.,", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPodaj, Panie, wiernym Twoim prawicę niebieskiej pomocy, aby Cię całym s", - "id": "Super populum" - } - ], - "2020-03-22": [ - { - "body": "*Iz 66:10-11*\nWesel się, Jeruzalem! A wszyscy, którzy je miłujecie, śpieszcie tu gromadnie; bierzcie udział w jego radoś", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, spraw, abyśmy wśród utrapień, które znosimy za nasze występki, zostali pokrzepieni pocie", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 4:22-31*\n*Wypadki z życia Abrahama były rzeczowym proroctwem i ", - "id": "Lectio" - }, - { - "body": "*Ps 121:1, 7*\nUradowałem się, bo mi powiedziano: Pójdziemy do domu Pańskiego.\n℣. Niech pokój będzie w murach twoich, a b", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 6:1-15*\nOnego czasu: Oddalił się Jezus za Morze Galilejskie, czyli Tyber", - "id": "Evangelium" - }, - { - "body": "*Ps 134:3, 6*\nChwalcie Pana, bo Pan jest dobry; śpiewajcie Jego imieniu, bo słodkie, cokolwiek zechce, to uczyni na nieb", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas ona utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez P", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 121:3-4*\nO Jeruzalem, coś zbudowane jak miasto, zupełnie w sobie skupione. Tam wstępują pokolenia, pokolenia Pańskie", - "id": "Communio" - }, - { - "body": "Spraw, prosimy Cię, miłosierny Boże, abyśmy zbliżali się z prawdziwą czcią do świętych tajemnic Twoich, z których pełni ", - "id": "Postcommunio" - } - ], - "2020-03-23": [ - { - "body": "*Ps 53:3-4*\nBoże, zbaw mnie w imię Swoje, i mocą Swoją broń mej sprawy. Boże, słuchaj modlitwy mojej, skłoń ucho na słow", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy Cię, abyśmy wiernie obchodząc doroczny post, podobali się Tobie duszą i ciałem.\nPrzez ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Królewskiej.\n*3 Krl 3:16-28.*\nW one dni: przyszły dwie niewiasty wszetecznice do króla i stanęły przed", - "id": "Lectio" - }, - { - "body": "*Ps 30:3*\nBądź mi, Boże, obrońcą, bądź zamkiem warownym, abyś mnie ocalił.\n*Ps 70:1.*\n℣. Boże, do Ciebie się uciekam: Pa", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 2:13-25*\nOnego czasu: Zbliżała się Pascha żydowska i Jezus przyszedł do ", - "id": "Evangelium" - }, - { - "body": "*Ps 99:1-2*\nZ radością wykrzykujcie Bogu, wszystkie ziemie; służcie Panu z weselem! Wśród okrzyków radości stawajcie prz", - "id": "Offertorium" - }, - { - "body": "Panie, niech ofiara przez nas złożona zawsze darzy nas życiem i umacnia.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 18:13, 14*\nOczyść mnie, Panie, od błędów, co przede mną skryte. Także od pychy broń sługę Twego.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, aby przez przyjęcie zbawiennego Sakramentu wzrastała w nas łaska wiecznego Odkupienia.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWysłuchaj łaskawie nasze błagania, prosimy Cię, Panie, a skoro pobudzas", - "id": "Super populum" - } - ], - "2020-03-24": [ - { - "body": "*Ps 54:2-3*\nBoże, usłysz modlitwę moją i nie odsuwaj się od mojej prośby: zwróć się ku mnie i wysłuchaj mnie.\n*Ps 54:3-4", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech wierne zachowanie Wielkiego Postu wyjedna nam postęp w pobożnym życiu i stałą pomoc Twojego mi", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Gabriela Archanioła*\nBoże, Ty spośród innych Aniołów wybrałeś Archanioła Gabriela na zwiastuna tajemnic", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Wyjścia.\n*Wj 32:7-14*\nW one dni: Rzekł Pan do Mojżesza mówiąc: «Idź, zstąp, zgrzeszył lud twój, któryś", - "id": "Lectio" - }, - { - "body": "*Ps 43:26, 2*\nOcknij się, Panie, na pomoc nam powstań i wyzwól nas dla chwały imienia Twego.\n℣. Na własne uszy słyszeliś", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 7:14-31*\nOnego czasu: Gdy upłynęła już połowa świąt, wszedł Jezus do świ", - "id": "Evangelium" - }, - { - "body": "*Ps 39:2-4*\nUfałem, Panu ufałem, a schylił się nade mną i wysłuchał mego wołania, i w usta moje włożył śpiew nowy, pieśń", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Gabriela Archanioła*\nPanie, przyjmij łaskawie ofiarę, nas sług Twoich, wraz z modlitwą św. Gabriela Arc", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 19:6*\nObyśmy się cieszyli z Twojego zwycięstwa i w imię Boga naszego podnieśli sztandary.", - "id": "Communio" - }, - { - "body": "Panie, niechaj przyjęcie tego Sakramentu oczyści nas z grzechu i doprowadzi do Królestwa Niebieskiego.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Gabriela Archanioła*\nPo przyjęciu Sakramentu Ciała i Krwi Twojej, Panie Boże nasz, błagamy Twą dobroć: ", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nZmiłuj się, Panie, nad ludem Twoim i pozwól mu łaskawie odetchnąć wśród", - "id": "Super populum" - } - ], - "2020-03-25": [ - { - "body": "*Ps 44:13,15-16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewicę, Jej druhny wiodą do Niego z ra", - "id": "Introitus" - }, - { - "body": "Boże, któryś zrządził, że za zwiastowaniem anielskim w żywocie Najświętszej Maryi Panny Słowo Twoje Ciałem się stało, po", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Środa po 4 Niedzieli Wielkiego Postu*\nBoże, który nagradzasz sprawiedliwych, a grzesznikom poszczącym udzie", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 7:10-15*\nW one dni: Rzekł Pan do Achaza, mówiąc: «Proś Pana Boga twego o znak dl", - "id": "Lectio" - }, - { - "body": "*Ps 44:3,5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawiedliw", - "id": "Tractus" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28,42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą: błogosławionaś Ty między niewiastami, i błogosławiony owoc żywota", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, utwierdź w duszach naszych tajemnice prawdziwej wiary, abyśmy wyznając prawdziwe bóstwo i człowiecze", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Środa po 4 Niedzieli Wielkiego Postu*\nPokornie Cię prosimy, wszechmogący Boże, niech ta ofiara oczyści nas ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*Iz 7:14*\nOto Panna pocznie i porodzi Syna i nazwą imię Jego Emmanuel. (O. W. Alleluja.)", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, wlej w nasze serca swoją łaskę, abyśmy poznawszy za zwiastowaniem anielskim wcielenie Chrystusa, Syn", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Środa po 4 Niedzieli Wielkiego Postu*\nPanie, Boże nasz, niech Sakrament, który przyjęliśmy, nasyci nas poka", - "id": "Commemoratio Postcommunio" - } - ], - "2020-03-26": [ - { - "body": "*Ps 104:3-4*\nNiech się weseli serce szukających Pana, szukajcie Pana i umacniajcie się, szukajcie zawsze Jego oblicza.\n*", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy, niech święta służba napełnia nas radością, gdy umartwiamy się, zachowując nakazane po", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Królewskiej.\n*4 Krl 4:25-38*\n*Elizeusz kładący się na zwłoki zmarłego chłopca, by go wskrzesić, jest t", - "id": "Lectio" - }, - { - "body": "*Ps 73:20, 19, 22*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki.\n℣. Powstań, o Pa", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:11-16*\n*Boleść Matki-Kościoła, który opłakuje swe dzieci pogrążone", - "id": "Evangelium" - }, - { - "body": "*Ps 69:2-4*\nPanie, pośpiesz mi na pomoc; niech się okryją wstydem ci, którzy godzą na Twe sługi.", - "id": "Offertorium" - }, - { - "body": "Oczyść nas, miłosierny Boże, aby modlitwy Twego Kościoła, które są Tobie miłe, gdy towarzyszą pobożnej ofierze, stały si", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 70:16-18*\nPanie, tylko Twą sprawiedliwość będę głosił, Boże, Ty mnie uczyłeś od mojej młodości: a i w starości, i w ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, nie dozwól, aby niebieskie dary stały się przyczyną\npotępienia dla tych, którzy je przyjęli, skoro u", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBoże, Stwórco i Rządco Swojego ludu, racz oddalić od niego grzechy, któ", - "id": "Super populum" - } - ], - "2020-03-27": [ - { - "body": "*Ps 18:15*\nMyśli serca mojego zawsze przed Tobą, Panie, Obrońco mój i Odkupicielu.\n*Ps 18:2*\nNiebiosa głoszą chwalę Boga", - "id": "Introitus" - }, - { - "body": "Boże, który odnawiasz świat przez niewysłowione tajemnice, spraw, prosimy, aby Kościół Twój rozwijał się przez to, co us", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Jana Damasceńskiego, Wyznawcy i Doktora Kościoła*\nWszechmogący, wieczny Boże, Ty ku obronie czci święty", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Królewskiej.\n*3 Krl 17:17-24*\nW one dni: Zachorował syn owej kobiety, pani domu, a choroba była tak si", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nLepiej się uciec do Pana, niż ufność położyć w człowieku.\n℣. Lepiej się uciec do Pana, niż zaufać książętom", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 11:1-45*\nOnego czasu: Zachorował niejaki Łazarz z Betanii, miasteczka Ma", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28, 32*\nTy wybawiasz naród uniżony, a pognębiasz oczy wyniosłe, bo któż prócz Pana jest Bogiem?", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech nas oczyszczą złożone Ci dary i wyjednają nam Twoją stałą łaskawość.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Jana Damasceńskiego, Wyznawcy i Doktora Kościoła*\nPanie, niech te dary, które Ci ofiarujemy, staną się ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*J 11:33, 35, 43, 44, 39*\nGdy ujrzał Pan siostry Łazarza płaczące u grobu, zapłakał wobec żydów, i zawołał: Łazarzu, wyj", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech uczestnictwo w tym Sakramencie zawsze nas wyzwala od naszych grzechów i broni we wszelkich prz", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Jana Damasceńskiego, Wyznawcy i Doktora Kościoła*\nProsimy Cię, Panie, niech dar, któryśmy przyjęli, sta", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj nam, prosimy Cię, wszechmogący Boże, abyśmy będąc świadomi własnej ", - "id": "Super populum" - } - ], - "2020-03-28": [ - { - "body": "*Iz 55:1*\nWszyscy, co pragniecie, zbliżcie się do wód, mówi Pan: a którzy srebra nie macie, chodźcie i pijcie w radości.", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech nasze gorliwe oddanie przynosi owoce dzięki Twojej łasce: wtedy bowiem podjęte posty przyniosą", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Jana Kapistrana, Wyznawcy*\nBoże, któryś sprawił przez św. Jana, że wierni Twoi odnieśli zwycięstwo nad ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 49:8-15*\n*Izajasz zapowiada Izraelitom wybawienie z niewoli i powrót do Ziem Obi", - "id": "Lectio" - }, - { - "body": "*Ps 9:14, 1-2*\nTobie, o Panie, biedny się poleca: sierocie Tyś pomocnikiem.\n℣. Dlaczego z dala stoisz, o Panie, w czasac", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:12-20*\n*Na Wielkanoc wołanie «Lumen Christi – Światłość Chrystusa» wyr", - "id": "Evangelium" - }, - { - "body": "*Ps 17:3*\nPan stał się opoką moją i ucieczką, moim wybawicielem, będę mu ufał.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij nasze ofiary i przebłagany przez nie zwróć łaskawie ku Sobie nawet oporną naszą wolę.\nPrzez", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Jana Kapistrana, Wyznawcy*\nPanie, wejrzyj łaskawie na ofiarę, którą Ci składamy: niech nam za wstawienn", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkopostna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali d", - "id": "Prefatio" - }, - { - "body": "*Ps 22:1-2*\nPan jest moim Pasterzem: nie brak mi niczego; na zielonych pastwiskach pozwala mi leżeć; prowadzi mnie nad w", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech nas oczyści Twój Sakrament i mocą swego działania uczyni miłymi Tobie.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Jana Kapistrana, Wyznawcy*\nNasyceni pokarmem niebieskim i napojem duchowym orzeźwieni, prosimy Cię, wsz", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBoże, Ty okazujesz ufającym Tobie raczej miłosierdzie niż gniew; daj na", - "id": "Super populum" - } - ], - "2020-03-29": [ - { - "body": "*Ps 42:1-2*\nWymierz mi, Boże, sprawiedliwość i broń mojej sprawy przeciw niezbożnemu ludowi, wybaw mię od człowieka pods", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, wejrzyj łaskawie na rodzinę sług Twoich i w Swojej hojności rządź ich ciałami oraz strze", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 9:11-15*\n*Ofiara Chrystusa, która zastąpiła ofiary Stareg", - "id": "Lectio" - }, - { - "body": "*Ps 142:9, 10*\nOcal mnie, Panie, od mych nieprzyjaciół: naucz mię pełnić wolę Twoją.\n*Ps 17:48-49*\nO Panie, mój wybawici", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 8:46-59*\nOnego czasu: Mówił Jezus rzeszom żydowskim: «Kto z was dowiedzi", - "id": "Evangelium" - }, - { - "body": "*Ps 118:17, 107*\nZ całego serca będę Cię chwalił, Panie: czyń dobrze słudze Twojemu, aby żył i słów Twych przestrzegał. ", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię Panie, niech ta ofiara oswobodzi nas z więzów naszych nałogów i wyjedna nam dary Twojego miłosierdzia.\nPrzez", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*1 Kor 11:24, 25*\nTo jest Ciało moje, które za was będzie wydane; ten jest kielich Nowego Przymierza we Krwi mojej. To c", - "id": "Communio" - }, - { - "body": "Przybądź nam z pomocą Panie, Boże nasz i otaczaj nieustanną opieką tych, których pokrzepiłeś przez Twoje tajemnice.\nPrze", - "id": "Postcommunio" - } - ], - "2020-03-30": [ - { - "body": "*Ps 55:2*\nZmiłuj się nade mną, Boże, bo depcze mnie człowiek, uciska mnie w nieustannej walce.\n*Ps 55:3*\nWrogowie moi ni", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, uświęć nasze posty i udziel nam miłościwie odpuszczenia wszystkich win.\nPrzez Pana…", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Jonasza.\n*Jon 3:1-10*\nW one dni: Stało się słowo Pańskie do Jonasza po wtóre, mówiąc: «Wstań, ", - "id": "Lectio" - }, - { - "body": "*Ps 53:4, 3*\nBoże, słuchaj modlitwy mojej, podaj ucho na słowa ust moich.\n℣. Boże, zbaw mnie w imię Swoje, mocą Swoją br", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 7:32-39*\nOnego czasu: posłali arcykapłani i faryzeusze sługi, aby pojmać", - "id": "Evangelium" - }, - { - "body": "*Ps 6:5*\nPowróć, o Panie, wyrwij duszę moją, przez miłosierdzie Twoje mnie wybaw.", - "id": "Offertorium" - }, - { - "body": "Panie, Boże nasz, spraw, aby ta zbawienna ofiara oczyściła nas z grzechów i wyjednała nam przychylność Twego majestatu.\n", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*Ps 23:10*\nPan Zastępów: On sam Królem chwały.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech nas oczyści i uleczy zbawienne uczestnictwo w Twoim Sakramencie.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nDaj, Panie, ludowi Twemu zdrowie duszy i ciała, aby oddając się dobrym ", - "id": "Super populum" - } - ], - "2020-03-31": [ - { - "body": "*Ps 26:14.*\nWyczekuj Pana i bądź dzielny, niech się Twe serce umocni i oczekuj Pana.\n*Ps 26:1*\nPan światłością i zbawien", - "id": "Introitus" - }, - { - "body": "Przyjmij, prosimy Cię, Panie, nasze posty; niech oczyszczając nas z grzechów uczynią godnymi Twojej łaski i doprowadzą d", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 14:27-42*\nW one dni: Zebrali się Babilończycy u króla i rzekli do niego: «Wydaj n", - "id": "Lectio" - }, - { - "body": "*Ps 42:1, 3*\nWymierz mi, Boże, sprawiedliwość: wybaw mię od człowieka podstępnego i niegodziwego.\n℣. Ześlij Swą światłoś", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 7:1-13*\nOnego czasu: Obchodził Jezus Galileję, bo nie chciał przebywać w", - "id": "Evangelium" - }, - { - "body": "*Ps 9:11-12, 13*\nZaufają Tobie znający Twe imię, bo nie opuszczasz, Panie, tych, co Cię szukają; psalm śpiewajcie Panu, ", - "id": "Offertorium" - }, - { - "body": "Przynosimy Ci, Panie, dary ofiarne; niech będą one dla nas znakiem pociechy w doczesności, abyśmy nie stracili nadziei o", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*Ps 24:22*\nWybaw mię, Boże Izraela, ze wszystkich ucisków moich.", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy, abyśmy pełniąc nieustannie służbę Bożą, mogli zbliżać się do niebieskich darów.\nPrzez", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nProsimy Cię, Panie, daj nam wytrwale służyć Ci według Twojej woli, aby ", - "id": "Super populum" - } - ], - "2020-04-01": [ - { - "body": "*Ps 17:48-49*\nWybawicielu od gniewnych narodów: Ty mnie wywyższysz ponad przeciwników moich, od gwałtownika mię wyrwiesz", - "id": "Introitus" - }, - { - "body": "Boże, uświęć ten post i oświeć miłościwie serca Twoich wiernych, a w dobroci Twojej wysłuchaj łaskawie próśb tych, który", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 19:1-2, 11-19, 25*\nW one dni: Rzekł Pan do Mojżesza, mówiąc: «Mów do całego zgromadz", - "id": "Lectio" - }, - { - "body": "*Ps 29:2-4*\nSławić Cię będę, Panie, bo mnie wybawiłeś i nie sprawiłeś ze mnie uciechy mym wrogom.\n℣. Panie, Boże mój, do", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:22-38*\nOnego czasu: Przypadła w Jerozolimie uroczystość Poświęcenia Ś", - "id": "Evangelium" - }, - { - "body": "*Ps 58:2*\nOd nieprzyjaciół moich wyrwij mnie, mój Boże, zachowaj mię, Panie, od powstających na mnie.", - "id": "Offertorium" - }, - { - "body": "Spraw, miłosierny Boże, abyśmy Ci złożyli ofiarę przebłagania i chwały ze szczerym oddaniem.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*Ps 25:6-7*\nRęce moje umywam na znak niewinności i ołtarz Twój, Panie, obchodzę, by jawnie ogłaszać chwałę i rozpowiadać", - "id": "Communio" - }, - { - "body": "Po przyjęciu błogosławionego daru niebieskiego, pokornie Cię prosimy, wszechmogący Boże, aby ten dar stał się źródłem ła", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nPrzychyl się ku prośbom naszym, wszechmogący Boże, a skoro pozwalasz na", - "id": "Super populum" - } - ], - "2020-04-02": [ - { - "body": "*Dn 3:31*\nWszystko, coś na nas dopuścił, o Panie, według sprawiedliwego wyroku nas spotkało; bośmy zgrzeszyli przeciw To", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy, aby godność natury ludzkiej zraniona przez nieumiarkowanie została przywrócona przez ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:25, 34-45*\nW one dni Azariasz modlił się do Pana, mówiąc: Prosimy Cię, Panie, B", - "id": "Lectio" - }, - { - "body": "*Ps 95:8-9*\nOfiary nieście i wchodźcie do Jego przedsieni: uczcijcie Pana w świętym Jego majestacie.\n*Ps 28:9*\nGłos Pana", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:36-50*\nOnego czasu: Pewien faryzeusz zaprosił Jezusa na posiłek ze", - "id": "Evangelium" - }, - { - "body": "*Ps 136:1*\nNad rzekami Babilonu, tam siedzieliśmy i płakali, gdyśmy wspominali ciebie, Syjonie.", - "id": "Offertorium" - }, - { - "body": "Panie, Boże nasz, Twoją jest wolą, abyśmy składali ofiary imieniu Twojemu z tego, coś stworzył dla podtrzymania naszej u", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*Ps 118:49-50*\nPomnij, Panie, na Twoje słowo dla sługi Twojego, przez które mi dałeś nadzieję: w ucisku moim to pociechą", - "id": "Communio" - }, - { - "body": "Cośmy ustami spożyli, daj, Panie, przyjąć czystą duszą, a ten dar doczesny niech się nam stanie lekarstwem na wieczność.", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBądź miłościw ludowi Twojemu, prosimy, Panie, aby odrzuciwszy to, co si", - "id": "Super populum" - } - ], - "2020-04-03": [ - { - "body": "*Ps 30:10, 16, 18*\n*Psalm 30 to proroctwo o agonii Chrystusa i Jego niewzruszonej ufności. Słowa Jezusowe, «Ojcze w ręce", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, wlej w serca nasze Twą łaskę, abyśmy poskramiając nasze wady dobrowolną pokutą, raczej za życia się ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nBoże, podczas Twej męki, według przepowiedni Symeona, miecz boleści przeszył najs", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 17:13-18*\nW one dni rzekł Jeremiasz: Panie, wszyscy, co zapominają o Tobie, b", - "id": "Lectio" - }, - { - "body": "*Ps 34:20, 22*\nWprawdzie przyjaźnie odzywają się do mnie wrogowie moi, a przecież w zawziętości swojej gotują mi zdradę.", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 11:47-54*\nOnego czasu: Zebrali przedniejsi kapłani i faryzeusze Radę prz", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12, 121, 42*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich; nie wydaj mnie moim ciemiężcom, a dam odpowie", - "id": "Offertorium" - }, - { - "body": "Miłosierny Boże, spraw, abyśmy zawsze służyli godnie Twoim ołtarzom i przez stałe w nich uczestnictwo osiągnęli zbawieni", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nPrzedkładamy Ci, Panie Jezu Chryste, modlitwy i ofiary i pokornie błagamy, abyśmy", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*Ps 26:12*\nNie wydawaj mnie, Panie, na łup złej woli moich prześladowców, bo świadkowie fałszywi przeciw mnie powstali, ", - "id": "Communio" - }, - { - "body": "Panie, niech nas nie opuszcza stała opieka spożytej ofiary i niech zawsze oddala od nas wszelkie niebezpieczeństwa.\nPrze", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Siedmiu Boleści N. M. P.*\nPanie Jezu Chryste, niech ofiara, z której pożywaliśmy czcząc z oddaniem przebici", - "id": "Commemoratio Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWszechmogący Boże, dozwól, abyśmy zabiegając o Twoją łaskawą opiekę, zo", - "id": "Super populum" - } - ], - "2020-04-04": [ - { - "body": "*Ps 30:10, 16, 18*\n*Psalm 30 to proroctwo o agonii Chrystusa i Jego niewzruszonej ufności. Słowa Jezusowe, «Ojcze w ręce", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech lud Tobie oddany wzrasta w dziecięcej uległości, aby oświecony przez święte czynności w tym wi", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 18:18-23*\n*Jeremiasz jest typem biblijnym niesłusznie prześladowanego Chrystu", - "id": "Lectio" - }, - { - "body": "*Ps 34:20, 22*\nWprawdzie przyjaźnie odzywają się do mnie wrogowie moi, a przecież w zawziętości swojej gotują mi zdradę.", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:10-36*\n*Uroczysty wjazd Pana Jezusa do Jeruzalem jest dla narodu żydo", - "id": "Evangelium" - }, - { - "body": "*Ps 118:12, 121, 42*\nBłogosławiony jesteś, Panie, naucz mnie ustaw Twoich; nie wydaj mnie moim ciemiężcom, a dam odpowie", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, uwolnij nas łaskawie od wszelkich przewinień i niebezpieczeństw, skoro pozwalasz nam uczestniczyć w ", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*Ps 26:12*\nNie wydawaj mnie, Panie, na łup złej woli moich prześladowców, bo świadkowie fałszywi przeciw mnie powstali, ", - "id": "Communio" - }, - { - "body": "Darem Bożym szczodrze nasyceni prosimy Cię, Panie, Boże nasz, abyśmy zawsze czerpali zeń życie.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nNiech prawica Twoja, Panie, ochrania lud błagający, niech go łaskawie o", - "id": "Super populum" - } - ], - "2020-04-05": [ - { - "body": "*Kapłan, pomijając aspersję, podchodzi wraz z asystą by pobłogosławić palmy lub gałązki oliwne lub gałązki innych drzew,", - "id": "Benedictio Palmorum" - }, - { - "body": "*Celebrans rozdaje poświęcone palmy najpierw duchowieństwu, potem ministrantom, w końcu wiernym lub ich przedstawicielom", - "id": "De distributione ramorum" - }, - { - "body": "*Po rozdaniu palm diakon kładzie księgę Ewangelii na ołtarzu, a Kapłan nakłada kadzidło do kadzielnicy, po czym diakon ś", - "id": "De lectione Evangelica" - }, - { - "body": "*Po nałożeniu przez Kapłana kadzidła do kadzielnicy, diakon zwraca się do wiernych i śpiewa:*\n\n℣. Idźmy w pokoju.\n\n*Wier", - "id": "De processione cum ramis benedictis" - }, - { - "body": "\n*Chór:*\nHołd Tobie, sława i cześć, o Chryste Królu i Zbawco: Któremu niegdyś chłopięcy chór nabożnie śpiewał Hosanna.\n*", - "id": "Hymnus ad Christum Regem" - }, - { - "body": "*Ps 21:20,22*\nO Panie, nie stój w oddaleniu: Pomocy moja, spiesz mi na ratunek. Wybaw mnie z lwiej paszczy i mnie biedne", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, chcąc dać rodzajowi ludzkiemu do naśladowania przykład pokory, sprawiłeś, że Zbawiciel nasz ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 2:5-11*\nBracia: To bowiem rozumiejcie, co i w Chrystusie Jezu", - "id": "Lectio" - }, - { - "body": "*Ps 72:24, 1-3*\nTyś ujął mą prawicę; po myśli Twojej wyprowadzisz mnie i wreszcie przyjmiesz mnie do chwały.\n℣. Jak dobr", - "id": "Graduale" - }, - { - "body": "Pasja Pana naszego Jezusa Chrystusa według Mateusza.\n*Mt 26:36-75; 27:1-60*\n*J = słowa Chrystusa; C = opowiadanie Ewange", - "id": "Evangelium" - }, - { - "body": "*Ps 68:21-22*\nUrąganiem złamane me serce i sił mi zabrakło. Na współczującego czekałem, ale go nie było, i na pocieszają", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, dozwól, by dar złożony przed obliczem Twego majestatu wyjednał nam łaskę gorliwości w służbie Twojej", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*Mt 26:42*\nOjcze, jeżeli ten kielich nie może Mnie minąć, ale mam Go wypić, niech się dzieje wola Twoja.", - "id": "Communio" - }, - { - "body": "Działanie tego Sakramentu, o Panie, niechaj oczyści nas z grzechów i spełni nasze słuszne pragnienia.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-04-06": [ - { - "body": "*Ps 34:1-2*\nRozpraw się, Panie, z tymi, co mnie krzywdzą, uderz na tych, co na mnie natarli, chwyć broń i tarczę, a pows", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, wśród tak licznych przeciwności upadamy wskutek własnej niemocy; prosimy Cię, spraw, abyśmy otrzymali", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 50:5-10*\n*Izajasz przepowiada biczowanie i znieważanie Chrystusa. Wszystkie te u", - "id": "Lectio" - }, - { - "body": "*Ps 34:23,3*\nPrzebudź się, o Panie, powstań ku mojej obronie, wglądnij w mą sprawę, Boże mój i Panie.\n℣. Dobądź miecza i", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:1-9*\nNa sześć dni przed Paschą przyszedł Jezus do Betanii, gdzie umar", - "id": "Evangelium" - }, - { - "body": "*Ps 142:9-10*\nOcal mnie od nieprzyjaciół moich, Panie, do Ciebie się uciekam. Naucz mnie pełnić wolę Twoją, albowiem jes", - "id": "Offertorium" - }, - { - "body": "Panie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej czystości dojść do ich Stwórcy.\nP", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*Ps 34:26*\nNiech się zmieszają i zawstydzą wszyscy, którzy się cieszą z mego nieszczęścia, niech się okryją wstydem i wz", - "id": "Communio" - }, - { - "body": "Panie, niech Twoje święte tajemnice obudzą w nas Boży zapał, abyśmy czerpali radość zarówno z ich sprawowania, jak z owo", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWspomóż nas, Boże, Zbawicielu nasz, i daj, abyśmy z radością doczekali ", - "id": "Super populum" - } - ], - "2020-04-07": [ - { - "body": "*Ga 6:14*\nA myśmy się chlubić powinni Krzyżem Pana naszego Jezusa Chrystusa; w Nim jest zbawienie, życie i zmartwychwsta", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, daj nam tak sprawować misteria Męki Pańskiej, abyśmy mogli otrzymać przebaczenie.\nPrzez tego", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 11:18-20*\nW one dni: Rzekł Jeremiasz: Panie, ukazałeś mi, a poznałem: wtedy o", - "id": "Lectio" - }, - { - "body": "*Ps 34:13; 34:1-2*\nJa zaś, gdy mi dokuczali, wdziewałem wór pokutny i duszę moją trapiłem postem, i w sercu zanosiłem mo", - "id": "Graduale" - }, - { - "body": "\n\n \nPasja Pana naszego Jezusa Chrystusa według Marka.\n\n*Mk 14:32-72; 15, 1-46*\n*J = słowa Chrystusa; C = opowiadanie Ewa", - "id": "Evangelium" - }, - { - "body": "*Ps 139:5*\nZachowaj mnie, Panie, od ręki grzesznika, strzeż mnie od ludzi okrutnych.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech te ofiary składane wśród uzdrawiającego postu, skutecznie przyczynią się do naszego zbawienia.", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*Ps 68:13-14*\nSiedzący w bramach wyglądają na mnie i lżą mnie pijący wino, ja zaś modły zanoszę do Ciebie, Panie, gdyś p", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, niech Twoje uświęcające tajemnice uleczą nasze wady i staną się dla nas rękojmią życia wiecznego.\nPrz", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nBoże, niech Twoje miłosierdzie oczyści nas ze wszystkich ukrytych pozos", - "id": "Super populum" - } - ], - "2020-04-08": [ - { - "body": "*Flp 2:10,8,11*\nNa imię Jezusa niech zgina się wszelkie kolano mieszkańców niebios, ziemi i podziemia, gdyż Pan stał się", - "id": "Introitus" - }, - { - "body": "Dręczeni nieusatnnie naszymi występkami prosimy Cię, wszechmogący Boże, aby nas wyzwoliła męka Jednorodzonego Syna Twego", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 63:1-7*\n*Proroctwo zawarte w lekcji jest dialogiem między zbroczonym krwią wojow", - "id": "LectioL1" - }, - { - "body": "*Ps 68:18; 68:2-3*\nNie kryj oblicza Twego przed Swym sługą, rychło mnie wysłuchaj, bo jestem w ucisku.\n℣. Wybaw mnie, Bo", - "id": "GradualeL1" - }, - { - "body": "Boże, z Twojej woli Twój Syn poniósł za nas śmierć na drzewie Krzyża, aby uwolnić nas spod władzy szatana; dozwól nam, s", - "id": "OratioL1" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 53:1-12*\n*Izajasz tak dokładnie przepowiedział szczegóły Męki Pańskiej, że nazwa", - "id": "Lectio" - }, - { - "body": "*Ps 101:2-5,14*\nPanie, wysłuchaj modlitwę moją, a wołanie moje niech do Ciebie przyjdzie.\n℣. Nie kryj przede mną Twego o", - "id": "Graduale" - }, - { - "body": "\n\n \nPasja Pana naszego Jezusa Chrystusa według Łukasza.\n\n*Łk 22:39-71; 23:1-53*\n*J = słowa Chrystusa; C = opowiadanie Ew", - "id": "Evangelium" - }, - { - "body": "*Ps 101:2-3*\nPanie, wysłuchaj modlitwę moją, a wołanie moje niech do Ciebie przyjdzie: nie kryj przede mną Twojego oblic", - "id": "Offertorium" - }, - { - "body": "*Sekreta i pokomunia przypominają, że we Mszy świętej odnawia się w sakramentalny sposób Męka Pańska.*\nProsimy Cię, Pani", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*Ps 10:13,14*\nNapój mój mieszam ze łzami, boś mnie podniósł i strącił, a ja usycham jak trawa, Ty zaś, o Panie, trwasz n", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, wlej w serca nasze niezłomną wiarę, że przez doczesną śmierć Twojego Syna, której znakiem są czcigodn", - "id": "Postcommunio" - }, - { - "body": "\nMódlmy się.\nPochylcie głowy wasze przed Bogiem.\nWejrzyj łaskawie, prosimy Cię, Panie, na tę rodzinę Twoją, za którą Pan", - "id": "Super populum" - } - ], - "2020-04-09": [ - { - "body": "*Ga 6:14*\nA myśmy się chlubić powinni Krzyżem Pana naszego Jezusa Chrystusa; w Nim jest zbawienie, życie i zmartwychwsta", - "id": "Introitus" - }, - { - "body": "Boże, od Ciebie Judasz otrzymał karę za swoją zbrodnię, a łotr nagrodę za wyznanie winy; daj nam doznać skutków miłosier", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 11:20-32*\nBracia: Gdy się tedy wespół schodzicie, nie jest", - "id": "Lectio" - }, - { - "body": "*Flp 2:8-9*\nChrystus stał się dla nas posłuszny aż do śmierci, a była to śmierć krzyżowa.\n℣. Dlatego i Bóg wywyższył Go:", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 13:1-15*\nPrzed świętym dniem Paschy Jezus, wiedząc, że nadeszła godzina ", - "id": "Evangelium" - }, - { - "body": "*Po kazaniu odbywa się obrzęd umywania nóg, Celebrans zdejmuje ornat, przepasuje się ręcznikiem i umywa nogi dwunastu mę", - "id": "Maundi" - }, - { - "body": "*Ps 117:16-17*\nPrawica Pańska moc okazała, prawica Pańska mnie dźwignęła; nie umrę, lecz będę żył i głosił dzieła Pana.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, Ojcze święty, wszechmogący, wieczny Boże, niech ofiarę naszą uczyni Ci przyjemną Ten, który w dniu d", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "Zjednoczeni w świętych obcowaniu obchodzimy uroczyście prześwięty dzień, w którym Pan nasz Jezus Chrystus został za nas ", - "id": "Communicantes" - }, - { - "body": "*J 13:12,13,15*\nPan Jezus, gdy skończył wieczerzę z uczniami swoimi, umył nogi ich i rzekł: «Czy wiecie, com wam uczynił", - "id": "Communio" - }, - { - "body": "Posileni życiodajnym pokarmem prosimy Cię, Panie Boże nasz, aby najświętsza tajemnica, którą sprawujemy w doczesności, d", - "id": "Postcommunio" - }, - { - "body": "*Po skończeniu Mszy św. kapłan zmienia ornat na kapę i okadziwszy Najświętszy Sakrament przenosi Go w uroczystej procesj", - "id": "Post Missam" - }, - { - "body": "\n*W pierwszych wiekach Kościoła zawsze po skończeniu Mszy św. zdejmowano z ołtarza obrusy. Dzisiaj jednak czynność ta ma", - "id": "Denudatione altaris" - } - ], - "2020-04-10": [ - { - "body": "\n*Celebrans i asystujący, ubrani w alby i czarne stuły, w zupełnej ciszy udają się do ołtarza i padają przed nim na twar", - "id": "Lectiones" - }, - { - "body": "*Następnie czyta się lub śpiewa opis Męki Pańskiej według św. Jana, który był naocznym świadkiem śmierci krzyżowej Zbawi", - "id": "Passio" - }, - { - "body": "*W starożytności «modlitwa wiernych», to jest ochrzczonych, odbywała się po odesłaniu katechumenów i stanowiła zakończen", - "id": "Oratio Fidelium" - }, - { - "body": "\n*Po skończeniu modlitw celebrans zdejmuje kapę, asystujący zaś swoje szaty liturgiczne. Diakon udaje się do zakrystii, ", - "id": "Crucis Adoratione" - }, - { - "body": "*Po przybyciu do głównego ołtarza diakon umieszcza Najświętszy Sakrament na korporale, a ministranci stawiają świece obo", - "id": "CommunioQ" - } - ], - "2020-04-11": [ - { - "body": "*Aby nam dopomóc w poznaniu rzeczy niewidzialnych, Kościół zwykle posługuje się znakami materialnymi; gdy mamy przeżyć f", - "id": "Benedictio ignis" - }, - { - "body": "*Jeden z ministrantów przynosi przed celebransa paschał. Celebrans żłobi rylcem na świecy paschalnej krzyż, pierwszą i o", - "id": "De benedictione cerei Paschalis" - }, - { - "body": "*Do ciemnego kościoła wnosi się paschał – symbol Chrystusa zmartwychwstałego. Procesja ze światłem to obrazowe przedstaw", - "id": "De solemni processione" - }, - { - "body": "*Teraz diakon bierze księgę i prosi o błogosławieństwo celebransa:*\n\nRacz pobłogosławić, ojcze.\n\n*Celebrans odpowiada:*\n", - "id": "De praeconio paschali" - }, - { - "body": "*Następują czytania przygotowujące nas do poświęcenia wody chrzcielnej i odnowienia przyrzeczeń złożonych na Chrzcie świ", - "id": "De lectionibus" - }, - { - "body": "*W najważniejszych swoich obrzędach Kościół wzywa zawsze wstawiennictwa Wszystkich Świętych. Czyni to również przystępuj", - "id": "De prima parte Litaniarum" - }, - { - "body": "℣. Pan z wami. \n\r℟. I z duchem twoim.\nMódlmy się.\nWszechmogący, wiekuisty Boże, bądź obecny w tych tajemnicach Twej w", - "id": "De benedictione aquae baptismalis" - }, - { - "body": "*Celebrans wkłada białą kapę i okadziwszy paschał stojąc przed nim lub na kazalnicy przemawia do wiernych:*\n\n\n\n\nNajmilsi", - "id": "De renovatione promissionum baptismatis" - }, - { - "body": "*Po odnowieniu przyrzeczeń Chrztu świętego kantorzy śpiewają drugą część litanii do Wszystkich Świętych. Wierni klęcząc ", - "id": "De altera parte Litaniarum" - }, - { - "body": "*Odnowiwszy w sobie łaskę Chrztu, który nas wszczepił w misterium śmierci i Zmartwychwstania Pańskiego, składamy ofiarę ", - "id": "De Missa solemni Vigiliae paschalis" - }, - { - "body": "℣. Pan z wami. \n\r℟. I z duchem twoim.\nMódlmy się.\nBoże, który tę najświętszą noc uświetniasz chwałą Zmartwychwstania ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:1-4*\nBracia: Jeżeli razem z Chrystusem powstaliście z martwy", - "id": "Lectio" - }, - { - "body": "*Ps 116*\n℣. Chwalcie Pana, wszystkie narody, wysławiajcie Go, wszystkie ludy.\n℣. Bo Jego miłosierdzie nad nami utwierdzo", - "id": "Tractus" - }, - { - "body": "*Do śpiewania ewangelii nie niesie się świec, ponieważ przyświeca paschał.*\n\nCiąg dalszy ☩ Ewangelii świętej według Mate", - "id": "Evangelium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych wraz z darami ofiarnymi: aby ofiara, która wzięła początek w misterium pa", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Po Komunii wiernych chór zaczyna śpiewać Laudes: poranną modlitwę Kościoła, skróconą do jednego psalmu i kantyku.*\n\n\nAn", - "id": "Pro Laudibus" - }, - { - "body": "℣. Pan z wami. \n\r℟. I z duchem twoim.\nMódlmy się.\nTchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zje", - "id": "Postcommunio" - }, - { - "body": "℣. Idźcie, ofiara spełniona, alleluja, alleluja.\n℟. Bogu dzięki, alleluja, alleluja.", - "id": "Conclusio" - } - ], - "2020-04-12": [ - { - "body": "*Ps 138:18,5-6*\n*Zmartwychwstały Chrystus zwraca się do Ojca Niebieskiego w akcie adoracji i miłości:*\nZmartwychwstałem ", - "id": "Introitus" - }, - { - "body": "Boże, Ty w dniu dzisiejszym pokonałeś śmierć i otworzyłeś nam bramy wieczności przez Jednorodzonego Syna Twego; racz wsp", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 5:7-8*\n*W Starym Testamencie przed Wielkanocą usuwano z do", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 117:24; 117:1*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Dziękujcie Panu, bo je", - "id": "Graduale" - }, - { - "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:1-7*\nOnego czasu: Maria Magdalena i Maria Jakubowa, i Salome nakupi", - "id": "Evangelium" - }, - { - "body": "*Ps 75:9-10*\n*Wspominamy trzęsienie ziemi, które towarzyszyło Zmartwychwstaniu Chrystusa.*\nPrzelękła się ziemia i zamilk", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych wraz z darami ofiarnymi: aby ofiara, która wzięła początek w misterium pa", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*1 Kor 5:7-8*\nNa Paschę naszą został ofiarowany Chrystus, alleluja; świętujmy tedy w przaśnikach szczerości i prawdy, al", - "id": "Communio" - }, - { - "body": "Tchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zjednocz tych, których nasyciłeś wielkanocnym Sakramente", - "id": "Postcommunio" - } - ], - "2020-04-13": [ - { - "body": "*Wj 13:5; 13:9*\nWprowadził was Pan do ziemi opływającej mlekiem i miodem, alleluja: aby też prawo Pańskie zawsze było na", - "id": "Introitus" - }, - { - "body": "Boże, który w uroczystość paschalną zgotowałeś światu uzdrowienie, prosimy Cię, obdarz Swój lud darami niebieskimi, aby ", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 10:37-43*\nW one dni: Piotr, stojąc pośród rzeszy, rzekł: «Mężowie, bracia! Wiecie, ", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 117:24; 117:2*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Teraz niech mówi dom I", - "id": "Graduale" - }, - { - "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 24:13-35*\nOnego czasu: Dwaj z uczniów Jezusa tegoż dnia szli do mias", - "id": "Evangelium" - }, - { - "body": "*Mt 28:2; 28:5-6*\nAnioł Pański zstąpił z nieba i rzekł niewiastom: Ten, którego szukacie, zmartwychwstał, jak zapowiedzi", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych wraz z darami ofiarnymi; aby ofiara, która wzięła początek w misterium pa", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Łk 24:34*\nPowstał Pan z martwych i ukazał się Piotrowi, alleluja.", - "id": "Communio" - }, - { - "body": "Tchnij w nas, o Panie, Twojego Ducha miłości i w dobroci Swojej zjednocz tych, których nasyciłeś wielkanocnym Sakramente", - "id": "Postcommunio" - } - ], - "2020-04-14": [ - { - "body": "*Syr 15:3-4*\nPan ich napoił wodą mądrości, alleluja, alleluja; tak ich umocni, że się nie zachwieją, alleluja; i na wiek", - "id": "Introitus" - }, - { - "body": "Boże, który ciągle wzbogacasz Swój Kościół nowym potomstwem, daj sługom Twoim, aby przestrzegali w życiu zobowiązań płyn", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 13:16; 13:26-33*\nW one dni: Powstał Paweł i nakazując ręką milczenie rzekł: «Mężowi", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 117:24;106:2*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n*Ps 106:2*\n℣. Niechaj mówi", - "id": "Graduale" - }, - { - "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 24:36-47*\nOnego czasu: Stanął Jezus w pośrodku uczniów swoich i rzek", - "id": "Evangelium" - }, - { - "body": "*Ps 17:14; 17:16*\nZagrzmiał Pan na niebiosach, Najwyższy dał słyszeć swój głos; i otworzyły się źródła wody, alleluja.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich złożone, a nabożne sprawowanie służby Twojej niech na", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Kol 3:1-2*\nJeżeli razem z Chrystusem powstaliście z martwych, szukajcie tego, co w górze jest, gdzie Chrystus siedzi po", - "id": "Communio" - }, - { - "body": "Spraw, prosimy, wszechmogący Boże, aby skutki Komunii wielkanocnej przetrwały na zawsze w naszych duszach.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-04-15": [ - { - "body": "*Mt 25:34*\nPójdźcie, błogosławieni Ojca mego, i posiądźcie Królestwo, alleluja, zgotowane wam od założenia świata, allel", - "id": "Introitus" - }, - { - "body": "Boże, który co roku uweselasz nas obchodem Zmartwychwstania Pańskiego, spraw miłościwie, abyśmy obchodząc doczesne urocz", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 3:13-15; 3:17-19*\nW one dni: Piotr otwierając swe usta rzekł: «Mężowie izraelscy i ", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 117:24; 117:16*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Prawica Pańska moc ok", - "id": "Graduale" - }, - { - "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 21:1-14*\nOnego czasu: Ukazał się znowu Jezus uczniom nad Morzem Tyberiad", - "id": "Evangelium" - }, - { - "body": "*Ps 77:23-25*\nPan otworzył bramy nieba; jak deszcz im spuścił mannę na pokarm; obdarzył ich chlebem niebieskim; chleb An", - "id": "Offertorium" - }, - { - "body": "Wśród radości wielkanocnych składamy Ci, Panie, tę ofiarę, którą Kościół Twój cudownie karmi się i odżywia.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Rz 6:9*\n*W Komunii świętej przyjmujemy Ciało Chrystusa zmartwychwstałego, które jest zadatkiem naszego życia wiecznego.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niechaj pełne czci przyjęcie Twojego Sakramentu oczyści nas z pozostałości starego człowieka i przem", - "id": "Postcommunio" - } - ], - "2020-04-16": [ - { - "body": "*Mdr 10:20-21*\nZwycięską rękę Twą, Panie, jednomyślnie wychwalali, alleluja, bo mądrość otworzyła usta niemych, a języki", - "id": "Introitus" - }, - { - "body": "Boże, który zjednoczyłeś różne narody w wyznawaniu Twojego imienia, daj, aby ci, co się odrodzili w wodzie Chrztu, zacho", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 8:26-40*\n*Bez pomocy diakona Filipa Etiopczyk nigdy by nie rozumiał proroctw Izajas", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 117:24; 117:22-23*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Kamień, odrzucony ", - "id": "Graduale" - }, - { - "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:11-18*\nOnego czasu: Maria stała u grobu zewnątrz i płakała. płacząc n", - "id": "Evangelium" - }, - { - "body": "*Wj 13:5*\nW dniu uroczystości waszej, mówi Pan, wprowadzę was do ziemi opływającej mlekiem i miodem, alleluja.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij łaskawie dary Swoich ludów, aby odrodzone przez wyznanie Twojego imienia i Chrzest osiągnęł", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*1 P 2:9*\nLudu nabyty, opowiadaj wielkie sprawy Jego, alleluja: On ciebie wezwał z ciemności ku swojej przedziwnej świat", - "id": "Communio" - }, - { - "body": "Wysłuchaj, Panie, modlitwy nasze, aby to święte i zbawienne zjednoczenie było nam pomocą w życiu doczesnym i wyjednało r", - "id": "Postcommunio" - } - ], - "2020-04-17": [ - { - "body": "*Ps 77:53*\nPan wiódł ich bezpiecznie, alleluja, a wrogów ich morze pokryło, alleluja, alleluja, alleluja.\n*Ps 77:1*\nSłuc", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, który ustanowiłeś misterium paschalne zawierając z ludzkością przymierze przebaczenia, udzie", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 3:18-22*\n*Chrystus zstąpił do otchłani, aby sprawiedliwym Starego Testam", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 117:24; 117:26-27*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy.\n℣. Błogosławiony, któ", - "id": "Graduale" - }, - { - "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 28:16-20*\nOnego czasu: Jedenastu uczniów poszło do Galilei, na górę", - "id": "Evangelium" - }, - { - "body": "*Wj 12:14*\nTen dzień będzie wam na pamiątkę, alleluja, i będziecie go obchodzić jako święto uroczyste dla Pana przez wsz", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij miłościwie dary, które składamy jako wynagrodzenie za grzechy odrodzonych przez Chrzest ora", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Mt 28:18-19*\n*Każda Komunia wkłada na nas obowiązek niesienia w świat Chrystusa i Jego nauki.*\nDana mi jest wszelka wła", - "id": "Communio" - }, - { - "body": "Wejrzyj, prosimy Cię, Panie, na lud Swój, a skoro raczyłeś go odrodzić przez wiekuiste tajemnice, racz mu odpuścić winy ", - "id": "Postcommunio" - } - ], - "2020-04-18": [ - { - "body": "*Ps 4:43*\nPan wyprowadził lud swój z radością, alleluja, z weselem swoich wybranych, alleluja, alleluja.\n*Ps 4:1*\nChwalc", - "id": "Introitus" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy mocą uroczystości paschalnych, które ze czcią obchodziliśmy, mogli dojść d", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:1-10*\nNajmilsi: Usunąwszy wszelką złość oraz wszelki podstęp, obłudę, ", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*7:24*\nOto dzień, który Pan uczynił; radujmy się zeń i weselmy, alleluja.\n*Ps 112:1*\nChwalcie, o dzie", - "id": "Graduale" - }, - { - "body": "Hołd Ofierze Wielkanocnej składajcie chrześcijanie.\nJagnię zbawiło owce: Chrystus niewinny z Ojcem znowu pojednał nas, g", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:1-9*\nOnego czasu: Pierwszego dnia tygodnia rankiem, gdy jeszcze był m", - "id": "Evangelium" - }, - { - "body": "*Ps 7:26-27*\nBłogosławiony, który przybywa w imię Pańskie; błogosławimy wam z Pańskiego domu. Pan jest Bogiem i zajaśnia", - "id": "Offertorium" - }, - { - "body": "Dozwól nam, prosimy Cię, Panie, radować się zawsze tajemnicą paschalną, a trwałe działanie łaski Odkupienia niech nas pr", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Ga 3:27*\nWszyscy, którzyście zostali ochrzczeni w Chrystusie, przyoblekliście się w Chrystusa, alleluja.", - "id": "Communio" - }, - { - "body": "Umocnieni darem naszego Odkupienia prosimy Cię, Panie, aby dzięki temu Sakramentowi wiecznego zbawienia prawdziwa wiara ", - "id": "Postcommunio" - } - ], - "2020-04-19": [ - { - "body": "*1 P 2:2*\nJako dopiero narodzone niemowlęta, alleluja, pożądajcie duchowego, czystego mleka, alleluja, alleluja alleluja", - "id": "Introitus" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy ukończywszy obchód świąt wielkanocnych, za łaską Twoją zachowali ich ducha", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 5:4-10*\n*Chrystus żyje i działa w nas przez trzy elementy: wodę Chrztu, Kr", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Mt 28:7*\nW dzień mojego Zmartwychwstania – mówi Pan – pójdę przed wami do Galilei. Alleluja.\n*J 20:", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:19-31*\nOnego czasu: Wieczorem dnia owego, pierwszego po szabacie, gdy", - "id": "Evangelium" - }, - { - "body": "*Mt 28:2; 28:5-6*\nAnioł Pański zstąpił z nieba i rzekł niewiastom: Ten, którego szukacie zmartwychwstał jak zapowiedział", - "id": "Offertorium" - }, - { - "body": "Przyjmij prosimy Cię, Panie, dary weselącego się Kościoła i skoro dałeś mu powód do tak wielkiej radości, udziel mu jako", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*J 20:27*\nWłóż rękę twoją i rozpoznaj miejsce gwoździ, alleluja i nie bądź niewiernym lecz wierzącym, alleluja, alleluja", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się leka", - "id": "Postcommunio" - } - ], - "2020-04-20": [ - { - "body": "*1 P 2:2*\nJako dopiero narodzone niemowlęta, alleluja, pożądajcie duchowego, czystego mleka, alleluja, alleluja alleluja", - "id": "Introitus" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy ukończywszy obchód świąt wielkanocnych, za łaską Twoją zachowali ich ducha", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 5:4-10*\n*Chrystus żyje i działa w nas przez trzy elementy: wodę Chrztu, Kr", - "id": "Lectio" - }, - { - "body": "\n*Mt 28:7*\nW dzień mojego Zmartwychwstania – mówi Pan – pójdę przed wami do Galilei. \n*J 20:26*\nPo ośmiu dniach, mimo dr", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:19-31*\nOnego czasu: Wieczorem dnia owego, pierwszego po szabacie, gdy", - "id": "Evangelium" - }, - { - "body": "*Mt 28:2; 28:5-6*\nAnioł Pański zstąpił z nieba i rzekł niewiastom: Ten, którego szukacie zmartwychwstał jak zapowiedział", - "id": "Offertorium" - }, - { - "body": "Przyjmij prosimy Cię, Panie, dary weselącego się Kościoła i skoro dałeś mu powód do tak wielkiej radości, udziel mu jako", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*J 20:27*\nWłóż rękę twoją i rozpoznaj miejsce gwoździ, alleluja i nie bądź niewiernym lecz wierzącym, alleluja, alleluja", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się leka", - "id": "Postcommunio" - } - ], - "2020-04-21": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, Tyś dał ludowi Swemu świętego Anzelma za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć orę", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Syr 45:9*\nUmiłował go Pan i przyozdobił, przyodział go szatą chwały. Alleluja.\n*Oz 14:6*\nSprawiedli", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Anzelma, Twego Biskupa i Doktora, która zaleci Tobie naszą o", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty Anzelm, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja", - "id": "Postcommunio" - } - ], - "2020-04-22": [ - { - "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", - "id": "Introitus" - }, - { - "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego N., (Twojego Męc", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Mt 16:18*\n℣. Ty jesteś Opoką, a na tej Opoce zbuduję Kościół mój. Alleluja.\n*Ps 44:17-18*\nUstanowis", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", - "id": "Offertorium" - }, - { - "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", - "id": "Postcommunio" - } - ], - "2020-04-23": [ - { - "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech św. Wojciech, Biskup i Męczennik, wyjedna nam Twoje miłosierdzie, abyś łaskawie odpuścił nam g", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 5:1-6*\nBracia: Każdy arcykapłan, spośród ludzi wzięty, dl", - "id": "Lectio" - }, - { - "body": "*J 10:14*\nJam jest pasterz dobry: znam swoje owce i one mnie znają. Alleluja.\n*Ps 109:4*\n℣. Tyś kapłanem na wieki na wzó", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", - "id": "Evangelium" - }, - { - "body": "*Ps 20:4-5*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni; błagał Cię o życie, a Tyś go nim obdarzył, alleluja.", - "id": "Offertorium" - }, - { - "body": "Racz, Panie, łaskawie przyjąć złożoną ofiarę: niech nam wyjedna odpuszczenie win, gdy składamy ją imieniu Twemu w uroczy", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*J 10:14*\nJam jest pasterz dobry, alleluja; znam swoje owce i one mnie znają, alleluja, alleluja.", - "id": "Communio" - }, - { - "body": "Pokrzepieni świętymi darami, kornie błagamy Cię, Panie, aby orędownictwo św. Wojciecha, Męczennika Twego i Biskupa, zaws", - "id": "Postcommunio" - } - ], - "2020-04-24": [ - { - "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie jeg", - "id": "Introitus" - }, - { - "body": "Boże, Ty św. Fidelisa, gorejącego seraficzną żarliwością ducha, ozdobiłeś palmą męczeństwa i sławą cudów przy głoszeniu ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 10: 10-14*\n*Opatrzność Boża kierowała losami prześladowanego patriarchy Jakuba i Józefa", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:34-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie mniemajcie, ", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Mt 16:24*\nJeśli kto chce za mną iść, niech się zaprze samego siebie i weźmie krzyż swój, i naśladuje mnie.", - "id": "Communio" - }, - { - "body": "Daj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wieczności, jak z radością czcimy ", - "id": "Postcommunio" - } - ], - "2020-04-25": [ - { - "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", - "id": "Introitus" - }, - { - "body": "Boże, który zaszczyciłeś św. Marka, Twego Ewangelistę, łaską przepowiadania Ewangelii; daj, prosimy, abyśmy zawsze odnos", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Dni Krzyżowych*\nWszechmogący Boże, w naszym utrapieniu ufamy Twojej dobroci; spraw, prosimy, aby Twoja opie", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 1:10-14*\n*Proroctwo Ezechiela rozpoczyna się wizją tronu Bożego, unoszonego prz", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", - "id": "Offertorium" - }, - { - "body": "Składając Ci dary w uroczystość św. Marka Twego Ewangelisty, prosimy Cię, Panie, aby jego orędownictwo tak uczyniło nas ", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Dni Krzyżowych*\nProsimy Cię, Panie, niech ta ofiara oswobodzi nas z więzów naszych nałogów i wyjedna nam da", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią, alleluja, alleluja", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech Twój Sakrament stanie się dla nas źródłem nieustannej pomocy, a dzięki modłom św. Marka, Ewang", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Dni Krzyżowych*\nProsimy Cię, Panie, przyjmij nasze modlitwy z ojcowską dobrocią, a gdy wśród utrapień otrzy", - "id": "Commemoratio Postcommunio" - } - ], - "2020-04-26": [ - { - "body": "*Ps 32:5-6*\nPełna jest ziemia łaskawości Pana, alleluja, przez słowo Pana stały się niebiosa, alleluja, alleluja.\n*Ps 32", - "id": "Introitus" - }, - { - "body": "Boże, któryś przez uniżenie się Syna Twojego podźwignął upadły świat, napełnij wiernych Twoich nieustannym weselem, aby ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:21-25*\nNajmilsi: Chrystus cierpiał zostawiając wam przykład, abyście w", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Łk 24:35*\nPoznali uczniowie Pana Jezusa przy łamaniu chleba. Alleluja.\n*J 10:14*\nJam jest Pasterz do", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", - "id": "Evangelium" - }, - { - "body": "*Ps 62:2; 62:5*\nBoże, moim jesteś Bogiem, pilnie Ciebie szukam; i w imię Twoje będę wznosił me ręce, alleluja.", - "id": "Offertorium" - }, - { - "body": "Panie, niech święta ofiara zawsze sprowadza na nas zbawienne błogosławieństwo, i swoją mocą urzeczywistnia to, co się do", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*J 10:14*\nJam jest Pasterz dobry, alleluja: znam owce moje i znają mnie moje, alleluja, alleluja.", - "id": "Communio" - }, - { - "body": "Prosimy Cię wszechmogący Boże, spraw, abyśmy otrzymawszy Twoją życiodajną łaskę, zawsze szczycili się z Twojego daru.\nPr", - "id": "Postcommunio" - } - ], - "2020-04-27": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, który dla obrony prawdziwej wiary uzbroiłeś cnotą i nauką św. Piotra, Twego Wyznawcę, spraw łaskawie, niech błądzą", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Syr 45:9*\nUmiłował go Pan i przyozdobił, przyodział go szatą chwały. Alleluja.\n*Oz 14:6*\nSprawiedli", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Piotra Kanizjusza, Twego Biskupa i Doktora, która zaleci Tob", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty Piotr Kanizjusz, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofi", - "id": "Postcommunio" - } - ], - "2020-04-28": [ - { - "body": "*Gal 2:19-20*\nZ Chrystusem przybity jestem do krzyża: i żyję już nie ja, ale żyje we mnie Chrystus, żyję w wierze Syna B", - "id": "Introitus" - }, - { - "body": "Panie Jezu Chryste, któryś dla rozsławienia tajemnicy Krzyża obdarzył świętego Pawła osobliwą miłością i chciałeś, żeby ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Witalisa*\nProsimy Cię, wszechmogący Boże, abyśmy obchodząc urodziny dla nieba świętego Witalisa, Twego ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 1:17-25*\nBracia: Chrystus nie posłał mię chrzcić, ale głos", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*2 Kor 5:15*\nZa wszystkich umarł Chrystus, aby i ci, którzy żyją, już nie dla siebie żyli, ale dla Te", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", - "id": "Evangelium" - }, - { - "body": "*Ef 5:2*\nPostępujcie w miłości, jako i Chrystus umiłował nas i wydał samego siebie za nas na dar i ofiarę Bogu, na wonno", - "id": "Offertorium" - }, - { - "body": "Panie, tajemnice męki i śmierci Twojej niech nam udzielą niebiańskiej żarliwości, z jaką sprawował je święty Paweł, wyda", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Witalisa*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*1 P 4:13*\nAle będąc uczestnikami cierpień Chrystusa radujcie się, abyście z chwilą objawienia się chwały Jego radowali ", - "id": "Communio" - }, - { - "body": "Przyjęliśmy, Panie, Boski Sakrament, wieczną pamiątkę Twojej niezmierzonej miłości; spraw, prosimy, abyśmy naśladując św", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Witalisa*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Świętych Twoich w wieczno", - "id": "Commemoratio Postcommunio" - } - ], - "2020-04-29": [ - { - "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie jeg", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, spraw, abyśmy z należną gorliwością naśladowali wiarę świętego Piotra, Twego Męczennika,", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 2:8-10; 3:10-12*\nNajmilszy: Pamiętaj, że Pan Jezus Chrystu", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:34-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie mniemajcie, ", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", - "id": "Offertorium" - }, - { - "body": "Panie, łaskawie wysłuchaj naszych próśb, które do Ciebie zanosimy za wstawiennictwem świętego Piotra, Twego Męczennika, ", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Mt 16:24*\nJeśli kto chce za mną iść, niech się zaprze samego siebie i weźmie krzyż swój, i naśladuje mnie.", - "id": "Communio" - }, - { - "body": "Panie, niech Sakrament, któryśmy przyjęli, strzeże wiernych Twoich, i za wstawiennictwem św. Piotra, Twego Męczennika, b", - "id": "Postcommunio" - } - ], - "2020-04-30": [ - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Introitus" - }, - { - "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy N., nabyli uczu", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Ps 44:15-16*\nZa nią prowadzą do Króla dziewicę, jej druhny wiodą do niego z radością. Alleluja.\n*Ps", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - } - ], - "2020-05-01": [ - { - "body": "*Mdr 10:17*\nMądrość oddała sprawiedliwym nagrodę za ich pracę i prowadziła ich przedziwną drogą, i była im we dnie zasło", - "id": "Introitus" - }, - { - "body": "Boże, Stwórco wszechrzeczy, który nałożyłeś na rodzaj ludzki obowiązek pracy, spraw łaskawie, abyśmy za przykładem i pod", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 3:14-15, 17, 23-24*\nBracia: Miejcie miłość, która jest węzłem ", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\nW jakimkolwiek nieszczęściu wzywać mnie będą, wysłucham ich, i będę ich opiekunem. Alleluja.\n℣. Spraw", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:54-58*\nOnego czasu: Jezus przyszedłszy do ojczyzny swojej naucza", - "id": "Evangelium" - }, - { - "body": "*Ps 89:17*\nDobroć Pana Boga naszego niechaj będzie nad nami; szczęść nam w pracy rąk naszych i poszczęść dziełu rąk nasz", - "id": "Offertorium" - }, - { - "body": "Dary, które składamy Ci, Panie, z pracy rąk naszych, niech się staną za przyczyną św. Józefa zadatkiem naszej jedności i", - "id": "Secreta" - }, - { - "body": "*Prefacja o św. Józefie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali ", - "id": "Prefatio" - }, - { - "body": "*Mt 13:54-55*\nSkądże Mu ta mądrość i moc? Czyż nie jest to syn cieśli i czyż matki Jego nie zwą Maryja? (O. W. Alleluja.", - "id": "Communio" - }, - { - "body": "Panie, niech te święte dary, które spożyliśmy, dopełnią za wstawiennictwem św. Józefa nasze działanie i zapewnią nam nag", - "id": "Postcommunio" - } - ], - "2020-05-02": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Wysłuchaj, prosimy Cię, Panie, naszych modlitw, które zanosimy w uroczystość św. Atanazego, Twego wyznawcy i Biskupa, a ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 4:5-14*\nBracia: Nie samych siebie głosimy, ale Jezusa Chry", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Ps 109:4*\n℣. Tyś kapłanem na wieki na wzór Melchizedeka. Alleluja.\n*Jk 1:12*\nBłogosławiony człowiek", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:23-28*\nOnego czasu: Rzekł Jezus uczniom swoim: «Gdy was prześlad", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech doroczna uroczystość św. Atanazego, Twego Wyznawcy i Biskupa, uczyni nas godnymi Twojej miłośc", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Mt 10:27*\nCo wami mówię w ciemności, opowiadajcie na świetle, mówi Pan; i co usłyszycie na ucho, głoście na dachach, al", - "id": "Communio" - }, - { - "body": "Boże, Ty nagradzasz dusze wierne; spraw, abyśmy dostąpili przebaczenia przez prośby św. Atanazego, Twego Wyznawcy i Bisk", - "id": "Postcommunio" - } - ], - "2020-05-03": [ - { - "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci Najświętszej Maryi Panny; z Jej uroczystości radują się Anioło", - "id": "Introitus" - }, - { - "body": "Wszechmogący i miłosierny Boże, któryś dał nam w Najświętszej Maryi Pannie przedziwną pomoc dla obrony naszego narodu, s", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Judyty.\n*Jdt 13:22; 13:23-25*\nPobłogosławił Cię Pan w mocy swojej, bo przez Cię wniwecz obrócił naszyc", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Pnp 6:3; 6:9*\n℣. Cała piękna jesteś i pełna wdzięku, córko syjońska! Piękna jak księżyc, wybrana jak", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:25-27*\nOnego czasu: Pod krzyżem Jezusowym stała Matka Jego i siostra ", - "id": "Evangelium" - }, - { - "body": "*Jer 18:20*\nPamiętaj o nas, Matko Dziewico, przed obliczem Boga, abyś prosiła o dobra dla nas i aby od nas odwrócił swój", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, jaką Ci składamy czcząc pamięć najłaskawszej Dziewicy Maryi, która nas pociesza w każdym utrapi", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "Najdostojniejsza Królowo świata, Maryjo, zawsze Dziewico, któraś porodziła Chrystusa Pana, Zbawiciela wszystkich ludzi, ", - "id": "Communio" - }, - { - "body": "Boże, któryś dał nam Najświętszą Dziewicę Maryję za szczególną Patronkę, spraw łaskawie, abyśmy zasileni Twoim świętym d", - "id": "Postcommunio" - } - ], - "2020-05-04": [ - { - "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", - "id": "Introitus" - }, - { - "body": "Boże, który sprawiasz nam radość z uroczystości św. Floriana, Twego Męczennika, daj łaskawie, byśmy czcząc chwalebne jeg", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Moniki, Wdowy*\nBoże, pocieszycielu zasmuconych i nadziejo ufających Tobie, któryś miłosiernie przyjął r", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 5:1-5*\nSprawiedliwi staną z wielką stanowczością naprzeciw tych, którzy ich uciskali i ", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:1-7*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jam jest prawdziwy krze", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Boże, niech zaleci Tobie ten dar ofiarny dostojna modlitwa św. Floriana, Twego Męczennika, który, zniewolon", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Moniki, Wdowy*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając,", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią, alleluja, alleluja", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech uczestnictwo w niebieskim Sakramencie chroni nas od podstępnej napaści wroga i za przyczyną św", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Moniki, Wdowy*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-05": [ - { - "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", - "id": "Introitus" - }, - { - "body": "Boże, który raczyłeś wybrać św. Piusa na Najwyższego Pasterza dla poskromienia nieprzyjaciół Twojego Kościoła i odnowien", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Mt 16:18*\n℣. Ty jesteś Opoką, a na tej Opoce zbuduję Kościół mój. Alleluja.\n*Ps 44:17-18*\nUstanowis", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", - "id": "Offertorium" - }, - { - "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", - "id": "Postcommunio" - } - ], - "2020-05-06": [ - { - "body": "*Ps 65:1-2*\nZ radością sławcie Boga, wszystkie ziemie, alleluja, opiewajcie chwałę Jego imienia, alleluja, alleluja, all", - "id": "Introitus" - }, - { - "body": "Boże, Ty ukazujesz błądzącym światło Twej prawdy, aby mogli wrócić na drogę sprawiedliwości; spraw, niech wszyscy uważaj", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:11-19*\nNajmilsi: Proszę was, abyście jako przychodnie i goście powstrz", - "id": "Lectio" - }, - { - "body": "\n*Ps 110:9*\nPan zesłał odkupienie swojemu ludowi. \n*Łk 24:46*\nTrzeba było, aby Chrystus cierpiał i zmartwychwstał dnia t", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:16-22*\nOnego czasu rzekł Jezus uczniom swoim: «Już niedługo, a nie bę", - "id": "Evangelium" - }, - { - "body": "*Ps 145:2*\nChwal, duszo moja, Pana! Boga wielbić pragnę przez całe me życie; śpiewać Mu będę, dopóki będę żył, alleluja.", - "id": "Offertorium" - }, - { - "body": "Panie, przez te misteria udziel nam pomocy abyśmy poskramiali ziemskie pragnienia i nauczyli się miłować rzeczy niebiesk", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*J 16:16*\nJuż niedługo, a nie będziecie Mnie oglądać, alleluja; i znowu niedługo, a ujrzycie Mnie, bo idę do Ojca, allel", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech Sakrament, który przyjęliśmy, nasyci nas pokarmem duchowym i udzieli pomocy doczesnej.\nPrzez P", - "id": "Postcommunio" - } - ], - "2020-05-07": [ - { - "body": "*Ps 65:1-2*\nZ radością sławcie Boga, wszystkie ziemie, alleluja, opiewajcie chwałę Jego imienia, alleluja, alleluja, all", - "id": "Introitus" - }, - { - "body": "Boże, Ty ukazujesz błądzącym światło Twej prawdy, aby mogli wrócić na drogę sprawiedliwości; spraw, niech wszyscy uważaj", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 2:11-19*\nNajmilsi: Proszę was, abyście jako przychodnie i goście powstrz", - "id": "Lectio" - }, - { - "body": "\n*Ps 110:9*\nPan zesłał odkupienie swojemu ludowi. \n*Łk 24:46*\nTrzeba było, aby Chrystus cierpiał i zmartwychwstał dnia t", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:16-22*\nOnego czasu rzekł Jezus uczniom swoim: «Już niedługo, a nie bę", - "id": "Evangelium" - }, - { - "body": "*Ps 145:2*\nChwal, duszo moja, Pana! Boga wielbić pragnę przez całe me życie; śpiewać Mu będę, dopóki będę żył, alleluja.", - "id": "Offertorium" - }, - { - "body": "Panie, przez te misteria udziel nam pomocy abyśmy poskramiali ziemskie pragnienia i nauczyli się miłować rzeczy niebiesk", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*J 16:16*\nJuż niedługo, a nie będziecie Mnie oglądać, alleluja; i znowu niedługo, a ujrzycie Mnie, bo idę do Ojca, allel", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech Sakrament, który przyjęliśmy, nasyci nas pokarmem duchowym i udzieli pomocy doczesnej.\nPrzez P", - "id": "Postcommunio" - } - ], - "2020-05-08": [ - { - "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", - "id": "Introitus" - }, - { - "body": "Boże, za Twój Kościół zginął pod mieczami bezbożnych chwalebny Biskup Stanisław; spraw, prosimy, aby wszyscy, którzy wzy", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 5:1-6*\nBracia: Każdy arcykapłan, spośród ludzi wzięty, dl", - "id": "Lectio" - }, - { - "body": "*J 10:14*\nJam jest pasterz dobry: znam swoje owce i one mnie znają. Alleluja.\n*Ps 109:4*\n℣. Tyś kapłanem na wieki na wzó", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", - "id": "Evangelium" - }, - { - "body": "*Ps 20:4-5*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni; błagał Cię o życie, a Tyś go nim obdarzył, alleluja.", - "id": "Offertorium" - }, - { - "body": "Poświęć, Panie, złożone Ci dary, i za przyczyną św. Stanisława, Twego Męczennika i Biskupa, daj się przez nie przebłagać", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*J 10:14*\nJam jest pasterz dobry, alleluja; znam swoje owce i one mnie znają, alleluja, alleluja.", - "id": "Communio" - }, - { - "body": "Niech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną św. Stanisława, Twego Męczennika i Biskupa, stanie się ", - "id": "Postcommunio" - } - ], - "2020-05-09": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, Tyś dał ludowi Swemu świętego Grzegorza za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć o", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Syr 39:6-14*\nSprawiedliwy już od zarania czujnie zwraca swe serce do Pana, który go stworzy", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Syr 45:9*\nUmiłował go Pan i przyozdobił, przyodział go szatą chwały. Alleluja.\n*Oz 14:6*\nSprawiedli", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", - "id": "Postcommunio" - } - ], - "2020-05-10": [ - { - "body": "*Ps 97:1; 97:2*\nŚpiewajcie Panu pieśń nową, alleluja, albowiem Pan uczynił cuda, alleluja,\nw oczach pogan okazał swoją s", - "id": "Introitus" - }, - { - "body": "Boże, który sprawiasz, że dusze Twych wiernych mają jedno dążenie, daj ludom Twoim to miłować, co nakazujesz, tego pragn", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 1:17-21*\nNajmilsi: Wszelki dar dobry i każda wzniosła łaska z wysoka poch", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 117:16*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. Alleluja.\n*Rz 6:9*\nChrystus po", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:5-14*\nOnego czasu: rzekł Jezus uczniom swoim: «Idę do Tego, który mni", - "id": "Evangelium" - }, - { - "body": "*Ps 65:1-2; 85:16*\nZ radością sławcie Boga, wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się B", - "id": "Offertorium" - }, - { - "body": "Boże, który przez przedziwną wymianę dokonującą się w tej ofierze czynisz nas uczestnikami jedynego i najwyższego Bóstwa", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*J 16:8*\nGdy przyjdzie Pocieszyciel, Duch prawdy, przekona świat o grzechu, o sprawiedliwości i o sądzie, alleluja, alle", - "id": "Communio" - }, - { - "body": "Przybądź nam z pomocą, Panie, Boże nasz, aby Sakrament, któryśmy z wiarą przyjęli, oczyścił nas z wad i uchronił od wszy", - "id": "Postcommunio" - } - ], - "2020-05-11": [ - { - "body": "*Neh 9:27*\nCzasu utrapienia swego wołali do Cienie, Panie, a Ty wysłuchiwałeś ich z nieba, alleluja, alleluja.\n*Ps 32:1*", - "id": "Introitus" - }, - { - "body": "Boże, Ty co roku uweselasz nas uroczystością świętych Apostołów Twoich Filipa i Jakuba; spraw łaskawie, abyśmy zapalali ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 5:1-5*\nSprawiedliwi staną z wielką stanowczością naprzeciw tych, którzy ich uciskali i ", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*J 14", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 14:1-13*\n*Po Ostatniej Wieczerzy Chrystus poucza św. Filipa i innych Apo", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", - "id": "Offertorium" - }, - { - "body": "Panie, przyjmij łaskawie dary, które składamy w uroczystość Apostołów Twoich Filipa i Jakuba, i odwróć od nas wszelkie n", - "id": "Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*J 14:9; 14:10*\n*Przyjmując w Eucharystii Chrystusa, jednoczymy się z Trójcą Przenajświętszą.*\nTak długo jestem z wami, ", - "id": "Communio" - }, - { - "body": "Nasyceni zbawiennym Sakramentem prosimy Cię, Panie, aby wspierały nas modły tych, których uroczystość obchodzimy.\nPrzez ", - "id": "Postcommunio" - } - ], - "2020-05-12": [ - { - "body": "*Ps 32:18-20*\nOto oczy Pana nad tymi, co się Go boją: nad tymi, co się łaski spodziewają od Niego, alleluja, po to, by w", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech radosne święto Twoich Męczenników Nereusza, Achillesa, Domicylli i Pankracego zawsze pobudza n", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 5:1-5*\nSprawiedliwi staną z wielką stanowczością naprzeciw tych, którzy ich uciskali i ", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n℣. Oto prawdziwe braterstwo, co zwyciężyło występki świata: poszło śladem Chrystusa, otrzymując zasz", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:46-53*\n*Bóg udziela nam swojej łaski w miarę naszej ufności.*\nOnego cz", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech będzie miłe dla Ciebie wyznanie wiary złożone przez świętych Męczenników Twoich Nereusza, Achi", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Ps 32:1*\nSprawiedliwi, weselcie się w Panu: prawym przystoi Go chwalić, alleluja.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, by przyjęty przez nas Najświętszy Sakrament przez modlitwy świętych Męczenników Twoich Nereusza, Ach", - "id": "Postcommunio" - } - ], - "2020-05-13": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, Tyś dla usunięcia podstępnych błędów i dla obrony praw Stolicy Apostolskiej ozdobił św. Roberta, Twego Biskupa i D", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 7:7-14*\nPragnąłem, a dano mi zrozumienie; i błagałem, a spłynął na mnie duch mądrości. ", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n℣. Uczeni będą świecić jak światłość sklepienia. Alleluja.\n℣. Którzy ku sprawiedliwości wprawiają wi", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 72:28*\nMnie zaś dobrze jest być blisko Boga, w Panu Bogu pokładać nadzieję i głosić wszystkie dzieła Twoje w bramach", - "id": "Offertorium" - }, - { - "body": "Składamy Ci, Panie, dary ofiarne jako miłą wonność; spraw, abyśmy pouczeni nauką i przykładem św. Roberta z radosnym ser", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Mt 5:14; 5:16*\nWy jesteście światłością świata. Tak niechaj świeci światłość wasza przed ludźmi, aby widzieli dobre czy", - "id": "Communio" - }, - { - "body": "Panie Boże nasz, niech przyjęty przez nas Sakrament podtrzymuje w nas żar miłości, którym rozpalony św. Robert poświęcał", - "id": "Postcommunio" - } - ], - "2020-05-14": [ - { - "body": "*Ps 97:1; 97:2*\nŚpiewajcie Panu pieśń nową, alleluja, albowiem Pan uczynił cuda, alleluja,\nw oczach pogan okazał swoją s", - "id": "Introitus" - }, - { - "body": "Boże, który sprawiasz, że dusze Twych wiernych mają jedno dążenie, daj ludom Twoim to miłować, co nakazujesz, tego pragn", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Bonifacego, Męczennika*\nDaj, prosimy Cię, wszechmogący Boże, abyśmy obchodząc uroczystość św. Męczennik", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 1:17-21*\nNajmilsi: Wszelki dar dobry i każda wzniosła łaska z wysoka poch", - "id": "Lectio" - }, - { - "body": "\n*Ps 117:16*\nPrawica Pańska moc okazała, prawica Pańska dźwignęła mnie. \n*Rz 6:9*\nChrystus powstawszy z martwych więcej ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:5-14*\nOnego czasu: rzekł Jezus uczniom swoim: «Idę do Tego, który mni", - "id": "Evangelium" - }, - { - "body": "*Ps 65:1-2; 85:16*\nZ radością sławcie Boga, wszystkie ziemie, opiewajcie chwałę Jego imienia. Pójdźcie wszyscy, co się B", - "id": "Offertorium" - }, - { - "body": "Boże, który przez przedziwną wymianę dokonującą się w tej ofierze czynisz nas uczestnikami jedynego i najwyższego Bóstwa", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Bonifacego, Męczennika*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieski", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*J 16:8*\nGdy przyjdzie Pocieszyciel, Duch prawdy, przekona świat o grzechu, o sprawiedliwości i o sądzie, alleluja, alle", - "id": "Communio" - }, - { - "body": "Przybądź nam z pomocą, Panie, Boże nasz, aby Sakrament, któryśmy z wiarą przyjęli, oczyścił nas z wad i uchronił od wszy", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Bonifacego, Męczennika*\nPokrzepieni uczestnictwem w świętej uczcie prosimy Cię, Panie, Boże nasz, abyśm", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-15": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, Tyś powołał świętego Wyznawcę Jana Chrzciciela do chrześcijańskiego wychowania ubogich i umacniania młodzieży na d", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Jk 1:12.*\nBłogosławiony człowiek, który zniesie pokusę, bo utwierdziwszy się, otrzyma wieniec żywota", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-5*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - } - ], - "2020-05-16": [ - { - "body": "*Ps 63:3*\nOcaliłeś mię, Boże, od zgrai złoczyńców, alleluja, i od gromady czyniących nieprawość, alleluja, alleluja.\n*Ps", - "id": "Introitus" - }, - { - "body": "Boże, który świętego Andrzeja udręczonego rozlicznymi katuszami za wyznawanie prawdziwej wiary uwieńczyłeś świetnym męcz", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 2:8-10; 3:10-12*\nNajmilszy: Pamiętaj, że Pan Jezus Chrystu", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:1-7*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jam jest prawdziwy krze", - "id": "Evangelium" - }, - { - "body": "*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych, alleluja, alleluja.", - "id": "Offertorium" - }, - { - "body": "Składamy Ci, Panie, niepokalaną ofiarę Jednorodzonego Syna Twego, usilnie błagając, abyśmy przez modlitwę i orędownictwo", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią, alleluja, alleluja", - "id": "Communio" - }, - { - "body": "Panie, gdyśmy spożyli te święte dary z ołtarza ku czci św. Męczennika Twego Andrzeja, udziel nam łaskawie, abyśmy poucze", - "id": "Postcommunio" - } - ], - "2020-05-17": [ - { - "body": "*Iz 48:20*\nRadosną nowinę głoście, niech będzie słyszana, alleluja, po krańce ziemi rozpowiadajcie, iż Pan swój naród wy", - "id": "Introitus" - }, - { - "body": "Boże, od Ciebie pochodzi wszystko, co dobre; pokornie Cię prosimy, aby z Twojego natchnienia myśli nasze były prawe i po", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 1:22-27*\nNajmilsi: Bądźcie wykonawcami słowa, a nie tylko słuchaczami, os", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n℣. Powstał Chrystus z martwych i zajaśniał nam, których Krwią swoją odkupił. Alleluja.\n*J 16:28*\nWysz", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 16:23-30*\n*Związek chrześcijan z Chrystusem jest tak ścisły, że ich modl", - "id": "Evangelium" - }, - { - "body": "*Ps 65:8-9; 65:20*\n*Przez Chrzest święty zostaliśmy przeznaczeni do życia.*\nBłogosławcie, ludy, naszemu Bogu i sławę Jeg", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich złożone, a nabożne sprawowanie służby Twojej niech na", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Ps 95:2*\nŚpiewajcie Panu, alleluja; śpiewajcie Panu i błogosławcie Jego imieniu; z dnia na dzień zwiastujcie zbawienie ", - "id": "Communio" - }, - { - "body": "Spraw, Panie, abyśmy posileni niebieskim pokarmem, pragnęli tego, co prawe i osiągnęli to, czego pragniemy.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-05-18": [ - { - "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie jeg", - "id": "Introitus" - }, - { - "body": "Boże, któryś ten dzień wsławił zwycięstwem św. Męczennika Twojego Wenancjusza, wysłuchaj próśb Swojego ludu i spraw, byś", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 10: 10-14*\n*Opatrzność Boża kierowała losami prześladowanego patriarchy Jakuba i Józefa", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 88:6*\nNiebiosa wielbią cuda Twoje, Panie, a wierność Twoją zgromadzenie świętych. Alleluja.\n*Ps 2", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:34-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie mniemajcie, ", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", - "id": "Offertorium" - }, - { - "body": "Wszechmogący Boże, niech zasługi św. Wenancjusza uczynią tę ofiarę miłą Tobie, abyśmy wsparci jego pomocą, stali się ucz", - "id": "Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Mt 16:24*\nJeśli kto chce za mną iść, niech się zaprze samego siebie i weźmie krzyż swój, i naśladuje mnie.", - "id": "Communio" - }, - { - "body": "Przyjęliśmy, Panie, Sakrament życia wiecznego, pokornie Cię błagając, aby przez modlitwy św. Męczennika Twego Wenancjusz", - "id": "Postcommunio" - } - ], - "2020-05-19": [ - { - "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", - "id": "Introitus" - }, - { - "body": "Boże, Tyś wyniósł św. Piotra Celestyna na szczyty papiestwa i nauczyłeś go mniej je cenić niż pokorę, spraw łaskawie, ab", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Pudencjany*\nWysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Tw", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Mt 16:18*\n℣. Ty jesteś Opoką, a na tej Opoce zbuduję Kościół mój. Alleluja.\n*Ps 44:17-18*\nUstanowis", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", - "id": "Offertorium" - }, - { - "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Pudencjany*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Pudencjany*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-20": [ - { - "body": "*Iz 48:20*\nRadosną nowinę głoście, niech będzie słyszana, alleluja, po krańce ziemi rozpowiadajcie, iż Pan swój naród wy", - "id": "Introitus" - }, - { - "body": "Boże, od Ciebie pochodzi wszystko, co dobre; pokornie Cię prosimy, aby z Twojego natchnienia myśli nasze były prawe i po", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Bernardyna ze Sieny, Wyznawcy*\nPanie Jezu, któryś zapalił św. Bernardyna, Twego Wyznawcę, niezwykłą mił", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:7-13*\n*Chrystus wraca do nieba otoczony rzeszą wiernych, któr", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n℣. Powstał Chrystus z martwych i zajaśniał nam, których Krwią swoją odkupił. Alleluja.\n*J 16:28*\nWysz", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 17:1-11*\n*Ewangelia wyjęta jest ze wzruszającej modlitwy, którą Zbawicie", - "id": "Evangelium" - }, - { - "body": "*Ps 65:8-9; 65:20*\n*Przez Chrzest święty zostaliśmy przeznaczeni do życia.*\nBłogosławcie, ludy, naszemu Bogu i sławę Jeg", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich złożone, a nabożne sprawowanie służby Twojej niech na", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Bernardyna ze Sieny, Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, ż", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja Wielkanocna*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy Ciebie, Panie, zawsze, a zwłaszcza ", - "id": "Prefatio" - }, - { - "body": "*Ps 95:2*\nŚpiewajcie Panu, alleluja; śpiewajcie Panu i błogosławcie Jego imieniu; z dnia na dzień zwiastujcie zbawienie ", - "id": "Communio" - }, - { - "body": "Spraw, Panie, abyśmy posileni niebieskim pokarmem, pragnęli tego, co prawe i osiągnęli to, czego pragniemy.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Bernardyna ze Sieny, Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże na", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-21": [ - { - "body": "*Dz 1:11*\nMężowie Galilejscy, czemu stoicie zapatrzeni w niebo? Alleluja. Jak widzieliście Go wstępującego do nieba, tak", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, wierzymy, że Twój Syn Jednorodzony, nasz Zbawiciel, w dniu dzisiejszym wstąpił do nieba; spraw prosim", - "id": "Oratio" - }, - { - "body": "Czytania z Dziejów Apostolskich\n*Dz 1:1-11*\n*Wstęp do księgi Dziejów Apostolskich to równocześnie wstęp do dziejów Kości", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. Alleluja.\n*Ps 67:18-19*\n℣. Pa", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:14-20*\nOnego czasu: Ukazał się Jezus jedenastu, gdy siedzieli u sto", - "id": "Evangelium" - }, - { - "body": "*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. Alleluja.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, te dary, które Ci składamy dla uczczenia chwalebnego Wniebowstąpienia Syna Twojego i pozwól łaskawie, a", - "id": "Secreta" - }, - { - "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 67:33-34*\nŚpiewajcie psalm Panu, który wstępuje ponad najwyższe niebiosa odwieczne, alleluja.", - "id": "Communio" - }, - { - "body": "Wszechmogący i miłosierny Boże, Ciebie prosimy, daj nam osiągnąć niewidzialny skutek tego, cośmy widomie w sakramencie s", - "id": "Postcommunio" - } - ], - "2020-05-22": [ - { - "body": "*Dz 1:11*\nMężowie Galilejscy, czemu stoicie zapatrzeni w niebo? Alleluja. Jak widzieliście Go wstępującego do nieba, tak", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, wierzymy, że Twój Syn Jednorodzony, nasz Zbawiciel, w dniu dzisiejszym wstąpił do nieba; spraw prosim", - "id": "Oratio" - }, - { - "body": "Czytania z Dziejów Apostolskich\n*Dz 1:1-11*\n*Wstęp do księgi Dziejów Apostolskich to równocześnie wstęp do dziejów Kości", - "id": "Lectio" - }, - { - "body": "\n*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. \n*Ps 67:18-19*\n℣. Pan z Synaju zdąża ku świątyn", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:14-20*\nOnego czasu: Ukazał się Jezus jedenastu, gdy siedzieli u sto", - "id": "Evangelium" - }, - { - "body": "*Ps 46:6*\nBóg wstępuje wśród radosnych pieśni i Pan przy dźwięku trąby. Alleluja.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, te dary, które Ci składamy dla uczczenia chwalebnego Wniebowstąpienia Syna Twojego i pozwól łaskawie, a", - "id": "Secreta" - }, - { - "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 67:33-34*\nŚpiewajcie psalm Panu, który wstępuje ponad najwyższe niebiosa odwieczne, alleluja.", - "id": "Communio" - }, - { - "body": "Wszechmogący i miłosierny Boże, Ciebie prosimy, daj nam osiągnąć niewidzialny skutek tego, cośmy widomie w sakramencie s", - "id": "Postcommunio" - } - ], - "2020-05-23": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Lb 17:8*\nZakwitła różdżka Jessego: Dziewica zrodziła Boga-Człowieka. Bóg światu przywrócił pokój, j", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:25-27*\nOnego czasu: Pod krzyżem Jezusowym stała Matka Jego i siostra ", - "id": "Evangelium" - }, - { - "body": "Błogosławiona jesteś, Panno Maryjo, któraś nosiła Stwórcę wszechrzeczy. Porodziłaś Tego, który Cię stworzył, i na wieki ", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - } - ], - "2020-05-24": [ - { - "body": "*Ps 26:7; 26:8; 26:9*\nUsłysz, Panie, głos mój, którym wołam, alleluja, do Ciebie mówi serce moje, oblicze moje Cię szuka", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, spraw, aby nasza wola zawsze była Ci oddana i abyśmy szczerym sercem służyli Twojemu majesta", - "id": "Oratio" - }, - { - "body": "*Wspomnienie N. M. P. Wspomożycielki Wiernych*\nWszechmogący i miłosierny Boże, któryś dał nam w Najświętszej Maryi Panni", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 4:7-11*\nNajmilsi: Bądźcie roztropni i czuwajcie w modlitwach. A nade wsz", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 46:9*\n℣. Pan króluje nad narodami, Bóg zasiada na swym świętym tronie. Alleluja.\n*J 14:18*\n℣. Nie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:26-27; 16:1-4*\n*Duch Święty zawsze udziela Kościołowi sił potrzebnych", - "id": "Evangelium" - }, - { - "body": "*Ps 46:6*\nWstępuje Bóg wśród radosnych okrzyków, wstępuje Pan przy dźwięku trąby, alleluja.", - "id": "Offertorium" - }, - { - "body": "Panie, niechaj niepokalana ofiara oczyści nas i umocni nasze dusze łaską niebieską.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Wspomnienie N. M. P. Wspomożycielki Wiernych*\nBłagając o triumf religii chrześcijańskiej, składamy Ci, Panie, ofiary, a", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*J 17:12-13; 17:15*\nOjcze, gdy byłem z nimi, strzegłem tych, których mi dałeś, alleluja: a teraz idę do Ciebie. Nie pros", - "id": "Communio" - }, - { - "body": "Nasyceni świętymi darami, prosimy Cię, Panie, abyśmy zawsze trwali w dziękczynieniu.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie N. M. P. Wspomożycielki Wiernych*\nWspomagaj, Panie, lud, który pokrzepiasz uczestnictwem w Ciele i Krwi Two", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-25": [ - { - "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", - "id": "Introitus" - }, - { - "body": "Boże, mocy ufających Tobie, który dla obrony wolności Kościoła umocniłeś cnotą wytrwałości św. Grzegorza, Twojego Wyznaw", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Urbana*\nBoże, który mocno oparłeś swój Kościół na opoce apostoła i wybawiłeś go od straszliwych mocy pi", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Mt 16:18*\n℣. Ty jesteś Opoką, a na tej Opoce zbuduję Kościół mój. Alleluja.\n*Ps 44:17-18*\nUstanowis", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Urbana*\nPanie, przyjmij łaskawie dary, które Ci z radością składamy i spraw, aby za przyczyną świętego ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Urbana*\nPomnażaj w Kościele Twoim, prosimy Cię, Panie, działalność danego mu Ducha, Źródła łaski: a dzi", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-26": [ - { - "body": "*Rz 5:5*\nMiłość Boża rozlana jest w sercach naszych przez Ducha Świętego, mieszkającego w nas. (O. W. Alleluja, alleluja", - "id": "Introitus" - }, - { - "body": "Boże, któryś wyniósł błogosławionego Filipa, Twego Wyznawcę, do chwały Świętych Swoich, dozwól łaskawie, abyśmy ciesząc ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Eleuteriusza*\n*Starożytny Rzym przyznawał wybitnym obywatelom przywilej skutecznego wpływania na wyroki", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 7:7-14*\nPragnąłem, a dano mi zrozumienie; i błagałem, a spłynął na mnie duch mądrości. ", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Lam 1:13*\nZesłał ogień z wysoka, kazał mu wejść w moje kości i pouczył mnie. Alleluja.\n*Ps 38:4*\nRo", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 118:32*\nDrogą Twoich poleceń pobiegnę, gdy serce moje rozszerzysz. (O. W. Alleluja.)", - "id": "Offertorium" - }, - { - "body": "Wejrzyj, Panie litościwie na tę ofiarę i spraw, aby nad Duch Święty rozpalił tym ogniem, który przedziwnie przeniknął se", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Eleuteriusza*\nPanie, przyjmij łaskawie przez zasługi świętego N., Męczennika i Biskupa ofiarę, którą Ci", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 83:3*\nSerce moje i ciało moje radośnie wykrzykują ku Bogu żywemu. (O. W. Alleluja.)", - "id": "Communio" - }, - { - "body": "Nasyceni niebieską ucztą, prosimy Cię, Panie, abyśmy przez zasługi i za przykładem św. Filipa, Twojego Wyznawcy, zawsze ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Eleuteriusza*\nPokrzepieni uczestnictwem w świętej uczcie prosimy Cię, Panie, Boże nasz, abyśmy za przyc", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-27": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, który wsławiłeś Swój Kościół nauką św. Bedy, Twego Wyznawcy i Doktora, spraw miłościwie, niech sługi Twoje oświeca", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Jana I*\nBoże, co roku uweselasz nas uroczystością świętego N., Twojego Męczennika i Biskupa; spraw łask", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Syr 45:9*\nUmiłował go Pan i przyozdobił, przyodział go szatą chwały. Alleluja.\n*Oz 14:6*\nSprawiedli", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Jana I*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego N., Twego Męczennika i Biskupa, daj się", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Jana I*\nPanie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętego N., Twego Męczennika i B", - "id": "Commemoratio Postcommunio" - } - ], - "2020-05-28": [ - { - "body": "*Ps 131,9-10*\nNiech kapłani Twoi odzieją się w sprawiedliwość, a święci Twoi niech się radują; przez wzgląd na Dawida, s", - "id": "Introitus" - }, - { - "body": "Boże, który raczyłeś oświecić ludy Anglii światłem prawdziwej wiary przez nauczanie i cuda św. Augustyna, Twego Wyznawcy", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 2:2-9*\nBracia: Zaufawszy Bogu naszemu głosiliśmy wam Ew", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Ps 109:4*\nPan przysiągł i nie pożałuje: Tyś kapłanem na wieki na wzór Melchizedeka. Alleluja.\n*Syr ", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Składamy Ci, Panie ofiarę w uroczystość św. Augustyna, Twego Wyznawcy i Biskupa, prosząc pokornie, by zbłąkane owieczki,", - "id": "Secreta" - }, - { - "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Posileni zbawienną ofiarą, pokornie błagamy Cię, Panie, aby dzięki orędownictwu św. Augustyna na każdym miejscu nieustan", - "id": "Postcommunio" - } - ], - "2020-05-29": [ - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Introitus" - }, - { - "body": "Boże, miłośniku dziewictwa, który ozdobiłeś niebieskimi darami św. Dziewicę Marię Magdalenę, gorejącą miłością ku Tobie,", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n*Ps 44:15-16*\nZa nią prowadzą do Króla dziewicę, jej druhny wiodą do niego z radością. Alleluja.\n*Ps", - "id": "GradualeP" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Prefacja o Wniebowstąpieniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - } - ], - "2020-05-30": [ - { - "body": "*Ez 36:23; 36:24; 36:25-26*\nGdy zajaśnieje świętość moja w was, zgromadzę was ze wszystkich ziem i wyleję na was wodę cz", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, spraw, niech zabłyśnie nad nami blask Twojej chwały, a światło Twej jasności niechaj umocni oświeceni", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 19:1-8*\nW one dni: Gdy Apollo bawił w Koryncie, stało się, iż Paweł obszedłszy wyże", - "id": "Lectio" - }, - { - "body": "Alleluja\n*Ps 106:1*\n℣. Sławcie Pana, bo dobry, bo na wieki miłosierdzie Jego.\n*Ps 116:1-2*\nChwalcie Pana, wszystkie naro", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 14:15-21*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli mnie miłujecie,", - "id": "Evangelium" - }, - { - "body": "*Ps 103:30-31*\nZeślij Ducha Twojego, a powstanie życie i odnowisz oblicze ziemi: niech chwała Pańska trwa na wieki, alle", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, uświęć złożone dary i oczyść nasze serca światłem Ducha Świętego.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", - "id": "Prefatio" - }, - { - "body": "*J 7:37-39*\nW ostatnim dniu święta mówił Jezus: Kto wierzy we mnie, rzeki wody żywej popłyną z jego wnętrza. A to mówił ", - "id": "Communio" - }, - { - "body": "Panie, niech tchnienie Ducha Świętego oczyści nasze serca i użyźni je rosą Jego łaski.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-05-31": [ - { - "body": "*Mdr 1:7*\nDuch Pański napełnił okrąg ziemi, alleluja: A Ten, który wszystko obejmuje, zna każde słowo, alleluja, alleluj", - "id": "Introitus" - }, - { - "body": "Boże, któryś w dniu dzisiejszym pouczył serca wiernych światłem Ducha Świętego, daj nam w tymże Duchu poznać co jest pra", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 2:1-11*\n*Dar języków jest potwierdzeniem powszechnej misji Kościoła. Wszystkie naro", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 103:30*\nZeślij Ducha Twojego, a powstanie życie i odnowisz oblicze ziemi, alleluja. (Tu się przyk", - "id": "Graduale" - }, - { - "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 14:23-31*\nOnego czasu rzekł Jezus uczniom swoim: «Jeśli mnie kto miłuje,", - "id": "Evangelium" - }, - { - "body": "*Ps 67:29-30*\nUtwierdź to, Boże, czegoś w nas dokonał. Przez wzgląd na Twoją świątynię, która jest w Jeruzalem, niech kr", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, uświęć złożone dary i oczyść nasze serca światłem Ducha Świętego.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", - "id": "Prefatio" - }, - { - "body": "*Dz 2:2; 2:4*\nNagle dał się słyszeć z nieba szum jakby nadchodzącego wichru gwałtownego tam gdzie przebywali, alleluja. ", - "id": "Communio" - }, - { - "body": "Panie, niech tchnienie Ducha Świętego oczyści nasze serca, i użyźni je rosą Jego łaski.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-06-01": [ - { - "body": "*Ps 80:17*\nNakarmił ich wyborną pszenicą, alleluja, alleluja, i nasycił miodem z opoki, alleluja, alleluja.\n*Ps 80:2*\nRa", - "id": "Introitus" - }, - { - "body": "Boże, Tyś zesłał Ducha Świętego na Swoich Apostołów; spełnij pobożne prośby Swego ludu i racz obdarzyć pokojem tych, któ", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 10:34; 10:42-48*\n*Św. Piotr pouczony widzeniem udał się do domu oficera rzymskiego,", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Dz 2:4*\nOpowiadali Apostołowie rozmaitymi językami wielkie dzieła Boże. Alleluja. (Tu się przyklęka)", - "id": "Graduale" - }, - { - "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 3:16-21*\n*Wiara w Jezusa Zbawiciela świata jest koniecznym warunkiem zba", - "id": "Evangelium" - }, - { - "body": "*Ps 17:14; 17:16*\nZagrzmiał Pan na niebiosach, Najwyższy dał słyszeć swój głos; i otworzyły się źródła wody, alleluja.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, uświęć miłościwie te dary, a przyjmując złożoną Ci ofiarę duchową spraw, byśmy sami stali się wieczy", - "id": "Secreta" - }, - { - "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", - "id": "Prefatio" - }, - { - "body": "*J 14:26*\nDuch Święty nauczy was, alleluja, wszystkiego, cokolwiek wam powiedziałem, alleluja, alleluja.", - "id": "Communio" - }, - { - "body": "Panie, przyjdź z pomocą ludowi Twojemu, który pouczyłeś niebieskimi tajemnicami, i broń go przed zaciekłością wrogów.\nPr", - "id": "Postcommunio" - } - ], - "2020-06-02": [ - { - "body": "*Ezd 2:36 2:37*\nWielce się radujcie z chwały waszej, alleluja, i dzięki czyńcie Bogu, alleluja, że was powołał do Króles", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niechaj zstąpi na nas moc Ducha Świętego, aby oczyścić miłościwie nasze serca i strzec nas od wszelk", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 8:14-17*\n*Apostołowie udzielają sakramentu Bierzmowania Samarytanom ochrzczonym prz", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 14:26*\nDuch Święty nauczy was wszystkiego, cokolwiek wam powiedziałem. Alleluja. (Tu się przyklęk", - "id": "Graduale" - }, - { - "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:1-10*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Zaprawdę, zaprawdę po", - "id": "Evangelium" - }, - { - "body": "*Ps 77:23-25*\nBramy nieba Pan otworzył; jak deszcz im spuścił mannę na pokarm; obdarzył ich chlebem niebieskim; chleb An", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niechaj nas oczyści złożona dzisiaj ofiara i czyni godnymi uczestnictwa w świętych tajemnicach.\nPrze", - "id": "Secreta" - }, - { - "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", - "id": "Prefatio" - }, - { - "body": "*J 15:26; 16:14*\nDuch, który od Ojca pochodzi, alleluja, On mnie uwielbi, alleluja, alleluja.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech Duch Święty odnowi nasze dusze przez ten Boski Sakrament, gdyż On sam jest odpuszczeniem wszys", - "id": "Postcommunio" - } - ], - "2020-06-03": [ - { - "body": "*Ps 67:8 67:9*\nO Boże, gdyś wyruszał wobec ludu swego, wskazując im drogę i wśród nich mieszkając, alleluja, ziemia zadr", - "id": "Introitus" - }, - { - "body": "Panie, niech Pocieszyciel, który od Ciebie pochodzi, oświeci nasze umysły i doprowadzi je do wszelkiej prawdy, jak to ob", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 2:14-21*\nW one dni: Powstawszy Piotr Wraz z jedenastoma podniósł głos swój i przemó", - "id": "LectioL1" - }, - { - "body": "Alleluja.\n*Ps 32:6*\nPrzez słowo Pana powstały niebiosa i wszystkie ich zastępy przez tchnienie ust Jego.", - "id": "GradualeL1" - }, - { - "body": "Wszechmogący i miłosierny Boże, spraw, prosimy, aby Duch Święty przez swe zamieszkanie raczył uczynić z nas świątynię sw", - "id": "OratioL1" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 5:12-16*\nW one dni: Przez ręce Apostołów działy się wśród ludu liczne znaki i cuda.", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja.\n℣. (Tu się przyklęka) Przyjdź, Duchu Święty, napełnij serca Twych wiernych i zapal w nich ogień Twoj", - "id": "Graduale" - }, - { - "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 6:44-52*\nOnego czasu: Mówił Jezus rzeszom żydowskim: «Nikt nie może przy", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47-48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnę do przykazań Twoich, które umiłowałe", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij złożony dar ofiarny i spraw łaskawie, abyśmy zbożnymi czynami uczcili to, co sprawujemy w t", - "id": "Secreta" - }, - { - "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", - "id": "Prefatio" - }, - { - "body": "*J 14:27*\nPokój zostawiam wam, alleluja: pokój mój daję wam, alleluja, alleluja.", - "id": "Communio" - }, - { - "body": "Przyjmując niebieski Sakrament, błagamy łaskawość Twoją, Panie, abyśmy w wieczności cieszyli się tym, co sprawujemy w do", - "id": "Postcommunio" - } - ], - "2020-06-04": [ - { - "body": "*Mdr 1:7*\nDuch Pański napełnił okrąg ziemi, alleluja: A Ten, który wszystko obejmuje, zna każde słowo, alleluja, alleluj", - "id": "Introitus" - }, - { - "body": "Boże, któryś w dniu dzisiejszym pouczył serca wiernych światłem Ducha Świętego, daj nam w tymże Duchu poznać co jest pra", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 8:5-8*\nW one dni: Filip zaszedłszy do miasta Samarii głosił im Chrystusa. I rzesze ", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 103:30*\nZeślij Ducha Twojego, a powstanie życie i odnowisz oblicze ziemi, alleluja. (Tu się przyk", - "id": "Graduale" - }, - { - "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 9:1-6*\nOnego czasu: Jezus wezwawszy dwunastu Apostołów dał im władzę", - "id": "Evangelium" - }, - { - "body": "*Ps 67:29-30*\nUtwierdź to, Boże, czegoś w nas dokonał. Przez wzgląd na Twoją świątynię, która jest w Jeruzalem, niech kr", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, uświęć złożone dary i oczyść nasze serca światłem Ducha Świętego.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", - "id": "Prefatio" - }, - { - "body": "*Dz 2:2; 2:4*\nNagle dał się słyszeć z nieba szum jakby nadchodzącego wichru gwałtownego tam gdzie przebywali, alleluja. ", - "id": "Communio" - }, - { - "body": "Panie, niech tchnienie Ducha Świętego oczyści nasze serca, i użyźni je rosą Jego łaski.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-06-05": [ - { - "body": "*Ps 70:8 70:23*\nPełne niech będą me usta chwały Twojej, alleluja, ażebym mógł śpiewać, alleluja; a gdy się rozśpiewam, r", - "id": "Introitus" - }, - { - "body": "Miłosierny Boże, prosimy Cię, spraw, aby Kościół Twój zjednoczony przez Ducha Świętego nigdy nie został zaniepokojony pr", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Joela.\n*Jl 2:23-24; 2:26-27*\nTo mówi Pan Bóg: Synowie Syjonu weselcie się i radujcie się w Pan", - "id": "Lectio" - }, - { - "body": "Alleluja, alleluja\n*Ps 12:1*\nO jak dobry i słodki jest dla nas Duch Twój, o Panie. Alleluja. (Tu się przyklęka)\n℣. Przyj", - "id": "Graduale" - }, - { - "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 5:17-26*\nOnego czasu: Stało się dnia jednego, że Jezus siedział nauc", - "id": "Evangelium" - }, - { - "body": "*Mdr 145:2*\nChwal, duszo moja, Pana! Boga wielbić pragnę przez całe me życie; śpiewać Mu będę, dopóki będę żył, alleluja", - "id": "Offertorium" - }, - { - "body": "Panie, niech ofiary złożone przed Twoim obliczem strawi ów Boski ogień, którym Duch Święty zapalił serca uczniów Chrystu", - "id": "Secreta" - }, - { - "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", - "id": "Prefatio" - }, - { - "body": "*J 14:18*\nNie zostawię was sierotami; przyjdę do was, i radować się będzie serce wasze, alleluja.", - "id": "Communio" - }, - { - "body": "Przyjęliśmy, Panie, dary świętego misterium pokornie błagając, aby to, co kazałeś nam czynić na Twoją pamiątkę, przynios", - "id": "Postcommunio" - } - ], - "2020-06-06": [ - { - "body": "*Rz 5:5*\nMiłość Boża rozlana jest w sercach naszych, alleluja, przez Ducha Świętego, mieszkającego w nas, alleluja, alle", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, wlej łaskawie Ducha Świętego w dusze nasze; Jego bowiem mądrość nas stworzyła, a Opatrzność nami rzą", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Joela.\n*Jl 2:28-32*\n*Na proroctwo Joela powołał się św. Piotr w dniu Zesłania Ducha Świętego.*", - "id": "LectioL1" - }, - { - "body": "Alleluja.\n*J 6:64*\nDuch jest tym, który ożywia, ciało nic nie pomoże.", - "id": "GradualeL1" - }, - { - "body": "Prosimy Cię, Panie, niech Duch Święty zapali nas tym ogniem, który Pan nasz Jezus Chrystus zesłał na ziemię, pragnąc, by", - "id": "OratioL1" - }, - { - "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 23:9-11; 23:15-17; 23:21*\n*W Starym Testamencie w Pięćdziesiątnicę składano na ofiar", - "id": "LectioL2" - }, - { - "body": "Alleluja\n*Job 26:13*\nDuch Jego ozdobił niebiosa.", - "id": "GradualeL2" - }, - { - "body": "Boże, który nakazałeś dla zdrowia dusz umartwiać ciało nasze postem, spraw łaskawie, abyśmy zawsze duszą i ciałem byli T", - "id": "OratioL2" - }, - { - "body": "Czytanie z Księgi Powtórzonego Prawa.\n*Pp 26:1-11*\n*Żydzi składali Panu Bogu pierwociny w dowód wdzięczności za wyzwolen", - "id": "LectioL3" - }, - { - "body": "Alleluja\n*Dz 2:1*\nGdy nadeszły dni Pięćdziesiątnicy, siedzieli wszyscy razem.", - "id": "GradualeL3" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy wyćwiczeni przez zbawienne posty powstrzymywali się od wszelkich występków", - "id": "OratioL3" - }, - { - "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 26:3-12*\n*Wierność Panu Bogu zapewnia Jego szczególną opiekę.*\nW one dni: Rzekł Pan ", - "id": "LectioL4" - }, - { - "body": "Alleluja\n℣. (Tu się przyklęka) Przyjdź, Duchu Święty, napełnij serca Twych wiernych i zapal w nich ogień Twojej miłości.", - "id": "GradualeL4" - }, - { - "body": "Wszechmogący Boże, prosimy Cię, daj nam tak wstrzymywać się od pokarmów mięsnych, abyśmy również powstrzymywali się od n", - "id": "OratioL4" - }, - { - "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:47-51*\nW one dni: Anioł Pański zstąpił z Azariaszem i towarzyszami jego w piec ", - "id": "LectioL5" - }, - { - "body": "Alleluja.\n*Dn 3:52*\nBłogosławiony jesteś Panie, Boże ojców naszych, i chwalebny na wieki.", - "id": "GradualeL5" - }, - { - "body": "Boże, któryś złagodził płomienie ognia dla trzech młodzieńców, spraw łaskawie, aby nas, sług Twoich, nie strawił płomień", - "id": "OratioL5" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 5:1-5*\n*Wiara w Chrystusa i obecność Ducha Świętego zamieniają ", - "id": "Lectio" - }, - { - "body": "*Ps 116:1-2*\nChwalcie Pana, wszystkie narody, wysławiajcie Go, wszystkie ludy.\n℣. Bo miłosierdzie Jego nad nami utwierdz", - "id": "Graduale" - }, - { - "body": "*Błagalna sekwencja w poetyckiej formie opisuje działanie Ducha Świętego w duszach wiernych.*\nPrzybądź Duchu Święty\nZeśl", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 4:38-44*\n*Za przykładem Zbawiciela Kościół spieszy z pomocą w każdej", - "id": "Evangelium" - }, - { - "body": "*Ps 87:2-3*\nPanie, Boże, Zbawicielu mój, podczas dnia wołam i w nocy żalę się przed Tobą, niech moja modlitwa dojdzie do", - "id": "Offertorium" - }, - { - "body": "Aby nasze posty podobały się Tobie, Panie, daj nam złożyć Ci w ofierze serca oczyszczone mocą tej tajemnicy.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja o Duchu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składal", - "id": "Prefatio" - }, - { - "body": "*J 3:8*\nDuch tchnie, kędy chce: i głos Jego słyszysz, alleluja, alleluja, ale nie wiesz, skąd przychodzi ani dokąd idzie", - "id": "Communio" - }, - { - "body": "Panie, niech Twoje święte tajemnice obudzą w nas Boży zapał, abyśmy czerpali radość zarówno z ich sprawowania, jak z owo", - "id": "Postcommunio" - } - ], - "2020-06-07": [ - { - "body": "*Tob 12:6*\nBłogosławiona Niech będzie Święta Trójca i nierozdzielna Jedność. Uwielbiajmy ją, albowiem okazała nad nami m", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, który przez wyznawanie prawdziwej wiary dałeś poznać sługom Twoim chwałę przedwiecznej Trójc", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 11:33-36*\n*Tajemnica Trójcy Przenajświętszej, podobnie jak wszy", - "id": "Lectio" - }, - { - "body": "*Dn 3:55-56*\nBłogosławiony jesteś, Panie, który wzrokiem zgłębiasz przepaści, a siedzisz na Cherubinach.\n℣. Błogosławion", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 28:18-20*\n*Chrzest święty czyni nas przybranymi dziećmi Bożymi i uc", - "id": "Evangelium" - }, - { - "body": "*Tob 12:6*\nBłogosławiony niech będzie Bóg Ojciec i Jednorodzony Syn Boży, a także i Duch Święty: gdyż okazał nad nami mi", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie Boże nasz, uświęć przez wezwanie świętego imienia Twojego, ofiarę, którą Ci składamy, i przez nią ucz", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Tob 12:6*\nBłogosławimy Boga niebios, i wobec wszystkich istot żyjących dziękować Mu będziemy, gdyż okazał nad nami miło", - "id": "Communio" - }, - { - "body": "Panie, Boże nasz, niech przyjęcie tego sakramentu oraz wyznanie Przedwiecznej i Świętej Trójcy oraz Jej nierozdzielnej j", - "id": "Postcommunio" - } - ], - "2020-06-08": [ - { - "body": "*Ps 12:6*\nO Panie, zaufałem miłosierdziu Twemu; serce me cieszy się z Twojej pomocy, będę śpiewał Panu, co darzy mnie do", - "id": "Introitus" - }, - { - "body": "Boże, mocy ufających Tobie, wysłuchaj łaskawie błagania nasze, a że ludzka ułomność bez Ciebie nic uczynić nie może, wsp", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 4:8-21*\nNajmilsi: Bóg jest miłością. W tym okazała się miłość Boża ku nam,", - "id": "Lectio" - }, - { - "body": "*Ps 40:5; 40:2*\nJa mówię: Panie, zmiłuj się nade mną; uzdrów mnie, bo przeciw Tobie zgrzeszyłem.\n℣. Błogosławiony ten, k", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 6:36-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Bądźcie miłosierni", - "id": "Evangelium" - }, - { - "body": "*Ps 5:3-4*\nZwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij łaskawie ofiarowane Ci dary i spraw, by się stały dla nas nieustanną pomocą.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 9:2-3*\nOpowiem wszystkie cudowne dzieła Twoje, będę się cieszyć i radować Tobą, śpiewać imieniu Twemu, o Najwyższy.", - "id": "Communio" - }, - { - "body": "Nasyceni tak wielkim darem, prosimy Cię, Panie: daj, byśmy czerpali zbawienne łaski i nigdy nie przestawali Cię wielbić.", - "id": "Postcommunio" - } - ], - "2020-06-09": [ - { - "body": "*Ps 12:6*\nO Panie, zaufałem miłosierdziu Twemu; serce me cieszy się z Twojej pomocy, będę śpiewał Panu, co darzy mnie do", - "id": "Introitus" - }, - { - "body": "Boże, mocy ufających Tobie, wysłuchaj łaskawie błagania nasze, a że ludzka ułomność bez Ciebie nic uczynić nie może, wsp", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Śś. Pryma i Felicjana, Męczenników*\nDaj nam, Panie, zawsze tak obchodzić uroczystość świętych Męczenników T", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 4:8-21*\nNajmilsi: Bóg jest miłością. W tym okazała się miłość Boża ku nam,", - "id": "Lectio" - }, - { - "body": "*Ps 40:5; 40:2*\nJa mówię: Panie, zmiłuj się nade mną; uzdrów mnie, bo przeciw Tobie zgrzeszyłem.\n℣. Błogosławiony ten, k", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 6:36-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Bądźcie miłosierni", - "id": "Evangelium" - }, - { - "body": "*Ps 5:3-4*\nZwróć się na głos modlitwy mojej, mój Królu i Boże, gdyż do Ciebie się modlę, o Panie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij łaskawie ofiarowane Ci dary i spraw, by się stały dla nas nieustanną pomocą.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Śś. Pryma i Felicjana, Męczenników*\nProsimy Cię, Panie, niech ta ofiara, składana ku uczczeniu chwalebnego ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 9:2-3*\nOpowiem wszystkie cudowne dzieła Twoje, będę się cieszyć i radować Tobą, śpiewać imieniu Twemu, o Najwyższy.", - "id": "Communio" - }, - { - "body": "Nasyceni tak wielkim darem, prosimy Cię, Panie: daj, byśmy czerpali zbawienne łaski i nigdy nie przestawali Cię wielbić.", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Śś. Pryma i Felicjana, Męczenników*\nProsimy Cię, wszechmogący Boże, aby uroczystość świętych Męczenników Tw", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-10": [ - { - "body": "*Oz 2:14*\nZawiodę go na puszczę i będę mówił do jego serca. (O. W. Alleluja, alleluja.)\n*Ps 110:1*\n℣. Błogosławieni, któ", - "id": "Introitus" - }, - { - "body": "Wysłuchaj, Panie, Swego ludu, oddanego Ci całym sercem, i strzeż go dzięki modłom błogosławionego Twego Wyznawcy i Bisku", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", - "id": "Evangelium" - }, - { - "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło. (O. W. Alleluja.)", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, prośby i ofiary, a modlitwa błogosławionego Bogumiła, Twego Wyznawcy i Biskupa niech nas wspomoże, by g", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i za mną poszli, stokroć więcej otrzymacie i ży", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną błogosławionego Bogumiła, Tweg", - "id": "Postcommunio" - } - ], - "2020-06-11": [ - { - "body": "*Ps 80:17*\nNakarmił ich pszenicą przewyborną, alleluja. A z opoki miodem nasycił ich, alleluja, alleluja, alleluja.\n*Ps ", - "id": "Introitus" - }, - { - "body": "Boże, który w przedziwnym Sakramencie zostawiłeś nam pamiątkę Swej męki, dozwól, prosimy, taką czcią otaczać święte taje", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 11:23-29*\n*Św. Paweł zapewnia nas, że udział we Mszy święt", - "id": "Lectio" - }, - { - "body": "*Ps 144:15-16*\nOczy wszystkich w Tobie, Panie, pokładają nadzieję, a Ty im dajesz pokarm we właściwym czasie.\n℣. Ty otwi", - "id": "Graduale" - }, - { - "body": "Zbawiciela chwal, Syjonie,\nW hymnów i kantyków tonie,\nWodza i pasterza.\n\nZ całej duszy chwal Go śmiało,\nGdyż przewyższa ", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 6:56-59*\nOnego czasu: Rzekł Jezus rzeszom żydowskim: «Ciało moje prawdzi", - "id": "Evangelium" - }, - { - "body": "*Kpł 21:6*\nKapłani Pańscy kadzenie i chleb składają Bogu w ofierze, przeto świętymi być powinni wobec Boga swego, by nie", - "id": "Offertorium" - }, - { - "body": "Prosimy Ciebie, Panie, użycz łaskawie Kościołowi Twemu darów jedności i pokoju, które mistycznie wyraża ofiara przez nas", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*1 Kor 11:26-27*\nIlekroć ten chleb pożywać, a kielich pić będziecie, śmierć Pańską będziecie zwiastować, aż przybędzie. ", - "id": "Communio" - }, - { - "body": "Spraw, prosimy Cię Panie, aby w wieczności napełniała nas radość z posiadania Bóstwa Twojego, co wyobraża już doczesne s", - "id": "Postcommunio" - } - ], - "2020-06-12": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, dawco pokoju i zwolenniku miłości, któryś św. Jana, Twego Wyznawcę, ozdobił przedziwną łaską godzenia powaśnionych", - "id": "Oratio" - }, - { - "body": "*Wspomnienie śś. Bazylidesa, Cyryna, Nabora i Nazariusza*\nProsimy Cię, Panie, niech uroczystość narodzin dla nieba święt", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Wspomnienie śś. Bazylidesa, Cyryna, Nabora i Nazariusza*\nKu uczczeniu męczeńskiej krwi świętych Bazylidesa, Cyryna, Nab", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie śś. Bazylidesa, Cyryna, Nabora i Nazariusza*\nProsimy Cię, Panie, spraw, abyśmy stale obchodząc uroczystość ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-13": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Niechaj uroczystość św. Antoniego, Twego Wyznawcy i Doktora, rozraduje Twój Kościół, o Panie, aby zawsze miał ku obronie", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niechaj obecna ofiara okaże się zbawienną dla Twego ludu, za który raczyłeś z samego siebie złożyć Ojcu żywą żert", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Nasyceni Boskimi darami, prosimy Cię, Panie, abyśmy przez zasługi i wstawiennictwo św. Antoniego, Twego Wyznawcy i Dokto", - "id": "Postcommunio" - } - ], - "2020-06-14": [ - { - "body": "*Ps 17:19-20*\nPan stał się moją obroną; wywiódł mnie na pole rozległe: zbawił mnie bo mnie miłuje.\n*Ps 17:2-3*\nMiłuję Ci", - "id": "Introitus" - }, - { - "body": "Racz nas obdarzyć Panie ustawiczną bojaźnią i miłością świętego imienia Twojego, albowiem nigdy opieki Swej nie odmawias", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 3:13-18*\nNajmilsi: Nie dziwcie się, jeśli świat was nienawidzi. My wiemy, ", - "id": "Lectio" - }, - { - "body": "*Ps 119:1-2*\nDo Pana wołałem, gdym był w utrapieniu, a On mnie wysłuchał.\n℣. Wybaw mnie Panie od ust kłamliwych, i od po", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:16-24*\nOnego czasu: Powiedział Jezus faryzeuszom tę przypowieść: ", - "id": "Evangelium" - }, - { - "body": "*Ps 6:5*\nPowróć, o Panie, wyrwij duszę moją, przez miłosierdzie Twoje mnie wybaw.", - "id": "Offertorium" - }, - { - "body": "Panie, ofiara, którą mamy złożyć Twojemu imieniu, niech nas oczyszcza, i z dnia na dzień doskonali w prowadzeniu życia g", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 12:6*\nBędę śpiewał Panu, który darzy mnie dobrem, zanucę psalm imieniu Najwyższego Pana.", - "id": "Communio" - }, - { - "body": "Przyjąwszy Twoje święte dary, prosimy Cię, Panie, aby poprzez częste uczestnictwo w tym Sakramencie, wzrastał w nas jego", - "id": "Postcommunio" - } - ], - "2020-06-15": [ - { - "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, Ty w miłosierdziu swoim oderwałeś błogosławioną Jolantę od zaszczytów i bogactw, a sprawiłeś", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Śś. Wita, Modesta i Krescencji, Męczenników*\nZa przyczyną świętych Męczenników Twoich Wita, Modesta i Kresc", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Śś. Wita, Modesta i Krescencji, Męczenników*\nNiech dary złożone ku czci Świętych wyjednają nam, Panie, owoc", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Śś. Wita, Modesta i Krescencji, Męczenników*\nNapełnieni wzniosłym błogosławieństwem, prosimy Cię, Panie, ab", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-16": [ - { - "body": "*Ps 17:19-20*\nPan stał się moją obroną; wywiódł mnie na pole rozległe: zbawił mnie bo mnie miłuje.\n*Ps 17:2-3*\nMiłuję Ci", - "id": "Introitus" - }, - { - "body": "Racz nas obdarzyć Panie ustawiczną bojaźnią i miłością świętego imienia Twojego, albowiem nigdy opieki Swej nie odmawias", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Jana Apostoła.\n*1 J 3:13-18*\nNajmilsi: Nie dziwcie się, jeśli świat was nienawidzi. My wiemy, ", - "id": "Lectio" - }, - { - "body": "*Ps 119:1-2*\nDo Pana wołałem, gdym był w utrapieniu, a On mnie wysłuchał.\n℣. Wybaw mnie Panie od ust kłamliwych, i od po", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:16-24*\nOnego czasu: Powiedział Jezus faryzeuszom tę przypowieść: ", - "id": "Evangelium" - }, - { - "body": "*Ps 6:5*\nPowróć, o Panie, wyrwij duszę moją, przez miłosierdzie Twoje mnie wybaw.", - "id": "Offertorium" - }, - { - "body": "Panie, ofiara, którą mamy złożyć Twojemu imieniu, niech nas oczyszcza, i z dnia na dzień doskonali w prowadzeniu życia g", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 12:6*\nBędę śpiewał Panu, który darzy mnie dobrem, zanucę psalm imieniu Najwyższego Pana.", - "id": "Communio" - }, - { - "body": "Przyjąwszy Twoje święte dary, prosimy Cię, Panie, aby poprzez częste uczestnictwo w tym Sakramencie, wzrastał w nas jego", - "id": "Postcommunio" - } - ], - "2020-06-17": [ - { - "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", - "id": "Introitus" - }, - { - "body": "Boże, z Twojej woli święty Grzegorz, Twój Wyznawca i Biskup, jaśniał pasterską gorliwością i miłosierdziem wobec biednyc", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", - "id": "Postcommunio" - } - ], - "2020-06-18": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, który chciałeś oświecić swój Kościół zadziwiającą nauką i chwalebnymi zasługami życia św. Efrema, Twego Wyznawcy i", - "id": "Oratio" - }, - { - "body": "*Wspomnienie śś. Marka i Marcelina*\nSpraw, prosimy Cię, wszechmogący Boże, aby od wszelkich niebezpieczeństw uwolniło na", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", - "id": "Secreta" - }, - { - "body": "*Wspomnienie śś. Marka i Marcelina*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętych Twoich Męczenników Marka i M", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie śś. Marka i Marcelina*\nPosileni darem zbawiennym, pokornie błagamy Cię, Panie, aby Sakrament, który z radoś", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-19": [ - { - "body": "*Ps 32:11; 32:19*\nZamysły Jego serca trwają poprzez pokolenia, by wyrwać ich dusze od śmierci i w czasie głodu ich żywić", - "id": "Introitus" - }, - { - "body": "Boże, w Sercu Twojego Syna zranionym naszymi grzechami darzysz nad niewyczerpanymi skarbami miłości; spraw, prosimy, aby", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:8-12, 14-19*\nBracia: Mnie najmniejszemu ze wszystkich świętyc", - "id": "Lectio" - }, - { - "body": "*Ps 24:8-9*\nPan jest dobry i prawy: dlatego o drodze poucza grzeszników.\n℣. W sprawiedliwości rządzi pokornymi, pokornyc", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:11-37*\nOnego czasu: Żydzi (ponieważ był to dzień Przygotowania), aby ", - "id": "Evangelium" - }, - { - "body": "*Ps 68:21*\nUrąganiem złamane me serce i sił mi zabrakło: Na współczującego czekałem, ale go nie było, i na pocieszającyc", - "id": "Offertorium" - }, - { - "body": "Wejrzyj, prosimy Cię, Panie, na niewymowną miłość Serca umiłowanego Syna Twojego i spraw, aby ofiara nasza była miłą dla", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszym Sercu Jezusowym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzi", - "id": "Prefatio" - }, - { - "body": "*J 19:34*\nJeden z żołnierzy włócznią otworzył bok Jego, a natychmiast wypłynęła krew i woda.", - "id": "Communio" - }, - { - "body": "Panie Jezu, niech Twoje święte tajemnice obudzą w nas Boży zapał, abyśmy skosztowawszy słodyczy najmilszego Serca Twojeg", - "id": "Postcommunio" - } - ], - "2020-06-20": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Sylweriusza, Papieża i Męczennika*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieu", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Sylweriusza, Papieża i Męczennika*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Sylweriusza, Papieża i Męczennika*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym prz", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-21": [ - { - "body": "*Ps 24:16; 24:18*\nWejrzyj na mnie Panie i zlituj się nade mną, bo sam jestem i biedny. Zobacz moją nędzę i utrudzenie, i", - "id": "Introitus" - }, - { - "body": "Obrońco ufających w Tobie, Boże, bez którego nic mocnym, nic świętym nie jest, pomnóż nad nami miłosierdzie Twoje, abyśm", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:6-11*\nNajmilsi: Uniżajcie się pod możną ręką Bożą, aby Was wywyższył w", - "id": "Lectio" - }, - { - "body": "*Ps 54:23; 54:17; 54:19*\nPorucz swą troskę Panu, On sam o tobie mieć będzie pieczę.\n℣. Kiedy wołałem do Pana, On wysłuch", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 15:1-10*\nOnego czasu: Zbliżali się do Jezusa celnicy i grzesznicy, a", - "id": "Evangelium" - }, - { - "body": "*Ps 9:11-12 9:13*\nTobie ufać winni wyznawcy Twego Imienia, bo nie opuszczasz Panie szukających Ciebie. Śpiewajcie psalm ", - "id": "Offertorium" - }, - { - "body": "Wejrzyj Panie na błagania i ofiary Kościoła Twego, nieustannie je uświęcając użycz ich jako pokarmu dla zbawienia wierny", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Łk 15:10*\nPowiadam wam, iż radość panuje wśród Aniołów Bożych nawet z jednego grzesznika czyniącego pokutę.", - "id": "Communio" - }, - { - "body": "Niechaj nas ożywi spożycie Tych darów świętych, i oczyszczonych niechaj nas przygotuje do otrzymania zmiłowania wieczneg", - "id": "Postcommunio" - } - ], - "2020-06-22": [ - { - "body": "*Ps 131:9-10*\nNiech kapłani Twoi odzieją się w sprawiedliwość, a święci Twoi niech się radują; przez wzgląd na Dawida, s", - "id": "Introitus" - }, - { - "body": "Boże, Ty obiecałeś stokrotną nagrodę w przyszłości i życie wieczne tym, którzy dla Ciebie opuszczają wszystko na tym świ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 8:9-15*\n*Święty Paweł zachęca Koryntian do ofiarności na m", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\nNie znalazł się jemu podobny, który by ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", - "id": "Offertorium" - }, - { - "body": "Daj nam, Panie, za przykładem świętego Biskupa Paulina, z darami złożonymi na ołtarzu połączyć ofiarę doskonałej miłości", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", - "id": "Communio" - }, - { - "body": "Przez święty Sakrament udziel nam, Panie, tego ducha oddania i pokory, którego zaczerpnął z tego boskiego źródła św. Bis", - "id": "Postcommunio" - } - ], - "2020-06-23": [ - { - "body": "*Łk 1:13; 1:15; 1:14*\nNie lękaj się, Zachariaszu, wysłuchana jest prośba twoja. Żona twoja Elżbieta urodzi ci syna, i na", - "id": "Introitus" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, aby rodzina Twych sług kroczyła drogą zbawienia, a wierna napomnieniom świętego J", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Jeremiasza.\n*Jer 1:4-10*\nW one dni: Stało się słowo Pańskie do mnie, mówiąc: «Pierwej, niźlim ", - "id": "Lectio" - }, - { - "body": "*J 1:6-7*\nBył człowiek posłany od Boga, a Jan mu było na imię.\n℣. Przyszedł on, aby świadczyć o światłości; aby przygoto", - "id": "Graduale" - }, - { - "body": "Początek ☩ Ewangelii świętej według Łukasza.\n*Łk 1:5-17*\nBył za dni Heroda, króla Judei, kapłan pewien, imieniem Zachari", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", - "id": "Offertorium" - }, - { - "body": "Uświęć, Panie, złożone dary i za wstawiennictwem św. Jana Chrzciciela oczyść nas ze zmazy naszych grzechów.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 20:6*\nChwała jego jest wielka dzięki Twej pomocy: blask i dostojeństwo na niego włożyłeś, o Panie.", - "id": "Communio" - }, - { - "body": "Panie, niechaj nam towarzyszy dostojna modlitwa świętego Jana Chrzciciela i niech nam uprosi zmiłowanie u Tego, którego ", - "id": "Postcommunio" - } - ], - "2020-06-24": [ - { - "body": "*Iz 49:1; 49:2*\nJuż w łonie matki mojej nazwał mnie Pan imieniem moim: włożył w me usta słowa jak ostry miecz: opieką sw", - "id": "Introitus" - }, - { - "body": "Boże, któryś dzień dzisiejszy uczynił nam wiekopomnym przez narodzenie świętego Jana, daj ludowi swojemu łaskę radości d", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 49:1-3; 49:5-7*\nSłuchajcie, wyspy, i wy, ludy odległe zważajcie: Pan mnie powoła", - "id": "Lectio" - }, - { - "body": "*Jer 1:5; 1:9*\n℣. Zanim cię ukształtowałem w żywocie znałem ciebie, jeszcze nie wyszedłeś z żywota, już cię oświeciłem. ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:57-68*\nElżbiecie wypełnił się czas rozwiązania i porodziła syna. I", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie. Alleluja.", - "id": "Offertorium" - }, - { - "body": "Ołtarz Twój, Panie pokrywamy darami święcąc ze czcią narodziny tego, który zapowiadał przyjście Zbawiciela świata i wska", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 1:76*\nTy, dzieciątko nazwane będziesz prorokiem Najwyższego, bo pójdziesz przed obliczem Pana, by przygotować drogi ", - "id": "Communio" - }, - { - "body": "Kościół Twój Boże, niech czerpie radość z narodzin świętego Jana Chrzciciela, przez którego poznał sprawcę odrodzenia sw", - "id": "Postcommunio" - } - ], - "2020-06-25": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, który dla ułatwienia drogi zbawienia zapewniłeś naszej słabości przykład i pomoc w swoich Świętych, daj nam tak cz", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam ku zbawieni", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N., Opata, abyśmy naśladowali jego wzo", - "id": "Postcommunio" - } - ], - "2020-06-26": [ - { - "body": "*Ps 33:20-21*\nWiele ucisków spotyka sprawiedliwych, lecz Pan ich wyzwala ze wszystkich; strzeże wszystkich ich kości: ni", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, niech nas ogarnie zdwojona radość dzisiejszej uroczystości, płynąca z uczczenia świętych", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Syr 44:10-15*\nCi są mężami pełnymi miłosierdzia, których dobre czyny nie poszły w niepamięć", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\nOto jak dobrze i jak miło braciom zamieszkać społem.\n℣. Jako wyborny olejek na głowie, co spływa na brodę, ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:1-8*\nOnego czasu: Rzekł Jezus uczniom swoim: «Strzeżcie się kwasu", - "id": "Evangelium" - }, - { - "body": "*Ps 5:12-13*\nNiech się radują ci wszyscy, co Twe imię miłują, bo Ty, Panie, sprawiedliwemu dasz błogosławieństwo; Panie,", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij łaskawie przez zasługi świętych Twoich Męczenników Jana i Pawła ofiarę, którą Ci składamy, ", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył, jak złoto w piecu ich wypróbował, jak ofiarę", - "id": "Communio" - }, - { - "body": "Przyjęliśmy, Panie, niebieski Sakrament, obchodząc uroczystość świętych Męczenników Twoich Jana i Pawła; daj, prosimy Ci", - "id": "Postcommunio" - } - ], - "2020-06-27": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - } - ], - "2020-06-28": [ - { - "body": "*Ps 26:1; 26:2*\nPan światłością i zbawieniem moim, kogóż mam się lękać? Obrońcą życia mojego Pan, przed kim będę drżał? ", - "id": "Introitus" - }, - { - "body": "Spraw, prosimy Cię Panie, niech pod Twoimi rządami dzieje świata toczą się w pokoju, a Twój Kościół niech Ci służy w nie", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Wigilia śś. Apostołów Piotra i Pawła*\nProsimy Cię, wszechmogący Boże, spraw, by żadne przeciwności nie zach", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:18-23*\n*Od chwili dokonania odkupienia ludzkość i cały świat ", - "id": "Lectio" - }, - { - "body": "*Ps 78:9; 78:10*\nO Panie, przebacz nam grzechy, aby nie drwili z nas poganie: «Gdzie jest ich Bóg?»\n℣. Wspomóż nas, Boże", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 5:1-11*\n*Od zesłania Ducha Świętego spełnia się zapowiedź Chrystusa ", - "id": "Evangelium" - }, - { - "body": "*Ps 12:4-5*\nOświeć me oczy, bym nie zasnął w śmierci, by wróg mój nie mówił: Ja go zwyciężyłem.", - "id": "Offertorium" - }, - { - "body": "Przyjmij Panie nasze ofiary i daj się nimi przejednać i zwróć łaskawie ku sobie nawet oporną naszą wolę.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Wigilia śś. Apostołów Piotra i Pawła*\nProsimy Cię, Panie, przez wstawiennictwo Apostołów poświęć dary Swoje", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 17:3*\nPan opoką i ucieczką moją, On moim wybawicielem, Bóg, mój wspomożyciel.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech tajemnice, któreśmy przyjęli oczyszczą nas i chronią swoim działaniem.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Wigilia śś. Apostołów Piotra i Pawła*\nPanie, za przyczyną świętych Apostołów strzeż od wszelkich przeciwnoś", - "id": "Commemoratio Postcommunio" - } - ], - "2020-06-29": [ - { - "body": "*Dz 12:11*\nTeraz wiem prawdziwie iż Pan posłał Anioła swego i wyrwał mnie z ręki Heroda oraz z tego wszystkiego, czego o", - "id": "Introitus" - }, - { - "body": "Boże, który uświęciłeś dzień dzisiejszy męczeństwem Apostołów Twoich Piotra i Pawła, daj Kościołowi Swemu we wszystkim i", - "id": "Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 12:1-11*\nW one dni: Król Herod postanowił wszcząć prześladowanie przeciw niektórym ", - "id": "Lectio" - }, - { - "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi: głosić będą Twe imię, o Panie. Synowie twoi zajmą miejsce twoich", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", - "id": "Evangelium" - }, - { - "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi: przez wszystkie pokolenia głosić będą Twe imię, o Panie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech modlitwa apostolska towarzyszy darom, które składamy w ofierze Twojemu imieniu: dzięki niej racz nas oczysz", - "id": "Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", - "id": "Communio" - }, - { - "body": "Panie, za przyczyną świętych Apostołów strzeż od wszelkich przeciwności tych, których posiliłeś niebieskim pokarmem.\nPrz", - "id": "Postcommunio" - } - ], - "2020-06-30": [ - { - "body": "*2 Tm 1:12*\nWiem, komu zawierzyłem, i pewien jestem, że mocen jest przechować skarb mój aż do onego dnia, Sędzia sprawie", - "id": "Introitus" - }, - { - "body": "Boże, który oświeciłeś wiele narodów przez nauczanie świętego Pawła Apostoła, daj nam, prosimy Cię, abyśmy doznali wstaw", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Gal 1:11-20*\nBracia: Oznajmiam wam, że Ewangelia głoszona przeze m", - "id": "Lectio" - }, - { - "body": "*Gal 2:8-9*\nTen sam, który w Piotrze był sprawcą apostolstwa żydów, sprawił i we mnie apostolstwo wśród pogan, i poznali", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:16-22*\nOnego czasu: Rzekł Jezus uczniom swoim: «Oto ja posyłam w", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże: na zawsze jest utrwalone ich władanie.", - "id": "Offertorium" - }, - { - "body": "Dla próśb Twego Apostoła Pawła poświęć, Panie dary ludu Twojego: miłe Ci są, boś je ustanowił, niech się staną milsze pr", - "id": "Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28-29*\nZaprawdę, powiadam wam, że wy, którzyście opuścili wszystko i za mną poszli, stokroć więcej otrzymacie i ż", - "id": "Communio" - }, - { - "body": "Po przyjęciu Sakramentu błagamy Cię, Panie, za przyczyną św. Pawła, Twego Apostoła, aby ofiara złożona ku jego chwale pr", - "id": "Postcommunio" - } - ], - "2020-07-01": [ - { - "body": "*Ap 5:9-10*\nOdkupiłeś nas Panie przez Krew swoją; ludzi ze wszelkiego pokolenia, języka, ludu i narodu; i uczyniłeś nas ", - "id": "Introitus" - }, - { - "body": "Wszechmogący wieczny Boże, który Jednorodzonego Syna Twego ustanowiłeś Odkupicielem świata i dałeś się przebłagać Jego K", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 9:11-15*\n*Ofiara krzyżowa Chrystusa to wejście Arcykapłan", - "id": "Lectio" - }, - { - "body": "*1 J 5:6; 5:7-8*\nJest to ten sam Jezus Chrystus, który przyszedł przez wodę i krew, nie w wodzie tylko, ale w wodzie i w", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:30-35*\nOnego czasu: Jezus, gdy skosztował octu, rzekł: «Wykonało się»", - "id": "Evangelium" - }, - { - "body": "*1 Kor 10:16*\nKielich błogosławieństwa, który błogosławimy, czyż nie jest uczestniczeniem we Krwi Chrystusowej? A chleb,", - "id": "Offertorium" - }, - { - "body": "Błagamy Cię, Boże zastępów, niech nam wolno będzie przez te święte tajemnice przystąpić do Pośrednika nowego przymierza ", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "*Hbr 9:28*\nChrystus raz jeden był ofiarowany dla usunięcia grzechów wielu, drugi raz ukaże się nie dla zgładzenia grzech", - "id": "Communio" - }, - { - "body": "Dopuszczeni do świętej uczty, z radością czerpaliśmy, Panie, wodę ze źródeł Zbawiciela: błagamy, niech Krew Jego stanie ", - "id": "Postcommunio" - } - ], - "2020-07-02": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, udziel sługom Twoim daru łaski niebieskiej: jak macierzyństwo Najświętszej Dziewicy stało się dla ni", - "id": "Oratio" - }, - { - "body": "Czytanie z Pieśni nad Pieśniami.\n*Pnp 2:8-14*\n*Kościół odnosi do Matki Bożej słowa Pieśni nad pieśniami. W drodze do Heb", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:39-47*\nOnego czasu: Powstawszy Maryja udała się śpiesznie w okolic", - "id": "Evangelium" - }, - { - "body": "Błogosławiona jesteś, Panno Maryjo, któraś nosiła Stwórcę wszechrzeczy. Porodziłaś Tego, który Cię stworzył, i na wieki ", - "id": "Offertorium" - }, - { - "body": "Niech nas wspomaga, Panie, człowieczeństwo Jednorodzonego Syna Twojego; On to, zrodzony z Dziewicy, nie naruszył panieńs", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", - "id": "Communio" - }, - { - "body": "Panie, przyjęliśmy Sakrament obchodząc doroczną uroczystość: spraw, prosimy, niech on udzieli nam pomocy na życie doczes", - "id": "Postcommunio" - } - ], - "2020-07-03": [ - { - "body": "*Ml 2:6*\nZakon prawdy był w jego ustach, a nieprawość nie znalazła się na jego wargach; w pokoju i w prawości chodził ze", - "id": "Introitus" - }, - { - "body": "Boże, który sprawiłeś, że św. Ireneusz prawdziwą nauką zwalczał herezje i szczęśliwie umocnił pokój w Kościele, prosimy ", - "id": "Oratio" - }, - { - "body": "*2 Tm 3:14-17; 4:1-15*\nNajmilszy! Trwaj w tym, czegoś się nauczył i co ci zostało zwierzone, wiedząc, od kogoś się naucz", - "id": "Lectio" - }, - { - "body": "*Ps 121:8*\nPrzez wzgląd na mych braci i towarzyszy moich mówić będę: «Pokój w tobie».\n*Ps 36:37*\nStrzeż niewinności, pat", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:28-33*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie bójcie się t", - "id": "Evangelium" - }, - { - "body": "*Syr 24:44*\n*«Jak stworzone przez Boga słońce oświeca cały świat, tak promieniuje przepowiadanie Prawdy, a jej światło d", - "id": "Offertorium" - }, - { - "body": "Boże, który nie dozwalasz, aby narody w Ciebie wierzące zostały wstrząśnięte jakąkolwiek trwogą, racz przyjąć prośby i o", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Syr 24:47*\nZobaczcie, że nie dla samego siebie pracowałem, lecz dla wszystkich szukających prawdy.", - "id": "Communio" - }, - { - "body": "Boże, sprawco i miłośniku pokoju, którego znać to żyć, któremu służyć to królować; chroń proszących Cię od wszelkich nap", - "id": "Postcommunio" - } - ], - "2020-07-04": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - } - ], - "2020-07-05": [ - { - "body": "*Ps 26:7; 62:9*\nUsłysz, Panie, głos mój, którym wołam. Tyś mą pomocą, nie odrzucaj mnie i nie opuszczaj mnie, ani mną ni", - "id": "Introitus" - }, - { - "body": "Boże, Tyś miłującym Ciebie zgotował niewidzialne dobra; wlej w nasze serca gorącą miłość ku Tobie, abyśmy miłując Cię we", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 3:8-15*\nNajmilsi: Bądźcie wszyscy jednomyślni w modlitwie, współczujący,", - "id": "Lectio" - }, - { - "body": "*Ps 83:10; 83:9*\nSpojrzyj obrońco nasz, Boże i wejrzyj na sługi Twoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług Sw", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:20-24*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli nie będzie ", - "id": "Evangelium" - }, - { - "body": "*Ps 15:7; 15:8*\nBłogosławię Pana, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy,", - "id": "Offertorium" - }, - { - "body": "Daj się przebłagać Panie naszymi modłami i łaskawie przyjmij te ofiary sług i służebnic Twoich, a co każdy złożył na chw", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję, bym w domu Pańskim przebywał po wszystkie dni mego życia.", - "id": "Communio" - }, - { - "body": "Nasyciwszy nas Panie, darem niebieskim, oczyść nas z ukrytych grzechów i wybaw od zasadzek nieprzyjacielskich.\nPrzez Pan", - "id": "Postcommunio" - } - ], - "2020-07-06": [ - { - "body": "*Ps 26:7; 62:9*\nUsłysz, Panie, głos mój, którym wołam. Tyś mą pomocą, nie odrzucaj mnie i nie opuszczaj mnie, ani mną ni", - "id": "Introitus" - }, - { - "body": "Boże, Tyś miłującym Ciebie zgotował niewidzialne dobra; wlej w nasze serca gorącą miłość ku Tobie, abyśmy miłując Cię we", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 3:8-15*\nNajmilsi: Bądźcie wszyscy jednomyślni w modlitwie, współczujący,", - "id": "Lectio" - }, - { - "body": "*Ps 83:10; 83:9*\nSpojrzyj obrońco nasz, Boże i wejrzyj na sługi Twoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług Sw", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:20-24*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli nie będzie ", - "id": "Evangelium" - }, - { - "body": "*Ps 15:7; 15:8*\nBłogosławię Pana, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy,", - "id": "Offertorium" - }, - { - "body": "Daj się przebłagać Panie naszymi modłami i łaskawie przyjmij te ofiary sług i służebnic Twoich, a co każdy złożył na chw", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję, bym w domu Pańskim przebywał po wszystkie dni mego życia.", - "id": "Communio" - }, - { - "body": "Nasyciwszy nas Panie, darem niebieskim, oczyść nas z ukrytych grzechów i wybaw od zasadzek nieprzyjacielskich.\nPrzez Pan", - "id": "Postcommunio" - } - ], - "2020-07-07": [ - { - "body": "*Ps 131:9-10*\nNiech kapłani Twoi odzieją się w sprawiedliwość, a święci Twoi niech się radują; przez wzgląd na Dawida, s", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, Tyś sprawił, że ludy słowiańskie doszły do poznania Twego imienia dzięki świętym Twoim Wyzna", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 7:23-27*\nBracia: Kapłanów było wielu, dlatego że śmierć i", - "id": "Lectio" - }, - { - "body": "*Ps 131:16-17*\nKapłanów Syjonu odzieję zbawienną pomocą, a jego święci radośnie będą się weselić.\n℣. Tam dla Dawida wzbu", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nPrzedziwny jest Bóg w Swoich Świętych: Bóg Izraela sam Swojemu ludowi daje potęgę i siłę: błogosławiony Bóg.", - "id": "Offertorium" - }, - { - "body": "Wejrzyj, Panie, na modły i ofiary Swoich wiernych: niech przy uroczystości Twoich Świętych będą Ci miłe, a nam niech wyj", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 10:27*\nCo wam mówię w ciemności, opowiadajcie na świetle, mówi Pan, i co usłyszycie na ucho, głoście na dachach.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, skoro raczysz udzielać nam darów niebieskich, daj, nam za wstawiennictwem świętych Twoic", - "id": "Postcommunio" - } - ], - "2020-07-08": [ - { - "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", - "id": "Introitus" - }, - { - "body": "Najłaskawszy Boże, który wśród innych wspaniałych darów obdarzyłeś świętą królową Elżbietę przywilejem uśmierzania gróźb", - "id": "Oratio" - }, - { - "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - } - ], - "2020-07-09": [ - { - "body": "*Ps 26:7; 62:9*\nUsłysz, Panie, głos mój, którym wołam. Tyś mą pomocą, nie odrzucaj mnie i nie opuszczaj mnie, ani mną ni", - "id": "Introitus" - }, - { - "body": "Boże, Tyś miłującym Ciebie zgotował niewidzialne dobra; wlej w nasze serca gorącą miłość ku Tobie, abyśmy miłując Cię we", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 3:8-15*\nNajmilsi: Bądźcie wszyscy jednomyślni w modlitwie, współczujący,", - "id": "Lectio" - }, - { - "body": "*Ps 83:10; 83:9*\nSpojrzyj obrońco nasz, Boże i wejrzyj na sługi Twoje.\n℣. Panie, Boże Zastępów, wysłuchaj prośby sług Sw", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:20-24*\nOnego czasu: Rzekł Jezus uczniom swoim: «Jeśli nie będzie ", - "id": "Evangelium" - }, - { - "body": "*Ps 15:7; 15:8*\nBłogosławię Pana, który dał mi rozum; zawsze stawiam Pana przed mymi oczyma, gdyż stoi przy mej prawicy,", - "id": "Offertorium" - }, - { - "body": "Daj się przebłagać Panie naszymi modłami i łaskawie przyjmij te ofiary sług i służebnic Twoich, a co każdy złożył na chw", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 26:4*\nO jedno proszę Pana, tego poszukuję, bym w domu Pańskim przebywał po wszystkie dni mego życia.", - "id": "Communio" - }, - { - "body": "Nasyciwszy nas Panie, darem niebieskim, oczyść nas z ukrytych grzechów i wybaw od zasadzek nieprzyjacielskich.\nPrzez Pan", - "id": "Postcommunio" - } - ], - "2020-07-10": [ - { - "body": "*Ps 112:1; 112:9*\nChwalcie, o dzieci, Pana, chwalcie imię Pańskie: On tej, co była niepłodna, każe mieszkać w domu jako ", - "id": "Introitus" - }, - { - "body": "Spraw, wszechmogący Boże, abyśmy, podziwiając męstwo sławnych Męczenników w wyznawaniu wiary, doznali miłościwego ich ws", - "id": "Oratio" - }, - { - "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", - "id": "Lectio" - }, - { - "body": "*Ps 123:7-8*\nDusza nasza niby ptak wyrwała się z sidła łowców.\n℣. Sidło się podarło, a my zostaliśmy uwolnieni. Wspomoże", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 12:46-50*\nOnego czasu: Gdy Jezus mówił do rzeszy, oto matka Jego i ", - "id": "Evangelium" - }, - { - "body": "*Ps 123:7*\nDusza nasza niby ptak wyrwała się z sidła łowców; sidło się podarło, a my zostaliśmy uwolnieni.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę: niech ona za wstawiennictwem Świętych Twoich utwierdzi nas w Twojej s", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 12:50*\nKtobykolwiek czynił wolę Ojca mego, który jest w niebie, ten moim bratem, i siostrą, i matką jest, mówi Pan.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, abyśmy za wstawiennictwem Twoich Świętych osiągnęli zbawienie, którego zadatek otrzymali", - "id": "Postcommunio" - } - ], - "2020-07-11": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Piusa I, Papieża i Męczennika*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustan", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Piusa I, Papieża i Męczennika*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trz", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Piusa I, Papieża i Męczennika*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez ś", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-12": [ - { - "body": "*Ps 27:8-9*\nPan jest mocą dla Swojego ludu i twierdzą zbawienia dla Swego Pomazańca; ocal lud swój, o Panie, i błogosław", - "id": "Introitus" - }, - { - "body": "Boże zastępów, od którego pochodzi wszelka doskonałość, zaszczep w naszych sercach miłość Twojego imienia i daj nam wzro", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:3-11*\n*Święty Paweł czyni aluzję do obrzędu Chrztu przez zanu", - "id": "Lectio" - }, - { - "body": "*Ps 89:13; 89:1*\nZwróć się do nas, Panie, na chwilę i daj się ubłagać sługom Swoim.\n℣. Panie, Tyś był ucieczką naszą z p", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 8:1-9*\nOnego czasu: Gdy rzesza wielka była z Jezusem, a nie miała co j", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", - "id": "Offertorium" - }, - { - "body": "Daj się przebłagać, Panie, naszymi modlitwami i przyjmij łaskawie te dary Twojego ludu; aby zaś niczyje pragnienie nie b", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 26:6*\nZłożę w Jego przybytku ofiary radości, zaśpiewam i psalm zanucę Panu.", - "id": "Communio" - }, - { - "body": "Nasyceni Twoimi darami, prosimy Cię Panie, spraw, aby ich skuteczne działanie oczyściło nas, a ich pomoc wsparła.\nPrzez ", - "id": "Postcommunio" - } - ], - "2020-07-13": [ - { - "body": "*Ps 104:3-4*\nNiech się weseli serce szukających Pana, szukajcie Pana i umacniajcie się, szukajcie zawsze Jego oblicza. (", - "id": "Introitus" - }, - { - "body": "Najłaskawszy Boże, który sprawiłeś, że święci Andrzej i Benedykt wyłącznie Tobie się oddali przez podziwu godną wstrzemi", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 2:7-13*\nKtórzy się Pana boicie, czekajcie Jego miłosierdzia, a nie odstępujcie od Nie", - "id": "Lectio" - }, - { - "body": "*Ps 30:24-25*\nMiłujcie Pana, wszyscy Święci Jego! Pan wiernych zachowuje, ale odpłaca z nawiązką tym, którzy postępują w", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 67:4*\nSprawiedliwi się cieszą i weselą przed Bożym obliczem, i rozkoszują się pośród radości. (O. W. Alleluja.)", - "id": "Offertorium" - }, - { - "body": "Gdy składamy ofiary na Twoim ołtarzu, Panie, daj nam takie uczucie pobożności, jakim obdarzyłeś świętych Wyznawców Twoic", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:37*\nBłogosławieni słudzy owi, których Pan, gdy nadejdzie, zastanie czuwającymi. Zaprawdę powiadam wam, że przepas", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, niech za wstawiennictwem świętych Wyznawców Twoich Andrzeja i Benedykta święta uczta udzieli nam pomo", - "id": "Postcommunio" - } - ], - "2020-07-14": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, Tyś dał ludowi Swemu świętego Bonawenturę za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech doroczna uroczystość świętego Bonawentury, Twego Wyznawcy i Biskupa, uczyni nas godnymi Twojej", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Boże, Ty nagradzasz dusze wierne, spraw, abyśmy dostąpili przebaczenia przez prośby świętego Bonawentury, Twego Wyznawcy", - "id": "Postcommunio" - } - ], - "2020-07-15": [ - { - "body": "*Iz 42:6*\nJa, Pan, wezwałem cię sprawiedliwie i ująłem cię za rękę i dałem cię na przymierze dla ludu, na światłość naro", - "id": "Introitus" - }, - { - "body": "Najmiłosierniejszy Boże, za szerzenie wiary w Ciebie święty Brunon, Biskup i Męczennik wielkodusznie przelał krew na tyc", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Henryka, Cesarza i Wyznawcy*\nBoże, który w dniu dzisiejszym przeniosłeś św. Henryka, Twego Wyznawcę, ze", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 6:10-22*\n*Św. Brunon znał osobiście wielu władców i udzielał im rad oraz napomnień.*\nDo", - "id": "Lectio" - }, - { - "body": "*Ps 118:46-47*\nŚwiadczyłem o Twej prawdzie wobec królów, a nie wstydziłem się.\n℣. I rozważałem Twoją naukę, bo bardzo ją", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:12-16*\nOnego czasu: Rzekł Jezus uczniom swoim: «To jest przykazanie m", - "id": "Evangelium" - }, - { - "body": "*Kol 1:24-25*\nRaduję się w cierpieniach i dopełniam na ciele własnym tego, czego nie dostaje cierpieniom Chrystusa; za c", - "id": "Offertorium" - }, - { - "body": "Panie, niech ta ofiara uwolni nas od więzów naszych grzechów i za wstawiennictwem świętego Brunona, Twego Męczennika i B", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Henryka, Cesarza i Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Flp 1:20-21*\nUwielbiony będzie Chrystus w moim ciele czy to przez życie, czy też przez śmierć; bo dla mnie życiem jest ", - "id": "Communio" - }, - { - "body": "Posileni ucztą niebieską, błagamy Cię, Panie, byś łaskawie rozpalił w nas ogień Twego Ducha, który świętego Brunona, Męc", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Henryka, Cesarza i Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-16": [ - { - "body": "*Ps 27:8-9*\nPan jest mocą dla Swojego ludu i twierdzą zbawienia dla Swego Pomazańca; ocal lud swój, o Panie, i błogosław", - "id": "Introitus" - }, - { - "body": "Boże zastępów, od którego pochodzi wszelka doskonałość, zaszczep w naszych sercach miłość Twojego imienia i daj nam wzro", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Wspomnienie N. M. P. z Góry Karmelu*\nBoże, Tyś ozdobił zakon karmelitański szczególnym zaszczytem noszenia ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:3-11*\n*Święty Paweł czyni aluzję do obrzędu Chrztu przez zanu", - "id": "Lectio" - }, - { - "body": "*Ps 89:13; 89:1*\nZwróć się do nas, Panie, na chwilę i daj się ubłagać sługom Swoim.\n℣. Panie, Tyś był ucieczką naszą z p", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 8:1-9*\nOnego czasu: Gdy rzesza wielka była z Jezusem, a nie miała co j", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", - "id": "Offertorium" - }, - { - "body": "Daj się przebłagać, Panie, naszymi modlitwami i przyjmij łaskawie te dary Twojego ludu; aby zaś niczyje pragnienie nie b", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Wspomnienie N. M. P. z Góry Karmelu*\nPoświęć, prosimy Cię, Panie, złożone dary ofiarne i spraw za przemożny", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 26:6*\nZłożę w Jego przybytku ofiary radości, zaśpiewam i psalm zanucę Panu.", - "id": "Communio" - }, - { - "body": "Nasyceni Twoimi darami, prosimy Cię Panie, spraw, aby ich skuteczne działanie oczyściło nas, a ich pomoc wsparła.\nPrzez ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Wspomnienie N. M. P. z Góry Karmelu*\nProsimy Cię, Panie, niech nas wspiera dostojne wstawiennictwo Twojej c", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-17": [ - { - "body": "*Ps 27:8-9*\nPan jest mocą dla Swojego ludu i twierdzą zbawienia dla Swego Pomazańca; ocal lud swój, o Panie, i błogosław", - "id": "Introitus" - }, - { - "body": "Boże zastępów, od którego pochodzi wszelka doskonałość, zaszczep w naszych sercach miłość Twojego imienia i daj nam wzro", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Aleksego, Wyznawcy*\nBoże, który co roku uweselasz nas uroczystością świętego Aleksego, Twojego Wyznawcy", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:3-11*\n*Święty Paweł czyni aluzję do obrzędu Chrztu przez zanu", - "id": "Lectio" - }, - { - "body": "*Ps 89:13; 89:1*\nZwróć się do nas, Panie, na chwilę i daj się ubłagać sługom Swoim.\n℣. Panie, Tyś był ucieczką naszą z p", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 8:1-9*\nOnego czasu: Gdy rzesza wielka była z Jezusem, a nie miała co j", - "id": "Evangelium" - }, - { - "body": "*Ps 16:5; 16:6-7*\nUmocnij moje kroki na Twych ścieżkach, aby nie zachwiały się wcale me stopy; nakłoń ku mnie Twe ucho, ", - "id": "Offertorium" - }, - { - "body": "Daj się przebłagać, Panie, naszymi modlitwami i przyjmij łaskawie te dary Twojego ludu; aby zaś niczyje pragnienie nie b", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Aleksego, Wyznawcy*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybaw", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 26:6*\nZłożę w Jego przybytku ofiary radości, zaśpiewam i psalm zanucę Panu.", - "id": "Communio" - }, - { - "body": "Nasyceni Twoimi darami, prosimy Cię Panie, spraw, aby ich skuteczne działanie oczyściło nas, a ich pomoc wsparła.\nPrzez ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Aleksego, Wyznawcy*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech n", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-18": [ - { - "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, który wsławiłeś błogosławionego Szymona, Twego Wyznawcę, darem głoszenia Ewangelii, spraw ła", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", - "id": "Postcommunio" - } - ], - "2020-07-19": [ - { - "body": "*Ps 46:2*\nWszystkie narody, klaskajcie w dłonie, wykrzykujcie Bogu głosem radosnym.\n*Ps 46:3*\nBo Pan Najwyższy jest stra", - "id": "Introitus" - }, - { - "body": "O Boże, Opatrzność Twoja nie myli się nigdy w zarządzeniach swoich! Usilnie więc Ciebie błagamy, abyś usunął od nas co s", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 6:19-23*\n*Człowiek, który ulega namiętnościom, żyje w prawdziwe", - "id": "Lectio" - }, - { - "body": "*Ps 33:12; 33:6*\nPójdźcie, synowie, słuchajcie mnie bojaźni Pańskiej was nauczę.\n℣. Zbliżcie się do Niego, a opromieni w", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 7:15-21*\nOnego czasu rzekł Jezus uczniom swoim: «Strzeżcie się fałs", - "id": "Evangelium" - }, - { - "body": "*Dn 3:40*\nW miejsce całopalenia baranów, wołów oraz tysięcy tłustych baranków – tak niech się dokona ofiara nasza przed ", - "id": "Offertorium" - }, - { - "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 30:3*\nSkłoń ku mnie ucho twoje i wybaw mnie prędko.", - "id": "Communio" - }, - { - "body": "Panie! Łaski Twej zbawienne działanie niechaj nas uwolni od złych skłonności i doprowadzi do tego, co godziwe.\nPrzez Pan", - "id": "Postcommunio" - } - ], - "2020-07-20": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, Ty obdarzyłeś błogosławionego Czesława dziewiczą czystością obyczajów i rozpaliwszy w nim gorliwość o zbawienie du", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - } - ], - "2020-07-21": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, który udzieliłeś św. Wawrzyńcowi, Wyznawcy Twemu i Doktorowi, ducha mądrości i męstwa do pokonywania największych ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Praksedy*\nWysłuchaj nas, Boże, nasz Zbawicielu i spraw, abyśmy radując się z uroczystości świętej Twoje", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Praksedy*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Świętych Twoich, wiedząc, że d", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Praksedy*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami; wzmacniaj nas za wstawiennictwem tej, której", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-22": [ - { - "body": "*Ps 118:95-96*\nCzekali na mnie grzesznicy, ażeby mnie zgubić, a ja pojęłam Twoje nakazy: widziałam, że ma granice Wszelk", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niechaj nas wspiera pośrednictwo świętej Marii Magdaleny, której prośbami ubłagany wskrzesiłeś jej b", - "id": "Oratio" - }, - { - "body": "*Pnp 3:2-5; 8:6-7*\n*Liturgia stosuje do św. Marii Magdaleny tekst Pieśni nad pieśniami. O świcie dnia zmartwychwstania u", - "id": "Lectio" - }, - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił Cię olejkiem wesela. A", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:36-50*\nOnego czasu: Pewien faryzeusz zaprosił Jezusa na posiłek ze", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nCórki królewskie idą Ci naprzeciw, po Twej prawicy stoi królowa strojna w złoto i szatę wzorzystą.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech dary nasze będą Tobie miłe dzięki chwalebnym zasługom świętej Marii Magdaleny, której ofiarną ", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 118:121-122; 118:128*\nPrzestrzegałam prawa i sprawiedliwości, niech nie ciemiężą mnie pyszni; stosowałam się do wszy", - "id": "Communio" - }, - { - "body": "Przyjąwszy jedyny zbawienny lek, Ciało Twoje i Krew Najdroższą, prosimy Cię, Panie: niech nas opieka świętej Marii Magda", - "id": "Postcommunio" - } - ], - "2020-07-23": [ - { - "body": "*Dn 3:84; 3:87*\nKapłani Boży, błogosławcie Panu, święci i pokornego serca chwalcie Boga.\n*Dan 3:57*\nBłogosławcie Panu, w", - "id": "Introitus" - }, - { - "body": "Boże, który nagradzasz dusze wierne, a dzień dzisiejszy uświęciłeś męczeństwem świętego Kapłana Twego Apolinarego; spraw", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Liboriusza*\nSpraw, prosimy Cię, wszechmogący Boże, aby chwalebna uroczystość świętego Liboriusza, Twego", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-11*\nNajmilsi! Starszych, którzy są wśród was, proszę, jako równie st", - "id": "Lectio" - }, - { - "body": "*Ps 88:21-23*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 22:24-30*\nOnego czasu: Powstał między uczniami spór, kto by z nich z", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Panie, wejrzyj łaskawie na te dary, które składamy dla uczczenia pamięci świętego Kapłana i Męczennika Twego Apolinarego", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Liboriusza*\nPanie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi dozn", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 25:20-21*\nPanie, dałeś mi pięć talentów, otom drugie pięć zyskał. Dobrze, sługo prawy i wierny, żeś w małym był wier", - "id": "Communio" - }, - { - "body": "Przyjmując Najświętszy Sakrament, prosimy Cię, Panie, by nas otaczała ciągła opieka św. Apolinarego, bo nie przestajesz ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Liboriusza*\nWszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną ś", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-24": [ - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Introitus" - }, - { - "body": "Boże, który błogosławioną Kingę obdarzyłeś słodyczą Twego błogosławieństwa i zachowałeś dziewicą nawet w małżeństwie, sp", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", - "id": "Offertorium" - }, - { - "body": "Panie, zlej łaskawie błogosławieństwo Twe na dary, które Ci składamy ku czci błogosławionej Kingi, Twojej Dziewicy: niec", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, za wstawiennictwem błogosławionej Kingi, Twojej Dziewicy, niech przyjęte przez nas święte tajemnice ", - "id": "Postcommunio" - } - ], - "2020-07-25": [ - { - "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", - "id": "Introitus" - }, - { - "body": "Bądź, Panie, dla ludu Twego tym, który uświęca i strzeże, aby wsparty opieką Apostoła Twego Jakuba, podobał Ci się swym ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Krzysztofa*\nProsimy Cię, wszechmogący Boże, abyśmy obchodząc urodziny dla nieba świętego Krzysztofa, Tw", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-15*\nBracia: Sądzę, że Bóg nas, Apostołów, uważał jako ", - "id": "Lectio" - }, - { - "body": "*Ps 44:17; 44:18*\nUstanowisz ich książętami po całej ziemi, przez wszystkie pokolenia głosić będą Twe imię, o Panie.\n℣. ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 20:20-23*\nOnego czasu: Przystąpiła do Jezusa matka synów Zebedeuszo", - "id": "Evangelium" - }, - { - "body": "*Ps 18:5*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech błogosławione męczeństwo świętego Jakuba Apostoła zaleci Tobie dary Twego ludu; a skoro nie są", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Krzysztofa*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28*\nWy, którzyście ze mną poszli, zasiądźcie na stolicach, sądząc dwanaście pokoleń Izraela.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, wspomagaj nas przez przyczynę Twojego Apostoła Jakuba, w którego uroczystość przyjęliśmy z radością ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Krzysztofa*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wiecz", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-26": [ - { - "body": "*Ps 47:10-11*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak imię Twe Boże, tak i chwała Twoja się", - "id": "Introitus" - }, - { - "body": "Użycz nam łaskawie, prosimy Cię Panie, stałej prawości ducha w myśleniu i działaniu, abyśmy, nie mogąc istnieć bez Ciebi", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Anny, Matki N. M. P.*\nBoże, który raczyłeś udzielić świętej Annie tej łaski, że stała się matką Rodzici", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:12-17*\n*«Abba (Ojcze)!» – to modlitwa Chrystusa, wyrażająca ż", - "id": "Lectio" - }, - { - "body": "*Ps 30:5; 70:1*\nBądź mi Boże obrońcą, bądź zamkiem warownym, abyś mnie ocalił.\n℣. Boże, do Ciebie się uciekam, Panie, ni", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 16:1-9*\n*Jezus nie pochwala nieuczciwości włodarza. Stawia jednak za", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28; 17:32*\nTy wybawiasz naród uniżony, a pognębiasz oczy wyniosłe, bo któż prócz Pana jest Bogiem?", - "id": "Offertorium" - }, - { - "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Anny, Matki N. M. P.*\nProsimy Cię, Panie, wejrzyj łaskawie na tę ofiarę: aby za wstawiennictwem św. Ann", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 33:9*\nSkosztujcie i zobaczcie jak słodki jest Pan. Szczęśliwy człowiek, który mu ufa.", - "id": "Communio" - }, - { - "body": "Panie, niech niebieski Sakrament odnowi nasze dusze i ciała, abyśmy doznali skutków tego, co ze czcią sprawujemy.\nPrzez ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Anny, Matki N. M. P.*\nProsimy Cię, Panie Boże nasz, abyśmy pokrzepieni niebieskim Sakramentem, za przyc", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-27": [ - { - "body": "*Ps 47:10-11*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak imię Twe Boże, tak i chwała Twoja się", - "id": "Introitus" - }, - { - "body": "Użycz nam łaskawie, prosimy Cię Panie, stałej prawości ducha w myśleniu i działaniu, abyśmy, nie mogąc istnieć bez Ciebi", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Pantaleona, Męczennika*\nProsimy Cię, wszechmogący Boże, za przyczyną świętego Pantaleona, Twego Męczenn", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:12-17*\n*«Abba (Ojcze)!» – to modlitwa Chrystusa, wyrażająca ż", - "id": "Lectio" - }, - { - "body": "*Ps 30:5; 70:1*\nBądź mi Boże obrońcą, bądź zamkiem warownym, abyś mnie ocalił.\n℣. Boże, do Ciebie się uciekam, Panie, ni", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 16:1-9*\n*Jezus nie pochwala nieuczciwości włodarza. Stawia jednak za", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28; 17:32*\nTy wybawiasz naród uniżony, a pognębiasz oczy wyniosłe, bo któż prócz Pana jest Bogiem?", - "id": "Offertorium" - }, - { - "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Pantaleona, Męczennika*\nPanie, niech nasza ofiara znajdzie przyjęcie u Ciebie i niech posłuży nam ku zb", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 33:9*\nSkosztujcie i zobaczcie jak słodki jest Pan. Szczęśliwy człowiek, który mu ufa.", - "id": "Communio" - }, - { - "body": "Panie, niech niebieski Sakrament odnowi nasze dusze i ciała, abyśmy doznali skutków tego, co ze czcią sprawujemy.\nPrzez ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Pantaleona, Męczennika*\nPokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie, Boże nasz, abyś", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-28": [ - { - "body": "*Ps 78:11-12; 78:10*\nNiech jęk pojmanych dojdzie do Ciebie, Panie: naszym sąsiadom odpłać siedmiokroć w ich zanadrze, po", - "id": "Introitus" - }, - { - "body": "Panie, niech błogosławione wyznanie wiary Świętych Twoich Nazariusza, Celsa, Wiktora i Innocentego umacnia nas i wyjedna", - "id": "Oratio" - }, - { - "body": "*Mdr 10:17-29*\nBóg dał świętym nagrodę za ich pracę, prowadził ich drogą godną podziwu. Stał się dla nich osłoną za dnia", - "id": "Lectio" - }, - { - "body": "*Wj 15:11*\nChwalebny jest Bóg w Swoich Świętych, przedziwny w majestacie, dokonuje cudów.\n*Wj 15:6*\n℣. Prawica Twoja, Pa", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:9-19*\n*Wszystkie prześladowania, jakich doznają męczennicy, stano", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nPrzedziwny jest Bóg w Swoich Świętych: Bóg Izraela, sam Swojemu ludowi daje potęgę i siłę: błogosławiony Bóg,", - "id": "Offertorium" - }, - { - "body": "Daj nam wszechmogący Boże, abyśmy przebłagali Ciebie przez ofiarowanie darów ku czci Świętych Twoich Nazariusza, Celsa, ", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył: jak złoto w piecu ich wypróbował, jak ofiarę", - "id": "Communio" - }, - { - "body": "Przejednany wstawiennictwem Twoich Świętych: Nazariusza, Celsa, Wiktora i Innocentego, daj nam, prosimy Cię, Panie, abyś", - "id": "Postcommunio" - } - ], - "2020-07-29": [ - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Introitus" - }, - { - "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy Marty, nabyli u", - "id": "Oratio" - }, - { - "body": "*Wspomnienie śś. Feliksa, Symplicjusza, Faustyna i Beatryczy*\nProsimy Cię, Panie, aby lud chrześcijański, radując się z ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:38-42*\nOnego czasu: Jezus wszedł do jednej osady, a niewiasta pew", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Wspomnienie śś. Feliksa, Symplicjusza, Faustyna i Beatryczy*\nSkładamy Tobie, Panie, ofiary ku uczczeniu pamięci świętyc", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie śś. Feliksa, Symplicjusza, Faustyna i Beatryczy*\nProsimy Cię, wszechmogący Boże, aby uroczystość świętych M", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-30": [ - { - "body": "*Ps 47:10-11*\nO Boże, przyjęliśmy Twe miłosierdzie w pośrodku Twojej świątyni. Jak imię Twe Boże, tak i chwała Twoja się", - "id": "Introitus" - }, - { - "body": "Użycz nam łaskawie, prosimy Cię Panie, stałej prawości ducha w myśleniu i działaniu, abyśmy, nie mogąc istnieć bez Ciebi", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Śś. Abdona i Sennena, Męczenników*\nBoże, który Świętym Twoim Abdonowi i Sennenowi dla osiągnięcia obecnej c", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 8:12-17*\n*«Abba (Ojcze)!» – to modlitwa Chrystusa, wyrażająca ż", - "id": "Lectio" - }, - { - "body": "*Ps 30:5; 70:1*\nBądź mi Boże obrońcą, bądź zamkiem warownym, abyś mnie ocalił.\n℣. Boże, do Ciebie się uciekam, Panie, ni", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 16:1-9*\n*Jezus nie pochwala nieuczciwości włodarza. Stawia jednak za", - "id": "Evangelium" - }, - { - "body": "*Ps 17:28; 17:32*\nTy wybawiasz naród uniżony, a pognębiasz oczy wyniosłe, bo któż prócz Pana jest Bogiem?", - "id": "Offertorium" - }, - { - "body": "Boże, Tyś w doskonałości jednej Hostii zebrał rozmaitość ofiar Starego Zakonu – przyjmij ofiarę, którą Ci wierni poddani", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Śś. Abdona i Sennena, Męczenników*\nProsimy Cię, Panie, niech ta ofiara, którą składamy wspominając narodzin", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 33:9*\nSkosztujcie i zobaczcie jak słodki jest Pan. Szczęśliwy człowiek, który mu ufa.", - "id": "Communio" - }, - { - "body": "Panie, niech niebieski Sakrament odnowi nasze dusze i ciała, abyśmy doznali skutków tego, co ze czcią sprawujemy.\nPrzez ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Śś. Abdona i Sennena, Męczenników*\nPanie, niech działanie Twego Sakramentu oczyści nas ze złych skłonności ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-07-31": [ - { - "body": "*Flp 2:10-11*\n*Św. Ignacy chciał, aby jego zakon nosił imię Jezusa.*\nNa imię Jezus niechaj się zgina wszelkie kolano mie", - "id": "Introitus" - }, - { - "body": "*«Dla większej chwały Bożej» – to hasło zakonu Jezuitów.*\nBoże, który dla rozszerzenia większej chwały Twojego imienia p", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 2:8-10; 3:10-12*\nNajmilszy: Pamiętaj, że Pan Jezus Chrystu", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:1-9*\nOnego czasu: Wyznaczył Pan także innych siedemdziesięciu dwó", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Panie Boże, niech ofiarom naszym towarzyszy łaskawe orędownictwo św. Ignacego, aby najświętsze misteria, w których ustan", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:49*\nOgień przyszedłem rzucić na ziemię, a czegóż chcę, jeno aby zapłonął.", - "id": "Communio" - }, - { - "body": "Ofiara chwały, którą złożyliśmy Tobie, Panie, dzięki czyniąc za świętego Ignacego, niechaj nas za jego przyczyną doprowa", - "id": "Postcommunio" - } - ], - "2020-08-01": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Siedmiu Braci Machabejskich, Męczenników*\nNiech nas, Panie, uraduje wspólne zwycięstwo Braci Męczenników, n", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Siedmiu Braci Machabejskich, Męczenników*\nDozwól nam, Panie, pobożnie sprawować Twoje misteria ku czci Twoi", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Siedmiu Braci Machabejskich, Męczenników*\nProsimy Cię, wszechmogący Boże, abyśmy coraz lepiej naśladowali w", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-02": [ - { - "body": "*Ps 53:6-7*\nOto Bóg mi dopomaga, Pan podtrzymuje me życie. Odwróć zło ku moim przeciwnikom i według Twej obietnicy zniwe", - "id": "Introitus" - }, - { - "body": "Panie, niech uszy miłosierdzia Twego otworzą się na modlitwy błagających i abyś mógł spełnić ich pragnienia, daj im pros", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 10:6-13*\n*Św. Paweł poucza nas, że dzieje Starego Testamen", - "id": "Lectio" - }, - { - "body": "*Ps 8:2*\nO Panie, Panie nasz, jak przedziwne Twe imię po wszystkiej ziemi.\n℣. Tyś swój majestat wyniósł nad niebiosa. Al", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:41-47*\nOnego czasu: Gdy przybliżył się Jezus do Jeruzalem i ujrza", - "id": "Evangelium" - }, - { - "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nPrzykazania Pańskie słuszne, radują serca; sądy Pańskie słodsze od miodu płynącego z plas", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię Panie, dozwól nam godnie uczestniczyć w tym misterium, ilekroć bowiem sprawujemy pamiątkę ofiary Chrystusa, ", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*J 6:57*\nKto pożywa moje Ciało i pije moją Krew, we mnie mieszka, a ja w nim, mówi Pan.", - "id": "Communio" - }, - { - "body": "Panie, niech udział w Twoim Sakramencie, oczyści nas i zjednoczy.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-08-03": [ - { - "body": "*Ps 53:6-7*\nOto Bóg mi dopomaga, Pan podtrzymuje me życie. Odwróć zło ku moim przeciwnikom i według Twej obietnicy zniwe", - "id": "Introitus" - }, - { - "body": "Panie, niech uszy miłosierdzia Twego otworzą się na modlitwy błagających i abyś mógł spełnić ich pragnienia, daj im pros", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 10:6-13*\n*Św. Paweł poucza nas, że dzieje Starego Testamen", - "id": "Lectio" - }, - { - "body": "*Ps 8:2*\nO Panie, Panie nasz, jak przedziwne Twe imię po wszystkiej ziemi.\n℣. Tyś swój majestat wyniósł nad niebiosa. \n*", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:41-47*\nOnego czasu: Gdy przybliżył się Jezus do Jeruzalem i ujrza", - "id": "Evangelium" - }, - { - "body": "*Ps 18:9; 18:10; 18:11; 18:12*\nPrzykazania Pańskie słuszne, radują serca; sądy Pańskie słodsze od miodu płynącego z plas", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię Panie, dozwól nam godnie uczestniczyć w tym misterium, ilekroć bowiem sprawujemy pamiątkę ofiary Chrystusa, ", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*J 6:57*\nKto pożywa moje Ciało i pije moją Krew, we mnie mieszka, a ja w nim, mówi Pan.", - "id": "Communio" - }, - { - "body": "Panie, niech udział w Twoim Sakramencie, oczyści nas i zjednoczy.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-08-04": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, który raczyłeś oświecić swój Kościół zasługami i nauką św. Dominika, Twojego Wyznawcy, spraw, by za jego wstawienn", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\n℣. Sprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\n℣. By", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim innemu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Poświęć, Panie, złożone Ci dary, aby przez zasługi św. Dominika, Twego Wyznawcy, stały się dla nas lekarstwem.\nPrzez Pan", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, aby każdemu przydzielał żywność w o", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, spraw, aby podźwignęło nas wstawiennictwo św. Dominika, gdy przytłacza nas ciężar własny", - "id": "Postcommunio" - } - ], - "2020-08-05": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - } - ], - "2020-08-06": [ - { - "body": "*Ps 76:19*\nBłyskawice Twoje rozjaśniły widnokrąg: zatrzęsła się ziemia i zadygotała.\n*Ps 83:2-3*\nJak miłe są przybytki T", - "id": "Introitus" - }, - { - "body": "Boże, Tyś przy chwalebnym Przemienieniu jednorodzonego Syna Twojego potwierdził tajemnice wiary świadectwem Ojców, a prz", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*2 P 1:16-19*\n*Św. Piotr, naoczny świadek Przemienienia, powołuje się na świa", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejszy nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 17:1-9*\nOnego czasu: Wziął Jezus Piotra i Jakuba, i Jana brata jego", - "id": "Evangelium" - }, - { - "body": "*Ps 111:3*\nZasoby i bogactwa będą w jego domu, a hojność jego będzie trwała zawsze. Alleluja.", - "id": "Offertorium" - }, - { - "body": "Panie, poświęć składane ofiary przez chwalebne Przemienienie jednorodzonego Syna Twego, a nas oczyść od zmaz grzechowych", - "id": "Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Mt 17:9*\nNikomu nie mówcie o widzeniu, aż Syn Człowieczy zmartwychwstanie.", - "id": "Communio" - }, - { - "body": "Spraw, prosimy, wszechmogący Boże, abyśmy czystym i jasnym umysłem pojęli najświętszą tajemnicą Przemienienia Syna Twego", - "id": "Postcommunio" - } - ], - "2020-08-07": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, który pozwoliłeś świętemu Kajetanowi, Twemu Wyznawcy, naśladować sposób życia Apostołów; daj nam za jego wstawienn", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Donata*\nBoże, chwało Twych kapłanów, daj, prosimy Cię, niech doznamy pomocy świętego Donata, Twego Męcz", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:24-33*\n*Chrystus nie zaleca lenistwa, lecz gani zbytnią troskę o ", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie miła i", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Donata*\nSpraw, prosimy Cię, Panie, aby dzięki wstawiennictwu św. Donata, Twego Męczennika i Biskupa, kt", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Donata*\nWszechmogący i miłosierny Boże, który czynisz nas uczestnikami i szafarzami Twoich Sakramentów,", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-08": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Wszechmogący i wieczny Boże, który św. Jana Marię uczyniłeś godnym podziwu dla jego pasterskiej gorliwości oraz wytrwałe", - "id": "Oratio" - }, - { - "body": "*Wspomnienie śś. Cyriaka, Larga i Szmaragda*\nBoże, który co roku uweselasz nas uroczystością świętych Męczenników Twoich", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Wspomnienie śś. Cyriaka, Larga i Szmaragda*\nPanie, niech nasza ofiara znajdzie przyjęcie u Ciebie i niech posłuży nam k", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie śś. Cyriaka, Larga i Szmaragda*\nPokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie Boże nasz, a", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-09": [ - { - "body": "*Ps 54:17-20; 54:23*\nKiedy wołałem do Pana, wysłuchał głosu mego przeciw tym, którzy na mnie nastają; i poniżył ich Ten,", - "id": "Introitus" - }, - { - "body": "Boże, który najbardziej okazujesz swoją wszechmoc przebaczając i litując się, pomnóż w nas łaski Twego miłosierdzia, aby", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 12:2-11*\n*Duch Święty nadal działa w Kościele, obdarzając ", - "id": "Lectio" - }, - { - "body": "*Ps 16:8; 16:2*\nStrzeż mnie, o Panie, jak źrenicy oka; w cieniu Twych skrzydeł mnie ukryj.\n℣. Sprzed Twego oblicza niech", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:9-14*\nOnego czasu: Mówił Jezus do niektórych, którzy samym sobie ", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże mój, Tobie ufam, niech nie doznam wstydu; niech się nie śmieją ze m", - "id": "Offertorium" - }, - { - "body": "Niechaj wrócą do Ciebie, Panie, poświęcone ofiary, Panie, które pozwoliłeś tak składać na chwałę imienia Twojego, że zar", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nPrzyjmiesz ofiary prawe, dary i całopalenia, na ołtarzu Twoim, Panie.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, Boże nasz, racz nie odmawiać Twojej pomocy tym, których nieustannie posilasz Boskim Sakramentem.\nPrz", - "id": "Postcommunio" - } - ], - "2020-08-10": [ - { - "body": "*Ps 95:6*\n*Antyfona wyraża zachwyt wchodzących do wspaniałej bazyliki św. Wawrzyńca.*\nChwałą i pięknością promienieje je", - "id": "Introitus" - }, - { - "body": "Daj nam, prosimy Cię, wszechmogący Boże, tak stłumić płomienie naszych namiętności, jak świętemu Wawrzyńcowi użyczyłeś s", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 9:6-10*\n*Św. Wawrzyniec oświadczył pogańskiemu sędziemu, ż", - "id": "Lectio" - }, - { - "body": "*Ps 16:3*\nBadałeś me serce, nocą mnie nawiedziłeś.\n℣. Doświadczyłeś mię w ogniu, a nieprawości we mnie nie znalazłeś. Al", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:24-26*\n*Śmierć św. Wawrzyńca i wielu innych męczenników przyniosła Ko", - "id": "Evangelium" - }, - { - "body": "*Ps 95:6*\nChwałą i pięknością promienieje jego oblicze, moc i wspaniałość w jego świątyni.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij dary ze czcią złożone i spraw, niech przez zasługi św. Wawrzyńca przyczynią się do naszego ", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*J 12:26*\nKto mnie służy, niech idzie za mną; a gdzie ja jestem, tam będzie i sługa mój.", - "id": "Communio" - }, - { - "body": "Darem świętym nasyceni, kornie błagamy Cię, Panie, abyśmy składając przez tę ofiarę należny Ci hołd, za wstawiennictwem ", - "id": "Postcommunio" - } - ], - "2020-08-11": [ - { - "body": "*Ps 54:17-20; 54:23*\nKiedy wołałem do Pana, wysłuchał głosu mego przeciw tym, którzy na mnie nastają; i poniżył ich Ten,", - "id": "Introitus" - }, - { - "body": "Boże, który najbardziej okazujesz swoją wszechmoc przebaczając i litując się, pomnóż w nas łaski Twego miłosierdzia, aby", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Śś. Tyburcjusza i Zuzanny, Męczenników*\nPanie, niech nas otacza ciągła opieka świętych Twoich Męczenników T", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 12:2-11*\n*Duch Święty nadal działa w Kościele, obdarzając ", - "id": "Lectio" - }, - { - "body": "*Ps 16:8; 16:2*\nStrzeż mnie, o Panie, jak źrenicy oka; w cieniu Twych skrzydeł mnie ukryj.\n℣. Sprzed Twego oblicza niech", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:9-14*\nOnego czasu: Mówił Jezus do niektórych, którzy samym sobie ", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże mój, Tobie ufam, niech nie doznam wstydu; niech się nie śmieją ze m", - "id": "Offertorium" - }, - { - "body": "Niechaj wrócą do Ciebie, Panie, poświęcone ofiary, Panie, które pozwoliłeś tak składać na chwałę imienia Twojego, że zar", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Śś. Tyburcjusza i Zuzanny, Męczenników*\nPanie, wejrzyj łaskawie na prośby Twego ludu, wejrzyj na dary: niec", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nPrzyjmiesz ofiary prawe, dary i całopalenia, na ołtarzu Twoim, Panie.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, Boże nasz, racz nie odmawiać Twojej pomocy tym, których nieustannie posilasz Boskim Sakramentem.\nPrz", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Śś. Tyburcjusza i Zuzanny, Męczenników*\nPrzyjęliśmy, Panie, zadatek zbawienia wiecznego: prosimy Cię, niech", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-12": [ - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Introitus" - }, - { - "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy Klary, nabyli u", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - } - ], - "2020-08-13": [ - { - "body": "*Ps 54:17-20; 54:23*\nKiedy wołałem do Pana, wysłuchał głosu mego przeciw tym, którzy na mnie nastają; i poniżył ich Ten,", - "id": "Introitus" - }, - { - "body": "Boże, który najbardziej okazujesz swoją wszechmoc przebaczając i litując się, pomnóż w nas łaski Twego miłosierdzia, aby", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Śś. Hipolita i Kasjana, Męczenników*\nSpraw, prosimy Cię, wszechmogący Boże, aby chwalebna uroczystość święt", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 12:2-11*\n*Duch Święty nadal działa w Kościele, obdarzając ", - "id": "Lectio" - }, - { - "body": "*Ps 16:8; 16:2*\nStrzeż mnie, o Panie, jak źrenicy oka; w cieniu Twych skrzydeł mnie ukryj.\n℣. Sprzed Twego oblicza niech", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 18:9-14*\nOnego czasu: Mówił Jezus do niektórych, którzy samym sobie ", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Panie, Boże mój, Tobie ufam, niech nie doznam wstydu; niech się nie śmieją ze m", - "id": "Offertorium" - }, - { - "body": "Niechaj wrócą do Ciebie, Panie, poświęcone ofiary, Panie, które pozwoliłeś tak składać na chwałę imienia Twojego, że zar", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Śś. Hipolita i Kasjana, Męczenników*\nWejrzyj, Panie, na dary ludu Swojego ofiarowane w uroczystość Świętych", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 50:21*\nPrzyjmiesz ofiary prawe, dary i całopalenia, na ołtarzu Twoim, Panie.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, Boże nasz, racz nie odmawiać Twojej pomocy tym, których nieustannie posilasz Boskim Sakramentem.\nPrz", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Śś. Hipolita i Kasjana, Męczenników*\nPanie, niech przyjęcie Twego Sakramentu zachowa nas i utwierdzi w świe", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-14": [ - { - "body": "*Ps 44:13; 44:15; 44:16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Ni", - "id": "Introitus" - }, - { - "body": "Boże, Tyś raczył obrać sobie na mieszkanie dziewicze łono Najświętszej Maryi; daj nam bezpiecznie pod Jej opieką brać ra", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Euzebiusza*\nBoże, który co roku uweselasz nas uroczystością św. Euzebiusza, Twojego Wyznawcy, spraw, ab", - "id": "Commemoratio Oratio" - }, - { - "body": "*Syr 24:23-31*\nJako krzew winny wydałam wdzięczną woń, a kwiaty moje owocem czci i godności. Jam matką pięknej miłości i", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "Błogosławiona jesteś, Panno Maryjo, któraś nosiła Stwórcę wszechrzeczy. Porodziłaś Tego, który Cię stworzył, i na wieki ", - "id": "Offertorium" - }, - { - "body": "Panie, niech nasze dary poleca Twojej łaskawości modlitwa Bożej Rodzicielki, którą po to zabrałeś z tego świata, aby ufn", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Euzebiusza*\nWspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", - "id": "Communio" - }, - { - "body": "Miłosierny Boże, udziel pomocy naszej ułomności, abyśmy powstali z naszych nieprawości za wstawiennictwem Najświętszej B", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Euzebiusza*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas broni", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-15": [ - { - "body": "*Ap 12:1*\nZnak wielki ukazał się na niebie: Niewiasta obleczona w słońce i księżyc u jej stóp, a na jej głowie korona z ", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, Ty wziąłeś do niebieskiej chwały ciało i duszę Niepokalanej Dziewicy Maryi, Matki Twego Syna", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Judyty.\n*Jdt 13, 22-25; 15:10*\n*Podobnie jak Judyta w Starym Testamencie, Maryja poświęciła się dla do", - "id": "Lectio" - }, - { - "body": "*Ps 44:11-12; 44:14*\n*Wniebowzięcie to triumfalny pochód Królowej nieba.*\nPosłuchaj, córko, spójrz i nakłoń twego ucha, ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:41-50*\nOnego czasu: Napełniona została Elżbieta Duchem Świętym i z", - "id": "Evangelium" - }, - { - "body": "*Rdz 3:15*\n*W Maryi, Matce Zbawiciela, spełniła się obietnica dana przez Boga w raju.*\nPołożę nieprzyjaźń między tobą, a", - "id": "Offertorium" - }, - { - "body": "Ofiara naszego oddania niechaj się wzniesie do Ciebie, Panie, i za wstawiennictwem Najświętszej Maryi Panny Wniebowzięte", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*Łk 1:48-49*\n*Chwała, którą Maryja już posiadała, ma stać się również naszym udziałem.*\nBłogosławioną zwać mnie będą wsz", - "id": "Communio" - }, - { - "body": "Przyjąwszy zbawczy Sakrament, prosimy Cię, Panie, daj, byśmy przez zasługi i wstawiennictwo Najświętszej Maryi Panny Wni", - "id": "Postcommunio" - } - ], - "2020-08-16": [ - { - "body": "*Ps 67:6-7; 67:36*\nBóg w mieszkaniu swoim świętym. Ten Bóg wprowadza samotnych do domu. On lud swój potęgą i siłą obdarz", - "id": "Introitus" - }, - { - "body": "Wszechmocny, wiekuisty Boże, Ty przewyższasz obfitością dobrodziejstw Twoich pragnienia i zasługi błagających Ciebie, ob", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Joachima, Ojca N. M. P.*\nBoże, który pośród wszystkich Świętych wybrałeś św. Joachima na ojca Rodziciel", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 15:1-10*\nBracia: Przypominam wam Ewangelię, którą wam głos", - "id": "Lectio" - }, - { - "body": "*Ps 27:7 27:1*\nNa Boga się zdałem, a On mnie pokrzepił, przeto me serce radością przejęte i dzięki Mu składam ochotnie.\n", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 7:31-37*\nOnego czasu: Jezus, wyszedłszy z granic Tyru przez Sydon, prz", - "id": "Evangelium" - }, - { - "body": "*Ps 29:2-3*\nWysławiam Cię, Panie, żeś mnie ocalił i nie dałeś mym wrogom cieszyć się z mej zguby, Panie, wołam do Ciebie", - "id": "Offertorium" - }, - { - "body": "Wejrzyj łaskawie, prosimy Cię Panie, na usłużność naszą, a ofiara nasza niechaj będzie dla Ciebie miłą daniną, a dla nas", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Joachima, Ojca N. M. P.*\nNajłaskawszy Boże, przyjmij ofiarę złożoną majestatowi Twojemu ku uczczeniu św", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Prz 3:9-10*\nCzyń Panu ofiary z majętności twojej i z pierwocin plonów twoich, a napełnią się spichlerze twoje zbożem i ", - "id": "Communio" - }, - { - "body": "Prosimy cię, Panie, daj nam doznać spożywając Twój Sakrament, pomocy na duszy i ciele, abyśmy całkowicie uzdrowieni cies", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Joachima, Ojca N. M. P.*\nProsimy Cię, wszechmogący Boże, aby Sakrament, któryśmy przyjęli, przez zasług", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-17": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, który co roku uweselasz nas uroczystością świętego Jacka, Twojego Wyznawcy, spraw łaskawie, abyśmy również naślado", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - } - ], - "2020-08-18": [ - { - "body": "*Ps 67:6-7; 67:36*\nBóg w mieszkaniu swoim świętym. Ten Bóg wprowadza samotnych do domu. On lud swój potęgą i siłą obdarz", - "id": "Introitus" - }, - { - "body": "Wszechmocny, wiekuisty Boże, Ty przewyższasz obfitością dobrodziejstw Twoich pragnienia i zasługi błagających Ciebie, ob", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Agapita, Męczennika*\nNiech się raduje Kościół Twój, Boże, ufny w pośrednictwo św. Agapita, Twojego Męcz", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 15:1-10*\nBracia: Przypominam wam Ewangelię, którą wam głos", - "id": "Lectio" - }, - { - "body": "*Ps 27:7 27:1*\nNa Boga się zdałem, a On mnie pokrzepił, przeto me serce radością przejęte i dzięki Mu składam ochotnie.\n", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 7:31-37*\nOnego czasu: Jezus, wyszedłszy z granic Tyru przez Sydon, prz", - "id": "Evangelium" - }, - { - "body": "*Ps 29:2-3*\nWysławiam Cię, Panie, żeś mnie ocalił i nie dałeś mym wrogom cieszyć się z mej zguby, Panie, wołam do Ciebie", - "id": "Offertorium" - }, - { - "body": "Wejrzyj łaskawie, prosimy Cię Panie, na usłużność naszą, a ofiara nasza niechaj będzie dla Ciebie miłą daniną, a dla nas", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Agapita, Męczennika*\nPrzyjmij, Panie, dary, które Ci składamy w uroczystość tego, którego wstawiennictw", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Prz 3:9-10*\nCzyń Panu ofiary z majętności twojej i z pierwocin plonów twoich, a napełnią się spichlerze twoje zbożem i ", - "id": "Communio" - }, - { - "body": "Prosimy cię, Panie, daj nam doznać spożywając Twój Sakrament, pomocy na duszy i ciele, abyśmy całkowicie uzdrowieni cies", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Agapita, Męczennika*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami; wzmacniaj nas stale za wstawienni", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-19": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, Ty obudziłeś w świętym Janie, Twoim Wyznawcy, przedziwny zapał do szerzenia czci Najświętszych Serc Jezusa i Maryi", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - } - ], - "2020-08-20": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, Tyś dał ludowi Swemu świętego Bernarda za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć or", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Syr 39:6-14*\nSprawiedliwy już od zarania czujnie zwraca swe serce do Pana, który go stworzy", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Bernarda, Twego Biskupa i Doktora, która zaleci Tobie naszą ", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty Bernard, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoj", - "id": "Postcommunio" - } - ], - "2020-08-21": [ - { - "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", - "id": "Introitus" - }, - { - "body": "Wszechmogący i miłosierny Boże, Ty rozpaliwszy świętą Joannę Franciszkę ogniem Swojej miłości, obdarzyłeś ją przedziwną ", - "id": "Oratio" - }, - { - "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech ta zbawcza ofiara zapali nas takim ogniem miłości, jaki zapłonął w sercu świętej Joanny Franci", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Communio" - }, - { - "body": "Tchnij w nas, o Panie, Ducha Twojej miłości, i spraw, abyśmy nasyceni mocą niebiańskiego chleba wzgardzili tym, co ziems", - "id": "Postcommunio" - } - ], - "2020-08-22": [ - { - "body": "*Hbr 4:16*\nZbliżmy się z ufnością do tronu łaski, abyśmy otrzymali zmiłowanie i dostąpili łaski w pomocy na czasie.\n*Ps ", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, któryś w sercu Najświętszej Maryi Panny zgotował godne mieszkanie dla Ducha Świętego, daj ła", - "id": "Oratio" - }, - { - "body": "*Wspomnienie śś. Tymoteusza, Hipolita i Symforiana*\nPanie, udziel nam łaskawie Twej pomocy i za wstawiennictwem świętych", - "id": "Commemoratio Oratio" - }, - { - "body": "*Syr 24:23-31*\nJako krzew winny wydałam wdzięczną woń, a kwiaty moje owocem czci i godności. Jam matką pięknej miłości i", - "id": "Lectio" - }, - { - "body": "*Ps 12:6*\nSerce me cieszy się z Twojej pomocy, będę śpiewał Panu, co darzy mnie dobrem, zanucę psalm imieniu Najwyższego", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:25-27*\nOnego czasu: Pod krzyżem Jezusowym stała Matka Jego i siostra ", - "id": "Evangelium" - }, - { - "body": "*Łk 1:46; 1:49*\nRozradował się duch mój w Bogu, Zbawicielu moim: albowiem uczynił mi wielkie rzeczy, który możny jest i ", - "id": "Offertorium" - }, - { - "body": "Ofiarując majestatowi Twojemu niepokalanego Baranka, prosimy Cię, Panie, aby serca nasze rozpalił ów ogień niebieski, kt", - "id": "Secreta" - }, - { - "body": "*Wspomnienie śś. Tymoteusza, Hipolita i Symforiana*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci święt", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*J 19:27*\nRzekł Jezus do Matki swojej: Niewiasto, oto syn Twój; potem rzekł uczniowi: Oto Matka twoja! I od onej godziny", - "id": "Communio" - }, - { - "body": "Posileni boskimi darami, kornie błagamy Cię, Panie, abyśmy za wstawiennictwem Najświętszej Maryi Panny, której uroczysto", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie śś. Tymoteusza, Hipolita i Symforiana*\nDarem Bożym szczodrze nasyceni prosimy Cię, Panie, Boże nasz, abyśmy", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-23": [ - { - "body": "*Ps 69:2-3*\nBoże, wejrzyj ku wspomożeniu memu, Panie pospiesz ku ratunkowi memu. Niech się zawstydzą i okryją rumieńcem,", - "id": "Introitus" - }, - { - "body": "Wszechmocny, miłosierny Boże, dzięki Twej łasce wierni Twoi służą Ci godnie i chwalebnie, daj nam prosimy Cię, dążyć bez", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 3:4-9*\n*Apostołowie, ich następcy biskupi i kapłani oraz w", - "id": "Lectio" - }, - { - "body": "*Ps 33:2-3*\nW każdym czasie będę błogosławił Panu; na ustach moich zawsze Jego chwała.\n℣. W Panu dusza moja będzie się c", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 10:23-37*\n*Zasada moralności chrześcijańskiej jest bardzo prosta, le", - "id": "Evangelium" - }, - { - "body": "*Wj 32:11 32:13; 32:14*\nMojżesz modlił się do Pana, Boga swego mówiąc: Czemuż Panie, gniewa się zapalczywość Twoja przec", - "id": "Offertorium" - }, - { - "body": "Panie, wejrzyj łaskawie na dary ofiarne, które składamy na Twoim świętym ołtarzu, aby wyjednując nam przebaczenie przyni", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 103:13; 103:14-15*\n*Chleb, wino i oliwa podtrzymują doczesne życie człowieka. Jako materia sakramentów służą życiu n", - "id": "Communio" - }, - { - "body": "Prosimy Cię Panie, niech udział w świętym misterium wleje w nas nowe życie, uwolni od win i zapewni obronę.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-08-24": [ - { - "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, który w dniu dzisiejszym napełniłeś nas pełną powagi i świętą radością z uroczystości Twojeg", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 12:27-31*\nBracia: Wy jesteście ciałem Chrystusowym, jedni ", - "id": "Lectio" - }, - { - "body": "*Ps 44:17; 44:18*\nUstanowisz ich książętami po całej ziemi, głosić będą Twe imię, o Panie.\n℣. Synowie Twoi zajmą miejsce", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 6:12-19*\nOnego czasu: Odszedł Jezus na górę modlić się i spędził noc", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.", - "id": "Offertorium" - }, - { - "body": "Obchodząc uroczystość świętego Bartłomieja, Twojego Apostoła, prosimy Cię, Panie, udziel nam Swoich dobrodziejstw za prz", - "id": "Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28*\nWy, którzyście poszli za mną, zasiądziecie na stolicach, sądząc dwanaście pokoleń Izraela, mówi Pan.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech przyjęty zadatek zbawienia wiecznego, za przyczyną św. Bartłomieja, Twojego Apostoła, stanie s", - "id": "Postcommunio" - } - ], - "2020-08-25": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne, prawo jego mieszka w jego sercu.\n*Ps ", - "id": "Introitus" - }, - { - "body": "Boże, Tyś św. Ludwika z królestwa ziemskiego przeniósł do chwały Królestwa Niebieskiego. Prosimy Cię, przez jego zasługi", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 10: 10-14*\n*Opatrzność Boża kierowała losami prześladowanego patriarchy Jakuba i Józefa", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:12-26*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «Pe", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, abyśmy się stali miłymi Tobie przez modlitwy św. Ludwika, Twego Wyznawcy, który wzgardzi", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Boże, który uczyniłeś św. Ludwika, Twego Wyznawcę, godnym podziwu na ziemi, i nagrodziłeś go chwałą w niebie: prosimy Ci", - "id": "Postcommunio" - } - ], - "2020-08-26": [ - { - "body": "*Ps 86:1-2*\nMiłuje Pan to, co na górach świętych zbudował: bramy Syjonu więcej niż wszystkie namioty Jakuba.\n*Ps 86:3*\nG", - "id": "Introitus" - }, - { - "body": "Wszechmogący i miłosierny Boże, który w Najświętszej Maryi Pannie przedziwnie ustanowiłeś nieustanną pomoc dla obrony na", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Przysłów.\n*Prz 8:17-24; 8:32-35*\nJa miłuję tych, którzy mnie miłują, i ci, co rano dla mnie czuwają, z", - "id": "Lectio" - }, - { - "body": "Bramą niebios i gwiazdą morską jesteś, Panno Maryjo, Matko Króla przedwiecznego i nasza Królowo.\n℣. Uczyń nas miłymi Syn", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 2:1-11*\nOnego czasu: odbywały się gody weselne w Kanie Galilejskiej i by", - "id": "Evangelium" - }, - { - "body": "*Ps 47:13-15*\nZwiedzajcie Syjon. obchodźcie go wkoło, policzcie jego wieżyce. Przypatrzcie się jego basztom, przebiegajc", - "id": "Offertorium" - }, - { - "body": "Błagając o triumf religii chrześcijańskiej, składamy Ci, Panie, ofiary, aby zaś one były dla nas skuteczne, niechaj nas ", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 86:3; 86:2*\nGłoszą o tobie rzeczy pełne chwały, o miasto Boże; miłuje Pan bramy Syjonu więcej niż wszystkie namioty ", - "id": "Communio" - }, - { - "body": "Wspomagaj, Panie, lud, który pokrzepiasz uczestnictwem w Ciele i Krwi Twojej, i przy pomocy Najświętszej Rodzicielki Two", - "id": "Postcommunio" - } - ], - "2020-08-27": [ - { - "body": "*Ps 33:12*\nPójdźcie, synowie, słuchajcie mnie: nauczę was Pańskiej bojaźni.\n*Ps 33:2*\nW każdym czasie będę błogosławił P", - "id": "Introitus" - }, - { - "body": "Boże, który przez świętego Józefa, Twego Wyznawcę, raczyłeś zesłać Kościołowi swemu nową pomoc do kształcenia młodzieży ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 10: 10-14*\n*Opatrzność Boża kierowała losami prześladowanego patriarchy Jakuba i Józefa", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-5*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", - "id": "Evangelium" - }, - { - "body": "*Ps 9:17*\nPragnień nieszczęśliwych wysłuchałeś, Panie, wołanie ich serca usłyszało ucho Twoje.", - "id": "Offertorium" - }, - { - "body": "Na ołtarzu Twoim, Panie, gromadzimy dary, aby nam wyjednały miłosierdzie dzięki modlitwom tego, któremu oddałeś nas pod ", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mk 10:14*\nDopuśćcie dzieciom przychodzić do mnie i nie wzbraniajcie im, albowiem takich jest Królestwo Boże.", - "id": "Communio" - }, - { - "body": "Uświęceni zbawiennym misterium, prosimy Cię, Panie, abyśmy za wstawiennictwem św. Józefa, Twego Wyznawcy, coraz bardziej", - "id": "Postcommunio" - } - ], - "2020-08-28": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Przychyl się ku prośbom naszym, wszechmogący Boże, a skoro pozwalasz nam ufać Twojej dobroci, za wstawiennictwem św. Aug", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Hermesa*\nBoże, któryś świętego Hermesa, Twego Męczennika, uzbroił cnotą stałości wśród cierpień, daj na", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego N., Twego Biskupa i Doktora, która zaleci Tobie naszą ofiarę", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Hermesa*\nSkładamy Ci, Panie, ofiarę uwielbienia, wspominając Twoich Świętych; spraw, prosimy, aby to, c", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty N., Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja dał", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Hermesa*\nNapełnieni niebieskim błogosławieństwem błagamy Twoją, Panie, łaskawość, abyśmy za przyczyną ś", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-29": [ - { - "body": "*Ps 118:46-47*\nŚwiadczyłem o Twej prawdzie wobec królów, a nie wstydziłem się, i rozważałem Twoją naukę, bo bardzo ją po", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niechaj chwalebna uroczystość św. Jana Chrzciciela, Twego Przesłańca i Męczennika, sprowadzi nam zba", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Sabiny*\nBoże, który między innymi cudami Twojej potęgi obdarzyłeś zwycięstwem w męczeństwie także płeć ", - "id": "Commemoratio Oratio" - }, - { - "body": "*Jer 1:17-19*\nW one dni: Stało się do mnie słowo Pańskie mówiąc: Opasz biodra twe, a powstań i mów do Judy to wszystko, ", - "id": "Lectio" - }, - { - "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosić z ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 6:17-29*\nOnego czasu: Herod posłał i pojmał był Jana, i skuł go w więz", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie jeg", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, aby dary, które składamy Tobie ku uczczeniu śmierci św. Jana Chrzciciela, Twego Męczennika, za jego ", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Sabiny*\nProsimy Cię, Panie, przyjmij łaskawie ofiarę, którą Ci składamy przez zasługi świętej Sabiny, T", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 20:4*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni.", - "id": "Communio" - }, - { - "body": "Panie, niechaj uroczystość św. Jana Chrzciciela sprawi, abyśmy czcili pod osłoną znaków ten wielki Sakrament, któryśmy p", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Sabiny*\nDarem Bożym szczodrze nasyceni, prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem świętej", - "id": "Commemoratio Postcommunio" - } - ], - "2020-08-30": [ - { - "body": "*Ps 73:20; 73:19; 73:23*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki; powstań, o", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, pomnóż w nas wiarę, nadzieję i miłość, abyśmy zaś mogli osiągnąć to, co obiecujesz, daj nam ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 3:16-22*\n*Żydzi, zwłaszcza faryzeusze, wierzyli, że osiągną zba", - "id": "Lectio" - }, - { - "body": "*Ps 73:20; 73:19; 73:22*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki.\n℣. Powstań", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 17:11-19*\n*Zbawiciel uzdrawiał Żydów i Samarytan, którzy weń wierzyl", - "id": "Evangelium" - }, - { - "body": "*Mdr 16:20*\nTobie ufam, o Panie; mówię: Ty jesteś Bogiem moim, w Twoim ręku losy moje.", - "id": "Offertorium" - }, - { - "body": "Panie, wejrzyj łaskawie na Twój lud, wejrzyj łaskawie na jego dary, a przejednany tą ofiarą udziel nam przebaczenia i wy", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Mdr 16:20*\nPanie, dałeś nam chleb z nieba, mający w sobie wszystkie rozkosze i słodkość wszelkiego smaku.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, aby przez przyjęcie niebieskiego Sakramentu wzrastała w nas łaska wiecznego Odkupienia.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-08-31": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, któryś św. Rajmunda, Twego Wyznawcę, uczyniłeś godnym podziwu przez wykupywanie Twych wiernych z niewoli bezbożnyc", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - } - ], - "2020-09-01": [ - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Introitus" - }, - { - "body": "Panie Jezu Chryste, któryś wstępowanie do Siebie wyznaczył w pokornym kroczeniu za Krzyżem swoim, spraw łaskawie, abyśmy", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", - "id": "Offertorium" - }, - { - "body": "Panie Jezu Chryste, dla próśb błogosławionej Dziewicy Twej Bronisławy poświęć dary ludu Twojego: miłe Ci są, bo je ustan", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", - "id": "Communio" - }, - { - "body": "Święta uczta Ciała i Krwi Twojej, Panie, za wstawiennictwem błogosławionej Dziewicy Bronisławy niech nas odwróci od wsze", - "id": "Postcommunio" - } - ], - "2020-09-02": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, daj Kościołowi Twojemu, aby miał w niebie chwalebnego obrońcę w świętym Stefanie, Twoim ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:12-26*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «Pe", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wszechmogący Boże, wejrzyj na ofiary, które składamy Tobie, i praw, abyśmy sprawując misteria Męki Pańskiej, naśladowali", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy z należnym oddaniem naśladowali wiarę świętego Stefana, Twojego Wyznawcy, ", - "id": "Postcommunio" - } - ], - "2020-09-03": [ - { - "body": "*Ps 88:20-22*\nWyniosłem wybrańca z ludu, namaściłem go świętym olejem moim, by moja ręka zawsze z nim była, i ramię moje", - "id": "Introitus" - }, - { - "body": "*Tekst kolekty nawiązuje do dewizy św. Piusa X: «Odnowić wszystko w Chrystusie».*\nBoże, który dla obrony wiary katolicki", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 2:2-8*\nBracia: Zaufawszy Bogu naszemu głosiliśmy wam Ew", - "id": "Lectio" - }, - { - "body": "*Ps 39:10-11*\nTwą sprawiedliwość głosiłem w wielkim zgromadzeniu, oto nie powściągałem warg moich, Ty wiesz, o Panie.\n℣.", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 21:15-17*\nOnego czasu: Rzekł Jezus do Szymona Piotra: «Szymonie, synu Ja", - "id": "Evangelium" - }, - { - "body": "*Ps 33:12*\nPójdźcie, synowie, słuchajcie mnie: nauczę was Pańskiej bojaźni.", - "id": "Offertorium" - }, - { - "body": "Przyjąwszy łaskawie nasze ofiary, daj nam, prosimy Cię, Panie, abyśmy za wstawiennictwem św. Piusa, Papieża, sprawowali ", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*J 6:56-57*\nCiało moje prawdziwie jest pokarmem, a Krew moja prawdziwie jest napojem. Kto pożywa moje Ciało i pije moją ", - "id": "Communio" - }, - { - "body": "Pokrzepieni mocą uczty niebieskiej prosimy Cię, Panie Boże nasz, abyśmy za wstawiennictwem świętego Piusa, Papieża, stal", - "id": "Postcommunio" - } - ], - "2020-09-04": [ - { - "body": "*Ps 73:20; 73:19; 73:23*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki; powstań, o", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, pomnóż w nas wiarę, nadzieję i miłość, abyśmy zaś mogli osiągnąć to, co obiecujesz, daj nam ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 3:16-22*\n*Żydzi, zwłaszcza faryzeusze, wierzyli, że osiągną zba", - "id": "Lectio" - }, - { - "body": "*Ps 73:20; 73:19; 73:22*\nWejrzyj, o Panie, na Twoje przymierze: o życiu Twych ubogich nie zapominaj na wieki.\n℣. Powstań", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 17:11-19*\n*Zbawiciel uzdrawiał Żydów i Samarytan, którzy weń wierzyl", - "id": "Evangelium" - }, - { - "body": "*Mdr 16:20*\nTobie ufam, o Panie; mówię: Ty jesteś Bogiem moim, w Twoim ręku losy moje.", - "id": "Offertorium" - }, - { - "body": "Panie, wejrzyj łaskawie na Twój lud, wejrzyj łaskawie na jego dary, a przejednany tą ofiarą udziel nam przebaczenia i wy", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mdr 16:20*\nPanie, dałeś nam chleb z nieba, mający w sobie wszystkie rozkosze i słodkość wszelkiego smaku.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, aby przez przyjęcie niebieskiego Sakramentu wzrastała w nas łaska wiecznego Odkupienia.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-09-05": [ - { - "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", - "id": "Introitus" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, aby chwalebna uroczystość świętego N., Twego Wyznawcy i Biskupa, przysporzyła nam", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", - "id": "Postcommunio" - } - ], - "2020-09-06": [ - { - "body": "*Ps 83:10-11*\nObrońco nasz, spojrzyj, Boże, i wejrzyj na oblicze Pomazańca swego. Zaiste, lepszy dzień jeden w przedsion", - "id": "Introitus" - }, - { - "body": "Strzeż Twój Kościół, prosimy Cię Panie, w nieustannym miłosierdziu swoim, a że bez Twej pomocy nie ostoi się człowiek śm", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:16-24*\n*Wyrazem «duch» św. Paweł określa całe życie nadprzyro", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nLepiej zawierzyć Panu, niż zawierzyć człowiekowi.\n℣. Lepiej zaufać Bogu, niż zaufać możnym świata. Alleluja", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:24-33*\n*Chrystus nie zaleca lenistwa, lecz gani zbytnią troskę o ", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nAnioł Pański czuwa nad bogobojnymi i chroni ich od złego. Skosztujcie i zobaczcie, jak dobry jest Pan!", - "id": "Offertorium" - }, - { - "body": "Spraw, prosimy Cię Panie, aby ta Hostia zbawienna z grzechów nas oczyściła i wyjednała nam przychylność Twej potęgi.\nPrz", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Mt 6:33*\nSzukajcie naprzód Królestwa Bożego, a wszystko będzie wam przydane, tak Pan powiada.", - "id": "Communio" - }, - { - "body": "Boże, niechaj Twój Sakrament nas oczyści, wzmocni i doprowadzi do wiecznego zbawienia.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-09-07": [ - { - "body": "*Ps 63:11*\nSprawiedliwy weseli się w Panu i do Niego się ucieka, a wszyscy prawego serca się chlubią.\n*Ps 63:2*\nSłuchaj,", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech nas wspierają modlitwy błogosławionego Męczennika Twego Melchiora, abyśmy ciesząc się jego tri", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 2:8-10; 3:10-12*\nNajmilszy: Pamiętaj, że Pan Jezus Chrystu", - "id": "Lectio" - }, - { - "body": "*Ps 36:24*\nSprawiedliwy chociażby upadł, nie pozostanie na ziemi, bo rękę jego Pan podtrzymuje.\n*Ps 36:26*\nLituje się o ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:26-32*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nic nie ma zakry", - "id": "Evangelium" - }, - { - "body": "*Ps 20:4-5*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni; błagał Cię o życie, a Tyś go nim obdarzył, alleluja.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nasza ofiara znajdzie przyjęcie u Ciebie i niech posłuży nam ku zbawieniu przez modły tego, w którego urocz", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*J 12:26*\nKto by chciał mi służyć, niech mnie naśladuje, a gdzie ja jestem, tam będzie i sługa mój.", - "id": "Communio" - }, - { - "body": "Pokrzepieni uczestnictwem w świętej uczcie, prosimy Cię, Panie, Boże nasz, abyśmy za przyczyną świętego N., Męczennika T", - "id": "Postcommunio" - } - ], - "2020-09-08": [ - { - "body": "*Seduliusz*\nBądź pozdrowiona święta Rodzicielko, Panno, któraś zrodziła Króla, co niebem i ziemią rządzi na wieki wieków", - "id": "Introitus" - }, - { - "body": "Udziel, prosimy Cię, Panie, sługom swoim darów łaski niebieskiej, a jako Boskie Macierzyństwo Przenajświętszej Dziewicy ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Hadriana*\nProsimy Cię, wszechmogący Boże, abyśmy obchodząc urodziny dla nieba świętego Hadriana, Twego ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Przysłów.\n*Prz 8:22-35*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dziewic", - "id": "Lectio" - }, - { - "body": "Błogosławionaś i godna uwielbienia Panno Maryjo: któraś bez zmazy dziewictwa stała się Matką Zbawiciela.\n℣. Panno Bogaro", - "id": "Graduale" - }, - { - "body": "Początek ☩ Ewangelii świętej według Mateusza.\n*Mt 1:1-16*\n*Syn Boży stał się prawdziwym człowiekiem. Jako człowiek jest ", - "id": "Evangelium" - }, - { - "body": "Błogosławiona jesteś Panno Maryjo, któraś nosiła Stwórcę wszystkich. Pozostając na wieki Dziewicą, porodziłaś Tego, któr", - "id": "Offertorium" - }, - { - "body": "Niech człowieczeństwo Jednorodzonego Syna Twego, Panie, będzie nam pomocą; a jako On z Dziewicy narodzony, Matki swej pa", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Hadriana*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "Błogosławione wnętrzności Maryi Dziewicy, które nosiły Syna Ojca Przedwiecznego.", - "id": "Communio" - }, - { - "body": "Przyjęliśmy, Panie, najświętsze Sakramenty w uroczystość, którą dorocznie ze czcią obchodzimy; spraw tedy prosimy, aby n", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Hadriana*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wieczno", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-09": [ - { - "body": "*Ps 83:10-11*\nObrońco nasz, spojrzyj, Boże, i wejrzyj na oblicze Pomazańca swego. Zaiste, lepszy dzień jeden w przedsion", - "id": "Introitus" - }, - { - "body": "Strzeż Twój Kościół, prosimy Cię Panie, w nieustannym miłosierdziu swoim, a że bez Twej pomocy nie ostoi się człowiek śm", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Gorgoniusza, Męczennika*\nPanie, niechaj Twój święty Męczennik Gorgoniusz raduje nas swoim wstawiennictw", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:16-24*\n*Wyrazem «duch» św. Paweł określa całe życie nadprzyro", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nLepiej zawierzyć Panu, niż zawierzyć człowiekowi.\n℣. Lepiej zaufać Bogu, niż zaufać możnym świata. \n*Ps 94:", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:24-33*\n*Chrystus nie zaleca lenistwa, lecz gani zbytnią troskę o ", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nAnioł Pański czuwa nad bogobojnymi i chroni ich od złego. Skosztujcie i zobaczcie, jak dobry jest Pan!", - "id": "Offertorium" - }, - { - "body": "Spraw, prosimy Cię Panie, aby ta Hostia zbawienna z grzechów nas oczyściła i wyjednała nam przychylność Twej potęgi.\nPrz", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Gorgoniusza, Męczennika*\nNiech wstawiennictwo świętego Gorgoniusza sprawi, aby miłą Tobie, Panie, była ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 6:33*\nSzukajcie naprzód Królestwa Bożego, a wszystko będzie wam przydane, tak Pan powiada.", - "id": "Communio" - }, - { - "body": "Boże, niechaj Twój Sakrament nas oczyści, wzmocni i doprowadzi do wiecznego zbawienia.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Gorgoniusza, Męczennika*\nBoże, niech wieczna słodycz przeniknie i pokrzepi Twoją rodzinę, aby w świętym", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-10": [ - { - "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", - "id": "Introitus" - }, - { - "body": "Przychyl się, Panie, ku prośbom naszym, które zanosimy w uroczystość świętego Mikołaja, Twojego Wyznawcy, a skoro nie uf", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", - "id": "Postcommunio" - } - ], - "2020-09-11": [ - { - "body": "*Ps 83:10-11*\nObrońco nasz, spojrzyj, Boże, i wejrzyj na oblicze Pomazańca swego. Zaiste, lepszy dzień jeden w przedsion", - "id": "Introitus" - }, - { - "body": "Strzeż Twój Kościół, prosimy Cię Panie, w nieustannym miłosierdziu swoim, a że bez Twej pomocy nie ostoi się człowiek śm", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Prota i Jacka, Męczenników*\nPanie, niech nas podtrzymuje wspaniałe wyznanie wiary świętych Męczenników ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:16-24*\n*Wyrazem «duch» św. Paweł określa całe życie nadprzyro", - "id": "Lectio" - }, - { - "body": "*Ps 117:8-9*\nLepiej zawierzyć Panu, niż zawierzyć człowiekowi.\n℣. Lepiej zaufać Bogu, niż zaufać możnym świata. \n*Ps 94:", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 6:24-33*\n*Chrystus nie zaleca lenistwa, lecz gani zbytnią troskę o ", - "id": "Evangelium" - }, - { - "body": "*Ps 33:8-9*\nAnioł Pański czuwa nad bogobojnymi i chroni ich od złego. Skosztujcie i zobaczcie, jak dobry jest Pan!", - "id": "Offertorium" - }, - { - "body": "Spraw, prosimy Cię Panie, aby ta Hostia zbawienna z grzechów nas oczyściła i wyjednała nam przychylność Twej potęgi.\nPrz", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Prota i Jacka, Męczenników*\nDla uczczenia pamięci Męczenników Twoich Prota i Jacka składamy Tobie, Pani", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 6:33*\nSzukajcie naprzód Królestwa Bożego, a wszystko będzie wam przydane, tak Pan powiada.", - "id": "Communio" - }, - { - "body": "Boże, niechaj Twój Sakrament nas oczyści, wzmocni i doprowadzi do wiecznego zbawienia.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Prota i Jacka, Męczenników*\nProsimy Cię, Panie, niech modlitwa świętych Męczenników Twoich Prota i Jack", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-12": [ - { - "body": "*Ps 44:13; 44:15-16*\nKsiążęta ludu szukają Twych względów. Za Nią prowadzą do Króla dziewice, Jej druhny wiodą do Niego ", - "id": "Introitus" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, aby wierni Twoi, którzy się cieszą imieniem i opieką Najświętszej Maryi Panny, za", - "id": "Oratio" - }, - { - "body": "*Syr 24:23-31*\nJako krzew winny wydałam wdzięczną woń, a kwiaty moje owocem czci i godności. Jam matką pięknej miłości i", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "Błogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca Przedwiecznego.", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - } - ], - "2020-09-13": [ - { - "body": "*Ps 85:1; 85:2-3*\nNakłoń swe ucho, wysłuchaj mnie Panie; ratuj mój Boże, sługę swego, który Ci zaufał; zmiłuj się nade m", - "id": "Introitus" - }, - { - "body": "Niechaj Twe miłosierdzie nieustannie oczyszcza i wzmacnia Twój Kościół, o Panie, a że bez Ciebie nie może trwać nienarus", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:25-26; 6:1-10*\nBracia: Jeśli żyjemy duchem, według Ducha też ", - "id": "Lectio" - }, - { - "body": "*Ps 91:2-3*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.\n℣. Głosić z rana miłosierdzie Twoje, a wier", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:11-16*\nOnego czasu: Jezus szedł do miasta, które zowią Naim, a z n", - "id": "Evangelium" - }, - { - "body": "*Ps 39:2; 39:3; 39:4*\nUfałem, Panu ufałem, a schylił się nade mną i wysłuchał mojego wołania, i w usta moje włożył śpiew", - "id": "Offertorium" - }, - { - "body": "Panie, niech Twoje Sakramenty nas strzegą i zawsze bronią od napaści szatańskich.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*J 6:52*\nChlebem, który Ja dam, jest Ciało moje na życie świata.", - "id": "Communio" - }, - { - "body": "Prosimy Cię Panie, niechaj działanie Tego niebieskiego daru zawładnie naszą duszą i ciałem, aby stale miała w nas pierws", - "id": "Postcommunio" - } - ], - "2020-09-14": [ - { - "body": "*Ga 6:14*\nA myśmy się chlubić powinni Krzyżem Pana naszego Jezusa Chrystusa; w Nim jest zbawienie, życie i zmartwychwsta", - "id": "Introitus" - }, - { - "body": "Boże, który w dniu dzisiejszym uweselasz nas doroczną uroczystością Podwyższenia Krzyża świętego, spraw prosimy, abyśmy ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 2:5-11*\nBracia: To bowiem rozumiejcie, co i w Chrystusie Jezu", - "id": "Lectio" - }, - { - "body": "*Flp 2:8-9*\nChrystus stał się dla nas posłuszny aż do śmierci, a była to śmierć krzyżowa.\n℣. Dlatego i Bóg wywyższył Go:", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 12:31-36*\nOnego czasu: Rzekł Jezus rzeszom żydowskim: «Teraz jest sąd św", - "id": "Evangelium" - }, - { - "body": "Osłaniaj, Panie, lud swój znakiem Krzyża świętego od wszelkich zasadzek wszystkich nieprzyjaciół, abyśmy miłe Tobie hołd", - "id": "Offertorium" - }, - { - "body": "Gdy posilać się mamy Ciałem i Krwią Jezusa Chrystusa, Pana naszego, który uświęcił sztandar Krzyża, błagamy Cię, Panie B", - "id": "Secreta" - }, - { - "body": "*Prefacja o Krzyżu Świętym*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składa", - "id": "Prefatio" - }, - { - "body": "Boże nasz, przez znak świętego Krzyża wyzwól nas od naszych nieprzyjaciół.", - "id": "Communio" - }, - { - "body": "Przybądź nam z pomocą, Panie Boże nasz, i otaczaj nieustanną opieką tych, którym dajesz się cieszyć z oddawania czci Krz", - "id": "Postcommunio" - } - ], - "2020-09-15": [ - { - "body": "*J 19:25*\nPod krzyżem Jezusowym stały Matka Jego i siostra Matki Jego, Maria Kleofasowa i Salome, oraz Maria Magdalena.\n", - "id": "Introitus" - }, - { - "body": "Boże, podczas Twej męki, według przepowiedni Symeona, miecz boleści przeszył najsłodszą duszę chwalebnej Dziewicy i Matk", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Nikomedesa*\nPanie, przybądź z pomocą Twojemu ludowi, aby, powołując się na przesławne zasługi świętego ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Judyty.\n*Jdt 13:22; 13:23-25*\nPobłogosławił Cię Pan w mocy swojej, bo przez Cię wniwecz obrócił naszyc", - "id": "Lectio" - }, - { - "body": "Bolejąca i zalana łzami stoisz, Dziewico Maryjo, pod krzyżem Pana Jezusa, Syna Swojego i Odkupiciela.\n℣. Bogarodzico Dzi", - "id": "Graduale" - }, - { - "body": "Bolejąca Matka stała\nU stóp krzyża, we łzach cała,\nKiedy na nim zawisł Syn.\n\nA w Jej pełnej jęku duszy,\nOd męczarni i ka", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 19:25-27*\nOnego czasu: Pod krzyżem Jezusowym stała Matka Jego i siostra ", - "id": "Evangelium" - }, - { - "body": "*Jer 18:20*\nPamiętaj o nas, Matko Dziewico, przed obliczem Boga, abyś prosiła o dobra dla nas i aby od nas odwrócił swój", - "id": "Offertorium" - }, - { - "body": "Przedkładamy Ci, Panie Jezu Chryste, modlitwy i ofiary i pokornie błagamy, abyśmy rozpamiętując w modlitwach ranę przesł", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Nikomedesa*\nPanie, przyjmij łaskawie ofiarowane dary, a modlitwa świętego Męczennika Nikomedesa niech j", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "Błogosławione serce Najświętszej Maryi Panny, które nawet bez śmierci zasłużyło sobie na palmę męczeństwa pod Krzyżem Pa", - "id": "Communio" - }, - { - "body": "Panie Jezu Chryste, niech ofiara, z której pożywaliśmy czcząc z oddaniem przebicie serca Twojej Matki-Dziewicy, wyjedna ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Nikomedesa*\nPanie, niech nas oczyści Sakrament, któryśmy przyjęli, a za wstawiennictwem świętego Nikome", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-16": [ - { - "body": "*Ps 78:11-12; 78:10*\nNiech jęk pojmanych dojdzie do Ciebie, Panie: naszym sąsiadom odpłać siedmiokroć w ich zanadrze, po", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech obchód uroczystości świętych Męczenników Twoich i Biskupów Korneliusza i Cypriana zjedna nam o", - "id": "Oratio" - }, - { - "body": "*Wspomnienie śś. Eufemii, Łucji i Geminiana*\nPanie, udziel nam radości z wysłuchania naszych próśb, abyśmy czcząc dorocz", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 3:1-8*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom gł", - "id": "Lectio" - }, - { - "body": "*Wj 15:11*\nChwalebny jest Bóg w Swoich Świętych, przedziwny w majestacie, dokonuje cudów.\n*Wj 15:6*\n℣. Prawica Twoja, Pa", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:9-19*\n*Wszystkie prześladowania, jakich doznają męczennicy, stano", - "id": "Evangelium" - }, - { - "body": "*Ps 67:36*\nPrzedziwny jest Bóg w Swoich Świętych: Bóg Izraela, sam Swojemu ludowi daje potęgę i siłę: błogosławiony Bóg,", - "id": "Offertorium" - }, - { - "body": "Wysłuchaj, Panie, naszych próśb, które zanosimy czcząc pamięć Twoich Świętych, a skoro nie ufamy własnej sprawiedliwości", - "id": "Secreta" - }, - { - "body": "*Wspomnienie śś. Eufemii, Łucji i Geminiana*\nPanie, wejrzyj łaskawie na ofiary swojego ludu i napełnij go radością ze ws", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył: jak złoto w piecu ich wypróbował, jak ofiarę", - "id": "Communio" - }, - { - "body": "Nasyceni zbawiennym Sakramentem prosimy Cię, Panie, aby wspierały nas modły tych, których uroczystość obchodzimy.\nPrzez ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie śś. Eufemii, Łucji i Geminiana*\nWysłuchaj, Panie, próśb naszych: niech zawsze doznajemy pomocy świętych Two", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-17": [ - { - "body": "*Ps 85:1; 85:2-3*\nNakłoń swe ucho, wysłuchaj mnie Panie; ratuj mój Boże, sługę swego, który Ci zaufał; zmiłuj się nade m", - "id": "Introitus" - }, - { - "body": "Niechaj Twe miłosierdzie nieustannie oczyszcza i wzmacnia Twój Kościół, o Panie, a że bez Ciebie nie może trwać nienarus", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Stygmatów św. Franciszka, Wyznawcy*\nBoże, który za pośrednictwem św. Franciszka wzbogacasz Kościół swój now", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 5:25-26; 6:1-10*\nBracia: Jeśli żyjemy duchem, według Ducha też ", - "id": "Lectio" - }, - { - "body": "*Ps 91:2-3*\nDobrze jest wysławiać Pana i śpiewać imieniu Twemu, o Najwyższy.\n℣. Głosić z rana miłosierdzie Twoje, a wier", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:11-16*\nOnego czasu: Jezus szedł do miasta, które zowią Naim, a z n", - "id": "Evangelium" - }, - { - "body": "*Ps 39:2; 39:3; 39:4*\nUfałem, Panu ufałem, a schylił się nade mną i wysłuchał mojego wołania, i w usta moje włożył śpiew", - "id": "Offertorium" - }, - { - "body": "Panie, niech Twoje Sakramenty nas strzegą i zawsze bronią od napaści szatańskich.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Stygmatów św. Franciszka, Wyznawcy*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego Franciszka oczy", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*J 6:52*\nChlebem, który Ja dam, jest Ciało moje na życie świata.", - "id": "Communio" - }, - { - "body": "Prosimy Cię Panie, niechaj działanie Tego niebieskiego daru zawładnie naszą duszą i ciałem, aby stale miała w nas pierws", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Stygmatów św. Franciszka, Wyznawcy*\nProsimy Cię, Panie, niech łaska niebieska daje wzrost Twojemu Kościołow", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-18": [ - { - "body": "*Syr 1:14-15*\nMiłość Boga jest mądrością chwalebną; a ci, którym się ukazuje w widzeniu, miłują ją, kiedy ujrzą i poznaj", - "id": "Introitus" - }, - { - "body": "Boże, któryś zamierzył wszystko przyciągnąć do jednorodzonego Syna Twego podwyższonego nad ziemię, spraw łaskawie, abyśm", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 13:1-8*\nBracia: Gdybym mówił językami ludzi i Aniołów, a m", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:1-14*\nOnego czasu: Jezus mówił do przedniejszych kapłanów i fary", - "id": "Evangelium" - }, - { - "body": "*Ps 34:13*\n*Św. Józef z Kupertynu bardzo wiele wycierpiał wskutek niezrozumienia go i niedowierzania mu ze strony współc", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 68:30-31*\nJa jestem nędzny i zbolały: niech strzeże mnie, Boże, Twa pomoc. Pochwalę pieśnią imię Boże i zaśpiewam Mu", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - } - ], - "2020-09-19": [ - { - "body": "*Ps 36:39*\nZbawienie sprawiedliwych pochodzi od Pana: On ich ucieczką w czasie utrapienia.\n*Ps 36:1*\nNie unoś się z powo", - "id": "Introitus" - }, - { - "body": "Boże, Ty co roku uweselasz nas uroczystością świętych Męczenników Twoich Januarego i Towarzyszy, spraw łaskawie, abyśmy ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 10:32-38*\nBracia: Przypomnijcie sobie dni dawniejsze, w k", - "id": "Lectio" - }, - { - "body": "*Ps 33:18-19*\nWołali sprawiedliwi, a Pan ich wysłuchał i wyzwolił ich ze wszystkich ucisków.\n℣. Bliski jest Pan dla skru", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:3-13*\nOnego czasu: Gdy Jezus siedział na Górze Oliwnej, przystąp", - "id": "Evangelium" - }, - { - "body": "*Mdr 3:1-3*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom głupich, że pomarli, a oni trw", - "id": "Offertorium" - }, - { - "body": "Panie, daj się przebłagać złożonymi darami, i za wstawiennictwem świętych Męczenników Twoich N. i N. broń nas od wszelki", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 10:27*\nCo wam mówię w ciemności, opowiadajcie na świetle – mówi Pan – i co usłyszycie na ucho, głoście na dachach.", - "id": "Communio" - }, - { - "body": "Panie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętych Męczenników Twoich N. i N. stanie się dla nas nie", - "id": "Postcommunio" - } - ], - "2020-09-20": [ - { - "body": "*Ps 85:3; 85:5*\nZmiłuj się nade mną, Panie, bo ustawicznie wołam do Ciebie. Tyś Panie dobry i łaskawy, wielce miłosierny", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niechaj Twa łaska uprzedza nas i towarzyszy nam zawsze, oraz niechaj w nas wzbudzi gorliwość oddawan", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:13-21*\n*W liście do Efezjan św. Paweł wyłożył naukę o Kościel", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nUczczą narody Imię Twoje Panie, a królowie ziemscy chwałę Twą uznają.\n℣. Pan bowiem odbudował Syjon i tam", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:1-11*\nOnego czasu: Gdy wszedł Jezus w szabat do domu jednego z pr", - "id": "Evangelium" - }, - { - "body": "*Ps 39:14-15*\nPanie pospiesz mi z pomocą, niechaj się zawstydzą, którzy szukają mej duszy, aby ją zgubić. Panie pospiesz", - "id": "Offertorium" - }, - { - "body": "Oczyść nas, Panie, działaniem Twej ofiary i w miłosierdziu Twoim spraw, byśmy zasłużyli brać w niej udział.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 70:16-18*\nWspominać będę sprawiedliwość: Tobie Panie jedynie właściwą. Tyś mnie, Boże, uczył od młodości mojej, więc", - "id": "Communio" - }, - { - "body": "Panie, oczyść łaskawie umysły nasze i odnów je niebiańskim Sakramentem, tak żeby i ciała nasze czerpały zeń pomoc na ter", - "id": "Postcommunio" - } - ], - "2020-09-21": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech nas wspomagają zasługi św. Mateusza, Apostoła i Ewangelisty, abyśmy za jego wstawiennictwem ot", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Ezechiela.\n*Ez 1:10-14*\n*Tradycja upatruje w czterech istotach z wizji Ezechiela symbole Ewang", - "id": "Lectio" - }, - { - "body": "*Ps 111:1-2*\nBłogosławiony mąż, który boi się Pana i wielką radość znajduje w jego nakazach.\n℣. Potomstwo jego będzie po", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:9-13*\nOnego czasu: Ujrzał Jezus człowieka, imieniem Mateusz, sied", - "id": "Evangelium" - }, - { - "body": "*Ps 20:4-5*\nPanie, włożyłeś mu na głowę koronę z drogich kamieni, błagał Cię o życie, a Tyś go nim obdarzył, alleluja.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech modlitwy św. Mateusza, Apostoła i Ewangelisty, polecą ofiarę Twojego Kościoła, który czerpie n", - "id": "Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*Ps 20:6*\nChwała jego jest wielka dzięki Twej pomocy: blask i dostojeństwo na niego włożyłeś, o Panie.", - "id": "Communio" - }, - { - "body": "Po przyjęciu Sakramentu, błagamy Cię, Panie, za przyczyną św. Mateusza, Twego Apostoła i Ewangelisty, aby ofiara, złożon", - "id": "Postcommunio" - } - ], - "2020-09-22": [ - { - "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", - "id": "Introitus" - }, - { - "body": "Boże, Ty ozdobiłeś świętego Biskupa Tomasza cnotą niezwykłego miłosierdzia dla ubogich; prosimy Cię, abyś za jego wstawi", - "id": "Oratio" - }, - { - "body": "*Wspomnienie śś. Maurycego i Towarzyszy*\nDozwól nam, wszechmogący Boże, cieszyć się z uroczystości świętych Twoich Męcze", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech doroczna uroczystość św. Tomasza, Twego Wyznawcy i Biskupa, uczyni nas godnymi Twojej miłości,", - "id": "Secreta" - }, - { - "body": "*Wspomnienie śś. Maurycego i Towarzyszy*\nWejrzyj, Panie, na dary, które Ci składamy na pamiątkę świętych Twoich Męczenni", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", - "id": "Communio" - }, - { - "body": "Boże, Ty nagradzasz dusze wierne; spraw, abyśmy dostąpili przebaczenia przez prośby św. Tomasza, Twego Wyznawcy i Biskup", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie śś. Maurycego i Towarzyszy*\nPokrzepieni niebieskim Sakramentem i płynącą zeń radością pokornie prosimy Cię,", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-23": [ - { - "body": "*Ps 80:2; 80:3; 80:4; 80:5*\nRadośnie śpiewajcie Bogu, obrońcy naszemu, wykrzykujcie Bogu Jakuba, uderzcie w cytrę, słodk", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech miłosierdzie Twoje uleczy i podtrzyma naszą ułomną naturę: a skoro sama z siebie wyczerpuje si", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Amosa.\n*Am 9:13-15*\n*Prorok Amos zapowiada odbudowę i pomyślność Izraela po powrocie z wygnani", - "id": "LectioL1" - }, - { - "body": "*Ps 112,5-7*\nKtóż jako Pan, nasz Bóg, co w górze ma siedzibę, a oczy swoje zniża na niebo i ziemię?\n℣. Podnosi z prochu ", - "id": "GradualeL1" - }, - { - "body": "Prosimy Cię, Panie, racz spełnić błagania Twojej rodziny, a gdy powstrzymuje się od pokarmów cielesnych, niech w duszy w", - "id": "OratioL1" - }, - { - "body": "*Wspomnienie Św. Linusa, Papieża i Męczennika*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustann", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Nehemiasza.\n*Neh 8:1-10*\n*Po powrocie z wygnania uroczyście odczytano ludowi Prawo Mojżeszowe,", - "id": "Lectio" - }, - { - "body": "*Ps 32:12 ; 32:6*\nBłogosławiony lud, którego Bogiem jest Pan: naród, który On sobie wybrał na dziedzictwo.\n℣. Przez słow", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 9:16-28*\nOnego czasu: Jeden z rzeszy odpowiadając rzekł do Jezusa: «Na", - "id": "Evangelium" - }, - { - "body": "*Ps 118:47; 18:48*\nBędę rozważał naukę Twoją, bo bardzo ją pokochałem. Ręce me wyciągnięte do przykazań Twoich, które um", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech ta hostia oczyści nas z grzechów i uświęci dusze i ciała sług Twoich do sprawowania ofiary.\nPr", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Linusa, Papieża i Męczennika*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzo", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Neh 8:10*\nPożywajcie z tłuszczem, pijcie miód, a część tym poślijcie, którzy sobie nie przygotowali, bo to jest święty ", - "id": "Communio" - }, - { - "body": "Spożywając niebieskie dary, pokornie prosimy Cię, Panie, abyśmy dzięki Twojej łasce z godnym usposobieniem przyjęli to, ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Linusa, Papieża i Męczennika*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez św", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-24": [ - { - "body": "*Ps 85:3; 85:5*\nZmiłuj się nade mną, Panie, bo ustawicznie wołam do Ciebie. Tyś Panie dobry i łaskawy, wielce miłosierny", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niechaj Twa łaska uprzedza nas i towarzyszy nam zawsze, oraz niechaj w nas wzbudzi gorliwość oddawan", - "id": "Oratio" - }, - { - "body": "*Wspomnienie N. M. P. od Wykupu Jeńców*\nBoże, Ty przez chwalebną Matkę Syna Twojego raczyłeś wzbogacić Twój Kościół nową", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:13-21*\n*W liście do Efezjan św. Paweł wyłożył naukę o Kościel", - "id": "Lectio" - }, - { - "body": "*Ps 101:16-17*\nUczczą narody Imię Twoje Panie, a królowie ziemscy chwałę Twą uznają.\n℣. Pan bowiem odbudował Syjon i tam", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 14:1-11*\nOnego czasu: Gdy wszedł Jezus w szabat do domu jednego z pr", - "id": "Evangelium" - }, - { - "body": "*Ps 39:14-15*\nPanie pospiesz mi z pomocą, niechaj się zawstydzą, którzy szukają mej duszy, aby ją zgubić. Panie pospiesz", - "id": "Offertorium" - }, - { - "body": "Oczyść nas, Panie, działaniem Twej ofiary i w miłosierdziu Twoim spraw, byśmy zasłużyli brać w niej udział.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Wspomnienie N. M. P. od Wykupu Jeńców*\nPanie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dzie", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 70:16-18*\nWspominać będę sprawiedliwość: Tobie Panie jedynie właściwą. Tyś mnie, Boże, uczył od młodości mojej, więc", - "id": "Communio" - }, - { - "body": "Panie, oczyść łaskawie umysły nasze i odnów je niebiańskim Sakramentem, tak żeby i ciała nasze czerpały zeń pomoc na ter", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie N. M. P. od Wykupu Jeńców*\nPrzyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustanni", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-25": [ - { - "body": "*Ps 104:3-4*\nNiech się weseli serce szukających Pana, szukajcie Pana i umacniajcie się, szukajcie zawsze Jego oblicza.\n*", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy Cię, abyśmy wiernie obchodząc doroczny post, podobali się Tobie duszą i ciałem.\nPrzez ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Bł. Władysława z Gielniowa, Wyznawcy*\nBoże, który sprawiłeś, że błogosławiony Władysław przyświecał wszystk", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Ozeasza.\n*Oz 14:2-10*\nTo mówi Pan Bóg: Nawróć się, Izraelu, do Pana, Boga Twego, boś się potkn", - "id": "Lectio" - }, - { - "body": "*Ps 89:13; 89:1*\nZwróć się ku nam, Panie, na chwilę i daj się ubłagać Swoim sługom.\n℣. Panie, Tyś był ucieczką naszą z p", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 7:36-50*\nOnego czasu: Pewien faryzeusz zaprosił Jezusa na posiłek do", - "id": "Evangelium" - }, - { - "body": "*Ps 102:2; 102:5*\nBłogosław, duszo moja, Pana i nie zapominaj wszystkich dobrodziejstw Jego, a młodość twoja odnowi się ", - "id": "Offertorium" - }, - { - "body": "Racz przyjąć, prosimy Cię, Panie, nasze posty. Niech one nas oczyszczą i uczynią godnymi Twej łaski i zawiodą do wiekuis", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Bł. Władysława z Gielniowa, Wyznawcy*\nPanie, gdy składamy ofiary na ołtarzu Twoim, daj nam takie uczucie po", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 118:22; 118:24*\nOddal ode mnie szyderstwo i wzgardę, bo chowam Twoje przykazania, o Panie, bo stale rozważam Twoje P", - "id": "Communio" - }, - { - "body": "Spraw, prosimy, wszechmogący Boże, abyśmy składając dzięki za przyjęte dary otrzymywali coraz większe dobrodziejstwa.\nPr", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Bł. Władysława z Gielniowa, Wyznawcy*\nWszechmogący Boże, niech za wstawiennictwem błogosławionego Wyznawcy ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-26": [ - { - "body": "*Ps 94:6-7*\nPójdźcie, oddajmy cześć Bogu, padnijmy na twarz przed Panem, zegnijmy kolana przed Tym, który nas stworzył, ", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, który zbawienną wstrzemięźliwością leczysz ciała i dusze, prosimy kornie Twój majestat: daj ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 23:26-32*\n*W Święto Oczyszczenia odbywała się jedna z najuroczystszych ofiar Starego", - "id": "LectioL1" - }, - { - "body": "*Ps 78:9; 78:10*\nO Panie, przebacz nam grzechy, aby nie drwili z nas poganie: «Gdzie jest ich Bóg?»\n℣. Wspomóż nas, Boże", - "id": "GradualeL1" - }, - { - "body": "Daj nam, prosimy Cię, wszechmogący Boże, abyśmy przez posty zostali nasyceni Twoją łaską, a przez wstrzemięźliwość stali", - "id": "OratioL1" - }, - { - "body": "Czytanie z Księgi Kapłańskiej.\n*Kpł 23:39-43*\n*Święto Namiotów trwało osiem dni. W tym czasie Żydzi mieszkali w szałasac", - "id": "LectioL2" - }, - { - "body": "*Ps 83:10; 83:9*\nSpojrzyj, obrońco nasz, Boże, i wejrzyj na sługi Swoje.\n℣. Panie, Boże Zastępów, wysłuchaj modlitwy słu", - "id": "GradualeL2" - }, - { - "body": "Prosimy Cię, Panie, roztocz opiekę nad Twoją rodziną, abyśmy z Twej szczodrobliwości osiągnęli środki wiecznego zbawieni", - "id": "OratioL2" - }, - { - "body": "Czytanie z Księgi Proroka Micheasza.\n*Mi 7:14; 7:16; 7:18-20*\nPanie, Boże nasz, paś swój lud laską swoją, trzodę swego d", - "id": "LectioL3" - }, - { - "body": "*Ps 89:13; 89:1*\nZwróć się ku nam, Panie, na chwilę i daj się ubłagać sługom Swoim.\n℣. Panie, Tyś był ucieczką naszą z p", - "id": "GradualeL3" - }, - { - "body": "Prosimy Cię, Panie, daj nam tak się wstrzymywać od pokarmów mięsnych, abyśmy również powstrzymywali się od namiętności, ", - "id": "OratioL3" - }, - { - "body": "Czytanie z Księgi Proroka Zachariasza.\n*Zch 8:14-19*\nW one dni: Przemówiło słowo Pańskie do mnie: To mówi Pan Zastępów: ", - "id": "LectioL4" - }, - { - "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna.", - "id": "GradualeL4" - }, - { - "body": "Panie, Ty nam pozwalasz ofiarować Ci uroczysty post; prosimy Cię, wzmocnij nas udzielając przebaczenia.\nPrzez Pana…", - "id": "OratioL4" - }, - { - "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:49-51*\n*Poważną przeszkodą do zbawienia są nasze namiętności, które wykorzystuj", - "id": "LectioL5" - }, - { - "body": "Boże, któryś złagodził płomień ognia dla trzech młodzieńców, spraw łaskawie, aby nas, sług Twoich, nie pożarł płomień na", - "id": "OratioL5" - }, - { - "body": "*Wspomnienie Śś. Cypriana i Justyny, Męczenników*\nPanie, niech nas otacza ciągła opieka świętych Męczenników Cypriana i ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 9:2-12*\n*Chrystus, Arcykapłan Nowego Testamentu, wszedł z", - "id": "Lectio" - }, - { - "body": "*Ps 116:1-2*\nChwalcie Pana, wszystkie narody, wysławiajcie Go, wszystkie ludy.\n℣. Bo miłosierdzie Jego nad nami utwierdz", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 13:6-17*\nOnego czasu: Mówił Jezus do rzesz tę przypowieść: «Człowiek", - "id": "Evangelium" - }, - { - "body": "*Ps 87:2-3*\nPanie Boże, Zbawicielu mój, podczas dnia wołam i w nocy żalę się przed Tobą, niech moja modlitwa dojdzie do ", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, niech dar złożony przed oczyma Twojego majestatu wyjedna nam łaskę oddania się Tobie i p", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Śś. Cypriana i Justyny, Męczenników*\nOfiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij je ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Kpł 23:41; 23:43*\nW miesiącu siódmym będziecie obchodzić święto, bo sprawiłem, że synowie Izraelowi mieszkali pod szała", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech Twój Sakrament udzieli nam łaski, którą zawiera, abyśmy w rzeczywistości posiedli to, co teraz", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Śś. Cypriana i Justyny, Męczenników*\nProsimy Cię, Panie, za wstawiennictwem świętych Męczenników Twoich Cyp", - "id": "Commemoratio Postcommunio" - } - ], - "2020-09-27": [ - { - "body": "*Ps 118:137; 118:124*\nSprawiedliwy jesteś, Panie, i słuszne są wyroki Twoje. Postąp ze sługą Twoim, wedle Twej litości.\n", - "id": "Introitus" - }, - { - "body": "Daj, Panie, ludowi Twemu unikać wpływu szatana, aby czystym sercem Ciebie szukał jedynie, Boga swojego.\nPrzez Pana…", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:1-6*\n*List do Efezjan napisał św. Paweł z więzienia w Rzymie.", - "id": "Lectio" - }, - { - "body": "*Ps 32:12; 32:6*\nSzczęśliwy naród, którego Bogiem jest Pan, ten lud, który Pan sobie na dziedzictwo wybrał.\n℣. Słowem Pa", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:34-46*\n*Po rozstrzygnięciu zagadnienie moralnego Chrystus Pan st", - "id": "Evangelium" - }, - { - "body": "*Dn 9:17; 9:18; 9:19*\nModliłem się do Boga mego ja, Daniel, mówiąc: Wysłuchaj, Panie, modlitwy sługi Twego, rozjaśnij ob", - "id": "Offertorium" - }, - { - "body": "Przed Majestat Twój, Panie, zanosimy pokornie błagania nasze, niechaj te święte tajemnice, które dzisiaj sprawujemy, uwo", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 75:12-13*\nCzyńcie śluby i wypełniajcie Panu, Bogu waszemu. Wszyscy wokoło dary przynoście straszliwemu, który dumę k", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie Boże nasz, aby przenajświętsza Tajemnica, którą ustanowiłeś dla utrwalenia odkupienia naszego, była z", - "id": "Postcommunio" - } - ], - "2020-09-28": [ - { - "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie jeg", - "id": "Introitus" - }, - { - "body": "Boże, któryś przez palmę męczeństwa przeniósł świętego Wacława z ziemskiego władztwa do chwały niebieskiej, chroń nas za", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 10: 10-14*\n*Opatrzność Boża kierowała losami prześladowanego patriarchy Jakuba i Józefa", - "id": "Lectio" - }, - { - "body": "*Ps 111:1-2*\nBłogosławiony mąż, który boi się Pana i wielką radość znajduje w jego nakazach.\n℣. Potomstwo jego będzie po", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 10:34-42*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie mniemajcie, ", - "id": "Evangelium" - }, - { - "body": "*Ps 8:6-7*\nUwieńczyłeś go chwałą i czcią, obdarzyłeś go władzą nad dziełami rąk Twoich, o Panie.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrzez P", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 16:24*\nJeśli kto chce za mną iść, niech się zaprze samego siebie i weźmie krzyż swój, i naśladuje mnie.", - "id": "Communio" - }, - { - "body": "Daj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wieczności, jak z radością czcimy ", - "id": "Postcommunio" - } - ], - "2020-09-29": [ - { - "body": "*Ps 102:20*\nBłogosławcie Pana, wszyscy Jego Aniołowie, potężni mocą, pełniący Jego rozkazy, abyście posłuszni byli Jego ", - "id": "Introitus" - }, - { - "body": "Boże, Ty w przedziwny sposób wyznaczasz obowiązki Aniołom i ludziom; spraw miłościwie, aby na ziemi strzegli naszego życ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 1:1-5*\nW one dni: Bóg jawnym uczynił to, co ma się stać niebawe", - "id": "Lectio" - }, - { - "body": "*Ps 102:20; 102:1*\nBłogosławcie Pana, wszyscy Jego Aniołowie, potężni mocą, pełniący Jego rozkazy.\n℣. Błogosław, duszo m", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-10*\n*Życia nadprzyrodzone ma taką wartość, że trzeba ponieść w", - "id": "Evangelium" - }, - { - "body": "*Ap 8:3; 8:4*\n*Św. Jan opisuje w Apokalipsie Anioła ze złotą kadzielnicą, który przedstawia Bogu modlitwy świętych.*\nAni", - "id": "Offertorium" - }, - { - "body": "Składamy Ci, Panie, ofiarę uwielbienia i pokornie prosimy, abyś za wstawiennictwem anielskim łaskawie ją przyjął i obróc", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Dn 3:58*\nBłogosławcie Pana, wszyscy Aniołowie Pańscy, wysławiajcie Go hymnem i wywyższajcie na wieki.", - "id": "Communio" - }, - { - "body": "Wsparci wstawiennictwem św. Archanioła Twego Michała, kornie błagamy Cię Panie, abyśmy pojęli umysłem to, cośmy spożyli ", - "id": "Postcommunio" - } - ], - "2020-09-30": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, Tyś raczył dać Kościołowi Swemu świętego Hieronima, Twego Wyznawcę, jako wielkiego mistrza w wyjaśnianiu Pisma świ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Pomóż nam, Panie, łaską niebieską służyć Ci ze swobodnym umysłem, aby dary, które składamy za wstawiennictwem św. Hieron", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Nasyceni pokarmem niebieskim prosimy Cię, Panie, abyśmy za wstawiennictwem świętego Hieronima, Twojego Wyznawcy, mogli o", - "id": "Postcommunio" - } - ], - "2020-10-01": [ - { - "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", - "id": "Introitus" - }, - { - "body": "Boże, który ozdobiłeś błogosławionego Jana, Twego Wyznawcę, darami szczególnej pokory i cierpliwości, dozwól łaskawie, a", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:9-14*\nBracia: Widowiskiem staliśmy się dla świata, dla A", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", - "id": "Postcommunio" - } - ], - "2020-10-02": [ - { - "body": "*Ps 102:20*\nBłogosławcie Pana, wszyscy Jego Aniołowie, potężni mocą, pełniący Jego rozkazy, abyście posłuszni byli Jego ", - "id": "Introitus" - }, - { - "body": "Boże, który w niewysłowionej Opatrzności raczysz świętych Twoich Aniołów posyłać nam jako stróżów, prosimy Cię pokornie:", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Wyjścia.\n*Wj 23:20-23*\nTo mówi Pan Bóg: «Oto ja poślę Anioła mego, który by szedł przed tobą i strzegł", - "id": "Lectio" - }, - { - "body": "*Ps 90:11-12*\nSwoim Aniołom Bóg dał rozkaz o tobie, aby cie strzegli na wszystkich twych drogach.\n℣. Na rękach swoich bę", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-10*\n*Życia nadprzyrodzone ma taką wartość, że trzeba ponieść w", - "id": "Evangelium" - }, - { - "body": "*Ps 102:20-21*\nBłogosławcie Pana, wszyscy Jego Aniołowie, słudzy Jego, pełniący Jego rozkazy, abyście posłuszni byli Jeg", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, dary, które składamy ku czci świętych Twoich Aniołów i spraw łaskawie, abyśmy pod nieustanną ich opieką", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Dn 3:58*\nBłogosławcie Pana, wszyscy Aniołowie Pańscy, wysławiajcie Go hymnem i wywyższajcie na wieki.", - "id": "Communio" - }, - { - "body": "Przyjęliśmy, Panie, Boski Sakrament radując się z uroczystości Twoich świętych Aniołów; prosimy Cię, abyśmy pod ich opie", - "id": "Postcommunio" - } - ], - "2020-10-03": [ - { - "body": "*Pnp 4:8-9*\nPójdźże z Libanu, oblubienico moja, pójdź z Libanu, pójdź. Zraniłaś moje serce, siostro moja, oblubienico, z", - "id": "Introitus" - }, - { - "body": "Panie, któryś powiedział: «Jeśli się nie staniecie jako dzieci, nie wejdziecie do Królestwa Niebieskiego»; prosimy Cię, ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 66:12-14*\n*Chwała św. Teresy ogarnęła cały świat jak rzeka. Równocześnie poznano", - "id": "Lectio" - }, - { - "body": "*Mt 11:25*\nWysławiam Cię Ojcze, Panie nieba i ziemi, żeś te rzeczy zakrył przed mądrymi i roztropnymi, a objawiłeś je ma", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:1-4*\nOnego czasu: Przystąpili uczniowie do Jezusa mówiąc: «Któż,", - "id": "Evangelium" - }, - { - "body": "*Łk 1:46-49*\nUwielbia dusza moja Pana, i rozradował się duch mój w Bogu, Zbawicielu moim. Bo wejrzał na uniżenie służebn", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech modlitwa świętej Dziewicy Teresy poleca Tobie nasza ofiarę, aby uroczyście składana ku jej chw", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Pp 32:10-12*\nWiódł ją i uczył, i strzegł jak źrenicy oka swego. Jak orzeł rozpostarł swe skrzydła, i wziął ją i nosił n", - "id": "Communio" - }, - { - "body": "Panie, niech niebieskie misterium rozpłomieni nas tym ogniem miłości, dzięki któremu święta Dziewica Teresa samą siebie ", - "id": "Postcommunio" - } - ], - "2020-10-04": [ - { - "body": "*Syr 36:18*\nUżycz pokoju, o Panie, tym, którzy oczekują pomocy od Ciebie, aby się spełniły obietnice Twoich proroków. Wy", - "id": "Introitus" - }, - { - "body": "Prosimy Cię Panie, kieruj litościwie naszymi sercami, bez Ciebie bowiem nie możemy się Tobie podobać.\nPrzez Pana…", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 1:4-8*\nBracia: Dziękuję Bogu mojemu zawsze za was, za łask", - "id": "Lectio" - }, - { - "body": "*Ps 121:1; 121:7*\nUradowałem się, bo mi powiedziano: Pójdziemy do domu Pańskiego.\n℣. Niech pokój będzie w murach twoich,", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:1-8*\nOnego czasu: Jezus wstąpiwszy do łodzi przeprawił się i przy", - "id": "Evangelium" - }, - { - "body": "*Wj 24:4; 24:5*\nPoświęcił Mojżesz ołtarz dla Pana, składając na nim ofiary całopalne i ofiarując żertwy ze zwierząt. Wob", - "id": "Offertorium" - }, - { - "body": "Boże, który przez udział w tej czcigodnej ofierze, czynisz nas uczestnikami jedynego i najwyższego Bóstwa, spraw, prosim", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 95:8-9*\nOfiary nieście i wchodźcie do Jego przedsieni: uczcijcie Pana w świętym Jego majestacie.", - "id": "Communio" - }, - { - "body": "Posileni świętym darem dzięki Ci składamy, Panie, i błagamy Twe miłosierdzie, abyś nas uczynił godnymi pełnego w nim ucz", - "id": "Postcommunio" - } - ], - "2020-10-05": [ - { - "body": "*Syr 36:18*\nUżycz pokoju, o Panie, tym, którzy oczekują pomocy od Ciebie, aby się spełniły obietnice Twoich proroków. Wy", - "id": "Introitus" - }, - { - "body": "Prosimy Cię Panie, kieruj litościwie naszymi sercami, bez Ciebie bowiem nie możemy się Tobie podobać.\nPrzez Pana…", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Śś. Placyda i Towarzyszy, Męczenników*\nBoże, który nam pozwalasz obchodzić narodziny dla nieba świętych Męc", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 1:4-8*\nBracia: Dziękuję Bogu mojemu zawsze za was, za łask", - "id": "Lectio" - }, - { - "body": "*Ps 121:1; 121:7*\nUradowałem się, bo mi powiedziano: Pójdziemy do domu Pańskiego.\n℣. Niech pokój będzie w murach twoich,", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:1-8*\nOnego czasu: Jezus wstąpiwszy do łodzi przeprawił się i przy", - "id": "Evangelium" - }, - { - "body": "*Wj 24:4; 24:5*\nPoświęcił Mojżesz ołtarz dla Pana, składając na nim ofiary całopalne i ofiarując żertwy ze zwierząt. Wob", - "id": "Offertorium" - }, - { - "body": "Boże, który przez udział w tej czcigodnej ofierze, czynisz nas uczestnikami jedynego i najwyższego Bóstwa, spraw, prosim", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Śś. Placyda i Towarzyszy, Męczenników*\nOfiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij j", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 95:8-9*\nOfiary nieście i wchodźcie do Jego przedsieni: uczcijcie Pana w świętym Jego majestacie.", - "id": "Communio" - }, - { - "body": "Posileni świętym darem dzięki Ci składamy, Panie, i błagamy Twe miłosierdzie, abyś nas uczynił godnymi pełnego w nim ucz", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Śś. Placyda i Towarzyszy, Męczenników*\nProsimy Cię, Panie, za wstawiennictwem Twoich Męczenników Placyda i ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-06": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech nas wspomaga wstawiennictwo św. Brunona, Twojego Wyznawcy, abyśmy, obraziwszy Twój majestat ci", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", - "id": "Postcommunio" - } - ], - "2020-10-07": [ - { - "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci Najświętszej Maryi Panny; z Jej uroczystości radują się Anioło", - "id": "Introitus" - }, - { - "body": "Boże, którego Jednorodzony Syn przez swe życie, śmierć i zmartwychwstanie wysłużył nam nagrodę życia wiecznego, spraw, a", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Marka*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną ś", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Przysłów.\n*Prz 8:22-24; 8:32-35*\nPan posiadł mnie na początku dróg swoich, zanim cokolwiek od początku", - "id": "Lectio" - }, - { - "body": "*Ps 44:5; 44:11; 44:12*\nW obronie wiary i sprawiedliwości niech cudów dokona Twoja prawica.\n℣. Posłuchaj, córko, spójrz ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", - "id": "Evangelium" - }, - { - "body": "*Syr 24:25; Syr 39:17*\nWe mnie łaska wszelkiej drogi i prawdy, we mnie cała nadzieja życia i cnoty. Ja wydałam owoc, jak", - "id": "Offertorium" - }, - { - "body": "Spraw, prosimy Cię, Panie, abyśmy należycie się usposobili do ofiarowania Tobie tych darów i rak rozważali w tajemnicach", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Marka*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sp", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*Syr 39:19*\nKwitnijcie jak lilia, roztaczajcie woń, wypuszczajcie wdzięczne gałązki i pieśń pochwalną śpiewajcie i błogo", - "id": "Communio" - }, - { - "body": "Niech nas wspomagają, Panie, modlitwy Rodzicielki Twojej, której uroczystość różańcową święcimy, abyśmy doznali mocy taj", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Marka*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Tw", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-08": [ - { - "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", - "id": "Introitus" - }, - { - "body": "Panie Boże nasz, Ty przez Jednorodzonego Syna Twego objawiłeś świętej Brygidzie niebieskie tajemnice: za jej łaskawym or", - "id": "Oratio" - }, - { - "body": "*Wspomnienie śś. Sergiusza, Bachusa, Marcelego i Apuliusza*\nNiech nas wspierają, Panie, błogosławione zasługi świętych T", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*1 Tm 5:3-10*\nNajmilszy: Szanuj wdowy, które prawdziwie są wdowa", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Wspomnienie śś. Sergiusza, Bachusa, Marcelego i Apuliusza*\nProsimy Cię, Panie, aby ta hostia, którą składamy w ofierze,", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie śś. Sergiusza, Bachusa, Marcelego i Apuliusza*\nPrzyjęte Sakramenty niech nas uzbroją, Panie, a pomoc z nieb", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-09": [ - { - "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", - "id": "Introitus" - }, - { - "body": "Boże, za pogardę zaszczytów ziemskich błogosławionego Wincentego, Twego Wyznawcę i Biskupa, okryłeś chwałą pokory: prosi", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Jana Leonardi, Wyznawcy*\nBoże, który raczyłeś przedziwnie powołać św. Jana, Twego Wyznawcę, do krzewien", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Jana Leonardi, Wyznawcy*\n*Dzięki misjonarzom wychowanym w Kolegium Rozkrzewiania Wiary, założonym przez", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Jana Leonardi, Wyznawcy*\nPokrzepieni świętymi tajemnicami drogocennego Ciała i Krwi Twojej, prosimy Cię", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-10": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Panie Jezu Chryste, wzorze i nagrodo prawdziwej pokory, prosimy Cię, jak św. Franciszka uczyniłeś chwalebnym naśladowcą ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Dziękczynienie za zwycięstwo chocimskie z roku 1621*\nBoże, który w największych niebezpieczeństwach naszego", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech święty Franciszek, Wyznawca, wybłaga, by dary ofiarne złożone na świętym ołtarzu posłużyły nam", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Dziękczynienie za zwycięstwo chocimskie z roku 1621*\nPrzyjmij, Panie, wonność tej dziękczynnej ofiary, i st", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Gdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Franciszka, Wyznawcy, abyśmy naśladowa", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Dziękczynienie za zwycięstwo chocimskie z roku 1621*\nBoże, Ty nie dopuszczasz, aby ktokolwiek z ufających T", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-11": [ - { - "body": "Ja jestem zbawieniem ludu, mówi Pan: w jakimkolwiek ucisku wołać będą do mnie, wysłucham ich i będę ich Panem na wieki.\n", - "id": "Introitus" - }, - { - "body": "Wszechmogący i miłosierny Boże, usuń łaskawie wszystko, co nam się sprzeciwia, abyśmy wolni od niebezpieczeństw duszy i ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Macierzyństwa N. M. P.*\nBoże, któryś zrządził, że za zwiastowaniem Anielskim w żywocie Najświętszej Maryi P", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:23-28*\n*Szata jest znakiem godności. Oblec się w nowego człow", - "id": "Lectio" - }, - { - "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna. Al", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:1-14*\nOnego czasu: Jezus mówił do przedniejszych kapłanów i fary", - "id": "Evangelium" - }, - { - "body": "*Ps 137:7*\nGdy chodzę wśród utrapienia, Ty mnie trzymasz przy życiu, o Panie; Swą rękę wyciągasz na przekór gniewowi myc", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, spraw, niech te dary zaniesione przed oblicze Twojego majestatu, wyjednają nam zbawienie.\nPrzez Pana", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Macierzyństwa N. M. P.*\nPanie, niech z Tego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 118:4-5*\nTy wydałeś Swoje przykazania, by pilnie ich przestrzegano. Oby me drogi były niezawodne ku przestrzeganiu T", - "id": "Communio" - }, - { - "body": "Panie, niech Twoje uzdrawiające działanie uwolni nas łaskawie od naszych złych skłonności i przywiąże do Twoich przykaza", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Macierzyństwa N. M. P.*\nNiech ta Komunia, o Panie, oczyści nas z grzechów i za przyczyną Najświętszej Dziew", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-12": [ - { - "body": "Ja jestem zbawieniem ludu, mówi Pan: w jakimkolwiek ucisku wołać będą do mnie, wysłucham ich i będę ich Panem na wieki.\n", - "id": "Introitus" - }, - { - "body": "Wszechmogący i miłosierny Boże, usuń łaskawie wszystko, co nam się sprzeciwia, abyśmy wolni od niebezpieczeństw duszy i ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:23-28*\n*Szata jest znakiem godności. Oblec się w nowego człow", - "id": "Lectio" - }, - { - "body": "*Ps 140:2*\nNiech się wzbija ku Tobie modlitwa ma, Panie, niby kadzidło.\n℣. Wznoszenie rąk moich jak ofiara wieczorna. \n*", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:1-14*\nOnego czasu: Jezus mówił do przedniejszych kapłanów i fary", - "id": "Evangelium" - }, - { - "body": "*Ps 137:7*\nGdy chodzę wśród utrapienia, Ty mnie trzymasz przy życiu, o Panie; Swą rękę wyciągasz na przekór gniewowi myc", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, spraw, niech te dary zaniesione przed oblicze Twojego majestatu, wyjednają nam zbawienie.\nPrzez Pana", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 118:4-5*\nTy wydałeś Swoje przykazania, by pilnie ich przestrzegano. Oby me drogi były niezawodne ku przestrzeganiu T", - "id": "Communio" - }, - { - "body": "Panie, niech Twoje uzdrawiające działanie uwolni nas łaskawie od naszych złych skłonności i przywiąże do Twoich przykaza", - "id": "Postcommunio" - } - ], - "2020-10-13": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, który ukoronowałeś chwałą wiekuistą Swojego Wyznawcę świętego Króla Edwarda, daj nam tak czcić go na ziemi, abyśmy", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - } - ], - "2020-10-14": [ - { - "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", - "id": "Introitus" - }, - { - "body": "Boże, który widzisz, że upadamy wskutek swojej ułomności, odnów w nas litościwie miłość ku Tobie przez przykłady Twoich ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", - "id": "Offertorium" - }, - { - "body": "Panie, niech nas wspomaga ta tajemnicza ofiara, niech nas wyzwoli od naszych przewinień i zapewni nam wieczne zbawienie.", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, by najświętszy dar oczyścił nas i dopomógł prowadzić uczciwe życie.\nPrzez Pana…", - "id": "Postcommunio" - } - ], - "2020-10-15": [ - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Introitus" - }, - { - "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Twojej Dziewicy Teresy, nabyli ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", - "id": "Offertorium" - }, - { - "body": "Wysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z uroczystości świętej Teresy, Twojej Dziewicy, karmil", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - } - ], - "2020-10-16": [ - { - "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", - "id": "Introitus" - }, - { - "body": "Boże, który św. Jadwigę pobudziłeś do przejścia całym sercem od przepychu światowego do pokornego naśladowania Krzyża Tw", - "id": "Oratio" - }, - { - "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - } - ], - "2020-10-17": [ - { - "body": "*Pnp 2:3*\nUsiadłam w cieniu Tego, za którym tęskniłam i owoc Jego słodki memu gardłu.\n*Ps 83:2-3*\nJak miłe są przybytki ", - "id": "Introitus" - }, - { - "body": "Panie Jezu Chryste, któryś św. Dziewicy Małgorzacie Marii cudownie odsłonił niedościgłe bogactwo Serca swego, daj nam, a", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 3:8-9; 14-19*\n*Św. Małgorzata Maria została wybrana, aby przypo", - "id": "Lectio" - }, - { - "body": "*Pnp 8:7*\nWody mnogie nie mogły ugasić miłości i rzeki nie zatopią jej.\n*Ps 72:26*\nNiszczeje me ciało i serce moje: Bóg ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:25-30*\nOnego czasu: Odpowiadając Jezus rzekł: «Wysławiam Cię, Oj", - "id": "Evangelium" - }, - { - "body": "*Zch 9:17*\n*Częsta i dobra Komunia jest wynagrodzeniem za lekceważenie Eucharystii przez oziębłych.*\nCóż jest dobrem jeg", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, dary ludu Swojego i spraw, by nas zapalił ten Boski ogień, który wychodząc z Serca Syna Twojego, tak mo", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Pnp 6:2*\nJa dla umiłowanego mego i dla mnie umiłowany mój; on pasie trzody swe wśród lilii.", - "id": "Communio" - }, - { - "body": "Przyjąwszy Sakrament Ciała i Krwi Twojej prosimy Cię, Panie Jezu, spraw za przyczyną św. Dziewicy Małgorzaty Marii, abyś", - "id": "Postcommunio" - } - ], - "2020-10-18": [ - { - "body": "*Dn 3:31; 31:29; 31:35*\nWszystko, coś na nas dopuścił, Panie, według sprawiedliwego wyroku nas spotkało, bośmy zgrzeszyl", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, użycz wiernym Twoim przebaczenia i pokoju, aby oczyszczeni ze wszystkich win swoich mogli Ci służyć ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Łukasza, Ewangelisty*\nProsimy Cię, Panie, niech się przyczynia za nami św. Łukasz, Twój Ewangelista, kt", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 5:15-21*\n*Duch święty napełnia serca wiernych wykonawców woli B", - "id": "Lectio" - }, - { - "body": "*Ps 144:15-16*\nOczy wszystkich z ufnością patrzą na Ciebie, Panie: Ty dajesz im pokarm we właściwej porze.\n℣. Otwierasz ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:46-53*\n*Bóg udziela nam swojej łaski w miarę naszej ufności.*\nOnego cz", - "id": "Evangelium" - }, - { - "body": "*Ps 136:1*\n*Syjon jest symbolem ojczyzny niebieskiej, Babilon to zmienia wygnania, na której przebywamy.*\nNad rzekami Ba", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie niechaj te święte Tajemnice udzielą nam z niebios lekarstwa, które oczyści z nieprawości serca nasze.", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Łukasza, Ewangelisty*\nPomóż nam, Panie, łaską niebieską służyć Ci swobodnym umysłem, aby dary, które sk", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 118:49-50*\nPomnij na obietnicę daną słudze Twemu, Panie, w którą kazałeś mi wierzyć. Ona mnie pociesza w mojej nędzy", - "id": "Communio" - }, - { - "body": "Spraw, prosimy Cię, Panie, abyśmy przez pilne posłuszeństwo Twoim przykazaniom stali się godnymi świętych darów Twoich.\n", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Łukasza, Ewangelisty*\nProsimy Cię, wszechmogący Boże, aby przez modlitwy świętego Ewangelisty Twego Łuk", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-19": [ - { - "body": "*Ps 91:13-14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie, zasadzony w domu Pańskim, w przedsion", - "id": "Introitus" - }, - { - "body": "Boże, który raczyłeś wsławić darem przedziwnej pokuty i najwznioślejszej kontemplacji św. Piotra, Twojego Wyznawcę, spra", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:7-12*\n*Celem wysiłków ascetów chrześcijańskich jest udział ", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w jego ser", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:32-34*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nie lękaj się, tr", - "id": "Evangelium" - }, - { - "body": "*Ps 20:2-3*\nZ potęgi Twej, Panie, weseli, się sprawiedliwy, i z pomocy Twojej bardzo się cieszy: spełniłeś pragnienie je", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze składamy Ci ku czci Twoich Świętych, była Tobie", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28-29*\nZaprawdę powiadam wam, że wy, którzyście opuścili wszystko i poszliście za mną, stokroć więcej otrzymacie ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", - "id": "Postcommunio" - } - ], - "2020-10-20": [ - { - "body": "*Syr 18:12-13*\nMiłosierdzie człowieka względem bliźniego, ale miłosierdzie Boże względem wszelkiego ciała. Kto ma miłosi", - "id": "Introitus" - }, - { - "body": "Wszechmogący Boże, spraw, abyśmy doskonaląc się w umiejętności Świętych i okazując miłosierdzie bliźnim za przykładem św", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Jakuba Apostoła.\n*Jk 2:12-17*\nNajmilsi: Mówcie i czyńcie tak, jak ludzie, którzy będą sądzeni ", - "id": "Lectio" - }, - { - "body": "*Ps 106:8-9*\nNiech dzięki czynią Panu za jego miłosierdzie, za Jego cuda dla synów człowieczych.\n℣. Bo duszę zgłodniałą ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Job 29:14-16*\n*Część darów złożonych przez wiernych na ofiarowanie przeznaczano dla ubogich. Obecnie ofiary pieniężne z", - "id": "Offertorium" - }, - { - "body": "Przez zasługi świętego Jana, Twego Wyznawcy, racz Panie, przyjąć łaskawie te ofiary i spraw, abyśmy miłując Ciebie ponad", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 6:38*\nDawajcie, a będzie wam dane, miarę dobrą, napełnioną, potrzęsioną i opływającą dadzą wam w zanadrze wasze.", - "id": "Communio" - }, - { - "body": "Nakarmieni słodyczą drogocennego Ciała i Krwi Twojej, Panie, kornie błagamy Twą łaskawość, abyśmy przez zasługi i za prz", - "id": "Postcommunio" - } - ], - "2020-10-21": [ - { - "body": "*Iz 61:1*\nDuch Pański nade mną, dlatego mnie namaścił i posłał mnie, abym głosił dobrą nowinę cichym. (O. W. Alleluja, a", - "id": "Introitus" - }, - { - "body": "Boże, Ty w błogosławionym Jakubie, Twoim Wyznawcy i Biskupie, przedziwnie wznowiłeś apostolskiego ducha głoszenia Ewange", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Hilariona, Opata*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego N., Opata, abyśmy ", - "id": "Commemoratio Oratio" - }, - { - "body": "*Flp 1:3-11*\nDzięki czynię Bogu mojemu, ilekroć was wspominam, zawsze, we wszystkich modlitwach moich modląc się za was ", - "id": "Lectio" - }, - { - "body": "*Syr 44:16-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n℣. Nie znalazł się jemu podobny, który by zacho", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", - "id": "Evangelium" - }, - { - "body": "Wybrał go sobie Pan na kapłana, aby Mu składał ofiarę pochwalną. (O. W. Alleluja.)", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, aby Twoja ofiara wznieciła w nas taki płomień najczystszej miłości, jakim pałał błogosławiony Jakub ", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Hilariona, Opata*\nProsimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na święty", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 10:27*\nCo wam mówię w ciemności, opowiadajcie na świetle: i co usłyszycie na ucho, głoście na dachach. (O. W. Allelu", - "id": "Communio" - }, - { - "body": "Najmiłościwszy Boże, niech łaska tego Sakramentu, który przyjęliśmy, trwa w sercach naszych: abyśmy nią umocnieni, za pr", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Hilariona, Opata*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego N.,", - "id": "Commemoratio Postcommunio" - } - ], - "2020-10-22": [ - { - "body": "*Dn 3:31; 31:29; 31:35*\nWszystko, coś na nas dopuścił, Panie, według sprawiedliwego wyroku nas spotkało, bośmy zgrzeszyl", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, użycz wiernym Twoim przebaczenia i pokoju, aby oczyszczeni ze wszystkich win swoich mogli Ci służyć ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 5:15-21*\n*Duch święty napełnia serca wiernych wykonawców woli B", - "id": "Lectio" - }, - { - "body": "*Ps 144:15-16*\nOczy wszystkich z ufnością patrzą na Ciebie, Panie: Ty dajesz im pokarm we właściwej porze.\n℣. Otwierasz ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 4:46-53*\n*Bóg udziela nam swojej łaski w miarę naszej ufności.*\nOnego cz", - "id": "Evangelium" - }, - { - "body": "*Ps 136:1*\n*Syjon jest symbolem ojczyzny niebieskiej, Babilon to zmienia wygnania, na której przebywamy.*\nNad rzekami Ba", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie niechaj te święte Tajemnice udzielą nam z niebios lekarstwa, które oczyści z nieprawości serca nasze.", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 118:49-50*\nPomnij na obietnicę daną słudze Twemu, Panie, w którą kazałeś mi wierzyć. Ona mnie pociesza w mojej nędzy", - "id": "Communio" - }, - { - "body": "Spraw, prosimy Cię, Panie, abyśmy przez pilne posłuszeństwo Twoim przykazaniom stali się godnymi świętych darów Twoich.\n", - "id": "Postcommunio" - } - ], - "2020-10-23": [ - { - "body": "*Ps 131,9-10*\nNiech kapłani Twoi odzieją się w sprawiedliwość, a święci Twoi niech się radują; przez wzgląd na Dawida, s", - "id": "Introitus" - }, - { - "body": "Boże, który ozdobiłeś apostolskimi cnotami świętego Antoniego Marię, Swojego Wyznawcę i Biskupa, i przez niego utworzyłe", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 7:23-27*\nBracia: Kapłanów było wielu, dlatego że śmierć i", - "id": "Lectio" - }, - { - "body": "*Ps 131:16-17*\nKapłanów Syjonu odzieję zbawienną pomocą, a jego święci radośnie będą się weselić.\n℣. Tam dla Dawida wzbu", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:42-47*\nOnego czasu: Rzekł Jezus uczniom swoim: «Czuwajcie, bo ni", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech doroczna uroczystość świętego Antoniego Marii Claret, Twego Wyznawcy i Biskupa, uczyni nas god", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Boże, Ty nagradzasz dusze wierne; spraw, abyśmy dostąpili przebaczenia przez prośby świętego Antoniego Marii Claret, Twe", - "id": "Postcommunio" - } - ], - "2020-10-24": [ - { - "body": "*Ps 102:20*\nBłogosławcie Pana, wszyscy jego Aniołowie, potężni mocą, pełniący Jego rozkazy, abyście posłuszni byli Jego ", - "id": "Introitus" - }, - { - "body": "Boże, który dałeś słudze Swemu Tobiaszowi za towarzysza W podróży św. Archanioła Rafała, daj nam sługom Swoim, aby nas z", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Tobiasza.\n*Tob 12:7-15*\nW one dni: Rzekł Rafał do Tobiasza: «Dobrze jest ukrywać tajemnicę królewską, ", - "id": "Lectio" - }, - { - "body": "*Tob 8:3*\nAnioł Pański Rafał pojmał i związał złego ducha.\n*Ps 146:5.*\n℣. Wielki jest Pan i wielka moc Jego. Alleluja, a", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 5:1-4*\nOnego czasu. Było święto żydowskie i przyszedł Jezus do Jerozolim", - "id": "Evangelium" - }, - { - "body": "*Ap 8:3-4*\nAnioł stanął przy ołtarzu świątyni, mając w ręku złotą kadzielnicę; i dano mu wiele kadzideł, i wzniósł się w", - "id": "Offertorium" - }, - { - "body": "Składamy Ci, Panie, ofiarę uwielbienia i pokornie prosimy, abyś za wstawiennictwem anielskim łaskawie ją przyjął i obróc", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Dn 3:58*\nBłogosławcie Pana, wszyscy Aniołowie Pańscy, wysławiajcie Go hymnem i wywyższajcie na wieki.", - "id": "Communio" - }, - { - "body": "Panie Boże, racz zesłać nam na pomoc świętego Rafała Archanioła; wierzymy, że przebywa on zawsze W obecności Twojego maj", - "id": "Postcommunio" - } - ], - "2020-10-25": [ - { - "body": "*Ap 5:12; 1:6*\n*Wizja z Apokalipsy św. Jana ukazuje nam Chrystusa odbierającego hołdy Aniołów i odkupionej ludzkości.*\nG", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, Ty postanowiłeś wszystko odnowić w umiłowanym Synu Twoim jako Królu wszechrzeczy, spraw łask", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:12-20*\nBracia: Dzięki czyńcie Bogu Ojcu, że nas uczynił godn", - "id": "Lectio" - }, - { - "body": "*Ps 71:8; 78:11*\nPanować będzie od morza do morza i od rzeki aż po krańce ziemi. I uwielbią Go wszyscy królowie, wszystk", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 18:33-37*\nOnego czasu: Rzekł Piłat do Jezusa: «Czy Ty jesteś Król żydows", - "id": "Evangelium" - }, - { - "body": "*Ps 2:8*\nŻądaj ode mnie, a dam ci narody w dziedzictwo i krańce ziemi w Twoje posiadanie.", - "id": "Offertorium" - }, - { - "body": "Ofiarujemy Ci, Panie, żertwę jednającą ludzi z Tobą, spraw, aby Ten, którego w tej ofierze składamy, użyczył wszystkim n", - "id": "Secreta" - }, - { - "body": "*Prefacja o Chrystusie Królu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 28:10; 28:11*\nPan zasiądzie jako król na wieki. Pan obdarzy lud swój pokojem.", - "id": "Communio" - }, - { - "body": "Po przyjęciu pokarmu, który jest zadatkiem nieśmiertelności, prosimy Cię, Panie, abyśmy dostąpiwszy zaszczytu pełnienia ", - "id": "Postcommunio" - } - ], - "2020-10-26": [ - { - "body": "*Est 13:9; 13:10-11*\nNa mocy Twojej, Panie, wszystko się opiera i nikt nie może sprzeciwić się Twej woli. Ty bowiem stwo", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, strzeż nieustannie Twojej rodziny z ojcowską dobrocią, aby pod Twoją opieką była wolna od wszelkich ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 6:10-17*\n*Treścią dziejów Kościoła jest walka z szatanem o zbaw", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie.\n℣. Zanim góry stanęły, nim ziemia i świat zostały st", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:23-35*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «P", - "id": "Evangelium" - }, - { - "body": "*Job 1:1*\n*Job wśród ciężkich doświadczeń zachował wiarę w sprawiedliwość Bożą, pokonując w ten sposób zasadzkę szatana.", - "id": "Offertorium" - }, - { - "body": "Panie, przyjmij łaskawie ofiary, przez które i sam dajesz się przebłagać, i dzięki ogromnej Twej dobroci przywracasz nam", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nDusza moja słabnie z tęsknoty za Twą pomocą. W słowie Twoich cała nadzieja moja. Kiedy osądz", - "id": "Communio" - }, - { - "body": "Otrzymawszy pokarm nieśmiertelności, prosimy Cię, Panie, abyśmy czystą duszą poszli za tym, co usta nasze przyjęły.\nPrze", - "id": "Postcommunio" - } - ], - "2020-10-27": [ - { - "body": "*Est 13:9; 13:10-11*\nNa mocy Twojej, Panie, wszystko się opiera i nikt nie może sprzeciwić się Twej woli. Ty bowiem stwo", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, strzeż nieustannie Twojej rodziny z ojcowską dobrocią, aby pod Twoją opieką była wolna od wszelkich ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 6:10-17*\n*Treścią dziejów Kościoła jest walka z szatanem o zbaw", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie.\n℣. Zanim góry stanęły, nim ziemia i świat zostały st", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:23-35*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «P", - "id": "Evangelium" - }, - { - "body": "*Job 1:1*\n*Job wśród ciężkich doświadczeń zachował wiarę w sprawiedliwość Bożą, pokonując w ten sposób zasadzkę szatana.", - "id": "Offertorium" - }, - { - "body": "Panie, przyjmij łaskawie ofiary, przez które i sam dajesz się przebłagać, i dzięki ogromnej Twej dobroci przywracasz nam", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nDusza moja słabnie z tęsknoty za Twą pomocą. W słowie Twoich cała nadzieja moja. Kiedy osądz", - "id": "Communio" - }, - { - "body": "Otrzymawszy pokarm nieśmiertelności, prosimy Cię, Panie, abyśmy czystą duszą poszli za tym, co usta nasze przyjęły.\nPrze", - "id": "Postcommunio" - } - ], - "2020-10-28": [ - { - "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", - "id": "Introitus" - }, - { - "body": "Boże, któryś raczył doprowadzić nas do poznania Twojego imienia przez świętych Apostołów Twoich Szymona i Judę, spraw, a", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 4:7-13*\n*Każdy chrześcijanin w sposób właściwy swemu powołaniu ", - "id": "Lectio" - }, - { - "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi, przez wszystkie pokolenia głosić będą Twe imię, o Panie.\n℣. Syno", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 15:17-25*\nW owym czasie: Rzekł Jezus uczniom swoim: To wam przykazuję, a", - "id": "Evangelium" - }, - { - "body": "*Ps 18:5*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.", - "id": "Offertorium" - }, - { - "body": "Czcząc wieczną chwałę świętych Apostołów Twoich Szymona i Judy, prosimy Cię, Panie, abyśmy oczyszczeni przez święte mist", - "id": "Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*Mt 19:28*\nWy, którzyście poszli za mną, zasiądziecie na stolicach, sądząc dwanaście pokoleń Izraela.", - "id": "Communio" - }, - { - "body": "Po przyjęciu Sakramentu, błagamy Cię, Panie, za przyczyną świętych Apostołów Twoich Szymona i Judy, aby ofiara złożona k", - "id": "Postcommunio" - } - ], - "2020-10-29": [ - { - "body": "*Est 13:9; 13:10-11*\nNa mocy Twojej, Panie, wszystko się opiera i nikt nie może sprzeciwić się Twej woli. Ty bowiem stwo", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, strzeż nieustannie Twojej rodziny z ojcowską dobrocią, aby pod Twoją opieką była wolna od wszelkich ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 6:10-17*\n*Treścią dziejów Kościoła jest walka z szatanem o zbaw", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie.\n℣. Zanim góry stanęły, nim ziemia i świat zostały st", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:23-35*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «P", - "id": "Evangelium" - }, - { - "body": "*Job 1:1*\n*Job wśród ciężkich doświadczeń zachował wiarę w sprawiedliwość Bożą, pokonując w ten sposób zasadzkę szatana.", - "id": "Offertorium" - }, - { - "body": "Panie, przyjmij łaskawie ofiary, przez które i sam dajesz się przebłagać, i dzięki ogromnej Twej dobroci przywracasz nam", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nDusza moja słabnie z tęsknoty za Twą pomocą. W słowie Twoich cała nadzieja moja. Kiedy osądz", - "id": "Communio" - }, - { - "body": "Otrzymawszy pokarm nieśmiertelności, prosimy Cię, Panie, abyśmy czystą duszą poszli za tym, co usta nasze przyjęły.\nPrze", - "id": "Postcommunio" - } - ], - "2020-10-30": [ - { - "body": "*Est 13:9; 13:10-11*\nNa mocy Twojej, Panie, wszystko się opiera i nikt nie może sprzeciwić się Twej woli. Ty bowiem stwo", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, strzeż nieustannie Twojej rodziny z ojcowską dobrocią, aby pod Twoją opieką była wolna od wszelkich ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 6:10-17*\n*Treścią dziejów Kościoła jest walka z szatanem o zbaw", - "id": "Lectio" - }, - { - "body": "*Ps 89:1-2*\nPanie, Tyś był ucieczką naszą z pokolenia na pokolenie.\n℣. Zanim góry stanęły, nim ziemia i świat zostały st", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 18:23-35*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «P", - "id": "Evangelium" - }, - { - "body": "*Job 1:1*\n*Job wśród ciężkich doświadczeń zachował wiarę w sprawiedliwość Bożą, pokonując w ten sposób zasadzkę szatana.", - "id": "Offertorium" - }, - { - "body": "Panie, przyjmij łaskawie ofiary, przez które i sam dajesz się przebłagać, i dzięki ogromnej Twej dobroci przywracasz nam", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 118:81; 118:84; 118:86*\nDusza moja słabnie z tęsknoty za Twą pomocą. W słowie Twoich cała nadzieja moja. Kiedy osądz", - "id": "Communio" - }, - { - "body": "Otrzymawszy pokarm nieśmiertelności, prosimy Cię, Panie, abyśmy czystą duszą poszli za tym, co usta nasze przyjęły.\nPrze", - "id": "Postcommunio" - } - ], - "2020-10-31": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - } - ], - "2020-11-01": [ - { - "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci Wszystkich Świętych; z ich uroczystości radują się Aniołowie i", - "id": "Introitus" - }, - { - "body": "Wszechmogący, wieczny Boże, który dozwalasz nam wspólnym obchodem czcić zasługi Wszystkich Świętych: prosimy Cię, abyś n", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 7:2-12*\nW one dni: Oto ja, Jan, ujrzałem innego Anioła, wstępuj", - "id": "Lectio" - }, - { - "body": "*Ps 33:10; 33:11*\nBójcie się Pana, święci Jego, niczego nie braknie tym, co się Go boją.\n℣. Tym zaś, co Pana szukają, do", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:1-12*\nOnego czasu: Jezus, widząc rzesze, wstąpił na górę i gdy us", - "id": "Evangelium" - }, - { - "body": "*Mdr 3:1; 3:2; 3:3*\nDusze sprawiedliwych są w ręku Boga i nie dosięgnie ich męka. Zdało się oczom głupich, że pomarli, a", - "id": "Offertorium" - }, - { - "body": "Ofiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij je łaskawie ku chwale Twoich Świętych i spraw w Swoim", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 5:8-10*\nBłogosławieni czystego serca, albowiem oni Boga oglądać będą. Błogosławieni pokój czyniący, albowiem synami ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, daj, aby wierny lud zawsze z radością czcił Wszystkich Świętych i za ich nieustannym wstawiennictwem", - "id": "Postcommunio" - } - ], - "2020-11-02": [ - { - "body": "*4 Ezd 2:34; 2:35*\nWieczny odpoczynek racz im dać, Panie, a światłość wiekuista niechaj im świeci.\n*Ps 64:2-3*\nCiebie, B", - "id": "Introitus" - }, - { - "body": "Boże, Stwórco i Odkupicielu wszystkich wiernych, udziel duszom zmarłych sług i służebnic Swoich odpuszczenia wszystkich ", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 15:51-57*\nBracia: Oto wam powiadam tajemnicę: Nie wszyscy ", - "id": "Lectio" - }, - { - "body": "*4 Ezdr 2:34-35*\nWieczny odpoczynek racz im dać, Panie, a światłość wiekuista niechaj im świeci.\n*Ps 111:7*\n℣. W wieczne", - "id": "Graduale" - }, - { - "body": "W gniewu dzień, w tę pomsty chwilę,\nŚwiat w popielnym legnie pyle:\nZważ Dawida i Sybillę.\n\nJakiż będzie płacz i łkanie,\n", - "id": "Sequentia" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 5:25-29*\nOnego czasu: Rzekł Jezus rzeszom żydowskim: Zaprawdę, zaprawdę ", - "id": "Evangelium" - }, - { - "body": "Panie Jezu Chryste, Królu chwały, zachowaj dusze wszystkich wiernych zmarłych od kar piekielnych i głębokiej czeluści. W", - "id": "Offertorium" - }, - { - "body": "Panie, wejrzyj łaskawie na ofiary, które Ci składamy za dusze sług i służebnic Twoich, i obdarz nagrodą tych, którym dał", - "id": "Secreta" - }, - { - "body": "*Prefacja o Zmarłych*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dzi", - "id": "Prefatio" - }, - { - "body": "*4 Ezdr 2:35; 2:34*\nŚwiatłość wiekuista niechaj im świeci, o Panie:\n* Wśród Świętych Twoich na wieki, bo jesteś pełen do", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech pokorna modlitwa pomocną będzie duszom sług i służebnic Twoich; racz je oczyścić z wszelkich g", - "id": "Postcommunio" - } - ], - "2020-11-03": [ - { - "body": "*Ps 129:3-4*\nJeśli zachowasz pamięć o występkach, Panie, Panie, któż się ostoi? Ale u Ciebie, Boże Izraela, jest przebac", - "id": "Introitus" - }, - { - "body": "Boże, ucieczko nasza i mocy, wysłuchaj pokornych modłów Twojego Kościoła, skoro pobożność, która je zrodziła, Twoim jest", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 1:6-11*\nBracia: Ufamy, w Panu Jezusie, że Ten, który rozpoczą", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\n*Życie w społeczności Kościoła przygotowuje nas do życia wiecznego, w którym miłość usunie wszelkie różnice", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:15-21*\nOnego czasu: Faryzeusze odszedłszy naradzali się, jakby G", - "id": "Evangelium" - }, - { - "body": "*Est 14:12; 14:13*\nWspomnij na mnie, o Panie, któremu wszelka zwierzchność podlega. Włóż w moje usta mowę właściwą, aby ", - "id": "Offertorium" - }, - { - "body": "Daj, miłosierny Boże, aby ta zbawienna ofiara zawsze nas wyzwalała z naszych grzechów i broniła od wszelkich przeciwnośc", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 16:6*\nWzywam Cię, Boże, bo Ty mnie wysłuchasz. Nakłoń ku mnie Twe ucho, usłysz moje słowa.", - "id": "Communio" - }, - { - "body": "Przyjęliśmy, Panie, dary świętego misterium, pokornie błagając, aby to, co kazałeś nam czynić na Twoją pamiątkę, przynio", - "id": "Postcommunio" - } - ], - "2020-11-04": [ - { - "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", - "id": "Introitus" - }, - { - "body": "Osłaniaj, Panie, swój Kościół nieustanną opieką świętego Karola, Twojego Wyznawcy i Biskupa, a jak jemu gorliwość paster", - "id": "Oratio" - }, - { - "body": "*Wspomnienie śś. Witalisa i Agrykoli*\nSpraw, prosimy Cię, wszechmogący Boże, abyśmy obchodząc uroczystość świętych Twoic", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:14-23*\nOnego czasu: Rzekł Jezus uczniom swoim tę przypowieść: «C", - "id": "Evangelium" - }, - { - "body": "*Ps 88:21-22*\n*W czasie konsekracji namaszcza się głowę i ręce biskupa Krzyżmem świętym.*\nZnalazłem Dawida, mojego sługę", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam wszędzie sprawiają radość Twoi Święci, abyśmy wspominając ich zasługi doznali również ich opieki.\nPrzez", - "id": "Secreta" - }, - { - "body": "*Wspomnienie śś. Witalisa i Agrykoli*\nDaj się przebłagać, Panie, złożonymi darami, a za wstawiennictwem świętych Twoich ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postanowił nad swoją czeladzią, by każdemu wydzielał żywność w odpo", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za przyjęte dary, za przyczyną świętego N., Wyznawcy Twego i ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie śś. Witalisa i Agrykoli*\nPanie, niech ta Komunia oczyści nas z grzechów i za przyczyną świętych Męczenników", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-05": [ - { - "body": "*Ps 129:3-4*\nJeśli zachowasz pamięć o występkach, Panie, Panie, któż się ostoi? Ale u Ciebie, Boże Izraela, jest przebac", - "id": "Introitus" - }, - { - "body": "Boże, ucieczko nasza i mocy, wysłuchaj pokornych modłów Twojego Kościoła, skoro pobożność, która je zrodziła, Twoim jest", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 1:6-11*\nBracia: Ufamy, w Panu Jezusie, że Ten, który rozpoczą", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\n*Życie w społeczności Kościoła przygotowuje nas do życia wiecznego, w którym miłość usunie wszelkie różnice", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:15-21*\nOnego czasu: Faryzeusze odszedłszy naradzali się, jakby G", - "id": "Evangelium" - }, - { - "body": "*Est 14:12; 14:13*\nWspomnij na mnie, o Panie, któremu wszelka zwierzchność podlega. Włóż w moje usta mowę właściwą, aby ", - "id": "Offertorium" - }, - { - "body": "Daj, miłosierny Boże, aby ta zbawienna ofiara zawsze nas wyzwalała z naszych grzechów i broniła od wszelkich przeciwnośc", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 16:6*\nWzywam Cię, Boże, bo Ty mnie wysłuchasz. Nakłoń ku mnie Twe ucho, usłysz moje słowa.", - "id": "Communio" - }, - { - "body": "Przyjęliśmy, Panie, dary świętego misterium, pokornie błagając, aby to, co kazałeś nam czynić na Twoją pamiątkę, przynio", - "id": "Postcommunio" - } - ], - "2020-11-06": [ - { - "body": "*Ps 129:3-4*\nJeśli zachowasz pamięć o występkach, Panie, Panie, któż się ostoi? Ale u Ciebie, Boże Izraela, jest przebac", - "id": "Introitus" - }, - { - "body": "Boże, ucieczko nasza i mocy, wysłuchaj pokornych modłów Twojego Kościoła, skoro pobożność, która je zrodziła, Twoim jest", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 1:6-11*\nBracia: Ufamy, w Panu Jezusie, że Ten, który rozpoczą", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\n*Życie w społeczności Kościoła przygotowuje nas do życia wiecznego, w którym miłość usunie wszelkie różnice", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 22:15-21*\nOnego czasu: Faryzeusze odszedłszy naradzali się, jakby G", - "id": "Evangelium" - }, - { - "body": "*Est 14:12; 14:13*\nWspomnij na mnie, o Panie, któremu wszelka zwierzchność podlega. Włóż w moje usta mowę właściwą, aby ", - "id": "Offertorium" - }, - { - "body": "Daj, miłosierny Boże, aby ta zbawienna ofiara zawsze nas wyzwalała z naszych grzechów i broniła od wszelkich przeciwnośc", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 16:6*\nWzywam Cię, Boże, bo Ty mnie wysłuchasz. Nakłoń ku mnie Twe ucho, usłysz moje słowa.", - "id": "Communio" - }, - { - "body": "Przyjęliśmy, Panie, dary świętego misterium, pokornie błagając, aby to, co kazałeś nam czynić na Twoją pamiątkę, przynio", - "id": "Postcommunio" - } - ], - "2020-11-07": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - } - ], - "2020-11-08": [ - { - "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", - "id": "Introitus" - }, - { - "body": "Odpuść, prosimy Cię, Panie, przewiny ludu Twojego; i w miłosierdziu Twoim uwolnij nas od więzów grzechowych, któreśmy za", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:17-21; 4:1-3*\nBracia: Naśladowcami moimi bądźcie i zapatruj", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 9:18-26*\nOnego czasu: Gdy Jezus mówił do rzesz, oto książę pewien p", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", - "id": "Offertorium" - }, - { - "body": "Składamy Ci, Panie, tę ofiarę chwały, dla pomnożenia naszej gorliwości w Twojej służbie; sam racz łaskawie dokonać tego,", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, nie dopuść, aby Ci, którym pozwalasz się cieszyć udziałem w Boskich tajemnicach, podlega", - "id": "Postcommunio" - } - ], - "2020-11-09": [ - { - "body": "*Rdz 28:17*\nBojaźnią przejmuje to miejsce: tu jest dom Boży i brama niebios, i zwać się będzie mieszkaniem Boga.\n*Ps 83:", - "id": "Introitus" - }, - { - "body": "Boże, który co roku pozwalasz nam obchodzić dzień konsekracji Twojej świątyni i uczestniczyć w świętych obrzędach, wysłu", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Teodora*\nBoże, który przez wzgląd na chwalebną śmierć świętego Twego Męczennika Teodora otaczasz nas Sw", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 21:2-5*\n*Kościół materialny jest obrazem «Jeruzalem niebieskieg", - "id": "Lectio" - }, - { - "body": "Bóg uczynił z tego miejsca bez skazy bezcenny znak swojej obecności.\n℣. Boże, którego otacza chór aniołów, wysłuchaj pro", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:1-10*\nOnego czasu: Jezus przechodził przez Jerycho. I oto mąż imi", - "id": "Evangelium" - }, - { - "body": "*1 Krn 29:17-18*\n*Modlitwa Dawida, który przygotował budowę pierwszej świątyni w Jerozolimie.*\nPanie Boże, w szczerości ", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię Panie, wysłuchaj modlitwy nasze (abyśmy wszyscy zebrani w tej świątyni, której rocznicę konsekracji obchodzi", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Teodora*\nProsimy Cię, Panie, przyjmij modlitwy wiernych i ofiary przez nich złożone, a nabożne sprawowa", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 21:13*\nDom mój będzie nazwany domem modlitwy, mówi Pan. Każdy, kto w nim prosi otrzymuje; a kto szuka, znajduje; a k", - "id": "Communio" - }, - { - "body": "Boże, Ty z żywych i wybranych kamieni przygotowujesz Swemu majestatowi wiekuisty przybytek; wspomóż lud Twój, który korn", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Teodora*\nProsimy Cię, Panie, za wstawiennictwem świętego Teodora, Twego Męczennika, daj nam przyjąć czy", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-10": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Boże, Tyś sprawił, że święty Andrzej, Twój Wyznawca, przez trudny ślub codziennego postępu w cnotach przedziwnie wznosił", - "id": "Oratio" - }, - { - "body": "*Wspomnienie śś. Tryfona, Respicjusza i Nimfy*\nDaj nam, Panie, zawsze tak obchodzić uroczystość świętych Twoich Męczenni", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 31:8-11*\nBłogosławiony mąż, który okazał się bez zmazy i który nie ubiegał się za zło", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:35-40*\n*Życie Świętych było czujnym oczekiwaniem powrotu Chrystus", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wspominając Twoich Świętych składamy Ci, Panie, ofiarę chwały i ufamy, że ona wybawi nas od złego teraz i w przyszłości.", - "id": "Secreta" - }, - { - "body": "*Wspomnienie śś. Tryfona, Respicjusza i Nimfy*\nOfiarujemy Ci, Panie, te dary jako wyraz naszego oddania; przyjmij je łas", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Pokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nasz, niech nas bronią modlitwy tego, w którego św", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie śś. Tryfona, Respicjusza i Nimfy*\nProsimy Cię, Panie, za wstawiennictwem świętych Twoich Męczenników Tryfon", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-11": [ - { - "body": "*Syr 45:30*\nPan zawarł z nim przymierze pokoju i ustanowił go przełożonym, aby godność kapłańska została przy nim na wie", - "id": "Introitus" - }, - { - "body": "Boże, Ty widzisz, że nie polegamy na własnych uczynkach, spraw miłościwie, aby wstawiennictwo św. Marcina, Twego Wyznawc", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Mennasa*\nProsimy Cię, wszechmogący Boże, abyśmy obchodząc urodziny dla nieba świętego Mennasa, Twego Mę", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 44:16-27; 45:3-20*\nOto wielki kapłan, który za dni swoich podobał się Bogu i okazał s", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\nNie znalazł się jemu podobny, który by ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:33-36*\nOnego czasu: Rzekł Jezus uczniom swoim: «Nikt nie zapala ś", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie Boże, poświęć te dary składane w uroczystość świętego Twego Biskupa Marcina: niech one wszędzie kieru", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Mennasa*\nPrzyjmij, prosimy Cię, Panie, nasze dary i modlitwy, oczyść nas przez niebieskie tajemnice i ł", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego. Zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, Boże nasz, aby te tajemnice, sprawowane ku czci Świętych, stały się dla nas źródłem zbawienia za ich", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Mennasa*\nDaj, prosimy Cię, Panie Boże nasz, abyśmy się tak cieszyli widokiem Twoich Świętych w wiecznoś", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-12": [ - { - "body": "*Ps 33:20-21*\nWiele ucisków spotyka sprawiedliwych, lecz Pan ich wyzwala ze wszystkich; strzeże wszystkich ich kości: ni", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, niech źródłem radości będzie dzisiaj dla nas chwalebne zwycięstwo Twoich Męczenników Benedykta, Jana", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Syr 44:10-15*\nCi są mężami pełnymi miłosierdzia, których dobre czyny nie poszły w niepamięć", - "id": "Lectio" - }, - { - "body": "*Ps 132:1-2*\nOto jak dobrze i jak miło braciom zamieszkać społem.\n℣. Jako wyborny olejek na głowie, co spływa na brodę, ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 12:1-8*\nOnego czasu: Rzekł Jezus uczniom swoim: «Strzeżcie się kwasu", - "id": "Evangelium" - }, - { - "body": "*Ps 5:12-13*\nNiech się radują ci wszyscy, co Twe imię miłują, bo Ty, Panie, sprawiedliwemu dasz błogosławieństwo; Panie,", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, przyjmij łaskawie przez zasługi świętych Twoich Męczenników ofiarę, którą Ci składamy i spraw, aby s", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mdr 3:4-6*\nChoć w mniemaniu ludzi zostali ukarani, to Bóg ich doświadczył, jak złoto w piecu ich wypróbował, jak ofiarę", - "id": "Communio" - }, - { - "body": "Przyjęliśmy, Panie, niebieski Sakrament, obchodząc uroczystość świętych Twoich Męczenników Benedykta, Jana, Mateusza, Iz", - "id": "Postcommunio" - } - ], - "2020-11-13": [ - { - "body": "*Mdr 4:13-14*\nStawszy się w krótkim czasie doskonałym, wypełnił czasów wiele. Podobała się bowiem Bogu dusza jego; dlate", - "id": "Introitus" - }, - { - "body": "Boże, któryś wśród wielu cudów Swej mądrości udzielił łaski dojrzałej świętości nawet w wieku młodzieńczym, spraw, prosi", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Mądrości.\n*Mdr 4:7-18*\nSprawiedliwy, jeśli umrze przedwcześnie, dozna ochłody. Czcigodna bowiem staroś", - "id": "Lectio" - }, - { - "body": "*Ps 20:3-4*\nSpełniłeś pragnienie jego serca, prośbie ust jego nie odmówiłeś.\n℣. Uprzedziłeś go hojnym błogosławieństwem.", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:13-21*\nOnego czasu: Przywiedziono do Jezusa dzieci: aby włożył n", - "id": "Evangelium" - }, - { - "body": "*Ps 42:4*\nPrzystąpię do ołtarza Bożego, do Boga, który radością napełnia młodość moją.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech nas uczyni godnymi Chleba anielskiego wstawiennictwo św. Stanisława, który zasłużył, by go ręc", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Syr 15:3*\nNakarmił go Pan Chlebem żywota i rozumienia, i napoił go wodą zbawiennej mądrości.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, za wstawiennictwem św. Stanisława, Twojego Wyznawcy, aby Pokarm niebieski, któryśmy przyjęli, przyni", - "id": "Postcommunio" - } - ], - "2020-11-14": [ - { - "body": "Radujmy się wszyscy w Panu, obchodząc uroczystość ku czci świętego Jozafata; z jego męczeństwa radują się Aniołowie i wy", - "id": "Introitus" - }, - { - "body": "Wzbudź, Panie, w Kościele Swoim Ducha, pod którego natchnieniem św. Jozafat, Twój Męczennik i Biskup, położył życie swoj", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Hebrajczyków.\n*Hbr 5:1-6*\nBracia: Każdy arcykapłan, spośród ludzi wzięty, dl", - "id": "Lectio" - }, - { - "body": "*Ps 88:21-23*\nZnalazłem Dawida, mojego sługę, namaściłem go świętym olejem moim, by ręka moja zawsze z nim była i ramię ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 10:11-16*\nOnego czasu: Rzekł Jezus do faryzeuszów: «Jam jest pasterz dob", - "id": "Evangelium" - }, - { - "body": "*J 15:13*\nNikt nie ma większej miłości nad tę, aby kto życie swe oddał za przyjaciół swoich.", - "id": "Offertorium" - }, - { - "body": "Najłaskawszy Boże, zlej Swoje błogosławieństwo na te dary i utwierdź nas w wierze, którą święty Jozafat, Twój Męczennik ", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*J 10:14*\nJam jest pasterz dobry; znam swoje owce i one mnie znają.", - "id": "Communio" - }, - { - "body": "Panie, niech nam ducha męstwa udzieli ta uczta niebieska, która stale krzepiła życie świętego Jozafata, Twojego Męczenni", - "id": "Postcommunio" - } - ], - "2020-11-15": [ - { - "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", - "id": "Introitus" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, abyśmy stale rozważając prawdy duchowe, słowem i czynem spełniali to, co się Tobi", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*1 Tes 1:2-10*\nBracia: Dzięki składamy Bogu zawsze za was wszy", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:31-35*\nOnego czasu: Powiedział Jezus rzeszom tę przypowieść: «Po", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Boże, niech nas ta ofiara oczyści i odnowi, prowadzi i ochrania.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", - "id": "Communio" - }, - { - "body": "Posileni ucztą niebieską, prosimy, Panie, abyśmy zawsze pożądali tego pokarmu, który nam daje prawdziwe życie.\nPrzez Pan", - "id": "Postcommunio" - } - ], - "2020-11-16": [ - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Introitus" - }, - { - "body": "Boże, Tyś sobie zgotował miłe przebywanie w sercu świętej Dziewicy Gertrudy; przez jej zasługi i wstawiennictwo obmyj ła", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - } - ], - "2020-11-17": [ - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Introitus" - }, - { - "body": "Boże, któryś w błogosławionej Salomei połączył pogardę dla ziemskiego królestwa z blaskiem dziewictwa w małżeństwie, wsp", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Grzegorza Cudotwórcy, Biskupa i Wyznawcy*\nSpraw, prosimy Cię, wszechmogący Boże, aby chwalebna uroczyst", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*2 Kor 10:17-18; 11:1-2*\nBracia: Kto się chlubi, niech się chlubi", - "id": "Lectio" - }, - { - "body": "*Ps 44:5*\nW chwale i piękności swojej wystąp, walcz zwycięsko i króluj.\n℣. W obronie wiary i sprawiedliwości niech cudów", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:10*\nCórki królewskie idą ci naprzeciw, królowa stoi po prawicy Twojej strojna w złoto i szatę wzorzystą.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Grzegorza Cudotwórcy, Biskupa i Wyznawcy*\nPanie, niech nam wszędzie sprawiają radość Twoi Święci, abyśm", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 25:4; 25:6*\nPięć panien mądrych wzięło oliwy w naczynia swoje z lampami. A o północy rozległo się wołanie: Oto oblub", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Grzegorza Cudotwórcy, Biskupa i Wyznawcy*\nWszechmogący Boże, spraw, prosimy, abyśmy składając dzięki za", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-18": [ - { - "body": "*Rdz 28:17*\nBojaźnią przejmuje to miejsce: tu jest dom Boży i brama niebios, i zwać się będzie mieszkaniem Boga.\n*Ps 83:", - "id": "Introitus" - }, - { - "body": "Boże, który co roku pozwalasz nam obchodzić dzień konsekracji Twojej świątyni i uczestniczyć w świętych obrzędach, wysłu", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 21:2-5*\n*Kościół materialny jest obrazem «Jeruzalem niebieskieg", - "id": "Lectio" - }, - { - "body": "Bóg uczynił z tego miejsca bez skazy bezcenny znak swojej obecności.\n℣. Boże, którego otacza chór aniołów, wysłuchaj pro", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 19:1-10*\nOnego czasu: Jezus przechodził przez Jerycho. I oto mąż imi", - "id": "Evangelium" - }, - { - "body": "*1 Krn 29:17-18*\n*Modlitwa Dawida, który przygotował budowę pierwszej świątyni w Jerozolimie.*\nPanie Boże, w szczerości ", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię Panie, wysłuchaj modlitwy nasze (abyśmy wszyscy zebrani w tej świątyni, której rocznicę konsekracji obchodzi", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 21:13*\nDom mój będzie nazwany domem modlitwy, mówi Pan. Każdy, kto w nim prosi otrzymuje; a kto szuka, znajduje; a k", - "id": "Communio" - }, - { - "body": "Boże, Ty z żywych i wybranych kamieni przygotowujesz Swemu majestatowi wiekuisty przybytek; wspomóż lud Twój, który korn", - "id": "Postcommunio" - } - ], - "2020-11-19": [ - { - "body": "*Ps 118:75; 118:120*\nWiem, Panie, że słuszne są Twoje wyroki, żeś sprawiedliwie mnie trapił: drży moje ciało z bojaźni p", - "id": "Introitus" - }, - { - "body": "Miłosierny Boże, oświeć serca Twych wiernych i za chwalebną przyczyną św. Elżbiety spraw, abyśmy pogardzali pomyślnością", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Poncjana*\nWiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyn", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytania z Księgi Przysłów.\n*Prz 31:10-31*\n*Na kartach Starego Testamentu znajdujemy obraz idealnej matki całkowicie odd", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:5*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.\n℣. W obronie wiary i sprawie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 13:44-52*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieś", - "id": "Evangelium" - }, - { - "body": "*Ps 44:3*\nWdzięk rozlał się na Twoich wargach, przeto Bóg pobłogosławił Cię na wieki.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świętych, uznając, że dzięki ich zasługom doznał p", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Poncjana*\nZłożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości, dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela obfic", - "id": "Communio" - }, - { - "body": "Nasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas stale za wstawiennictwem tej, której uroczystość obchodzi", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Poncjana*\nProsimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-20": [ - { - "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", - "id": "Introitus" - }, - { - "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego N., (Twojego Męc", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Feliksa Walezego, Wyznawcy*\nBoże, który świętego Feliksa, Twego Wyznawcę, przez natchnienie niebieskie ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", - "id": "Offertorium" - }, - { - "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Feliksa Walezego, Wyznawcy*\nProsimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą w pokorze sk", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Feliksa Walezego, Wyznawcy*\nProsimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, ch", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-21": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Boże, dzisiaj z Twojej woli Najświętszą Maryję Pannę, mieszkanie Ducha Świętego, stawiono w świątyni; racz sprawić, byśm", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - } - ], - "2020-11-22": [ - { - "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", - "id": "Introitus" - }, - { - "body": "Prosimy Cię Panie, pobudź wolę wiernych Twoich, aby gorliwie korzystając z owoców służby Bożej, otrzymywali większą pomo", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:9-14*\nBracia: Nie przestajemy modlić się za was i prosić, ab", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:15-35*\n*Chrystus Pan zapowiada dwa wydarzenia: zburzenie Jerozol", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", - "id": "Offertorium" - }, - { - "body": "Panie, wejrzyj miłościwie na nasze pokorne prośby, a przyjąwszy ofiary i modlitwy Swojego ludu, zwróć wszystkie nasze se", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, spraw, aby uzdrawiająca moc Sakramentu, który przyjęliśmy, uleczyła nasze dusze ze wszystkich złych ", - "id": "Postcommunio" - } - ], - "2020-11-23": [ - { - "body": "*Iz 59:21; 56:7*\nMówi Pan: Mowy moje, które włożyłem w twoje usta, nie odstąpią od ust twoich; a ofiary twoje miłe będą ", - "id": "Introitus" - }, - { - "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego N., (Twojego Męc", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Felicyty*\nWszechmogący Boże, prosimy Cię, aby nas ochraniały modlitwy i zasługi św. Felicyty, Twojej Mę", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 3:17-21; 4:1-3*\nBracia: Naśladowcami moimi bądźcie i zapatruj", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", - "id": "Offertorium" - }, - { - "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Felicyty*\nPanie, wejrzyj łaskawie na ofiary Twego ludu i napełnij go radością za wstawiennictwem tej, k", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Felicyty*\nWszechmogący Boże, pokornie prosimy Cię, abyś za wstawiennictwem Twoich Świętych pomnażał w n", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-24": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, który św. Jana, Twego Wyznawcę i Doktora, uczyniłeś szczególnym miłośnikiem Krzyża i zupełnego wyrzeczenia się sie", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Chryzogona*\nPrzychyl się, Panie, do naszych kornych próśb, a że obciążeni grzechami uświadamiamy sobie ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne.\n℣. Prawo jego Boga mieszka w sercu je", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Jana, Twego Wyznawcy i Doktora, która zaleci Tobie naszą ofi", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Chryzogona*\nPanie, daj się przebłagać złożonymi darami, a za wstawiennictwem św. Chryzogona, Twojego Mę", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty Jan, Twój Wyznawca i znamienity Doktor, wstawi się jako orędownik, aby ta ofiara Twoja ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Chryzogona*\nPanie, niech przyjęcie Twego Sakramentu oczyści nas z ukrytych grzechów i wybawi od zasadze", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-25": [ - { - "body": "*Ps 118:46-47*\nŚwiadczyłam o Twej prawdzie wobec królów, a nie wstydziłam się, i rozważałam Twoją naukę, bo bardzo ją po", - "id": "Introitus" - }, - { - "body": "Boże, Ty na szczycie góry Synaj dałeś prawo Mojżeszowi i w tym samym miejscu cudownie umieściłeś przez świętych mnichów ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", - "id": "Lectio" - }, - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość świętej Katarzyny, Dziewicy i Męczennicy Twojej: ufamy, że jej ws", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 118:78; 118:80*\nNiech zawstydzą się pyszni, bo niewinnie mnie dręczą, ja będę rozmyślać o Twych przykazaniach, o pra", - "id": "Communio" - }, - { - "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej Katarzyny, Twojej Dziewicy i Męczennicy, niec", - "id": "Postcommunio" - } - ], - "2020-11-26": [ - { - "body": "*Ps 36:30-31*\nUsta sprawiedliwego głoszą mądrość i język jego mówi to, co słuszne; prawo jego Boga mieszka w jego sercu.", - "id": "Introitus" - }, - { - "body": "Najłaskawszy Boże, gdy święty Opat Sylwester rozmyślał przy otwartym grobie nad znikomością tego świata, raczyłeś go pow", - "id": "Oratio" - }, - { - "body": "*Wspomnienie św. Piotra z Aleksandrii*\nWszechmogący Boże, wejrzyj na słabość naszą, a skoro nas obciąża brzemię własnej ", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 45:1-6*\nUmiłowany przez Boga i ludzi, którego pamięć jest błogosławiona. Pan dał mu c", - "id": "Lectio" - }, - { - "body": "*Ps 20:4-5*\nPanie, dobrodziejstwami obsypałeś go szczodrze, włożyłeś mu na głowę koronę z drogich kamieni.\n℣. Błagał Cię", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 19:27-29*\nOnego czasu: Piotr powiedział do Jezusa: Otośmy opuścil", - "id": "Evangelium" - }, - { - "body": "*Ps 20:3; 20:4*\nSpełniłeś pragnienie jego serca, Panie, prośbie ust jego nie odmówiłeś: włożyłeś mu na głowę koronę z dr", - "id": "Offertorium" - }, - { - "body": "Gdy z czcią składamy te dary boskiemu majestatowi Twojemu, błagamy Cię, Panie, abyśmy za przykładem św. Sylwestra, Opata", - "id": "Secreta" - }, - { - "body": "*Wspomnienie św. Piotra z Aleksandrii*\nPanie, przyjmij łaskawie przez zasługi świętego Piotra Męczennika i Biskupa ofiar", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Łk 12:42*\nOto wierny i roztropny sługa, którego Pan postawił nad swoją czeladzią, by każdemu wydzielał żywność w odpowi", - "id": "Communio" - }, - { - "body": "Panie, gdy nas posiliłeś Boską ucztą, daj nam tak iść śladami świętego Opata Sylwestra, abyśmy wespół ze Świętymi otrzym", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie św. Piotra z Aleksandrii*\nPokrzepieni uczestnictwem w świętej uczcie prosimy Cię, Panie, Boże nasz, abyśmy ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-11-27": [ - { - "body": "*Jer 29:11; 29:12; 29:14*\nOto co mówi Pan: Ja żywię myśli pokoju, a nie udręczenia. Wzywać Mnie będziecie, a Ja was wysł", - "id": "Introitus" - }, - { - "body": "Prosimy Cię Panie, pobudź wolę wiernych Twoich, aby gorliwie korzystając z owoców służby Bożej, otrzymywali większą pomo", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Kolosan.\n*Kol 1:9-14*\nBracia: Nie przestajemy modlić się za was i prosić, ab", - "id": "Lectio" - }, - { - "body": "*Ps 43:8-9*\nTyś nas wybawił, Panie, od naszych przeciwników, a tych, co nas nienawidzą, zawstydziłeś.\n℣. Bogiem będziemy", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 24:15-35*\n*Chrystus Pan zapowiada dwa wydarzenia: zburzenie Jerozol", - "id": "Evangelium" - }, - { - "body": "*Ps 129:1-2*\nZ głębokości wołam do Ciebie, Panie: o Panie, wysłuchaj modlitwę moją; z głębokości wołam do Ciebie, Panie.", - "id": "Offertorium" - }, - { - "body": "Panie, wejrzyj miłościwie na nasze pokorne prośby, a przyjąwszy ofiary i modlitwy Swojego ludu, zwróć wszystkie nasze se", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mk 11:24*\nZaprawdę powiadam wam: wierzcie, że otrzymacie wszystko, o cokolwiek modląc się prosicie, a stanie się wam.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, spraw, aby uzdrawiająca moc Sakramentu, który przyjęliśmy, uleczyła nasze dusze ze wszystkich złych ", - "id": "Postcommunio" - } - ], - "2020-11-28": [ - { - "body": "*Seduliusz*\nWitaj, Święta Rodzicielko, któraś wydała na świat Króla, co niebem i ziemią włada na wieki wieków.\n*Ps 44:2*", - "id": "Introitus" - }, - { - "body": "Prosimy Cię, Panie, Boże, dozwól nam, sługom Swoim, cieszyć się trwałym zdrowiem duszy i ciała, a za przyczyną Najświęts", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 24:14-16*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dzie", - "id": "Lectio" - }, - { - "body": "Błogosławiona i godna czci jesteś, Panno Maryjo, któraś bez naruszenia dziewictwa stała się Matką Zbawiciela.\n℣. Bogarod", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 11:27-28*\nOnego czasu: Gdy Jezus mówił do rzesz, pewna niewiasta z t", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28 1:42*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami i błogosławiony owoc żywot", - "id": "Offertorium" - }, - { - "body": "Panie, niech z Twego zmiłowania, a za przyczyną błogosławionej Maryi zawsze Dziewicy, ofiara ta wyjedna nam wieczne i do", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*W Komunii świętej przyjmujemy Syna Bożego i Syna Maryi.*\nBłogosławione wnętrzności Maryi Panny, które nosiły Syna Ojca ", - "id": "Communio" - }, - { - "body": "Przyjąwszy zasiłek naszego zbawienia, prosimy Cię, Panie, daj, by nas nieustannie chroniła opieka błogosławionej Maryi z", - "id": "Postcommunio" - } - ], - "2020-11-29": [ - { - "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", - "id": "Introitus" - }, - { - "body": "Wzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od niebezpieczeństw grożących nam ws", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:11-14*\nBracia: Wiecie, że pora nam już powstać ze snu. Teraz", - "id": "Lectio" - }, - { - "body": "*Ps 24:3; 24:4*\nWszyscy, co ufają Tobie, wstydu nie doznają.\n℣. Ukaż mi, Panie, drogi Twoje, i naucz mnie Twoich ścieżek", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:25-33*\nOnego czasu rzekł Jezus uczniom swoim: «Będą znaki na słoń", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", - "id": "Offertorium" - }, - { - "body": "Panie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej czystości dojść do swojego Stwórc", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Ps 84:13*\nPan użyczy błogosławieństwa, a ziemia nasza wyda swój plon.", - "id": "Communio" - }, - { - "body": "Obdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali godnym przygotowaniem nadchodzące ", - "id": "Postcommunio" - } - ], - "2020-11-30": [ - { - "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", - "id": "Introitus" - }, - { - "body": "Panie, pokornie błagamy Twój majestat, aby święty Andrzej, Apostoł, który był nauczycielem i przewodnikiem Twojego Kości", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 10:10-18*\nBracia: Bo sercem przyjęta wiara prowadzi do usprawie", - "id": "Lectio" - }, - { - "body": "*Ps 44:17-18*\nUstanowisz ich książętami po całej ziemi: głosić będą Twe imię, o Panie.\n℣. Synowie twoi zajmą miejsce two", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 4:18-22*\nOnego czasu: Gdy Jezus przechodził obok Jeziora Galilejski", - "id": "Evangelium" - }, - { - "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże: na zawsze jest utrwalone ich władanie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, niech modlitwa św. Andrzeja, Apostoła, poleci Tobie naszą ofiarę, aby uroczyście składana ku jego ch", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 4:19-20*\nPójdźcie za mną, a sprawię, że staniecie się rybakami ludzi. A oni natychmiast opuściwszy sieci poszli za P", - "id": "Communio" - }, - { - "body": "Ciesząc się z uroczystości św. Andrzeja, Apostoła, przyjęliśmy, Panie, Boski Sakrament; prosimy, aby pomnożył on chwałę ", - "id": "Postcommunio" - } - ], - "2020-12-01": [ - { - "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", - "id": "Introitus" - }, - { - "body": "Wzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od niebezpieczeństw grożących nam ws", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:11-14*\nBracia: Wiecie, że pora nam już powstać ze snu. Teraz", - "id": "Lectio" - }, - { - "body": "*Ps 24:3; 24:4*\nWszyscy, co ufają Tobie, wstydu nie doznają.\n℣. Ukaż mi, Panie, drogi Twoje, i naucz mnie Twoich ścieżek", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:25-33*\nOnego czasu rzekł Jezus uczniom swoim: «Będą znaki na słoń", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", - "id": "Offertorium" - }, - { - "body": "Panie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej czystości dojść do swojego Stwórc", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 84:13*\nPan użyczy błogosławieństwa, a ziemia nasza wyda swój plon.", - "id": "Communio" - }, - { - "body": "Obdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali godnym przygotowaniem nadchodzące ", - "id": "Postcommunio" - } - ], - "2020-12-02": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, Tyś cudownie objawił Swoją wolą, by na rządcę i nauczyciela Twego Kościoła wybrano św. Piotra Chryzologa, spraw, p", - "id": "Oratio" - }, - { - "body": "*Wspomnienie 1 Niedziela Adwentu*\nWzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\nNie znalazł się jemu podobny, który by ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 91:13*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie.", - "id": "Offertorium" - }, - { - "body": "Panie, niech nam nie zabraknie serdecznej modlitwy świętego Piotra Chryzologa, Twego Biskupa i Doktora, która zaleci Tob", - "id": "Secreta" - }, - { - "body": "*Wspomnienie 1 Niedziela Adwentu*\nPanie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 25:20; 25:21*\nPanie, dałeś mi pięć talentów, otom drugie pięć zyskał. Dobrze, sługo prawy i wierny, żeś w małym był ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech święty Piotr Chryzolog, Twój Biskup i znamienity Doktor, wstawi się jako orędownik, aby ta ofi", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie 1 Niedziela Adwentu*\nObdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-03": [ - { - "body": "*Ps 118:46-47*\nŚwiadczyłem o Twej prawdzie wobec królów, a nie wstydziłem się, i rozważałem Twoją naukę, bo bardzo ją po", - "id": "Introitus" - }, - { - "body": "Boże, któryś raczył przyłączyć do Twego Kościoła narody Indii dzięki nauczaniu i cudom świętego Franciszka, spraw łaskaw", - "id": "Oratio" - }, - { - "body": "*Wspomnienie 1 Niedziela Adwentu*\nWzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 10:10-18*\nBracia: Bo sercem przyjęta wiara prowadzi do usprawie", - "id": "Lectio" - }, - { - "body": "*Ps 91:13; 91:14*\nSprawiedliwy zakwitnie jak palma, rozrośnie się jak cedr na Libanie w domu Pańskim.\n*Ps 91:3*\nBy głosi", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Marka.\n*Mk 16:15-18*\nOnego czasu: Rzekł Jezus uczniom swoim: «Idąc na cały świat,", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, spraw, aby nasza ofiara, którą Ci w pokorze składamy ku czci Twoich Świętych, była Tobie", - "id": "Secreta" - }, - { - "body": "*Wspomnienie 1 Niedziela Adwentu*\nPanie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 24:46-47*\nBłogosławiony sługa, którego Pan przyszedłszy znajdzie czuwającego: zaprawdę, powiadam wam, że postawi go ", - "id": "Communio" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, aby pokarm niebieski, któryśmy przyjęli, chronił nas od wszelkich przeciwności za wstawi", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie 1 Niedziela Adwentu*\nObdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-04": [ - { - "body": "*Ps 118:46-47*\nŚwiadczyłam o Twej prawdzie wobec królów, a nie wstydziłam się, i rozważałam Twoją naukę, bo bardzo ją po", - "id": "Introitus" - }, - { - "body": "Panie, niech nas broni od wszelkich przeciwności wstawiennictwo św. Barbary, Dziewicy i Męczennicy Twojej. Obyśmy za jej", - "id": "Oratio" - }, - { - "body": "*Wspomnienie 1 Niedziela Adwentu*\nWzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Syracydesa.\n*Syr 51:1-8; 51:12*\nWyznawać Ci będę, Panie i Królu, i wychwalać Cię będę, Boga, Zbawcę me", - "id": "Lectio" - }, - { - "body": "*Ps 44:8*\nMiłujesz sprawiedliwość, a nienawidzisz nieprawości.\n℣. Dlatego Bóg, twój Bóg, namaścił cię olejkiem wesela. A", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 25:1-13*\nOnego czasu: Powiedział Jezus uczniom swoim tę przypowieść", - "id": "Evangelium" - }, - { - "body": "*Ps 44:15; 44:16*\nZa nią prowadzą do Króla dziewice, jej druhny wiodą z radością i weselem do pałacu Króla i Pana.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, dary, które Ci składamy w uroczystość świętej N., Dziewicy i Męczennicy Twojej: ufamy, że jej wstawienn", - "id": "Secreta" - }, - { - "body": "*Wspomnienie 1 Niedziela Adwentu*\nPanie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 118:78; 118:80*\nNiech zawstydzą się pyszni, bo niewinnie mnie dręczą, ja będę rozmyślać o Twych przykazaniach, o pra", - "id": "Communio" - }, - { - "body": "Panie, niech nas wspomaga przyjęty Sakrament, i za wstawiennictwem świętej N., Twojej Dziewicy i Męczennicy, niech spraw", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie 1 Niedziela Adwentu*\nObdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali ", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-05": [ - { - "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", - "id": "Introitus" - }, - { - "body": "Wzbudź potęgę Twoją, prosimy Cię, Panie, i przybądź: Niech Twoja opieka wyzwoli nas od niebezpieczeństw grożących nam ws", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Saby, Opata*\nProsimy Cię, Panie, niech nas Tobie poleca wstawiennictwo świętego Saby Opata, abyśmy za j", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 13:11-14*\nBracia: Wiecie, że pora nam już powstać ze snu. Teraz", - "id": "Lectio" - }, - { - "body": "*Ps 24:3; 24:4*\nWszyscy, co ufają Tobie, wstydu nie doznają.\n℣. Ukaż mi, Panie, drogi Twoje, i naucz mnie Twoich ścieżek", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 21:25-33*\nOnego czasu rzekł Jezus uczniom swoim: «Będą znaki na słoń", - "id": "Evangelium" - }, - { - "body": "*Ps 24:1-3*\nKu Tobie wznoszę duszę moją, Boże mój, Tobie ufam: niech nie doznam wstydu, niech się nie śmieją ze mnie moi", - "id": "Offertorium" - }, - { - "body": "Panie, niech te święte tajemnice oczyszczą nas swoją potężną mocą i pozwolą w większej czystości dojść do swojego Stwórc", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Saby, Opata*\nProsimy Cię, Panie, niech święty N., Opat, wybłaga, by dary ofiarne złożone na świętym ołt", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 84:13*\nPan użyczy błogosławieństwa, a ziemia nasza wyda swój plon.", - "id": "Communio" - }, - { - "body": "Obdarz nas, Panie, miłosierdziem Swoim w pośrodku Twojej świątyni, abyśmy poprzedzali godnym przygotowaniem nadchodzące ", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Saby, Opata*\nGdy przyjęliśmy Twój Sakrament, o Panie, niech nas wspomaga orędownictwo świętego Saby, Op", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-06": [ - { - "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", - "id": "Introitus" - }, - { - "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", - "id": "Offertorium" - }, - { - "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", - "id": "Communio" - }, - { - "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", - "id": "Postcommunio" - } - ], - "2020-12-07": [ - { - "body": "*Syr 15:5*\nW pośrodku Kościoła Pan otworzył jego usta, napełnił go duchem mądrości i rozumu i przyodział go szatą chwały", - "id": "Introitus" - }, - { - "body": "Boże, Tyś dał ludowi Swemu św. Ambrożego za pośrednika zbawienia wiecznego, spraw, prosimy Cię, abyśmy mogli mieć orędow", - "id": "Oratio" - }, - { - "body": "*Wspomnienie 2 Niedziela Adwentu*\nPobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięk", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tymoteusza.\n*2 Tm 4:1-8*\nNajmilszy: Zaklinam cię przed Bogiem i przed Jezuse", - "id": "Lectio" - }, - { - "body": "*Syr 44:16*\nOto wielki kapłan, który za dni swoich podobał się Bogu.\n*Syr 44:20*\n℣. Nie znalazł się jemu podobny, który ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 5:13-19*\nOnego czasu: Rzekł Jezus uczniom swoim: «Wy jesteście solą", - "id": "Evangelium" - }, - { - "body": "*Ps 88:25*\nZ nim moja wierność i moja łaska; w moim imieniu moc jego wzrośnie.", - "id": "Offertorium" - }, - { - "body": "Wszechmogący, wieczny Boże, spraw za przyczyną św. Ambrożego, Twego Wyznawcy i Biskupa, aby dary złożone Twojemu majesta", - "id": "Secreta" - }, - { - "body": "*Wspomnienie 2 Niedziela Adwentu*\nDaj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam z", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 88:36-38*\nRaz przysiągłem na świętość moją: potomstwo jego trwać będzie na wieki i jego tron będzie przede mną jak s", - "id": "Communio" - }, - { - "body": "Przyjmując Sakrament naszego zbawienia prosimy Cię, wszechmogący Boże, spraw, niech wszędzie nas wspiera modlitwa św. Am", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie 2 Niedziela Adwentu*\nPosileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-08": [ - { - "body": "*Iz 61:10*\nWeselę się wielce w Panu i raduje się duch mój w moim Bogu: gdyż oblókł mnie w szaty zbawienia i odział płasz", - "id": "Introitus" - }, - { - "body": "Boże, któryś przez Niepokalane Poczęcie Najświętszej Dziewicy przygotował Synowi Swojemu godne mieszkanie, prosimy Cie: ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Przysłów.\n*Prz 8:22-35*\n*Słowa odnoszące się do Mądrości Bożej Kościół stosuje do Najświętszej Dziewic", - "id": "Lectio" - }, - { - "body": "*Jdt 13:23*\nBłogosławiona jesteś, Panno Maryjo, od Pana, Boga, wysokiego, ponad wszystkie niewiasty na ziemi.\n*Jdt 15:10", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-28*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28*\nZdrowaś Maryjo, łaski pełna, Pan z Tobą, błogosławionaś Ty między niewiastami, alleluja.", - "id": "Offertorium" - }, - { - "body": "Przyjmij, Panie, ofiarę zbawienia, którą Tobie składamy w uroczystość Niepokalanego Poczęcia Najświętszej Maryi Panny: j", - "id": "Secreta" - }, - { - "body": "*Prefacja o Najświętszej Maryi Pannie*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie T", - "id": "Prefatio" - }, - { - "body": "*Ps 86:3, Łk 1:49*\nMaryjo, głoszą o Tobie rzeczy pełne chwały, albowiem uczynił Ci wielkie rzeczy, który możny jest.", - "id": "Communio" - }, - { - "body": "Panie Boże nasz, niech Sakrament, który przyjęliśmy, wyleczy nas z ran tego grzechu, od którego w wyjątkowy sposób zacho", - "id": "Postcommunio" - } - ], - "2020-12-09": [ - { - "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", - "id": "Introitus" - }, - { - "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", - "id": "Offertorium" - }, - { - "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", - "id": "Communio" - }, - { - "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", - "id": "Postcommunio" - } - ], - "2020-12-10": [ - { - "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", - "id": "Introitus" - }, - { - "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Melchiadesa, Papieża i Męczennika*\nBoże, któryś przez Niepokalane Poczęcie Najświętszej Dziewicy przygo", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", - "id": "Offertorium" - }, - { - "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Melchiadesa, Papieża i Męczennika*\nPrzyjmij, Panie, ofiarę zbawienia, którą Tobie składamy w uroczystoś", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", - "id": "Communio" - }, - { - "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Melchiadesa, Papieża i Męczennika*\nPanie Boże nasz, niech Sakrament, który przyjęliśmy, wyleczy nas z r", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-11": [ - { - "body": "*J 21:15-17*\nJeśli miłujesz mnie, Szymonie Piotrze, paś baranki moje, paś owce moje.\n*Ps 29:2*\nSławić Cie będę, Panie, b", - "id": "Introitus" - }, - { - "body": "Wiekuisty Pasterzu, wejrzyj łaskawie na Swoją trzodę i otocz ją nieustanną opieką za przyczyną świętego Damazego, Papież", - "id": "Oratio" - }, - { - "body": "*Wspomnienie 2 Niedziela Adwentu*\nPobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięk", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Piotra Apostoła.\n*1 P 5:1-4; 5:10-11*\n*Święty Papież wiernie wypełniając zalecenia św. Piotra,", - "id": "Lectio" - }, - { - "body": "*Ps 106:32; 106:31*\nNiechaj Go sławią ludy w zgromadzeniu, i na zebraniu starców niechaj Go chwalą.\n℣. Niech dzięki czyn", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 16:13-19*\nOnego czasu: Przyszedł Jezus w okolice Cezarei Filipowej ", - "id": "Evangelium" - }, - { - "body": "*Jer 1:9-10*\nOtom dał moje słowa w usta twoje; otom cię dziś postawił nad narodami i nad królestwami, abyś wyrywał i bur", - "id": "Offertorium" - }, - { - "body": "Złożywszy dary, prosimy Cię, Panie, oświeć łaskawie Twój Kościół, by trzodzie Twojej wszędzie sprzyjało powodzenie, a pa", - "id": "Secreta" - }, - { - "body": "*Wspomnienie 2 Niedziela Adwentu*\nDaj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam z", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Mt 16:18*\nTy jesteś Opoką, a na tej opoce zbuduję Kościół mój.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, rządź miłościwie Twoim Kościołem, krzepionym przez święty pokarm, aby pod Twoim możnym panowaniem ro", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie 2 Niedziela Adwentu*\nPosileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-12": [ - { - "body": "*Iz 30:30*\nLudu Syjoński, oto Pan przyjdzie, by zbawić narody; Pan da posłyszeć swój głos pełen chwały i uraduje się ser", - "id": "Introitus" - }, - { - "body": "Pobudź, Panie, serca nasze do gotowania dróg Jednorodzonemu Synowi Twemu, abyśmy dzięki Jego przyjściu mogli Ci służyć o", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 15:4-13*\nBracia: Wszystko, cokolwiek jest napisane, dla naszego", - "id": "Lectio" - }, - { - "body": "*Ps 49:2-3; 49:5*\nZe Syjonu, co pełen ozdoby, Bóg się pojawi.\n℣. Zgromadźcie przed Nim Jego świętych, którzy wśród ofiar", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 11:2-10*\nOnego czasu: Jan usłyszawszy w więzieniu o dziełach Chryst", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", - "id": "Offertorium" - }, - { - "body": "Daj się przejednać o Panie naszymi pokornymi modłami i ofiarami, a ponieważ brak nam zasług, które mogłyby orędować za n", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Bar 5:5; 4:36*\nPowstań Jeruzalem, a stań na miejscu wysokim i obacz wesele, które ci przyjdzie od twego Boga.", - "id": "Communio" - }, - { - "body": "Posileni pokarmem duchowym, pokornie błagamy Cię, Panie, abyś przez uczestnictwo w tej tajemnicy nauczył nas gardzić spr", - "id": "Postcommunio" - } - ], - "2020-12-13": [ - { - "body": "*Flp 4:4-6*\nWeselcie się w Panu zawsze, mówię powtórnie, weselcie się. Skromność wasza niech będzie znana wszystkim ludz", - "id": "Introitus" - }, - { - "body": "Nakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności naszego umysłu łaską Twego nawiedzenia.\nKtóry żyjesz…", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Łucji, Dziewicy i Męczennicy*\nWysłuchaj nas, Boże, nasz Zbawicielu, i spraw, abyśmy radując się z urocz", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-7*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", - "id": "Lectio" - }, - { - "body": "*Ps 79:2; 79:3; 79:2*\nPanie, który siedzisz na Cherubinach, wzbudź Twą potęgę i przyjdź.\n℣. Pasterzu Izraela posłuchaj, ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:19-28*\nOnego czasu: Żydzi z Jerozolimy wysłali do Jana kapłanów i lewi", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nŁaskawym okazałeś się, Panie, dla Twej ziemi, na dobre odmieniłeś los Jakuba: ludowi Twemu darowałeś winę.", - "id": "Offertorium" - }, - { - "body": "Daj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddania. Niech przez nią spełniają się ustanowione przez Ci", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Łucji, Dziewicy i Męczennicy*\nPrzyjmij, Panie, ofiarę, którą lud Tobie oddany składa ku czci Twoich Świ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Iz 35:4*\nRzeczcie bojaźliwym: «Wzmocnijcie się, a nie bójcie się: oto Bóg nasz przyjdzie i zbawi nas».", - "id": "Communio" - }, - { - "body": "Błagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił nas z grzechów i przygotował na zbliżające się święta.\nP", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Łucji, Dziewicy i Męczennicy*\nNasyciłeś, Panie, rodzinę Twoją świętymi darami: wzmacniaj nas za wstawie", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-14": [ - { - "body": "*Flp 4:4-6*\nWeselcie się w Panu zawsze, mówię powtórnie, weselcie się. Skromność wasza niech będzie znana wszystkim ludz", - "id": "Introitus" - }, - { - "body": "Nakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności naszego umysłu łaską Twego nawiedzenia.\nKtóry żyjesz…", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-7*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", - "id": "Lectio" - }, - { - "body": "*Ps 79:2; 79:3; 79:2*\nPanie, który siedzisz na Cherubinach, wzbudź Twą potęgę i przyjdź.\n℣. Pasterzu Izraela posłuchaj, ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:19-28*\nOnego czasu: Żydzi z Jerozolimy wysłali do Jana kapłanów i lewi", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nŁaskawym okazałeś się, Panie, dla Twej ziemi, na dobre odmieniłeś los Jakuba: ludowi Twemu darowałeś winę.", - "id": "Offertorium" - }, - { - "body": "Daj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddania. Niech przez nią spełniają się ustanowione przez Ci", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Iz 35:4*\nRzeczcie bojaźliwym: «Wzmocnijcie się, a nie bójcie się: oto Bóg nasz przyjdzie i zbawi nas».", - "id": "Communio" - }, - { - "body": "Błagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił nas z grzechów i przygotował na zbliżające się święta.\nP", - "id": "Postcommunio" - } - ], - "2020-12-15": [ - { - "body": "*Flp 4:4-6*\nWeselcie się w Panu zawsze, mówię powtórnie, weselcie się. Skromność wasza niech będzie znana wszystkim ludz", - "id": "Introitus" - }, - { - "body": "Nakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności naszego umysłu łaską Twego nawiedzenia.\nKtóry żyjesz…", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-7*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", - "id": "Lectio" - }, - { - "body": "*Ps 79:2; 79:3; 79:2*\nPanie, który siedzisz na Cherubinach, wzbudź Twą potęgę i przyjdź.\n℣. Pasterzu Izraela posłuchaj, ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:19-28*\nOnego czasu: Żydzi z Jerozolimy wysłali do Jana kapłanów i lewi", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nŁaskawym okazałeś się, Panie, dla Twej ziemi, na dobre odmieniłeś los Jakuba: ludowi Twemu darowałeś winę.", - "id": "Offertorium" - }, - { - "body": "Daj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddania. Niech przez nią spełniają się ustanowione przez Ci", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Iz 35:4*\nRzeczcie bojaźliwym: «Wzmocnijcie się, a nie bójcie się: oto Bóg nasz przyjdzie i zbawi nas».", - "id": "Communio" - }, - { - "body": "Błagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił nas z grzechów i przygotował na zbliżające się święta.\nP", - "id": "Postcommunio" - } - ], - "2020-12-16": [ - { - "body": "*Iz 45:8*\nNiebiosa, spuśćcie rosę z góry, a obłoki niech zleją z deszczem Sprawiedliwego. Niech się otworzy ziemia i zro", - "id": "Introitus" - }, - { - "body": "Spraw, prosimy Cię, wszechmogący Boże, aby nadchodząca uroczystość naszego odkupienia przyniosła nam pomoc w życiu docze", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 2:2-5*\nW one dni rzekł Izajasz prorok: I będzie w ostateczne dni przygotowana gó", - "id": "LectioL1" - }, - { - "body": "*Ps 23:7; 23:3; 23:4*\nBramy, podnieście swe szczyty i rozstąpcie się, prastare podwoje, aby mógł wkroczyć Król chwały.\n℣", - "id": "GradualeL1" - }, - { - "body": "Pośpiesz, prosimy Cie, Panie, i nie zwlekaj, lecz ześlij nam potężną pomoc z nieba, aby radość z Twego przyjścia podnios", - "id": "OratioL1" - }, - { - "body": "*Wspomnienie Św. Euzebiusza, Biskupa i Męczennika*\nBoże, co roku uweselasz nas uroczystością świętego Euzebiusza, Twojeg", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 7:10-15*\nW one dni: Rzekł Pan do Achaza, mówiąc: «Proś Pana Boga twego o znak dl", - "id": "Lectio" - }, - { - "body": "*Ps 144:18; 144:21*\nPan jest blisko wszystkich, którzy Go wzywają; wszystkich wzywających Go szczerze.\n℣. Chwałę Pańską ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:26-38*\nOnego czasu: Posłany jest Anioł Gabriel od Boga do miasta g", - "id": "Evangelium" - }, - { - "body": "*Iz 35:4*\nWzmocnijcie się, a nie bójcie się; oto bowiem Bóg nasz wymierzy sprawiedliwość, Bóg sam przyjdzie i zbawi nas.", - "id": "Offertorium" - }, - { - "body": "Racz przyjąć, prosimy Cie, Panie, nasze posty. Niech one nas oczyszczą i uczynią godnymi Twej łaski oraz zawiodą do wiek", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Euzebiusza, Biskupa i Męczennika*\nPoświęć, Panie, złożone Ci dary i za przyczyną świętego Euzebiusza, T", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Iz 7:14*\nOto Panna pocznie i porodzi Syna i nazwą imię Jego Emmanuel.", - "id": "Communio" - }, - { - "body": "Posileni zbawiennym Darem, pokornie błagamy Cię, Panie, aby to, co z radością przyjmujemy, przyniosło nam odnowienie.\nPr", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Euzebiusza, Biskupa i Męczennika*\nPanie, niech ta Komunia oczyści nas z grzechów i za przyczyną święteg", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-17": [ - { - "body": "*Flp 4:4-6*\nWeselcie się w Panu zawsze, mówię powtórnie, weselcie się. Skromność wasza niech będzie znana wszystkim ludz", - "id": "Introitus" - }, - { - "body": "Nakłoń, Panie, ucha Twego ku naszym prośbom i rozjaśnij ciemności naszego umysłu łaską Twego nawiedzenia.\nKtóry żyjesz…", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Filipian.\n*Flp 4:4-7*\nBracia: Weselcie się w Panu zawsze, mówię powtórnie: w", - "id": "Lectio" - }, - { - "body": "*Ps 79:2; 79:3; 79:2*\nPanie, który siedzisz na Cherubinach, wzbudź Twą potęgę i przyjdź.\n℣. Pasterzu Izraela posłuchaj, ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 1:19-28*\nOnego czasu: Żydzi z Jerozolimy wysłali do Jana kapłanów i lewi", - "id": "Evangelium" - }, - { - "body": "*Ps 84:2*\nŁaskawym okazałeś się, Panie, dla Twej ziemi, na dobre odmieniłeś los Jakuba: ludowi Twemu darowałeś winę.", - "id": "Offertorium" - }, - { - "body": "Daj, Panie, abyśmy nieustannie składali Tobie ofiarę naszego oddania. Niech przez nią spełniają się ustanowione przez Ci", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Iz 35:4*\nRzeczcie bojaźliwym: «Wzmocnijcie się, a nie bójcie się: oto Bóg nasz przyjdzie i zbawi nas».", - "id": "Communio" - }, - { - "body": "Błagamy, Panie, łaskawość Twoją: aby ten Boski posiłek oczyścił nas z grzechów i przygotował na zbliżające się święta.\nP", - "id": "Postcommunio" - } - ], - "2020-12-18": [ - { - "body": "*Ps 118:151-152*\nBlisko Ty jesteś, o Panie, a wszystkie nakazy Twe wierne. Poznałem dawniej z rozkazów Twoich, że Ty trw", - "id": "Introitus" - }, - { - "body": "Wzbudź, prosimy Cię, Panie, potęgę Twoją i przyjdź, aby ci, którzy zaufali Twojej dobroci, rychlej zostali wybawieni od ", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 11:1-5*\nTo mówi Pan Bóg: I wyjdzie różdżka z korzenia Jessego, a kwiat z korzeni", - "id": "Lectio" - }, - { - "body": "*Ps 84:8; 84:2*\nOkaż nam, Panie, miłosierdzie Swoje i daj nam Swoje zbawienie.\n℣. Łaskawym okazałeś się, Panie, dla Twej", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 1:39-47*\nOnego czasu: Powstawszy Maryja udała się śpiesznie w okolic", - "id": "Evangelium" - }, - { - "body": "*Ps 84:7-8*\nZwróć się ku nam, Boże, i ożyw nas, a lud Twój rozraduje się w Tobie. Okaż nam, Panie, miłosierdzie Swoje i ", - "id": "Offertorium" - }, - { - "body": "Przyjmij, prosimy Cię, Panie, nasze dary i modlitwy oraz oczyść nas przez niebieskie tajemnice i łaskawie wysłuchaj.\nPrz", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Zch 14:5*\nOto przyjdzie Pan i wraz z Nim wszyscy Święci Jego: i zajaśnieje owego dnia światłość wielka.", - "id": "Communio" - }, - { - "body": "Niech nas odrodzi, o Panie, święta uczta ofiarna, na której pożywamy Twój Sakrament, i po oczyszczeniu ze starej przewin", - "id": "Postcommunio" - } - ], - "2020-12-19": [ - { - "body": "*Ps 79:4; 79:2*\nPrzyjdź i okaż nam Twe oblicze, Panie, który siedzisz na Cherubach, abyśmy byli zbawieni.\n*Ps 79:2*\nPast", - "id": "Introitus" - }, - { - "body": "Boże, Ty widzisz, że cierpimy wskutek naszych nieprawości, racz nas pocieszyć łaską Twego nawiedzenia:\nKtóry żyjesz…", - "id": "Oratio" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 19:20-22*\n*Prorok zapowiada, że poganie poznają prawdziwego Boga i będą Mu służy", - "id": "LectioL1" - }, - { - "body": "*Ps 18:7; 18:2*\nJego wyjście na krańcu nieba się zaczyna, a jego obieg aż po kraniec niebios.\n℣. Niebiosa głoszą chwałę ", - "id": "GradualeL1" - }, - { - "body": "Wszechmogący Boże, od dawna gniecie nas w niewoli jarzmo grzechów; spraw, prosimy, aby nas wyzwoliło upragnione nowe nar", - "id": "OratioL1" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 35:1-7*\n*Prorocza wizja błogosławieństwa czasów mesjańskich. Przyroda bierze udz", - "id": "LectioL2" - }, - { - "body": "*Ps 18:6; 18:7*\nTam słońcu namiot swój wystawił, ono jak oblubieniec wychodzi ze swej komnaty.\n℣. Jego wyjście na krańcu", - "id": "GradualeL2" - }, - { - "body": "Oto zasmucają nas własne złe czyny; prosimy Cię, Panie, napełnij nas radością z przyjścia Jedynego Syna Twojego:\nKtóry z", - "id": "OratioL2" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 40:9-11*\n*Odkupiciel to potężny Bóg, a zarazem troskliwy pasterz.*\nTo mówi Pan: ", - "id": "LectioL3" - }, - { - "body": "*Ps 79:20; 79:3*\nPanie, Boże Zastępów, odnów nas i okaż Twe oblicze, abyśmy byli zbawieni.\n℣. Wzbudź, Panie, Twą potęgę ", - "id": "GradualeL3" - }, - { - "body": "Spraw, prosimy, wszechmocny Boże, aby nadchodząca uroczystość Syna Twego zaradziła naszym brakom w życiu doczesnym i zje", - "id": "OratioL3" - }, - { - "body": "Czytanie z Księgi Proroka Izajasza.\n*Iz 45:1-8*\n*Cyrus, król perski, który uwolnił Izraelitów z niewoli babilońskiej, je", - "id": "LectioL4" - }, - { - "body": "*Ps 79:3,; 79:2; 79:3*\nWzbudź, Panie, Twą potęgę i przyjdź nas zbawić.\n℣. Pasterzu Izraela, posłuchaj: Ty, co jak trzodę", - "id": "GradualeL4" - }, - { - "body": "Prosimy Cię, Panie, wysłuchaj łaskawie modlitwy ludu Twego, a gdy słusznie cierpimy za grzechy nasze, niech nas pocieszy", - "id": "OratioL4" - }, - { - "body": "Czytanie z Księgi Proroka Daniela.\n*Dn 3:49-51*\n*Poważną przeszkodą do zbawienia są nasze namiętności, które wykorzystuj", - "id": "LectioL5" - }, - { - "body": "Boże, któryś złagodził płomień ognia dla trzech młodzieńców, spraw łaskawie, aby nas, sług Twoich, nie pożarł płomień na", - "id": "OratioL5" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tesaloniczan.\n*2 Tes 2:1-8*\n*Oczekiwanie ostatecznego przyjścia Chrystusa na", - "id": "Lectio" - }, - { - "body": "*Ps:79:2-3*\nPasterzu Izraela, posłuchaj: Ty, co jak trzodę wiedziesz ród Józefa.\n℣. Zabłyśnij, który siedzisz na Cheruba", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 3:1-6*\nRoku piętnastego panowania Tyberiusza, gdy Piłat Poncjusz zar", - "id": "Evangelium" - }, - { - "body": "*Zch 9:9*\nRaduj się wielce, córko syjońska! Wołaj radośnie, córko Jeruzalem! Oto do ciebie przychodzi twój Król: On, spr", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdza w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Ps 18:6-7*\n*Słońce wschodzące wśród mroków nocy jest obrazem Chrystusa, który w Eucharystii przychodzi rozproszyć nasze", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, Boże nasz, aby święte tajemnice, które ustanowiłeś dla zapewnienia naszego zbawienia, stały się zbaw", - "id": "Postcommunio" - } - ], - "2020-12-20": [ - { - "body": "*Iz 45:8*\nNiebiosa, spuśćcie rosę z góry, a obłoki niech zleją z deszczem Sprawiedliwego. Niech się otworzy ziemia i zro", - "id": "Introitus" - }, - { - "body": "Wzbudź swą potęgę, prosimy Cię, Panie, i przyjdź, i z wielką siłą pośpiesz nam na pomoc, aby miłosierdzie Twoje, wspomag", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:1-5*\nBracia: Tak niechaj każdy nas uważa za sługi Chryst", - "id": "Lectio" - }, - { - "body": "*Ps 144:18; 144:21*\nPan jest blisko wszystkich, którzy Go wzywają; wszystkich, wzywających Go szczerze.\n℣. Chwałę Pańską", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 3:1-6*\n*Św. Łukasz z wielką ścisłością określa czas wystąpienia Jana", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą; błogosławionaś Ty między niewiastami i błogosławiony owoc żywota Two", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja o Trójcy Przenajświętszej*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tob", - "id": "Prefatio" - }, - { - "body": "*Iz 7:14*\nOto Panna pocznie i porodzi syna i nazwą imię Jego Emmanuel.", - "id": "Communio" - }, - { - "body": "Przyjąwszy Twe dary, prosimy Cię, Panie, aby przez częste uczestnictwo w tym Sakramencie wzrastał w nas jego zbawienny o", - "id": "Postcommunio" - } - ], - "2020-12-21": [ - { - "body": "*Ps 138:17*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n*Ps 13", - "id": "Introitus" - }, - { - "body": "Dozwól nam, prosimy Cię, Panie, ze świętą dumą obchodzić uroczystość św. Tomasza, Twego Apostoła, aby nas zawsze dźwigał", - "id": "Oratio" - }, - { - "body": "*Wspomnienie 4 Niedziela Adwentu*\nWzbudź swą potęgę, prosimy Cię, Panie, i przyjdź, i z wielką siłą pośpiesz nam na pomo", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Efezjan.\n*Ef 2:19-22*\nBracia: Nie jesteście już obcymi i przychodniami, ale ", - "id": "Lectio" - }, - { - "body": "*Ps 138:17-18*\nOgromnie zaszczyceni są w oczach moich przyjaciele Twoi, Boże; na zawsze jest utrwalone ich władanie.\n℣. ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Jana.\n*J 20:24-29*\nOnego czasu: Tomasz, jeden z dwunastu, zwany Didymus, nie był ", - "id": "Evangelium" - }, - { - "body": "*Ps 18:5*\nNa całą ziemię ich głos się rozchodzi i aż po krańce świata ich mowy.", - "id": "Offertorium" - }, - { - "body": "Oddajemy Ci, Panie, dług naszego poddaństwa, kornie błagając, abyś strzegł w nas Swych darów za przyczyną św. Tomasza Ap", - "id": "Secreta" - }, - { - "body": "*Wspomnienie 4 Niedziela Adwentu*\nProsimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbi", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Apostołach*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne błagać Cię pokornie, Panie, Pasterzu wieku", - "id": "Prefatio" - }, - { - "body": "*J 20:27*\nWyciągnij rękę twoją i rozpoznaj miejsce gwoździ, a nie bądź niewiernym, lecz wierzącym.", - "id": "Communio" - }, - { - "body": "Przyjdź nam z pomocą, miłosierny Boże, a za wstawiennictwem św. Tomasza Apostoła strzeż w nas łaskawie Swoich darów.\nPrz", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie 4 Niedziela Adwentu*\nPrzyjąwszy Twe dary, prosimy Cię, Panie, aby przez częste uczestnictwo w tym Sakramenc", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-22": [ - { - "body": "*Iz 45:8*\nNiebiosa, spuśćcie rosę z góry, a obłoki niech zleją z deszczem Sprawiedliwego. Niech się otworzy ziemia i zro", - "id": "Introitus" - }, - { - "body": "Wzbudź swą potęgę, prosimy Cię, Panie, i przyjdź, i z wielką siłą pośpiesz nam na pomoc, aby miłosierdzie Twoje, wspomag", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:1-5*\nBracia: Tak niechaj każdy nas uważa za sługi Chryst", - "id": "Lectio" - }, - { - "body": "*Ps 144:18; 144:21*\nPan jest blisko wszystkich, którzy Go wzywają; wszystkich, wzywających Go szczerze.\n℣. Chwałę Pańską", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 3:1-6*\n*Św. Łukasz z wielką ścisłością określa czas wystąpienia Jana", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą; błogosławionaś Ty między niewiastami i błogosławiony owoc żywota Two", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Iz 7:14*\nOto Panna pocznie i porodzi syna i nazwą imię Jego Emmanuel.", - "id": "Communio" - }, - { - "body": "Przyjąwszy Twe dary, prosimy Cię, Panie, aby przez częste uczestnictwo w tym Sakramencie wzrastał w nas jego zbawienny o", - "id": "Postcommunio" - } - ], - "2020-12-23": [ - { - "body": "*Iz 45:8*\nNiebiosa, spuśćcie rosę z góry, a obłoki niech zleją z deszczem Sprawiedliwego. Niech się otworzy ziemia i zro", - "id": "Introitus" - }, - { - "body": "Wzbudź swą potęgę, prosimy Cię, Panie, i przyjdź, i z wielką siłą pośpiesz nam na pomoc, aby miłosierdzie Twoje, wspomag", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Koryntian.\n*1 Kor 4:1-5*\nBracia: Tak niechaj każdy nas uważa za sługi Chryst", - "id": "Lectio" - }, - { - "body": "*Ps 144:18; 144:21*\nPan jest blisko wszystkich, którzy Go wzywają; wszystkich, wzywających Go szczerze.\n℣. Chwałę Pańską", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 3:1-6*\n*Św. Łukasz z wielką ścisłością określa czas wystąpienia Jana", - "id": "Evangelium" - }, - { - "body": "*Łk 1:28*\nZdrowaś, Maryjo, łaski pełna, Pan z Tobą; błogosławionaś Ty między niewiastami i błogosławiony owoc żywota Two", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, Panie, wejrzyj łaskawie na tę ofiarę, niech nas utwierdzi w Twojej służbie i wyjedna zbawienie.\nPrzez Pana…", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Iz 7:14*\nOto Panna pocznie i porodzi syna i nazwą imię Jego Emmanuel.", - "id": "Communio" - }, - { - "body": "Przyjąwszy Twe dary, prosimy Cię, Panie, aby przez częste uczestnictwo w tym Sakramencie wzrastał w nas jego zbawienny o", - "id": "Postcommunio" - } - ], - "2020-12-24": [ - { - "body": "*Wj 16:6; 16:7*\nDziś poznacie, że przyjdzie Pan i zbawi nas; a rano ujrzycie chwałę Jego.\n*Ps 23:1*\nPana jest ziemia i c", - "id": "Introitus" - }, - { - "body": "Boże, co roku uweselasz nas oczekiwaniem naszego Odkupiciela: dozwól, abyśmy przyjmując radośnie Jednorodzonego Syna Twe", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Rzymian.\n*Rz 1:1-6*\nPaweł, sługa Jezusa Chrystusa, powołany na Apostoła, prz", - "id": "Lectio" - }, - { - "body": "*Wj 16:6; 16:7*\nDziś poznacie, że przyjdzie Pan i zbawi nas; a rano ujrzycie chwałę Jego.\n*Ps 79:2-3*\nPasterzu Izraela, ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 1:18-21*\nGdy poślubiona była Matka Jezusa; Maryja, Józefowi, pierwe", - "id": "Evangelium" - }, - { - "body": "*Ps 23:7*\nBramy, podnieście swe szczyty i rozstąpcie się, prastare podwoje, aby mógł wkroczyć Król chwały.", - "id": "Offertorium" - }, - { - "body": "Obchodząc wigilię chwalebnych narodzin Twojego Syna, prosimy Cię, wszechmogący Boże, abyśmy z radością odebrali Jego wie", - "id": "Secreta" - }, - { - "body": "*Prefacja zwykła*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie składali dziękcz", - "id": "Prefatio" - }, - { - "body": "*Iz 40:5*\nObjawi się chwała Pańska i ujrzy wszelkie ciało zbawienie Boga naszego.", - "id": "Communio" - }, - { - "body": "Prosimy Cię, Panie, niech odnowi nasze życie obchód narodzin Jednorodzonego Syna Twojego, którego niebieska tajemnica na", - "id": "Postcommunio" - } - ], - "2020-12-25": [ - { - "body": "*Ps 2:7*\nPan rzekł do mnie: «Tyś Synem moim, Ja Cię dziś zrodziłem».\n*Ps 2:1*\nDlaczego się burzą narody, czemu ludy knuj", - "id": "Introitus" - }, - { - "body": "Boże, Tyś sprawił, że ta najświętsza noc zajaśniała blaskiem prawdziwej światłości, spraw, prosimy, abyśmy w niebie mogl", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 2:11-15*\nNajmilszy: Okazała się wszystkim ludziom łaska Boga, Zb", - "id": "Lectio" - }, - { - "body": "*Ps 109:3; 109:1*\nPrzy Tobie panowanie od dnia Twych narodzin; w blaskach świętości przed jutrzenką wydałem Cię z łona.\n", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:1-14*\nOnego czasu wydany został dekret przez cesarza Augusta, aby ", - "id": "Evangelium" - }, - { - "body": "*Ps 95:11; 95:13*\nNiech cieszy się niebo i ziemia raduje przed Panem, dlatego że nadchodzi.", - "id": "Offertorium" - }, - { - "body": "Przyjmij łaskawie, o Panie, ofiarę, którą Ci składamy w dzisiejszą uroczystość, abyśmy za łaską Twoją przez tę tajemnicz", - "id": "Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 109:3*\nW blaskach świętości przed jutrzenką wydałem Cię z łona.", - "id": "Communio" - }, - { - "body": "Panie, Boże nasz, z radością uczestniczymy w misteriach narodzenia Pana naszego Jezusa Chrystusa; daj nam, prosimy, abyś", - "id": "Postcommunio" - } - ], - "2020-12-26": [ - { - "body": "*Ps 118:23; 118:86; 118:23*\nZasiedli możni i zmówili się przeciw mnie, niesłusznie mię prześladują. Ty wspomóż mnie, Pan", - "id": "Introitus" - }, - { - "body": "Daj nam, prosimy Cię, Panie, naśladować to, co czcimy, i nauczyć się miłować także nieprzyjaciół; obchodzimy bowiem naro", - "id": "Oratio" - }, - { - "body": "*W Oktawie Narodzenia*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Dziejów Apostolskich.\n*Dz 6:8-10; 7:54-59*\n*Lekcja kreśli obraz idealnej śmierci chrześcijanina, podobnego we", - "id": "Lectio" - }, - { - "body": "*Ps 118:23; 118:86*\nZasiedli możni i zmówili się przeciw mnie, niesłusznie mię prześladują.\n*Ps 6:5*\nTy wspomóż mnie, Pa", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 23:34-39*\nOnego czasu: Mówił Jezus do uczonych w Piśmie i faryzeusz", - "id": "Evangelium" - }, - { - "body": "*Dz 6:5; 7:59*\n*Słowami św. Szczepana ofiarujemy Bogu naszą duszę i całe nasze życie.*\nWybrali Apostołowie diakonem Szcz", - "id": "Offertorium" - }, - { - "body": "Przyjmij, o Panie, dary, które Ci składamy obchodząc pamiątkę Twoich Świętych, a jak męczeństwo zapewniło im chwałę, tak", - "id": "Secreta" - }, - { - "body": "*W Oktawie Narodzenia*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy nas", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Dz 7:56; 7:59-60*\n*Św. Szczepan widział Pana Jezusa po prawicy Bożej. Pan Jezus ukryty pod postaciami sakramentalnymi p", - "id": "Communio" - }, - { - "body": "Przyjęty Sakrament niechaj nas wspomaga, o Panie, i za wstawiennictwem św. Szczepana, Twojego Męczennika, niech nam zape", - "id": "Postcommunio" - }, - { - "body": "*W Oktawie Narodzenia*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosim", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-27": [ - { - "body": "*Mdr 18:14-15*\nGdy wszystko było w głębokim milczeniu, a noc w swym biegu połowy drogi dosięgła, wszechmocne Słowo Twoje", - "id": "Introitus" - }, - { - "body": "Wszechmocny, wieczny Boże, kieruj naszymi czynami według Twojego upodobania, abyśmy\nw Imię umiłowanego Syna Twego mogli ", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Jana, Apostoła i Ewangelisty*\nOświecaj łaskawie Twój Kościół, o Panie, aby dzięki naukom św. Jana, Twoj", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Galatów.\n*Ga 4:1-7*\n*Św. Paweł poucza nas, że Wcielenie Syna Bożego przynios", - "id": "Lectio" - }, - { - "body": "*Ps 44:3; 44:2*\nPostacią Tyś piękniejszy nad synów ludzkich, wdzięk rozlał się na Twoich wargach.\n℣. Z mego serca płynie", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:33-40*\nOnego czasu: Józef i Maryja, Matka Jezusowa, dziwili się te", - "id": "Evangelium" - }, - { - "body": "*Ps 92:1-2*\nBóg okrąg ziemi utwierdził, iż się nie poruszy. Od wieków tron Twój niewzruszony, o Boże, Ty od wieków jeste", - "id": "Offertorium" - }, - { - "body": "Prosimy Cię, wszechmogący Boże, niech dar złożony przed oczyma Twego Majestatu wyjedna nam łaskę dziecięcego oddania się", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Jana, Apostoła i Ewangelisty*\nPrzyjmij, Panie, dary, które Ci składamy w uroczystość św. Jana. Ufamy, ż", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Mt 2:20*\nWeźmij Dziecię i Matkę Jego, a idź do ziemi izraelskiej, pomarli bowiem ci, którzy czyhali na życie Dziecięcia", - "id": "Communio" - }, - { - "body": "Panie, niech działanie tego Sakramentu oczyści nas ze złych skłonności i spełni nasze godziwe pragnienia.\nPrzez Pana…", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Jana, Apostoła i Ewangelisty*\nPokrzepieni niebieskim pokarmem i napojem, błagamy Cię pokornie, Boże nas", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-28": [ - { - "body": "*Ps 8:3*\nZ ust dzieci i niemowląt zgotowałeś sobie chwałę, Boże, wbrew przeciwnikom Twoim.\n*Ps 8:2*\nO Panie, Panie nasz,", - "id": "Introitus" - }, - { - "body": "Boże, święci Młodziankowie obwieścili Twą chwałę nie słowami, lecz śmiercią; racz wyniszczyć w nas wszystkie źródła grze", - "id": "Oratio" - }, - { - "body": "*W Oktawie Narodzenia*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Księgi Apokalipsy świętego Jana Apostoła.\n*Ap 14:1-5*\n*Przytaczając piękną wizję św. Jana, Kościół wskazuje n", - "id": "Lectio" - }, - { - "body": "*Ps 123:7-8*\nDusza nasza niby ptak wyrwała się z sidła łowców.\n℣. Sidło się podarło, a my zostaliśmy uwolnieni. Wspomoże", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Mateusza.\n*Mt 2:13-18*\nOnego czasu: Anioł Pański ukazał się we śnie Józefowi mówi", - "id": "Evangelium" - }, - { - "body": "*Ps 123:7*\nDusza nasza niby ptak wyrwała się z sidła łowców. Sidło się podarło, a my zostaliśmy uwolnieni.", - "id": "Offertorium" - }, - { - "body": "Niechaj nie braknie nam, Panie, pobożnej modlitwy Świętych Twoich: niech ona uczyni miłymi nasze dary, a nam zawsze wyje", - "id": "Secreta" - }, - { - "body": "*W Oktawie Narodzenia*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy nas", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Mt 2:18*\n*Rachel, która opłakiwała zaginionych synów, Józefa i Beniamina, jest symbolem zbolałych matek betlejemskich.*", - "id": "Communio" - }, - { - "body": "Spożyliśmy, Panie, poświęcone Tobie dary. Spraw, prosimy, aby dzięki modlitwom Twoich Świętych przyniosły nam pomoc w ży", - "id": "Postcommunio" - }, - { - "body": "*W Oktawie Narodzenia*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosim", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-29": [ - { - "body": "*Iz 9:6*\n*Liturgia celowo zmieniła nieco tekst wyjęty z Izajasza, aby podkreślić, że Chrystus przychodzi wykonać wielki ", - "id": "Introitus" - }, - { - "body": "Dozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego wyzwoliło nas z jarzma", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Tomasza z Canterbury, Biskupa i Męczennika*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", - "id": "Offertorium" - }, - { - "body": "Uświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy naszych grzechów.\nPrzez te", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Tomasza z Canterbury, Biskupa i Męczennika*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego ", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosimy, aby nam udzielił dar", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Tomasza z Canterbury, Biskupa i Męczennika*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przyw", - "id": "Commemoratio Postcommunio" - } - ], - "2020-12-30": [ - { - "body": "*Iz 9:6*\n*Liturgia celowo zmieniła nieco tekst wyjęty z Izajasza, aby podkreślić, że Chrystus przychodzi wykonać wielki ", - "id": "Introitus" - }, - { - "body": "Dozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego wyzwoliło nas z jarzma", - "id": "Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", - "id": "Offertorium" - }, - { - "body": "Uświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy naszych grzechów.\nPrzez te", - "id": "Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosimy, aby nam udzielił dar", - "id": "Postcommunio" - } - ], - "2020-12-31": [ - { - "body": "*Iz 9:6*\n*Liturgia celowo zmieniła nieco tekst wyjęty z Izajasza, aby podkreślić, że Chrystus przychodzi wykonać wielki ", - "id": "Introitus" - }, - { - "body": "Dozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciele Jednorodzonego Syna Twego wyzwoliło nas z jarzma", - "id": "Oratio" - }, - { - "body": "*Wspomnienie Św. Sylwestra I, papieża i wyznawcy*\nDozwól, prosimy Cię, wszechmogący Boże, aby nowe narodzenie się w ciel", - "id": "Commemoratio Oratio" - }, - { - "body": "Czytanie z Listu świętego Pawła Apostoła do Tytusa.\n*Tt 3:4-7*\nNajmilszy: Okazała się dobroć i łaskawość Boga, Zbawiciel", - "id": "Lectio" - }, - { - "body": "*Ps 97:3; 97:2*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego: radośnie wykrzykujcie Panu, wszystkie ziemie.\n℣. ", - "id": "Graduale" - }, - { - "body": "Ciąg dalszy ☩ Ewangelii świętej według Łukasza.\n*Łk 2:15-20*\nOnego czasu; Mówili pasterze jeden do drugiego: «Pójdźmy aż", - "id": "Evangelium" - }, - { - "body": "*Ps 88:12; 88:15*\nTwoimi są niebiosa, Twoja też jest ziemia: Ty okrąg świata założyłeś i co go napełnia. Podstawą Twego ", - "id": "Offertorium" - }, - { - "body": "Uświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojego i oczyść nas ze zmazy naszych grzechów.\nPrzez te", - "id": "Secreta" - }, - { - "body": "*Wspomnienie Św. Sylwestra I, papieża i wyznawcy*\nUświęć, Panie, złożone dary przez nowe narodzenie Jedynego Syna Twojeg", - "id": "Commemoratio Secreta" - }, - { - "body": "*Prefacja o Bożym Narodzeniu*\nZaprawdę godne to i sprawiedliwe, słuszne i zbawienne, abyśmy zawsze i wszędzie Tobie skła", - "id": "Prefatio" - }, - { - "body": "*Ps 97:3*\nUjrzały wszystkie krańce ziemi zbawienie Boga naszego.", - "id": "Communio" - }, - { - "body": "Wszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam synostwo Boże; spraw, prosimy, aby nam udzielił dar", - "id": "Postcommunio" - }, - { - "body": "*Wspomnienie Św. Sylwestra I, papieża i wyznawcy*\nWszechmogący Boże, narodzony dzisiaj Zbawiciel świata przywrócił nam s", - "id": "Commemoratio Postcommunio" - } - ] -} \ No newline at end of file diff --git a/tests/test_calendar.py b/tests/test_calendar.py index acb2413e..ae9dcc02 100644 --- a/tests/test_calendar.py +++ b/tests/test_calendar.py @@ -7,7 +7,7 @@ from constants import common as c from kalendar.models import Observance -from utils import match +from utils import match_first from tests.conftest import get_missal, HERE language = 'pl' @@ -94,9 +94,13 @@ def test_sancti_shifted(day_id, expected_date): ((1950, 12, 24), [], [c.SANCTI_12_24], []), ((2000, 12, 24), [], [c.SANCTI_12_24], []), # Commemorations + ((2023, 1, 5), [], [c.FERIA], [c.SANCTI_01_05]), + ((2023, 1, 11), [c.TEMPORA_EPI1_3], [c.FERIA], [c.SANCTI_01_11]), + ((2023, 1, 14), [c.TEMPORA_EPI1_6], [c.SANCTI_01_14], [c.SANCTI_01_14C]), + ((2023, 1, 19), [c.TEMPORA_EPI2_4], [c.FERIA], [c.SANCTI_01_19, c.SANCTI_01_19C]), # double commemoration ((2018, 2, 15), [c.TEMPORA_QUADP3_4], [c.TEMPORA_QUADP3_4], [c.SANCTI_02_15]), ((2018, 4, 22), [c.TEMPORA_PASC3_0], [c.TEMPORA_PASC3_0], []), - ((2018, 4, 25), [c.TEMPORA_PASC3_3], [c.SANCTI_04_25], []), # St. Mark, Evangelist + ((2018, 4, 25), [c.TEMPORA_PASC3_3], [c.SANCTI_04_25], [c.SANCTI_04_25C]), # St. Mark, Evangelist ((2018, 5, 10), [c.TEMPORA_PASC5_4], [c.TEMPORA_PASC5_4], []), # Ascension, no comm. ((2018, 5, 19), [c.TEMPORA_PASC6_6], [c.TEMPORA_PASC6_6], []), # Vigil of Pentecost, no comm. ((2018, 5, 21), [c.TEMPORA_PASC7_1], [c.TEMPORA_PASC7_1], []), # Pentecost Octave, no comm. @@ -114,7 +118,7 @@ def test_sancti_shifted(day_id, expected_date): ((2018, 12, 5), [c.TEMPORA_ADV1_3], [c.TEMPORA_ADV1_3], [c.SANCTI_12_05]), ((2018, 12, 10), [c.TEMPORA_ADV2_1], [c.TEMPORA_ADV2_1], [c.SANCTI_12_10]), # Sanctae Mariae Sabbato - ((2019, 1, 5), [], [c.TEMPORA_C_10B], []), + ((2019, 1, 5), [], [c.TEMPORA_C_10B], [c.SANCTI_01_05]), ((2019, 1, 12), [], [c.TEMPORA_C_10B], []), ((2019, 1, 19), [c.TEMPORA_EPI1_6], [c.TEMPORA_C_10B], [c.SANCTI_01_19]), ((2019, 2, 16), [c.TEMPORA_EPI5_6], [c.TEMPORA_C_10C], []), @@ -165,7 +169,7 @@ def test_given_date_contains_proper_day_ids(date_, tempora, celebration, commemo ((2016, 2, 28), [c.SANCTI_02_27]), # leap year ]) def test_given_date_does_not_contain_day_ids(date_, not_expected_day_ids): - assert not match(get_missal(date_[0]).get_day(date(*date_)).all, not_expected_day_ids) + assert not match_first(get_missal(date_[0]).get_day(date(*date_)).all, not_expected_day_ids) @pytest.mark.parametrize("date_,expected_celebration,expected_commemoration", [ @@ -195,11 +199,11 @@ def test_given_date_does_not_contain_day_ids(date_, not_expected_day_ids): ((2019, 3, 19), [c.SANCTI_03_19], [c.TEMPORA_QUAD2_2]), # Lent days win with feasts < 2 class # 2019-03-07 Comm: S. Thomæ de Aquino - ((2019, 3, 7), [c.TEMPORA_QUADP3_4, c.SANCTI_03_07], [c.TEMPORA_QUADP3_4, c.SANCTI_03_07]), + ((2019, 3, 7), [c.TEMPORA_QUADP3_4, c.SANCTI_03_07], [c.SANCTI_03_07, c.TEMPORA_QUADP3_4]), # 2019-03-08 Comm: S. Joannis de Deo - ((2019, 3, 8), [c.TEMPORA_QUADP3_5, c.SANCTI_03_08], [c.TEMPORA_QUADP3_5, c.SANCTI_03_08]), + ((2019, 3, 8), [c.TEMPORA_QUADP3_5, c.SANCTI_03_08], [c.SANCTI_03_08, c.TEMPORA_QUADP3_5]), # 2019-03-09 Comm: S. Franciscæ Viduæ - ((2019, 3, 9), [c.TEMPORA_QUADP3_6, c.SANCTI_03_09], [c.TEMPORA_QUADP3_6, c.SANCTI_03_09]), + ((2019, 3, 9), [c.TEMPORA_QUADP3_6, c.SANCTI_03_09], [c.SANCTI_03_09, c.TEMPORA_QUADP3_6]), # Commemorations (4 class) are only commemorated. In case of no other feast the main celebration is the last Sunday ((2019, 1, 18), [c.FERIA], [c.SANCTI_01_18]), ((2019, 2, 14), [c.FERIA], [c.SANCTI_02_14]), diff --git a/tests/test_propers.py b/tests/test_propers.py index cd3851f5..1565b0a3 100644 --- a/tests/test_propers.py +++ b/tests/test_propers.py @@ -289,19 +289,22 @@ def test_tract_stripped_in_gradual_in_feria_day_using_sunday_proper(date_, strip # S. Thomæ Apostoli, commemoration of Ember Saturday of Advent ((2019, 12, 21), "Da nobis, quǽsumus, Dómine,", "Débitum tibi, Dómine, nostræ", "Adésto nobis, miséricors Deus", "Commemoratio Sabbato", "Deus, qui cónspicis, quia", "Sacrifíciis præséntibus, quǽsumus", "Quǽsumus, Dómine, Deus"), + # Double commemoration + ((2023, 1, 19), "Omnípotens sempitérne Deus", "Oblata, Dómine, múnera", "Augeátur in nobis", + "S. Marii et Soc. Mart.", "Exáudi, Dómine, pópulum tuum", "S. Canuto Regi Mart.", "S. Marii et Soc. Mart."), ]) def test_calculated_commemorations(date_, collect_contains,secreta_contains,postcommunio_contains, comm_collect_sub, comm_collect_contains, comm_secreta_contains, comm_postcommunio_contains): missal = get_missal(date_[0], language) proper_vernacular, proper_latin = missal.get_day(date(*date_)).get_proper()[0] - assert collect_contains in proper_latin.get_section(ORATIO).body[0] - assert comm_collect_contains in proper_latin.get_section(COMMEMORATED_ORATIO).body[1] - assert comm_collect_sub in proper_latin.get_section(COMMEMORATED_ORATIO).body[0] - assert secreta_contains in proper_latin.get_section(SECRETA).body[0] - assert comm_secreta_contains in proper_latin.get_section(COMMEMORATED_SECRETA).body[1] - assert postcommunio_contains in proper_latin.get_section(POSTCOMMUNIO).body[0] - assert comm_postcommunio_contains in proper_latin.get_section(COMMEMORATED_POSTCOMMUNIO).body[1] + assert collect_contains in proper_latin.get_section(ORATIO).serialize()["body"] + assert comm_collect_contains in proper_latin.get_section(COMMEMORATED_ORATIO).serialize()["body"] + assert comm_collect_sub in proper_latin.get_section(COMMEMORATED_ORATIO).serialize()["body"] + assert secreta_contains in proper_latin.get_section(SECRETA).serialize()["body"] + assert comm_secreta_contains in proper_latin.get_section(COMMEMORATED_SECRETA).serialize()["body"] + assert postcommunio_contains in proper_latin.get_section(POSTCOMMUNIO).serialize()["body"] + assert comm_postcommunio_contains in proper_latin.get_section(COMMEMORATED_POSTCOMMUNIO).serialize()["body"] @pytest.mark.parametrize("date_,introit,collect,lectio,gradual,evangelium,offertorium,secreta,communio,postcommunio", [ @@ -363,41 +366,49 @@ def test_multiple_celebrations_with_multiple_commemorations(date_, prop1_commemo def _get_proper_fixtures(fixture): with open(os.path.join(HERE, 'fixtures/{}'.format(fixture))) as fh: return list(json.load(fh).items()) - # return list(json.load(fh).items())[165:166] -@pytest.mark.parametrize("strdate,expected_sections", _get_proper_fixtures("propers_pl_2020.json")) -def test_all_propers_polish(strdate, expected_sections): - missal = get_missal(2020, 'pl') - day = missal.get_day(date(*[int(i) for i in strdate.split('-')])) +@pytest.mark.parametrize("strdate,expected_sections", _get_proper_fixtures("propers_la.json")) +def test_all_propers_latin(strdate, expected_sections): + """ + We test propers for two years (one with early Easter and one with late Easter) to make sure most + of the variants are covered. For example in one year there's a Sunday on certain day which supersede + saint's feast, so we want to test this day from the other year to make sure that the latter feast + is covered as well. + """ + strdate_bits = [int(i) for i in strdate.split('-')] + missal = get_missal(strdate_bits[0], 'pl') + day = missal.get_day(date(*strdate_bits)) tempora_name = day.get_tempora_name() - proper, _ = day.get_proper()[0] + _, proper = day.get_proper()[0] proper_serialized = proper.serialize() for i, expected_section in enumerate(expected_sections): assert expected_section['id'] == proper_serialized[i]['id'],\ - f'polish {tempora_name or proper.title}/{strdate}/{expected_section["id"]}' + f'latin {tempora_name or proper.title}/{strdate}/{expected_section["id"]}' assert expected_section['body'] in proper_serialized[i]['body'],\ - f'polish {tempora_name or proper.title}/{strdate}/{expected_section["id"]}' + f'latin {tempora_name or proper.title}/{strdate}/{expected_section["id"]}' -@pytest.mark.parametrize("strdate,expected_sections", _get_proper_fixtures("propers_la_2020.json")) -def test_all_propers_latin(strdate, expected_sections): - missal = get_missal(2020, 'pl') - day = missal.get_day(date(*[int(i) for i in strdate.split('-')])) +@pytest.mark.parametrize("strdate,expected_sections", _get_proper_fixtures("propers_pl.json")) +def test_all_propers_polish(strdate, expected_sections): + strdate_bits = [int(i) for i in strdate.split('-')] + missal = get_missal(strdate_bits[0], 'pl') + day = missal.get_day(date(*strdate_bits)) tempora_name = day.get_tempora_name() - _, proper = day.get_proper()[0] + proper, _ = day.get_proper()[0] proper_serialized = proper.serialize() for i, expected_section in enumerate(expected_sections): assert expected_section['id'] == proper_serialized[i]['id'],\ - f'latin {tempora_name or proper.title}/{strdate}/{expected_section["id"]}' + f'polish {tempora_name or proper.title}/{strdate}/{expected_section["id"]}' assert expected_section['body'] in proper_serialized[i]['body'],\ - f'latin {tempora_name or proper.title}/{strdate}/{expected_section["id"]}' + f'polish {tempora_name or proper.title}/{strdate}/{expected_section["id"]}' -@pytest.mark.parametrize("strdate,expected_sections", _get_proper_fixtures("propers_en_2020.json")) +@pytest.mark.parametrize("strdate,expected_sections", _get_proper_fixtures("propers_en.json")) def test_all_propers_english(strdate, expected_sections): - missal = get_missal(2020, 'en') - day = missal.get_day(date(*[int(i) for i in strdate.split('-')])) + strdate_bits = [int(i) for i in strdate.split('-')] + missal = get_missal(strdate_bits[0], 'en') + day = missal.get_day(date(*strdate_bits)) tempora_name = day.get_tempora_name() proper, _ = day.get_proper()[0] proper_serialized = proper.serialize() diff --git a/tests/util.py b/tests/util.py index 9bb3c5e3..423ef2b4 100644 --- a/tests/util.py +++ b/tests/util.py @@ -4,29 +4,68 @@ from conftest import get_missal -year = 2020 +year_early_easter = 2024 # March 31 +year_late_easter = 2025 # April 20 - -def generate_propers_fixtures(year: int, language: str): +def get_dates(year): + dates = [] dt = datetime.date(year, 1, 1) - coll = defaultdict(list) - missal = get_missal(year, language if language != "la" else "pl") while dt.year == year: - print(dt) + dates.append(dt) + dt += datetime.timedelta(days=1) + return dates + +dates = get_dates(year_early_easter) +dates.extend(get_dates(year_late_easter)) + + +def generate_propers_fixtures(dates: list[datetime.date], language: str): + coll = defaultdict(list) + for dt in dates: + strdt = dt.strftime("%Y-%m-%d") + print(f"{language}/{strdt}") + missal = get_missal(dt.year, language if language != "la" else "pl") day = missal.get_day(dt) if language == "la": _, proper = day.get_proper()[0] else: proper, _ = day.get_proper()[0] - strdt = dt.strftime("%Y-%m-%d") srlzd = proper.serialize() for section in srlzd: coll[strdt].append({"id": section["id"], "body": section["body"][:120]}) - dt += datetime.timedelta(days=1) - with open(f'fixtures/propers_{language}_{year}.json', 'w') as fh: + with open(f'fixtures/propers_{language}.json', 'w') as fh: json.dump(coll, fh, indent=2, sort_keys=True, ensure_ascii=False) +def compare_years(y1, y2, lang): + """ + Prints out nice comparison of two years in tabular format + + 1-14 | Sunday II Sunday after Epiphany | Tuesday St. Hilary + 1-15 | Monday St. Paul, the First Hermit | Wednesday St. Paul, the First Hermit + 1-16 | Tuesday St. Marcellus I | Thursday St. Marcellus I + 1-17 | Wednesday St. Anthony | Friday St. Anthony + 1-18 | Thursday Feria | Saturday II Mass of the B. V. M. – Vultum Tuum + """ + collection = [] + missal1 = get_missal(y1, lang) + missal2 = get_missal(y2, lang) + for dt, day in missal1.items(): + try: + dt2 = datetime.date(y2, dt.month, dt.day) + day2 = missal2.get_day(dt2) + collection.append([f"{dt.month}-{dt.day}", + dt.strftime("%A"), + day.celebration[0].title, + dt2.strftime("%A"), + day2.celebration[0].title]) + except ValueError as e: + pass + for c in collection: + print(f"{c[0].ljust(6)} | {c[1].ljust(10)} {c[2][:40].ljust(42)} | {c[3].ljust(10)} {c[4][:40].ljust(42)}") + + if __name__ == "__main__": + # compare_years(2024, 2025, "en") for l in ['la', 'pl', 'en']: - generate_propers_fixtures(year, l) + generate_propers_fixtures(dates, l)