Bulk-author nameLa for all 299 remaining saints, close bilingual header backlog
Deploy / deploy (push) Successful in 1m31s

Authors a real Latin nameLa for every saint in src/data/calendar/saints/
except the deliberate example-confessor placeholder (standard
ecclesiastical Latin forms, a lighter sourcing bar than this app's usual
reference-engine verification -- flagged for future spot-check). Fixes a
real mechanism bug found in the process: calendar/index.ts's sanctoral
collision-resolution branch was dropping nameLa for any saint that won
after beating another same-day candidate. Updates ~180 pre-existing test
fixtures across the calendar suite for the new field.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01EwsZQMjALCvy7u9tFDWmuQ
This commit is contained in:
2026-08-31 06:44:10 -04:00
parent a6261f044a
commit 514300821a
321 changed files with 460 additions and 70 deletions
@@ -23,6 +23,7 @@ describe('applyChristmasOctaveSunday', () => {
kind: 'sanctoral',
id: 'st-stephen-protomartyr',
name: 'St. Stephen, Protomartyr',
nameLa: 'Sanctus Stephanus, Protomartyr',
rank: 'duplex-2-classis',
});
// The now-redundant "Octave of St. Stephen" commemoration (which
@@ -47,6 +48,7 @@ describe('applyChristmasOctaveSunday', () => {
kind: 'sanctoral',
id: 'st-john-apostle',
name: 'St. John, Apostle and Evangelist',
nameLa: 'Sanctus Joannes, Apostolus et Evangelista',
rank: 'duplex-2-classis',
});
expect(dec30.commemorations.some((c) => c.kind === 'octave' && c.id === 'st-john-apostle')).toBe(false);
@@ -61,6 +63,7 @@ describe('applyChristmasOctaveSunday', () => {
kind: 'sanctoral',
id: 'holy-innocents',
name: 'The Holy Innocents, Martyrs',
nameLa: 'Sancti Innocentes, Martyres',
rank: 'duplex-2-classis',
});
expect(dec30.commemorations.some((c) => c.kind === 'octave' && c.id === 'holy-innocents')).toBe(false);
@@ -75,6 +78,7 @@ describe('applyChristmasOctaveSunday', () => {
kind: 'sanctoral',
id: 'st-thomas-becket',
name: 'St. Thomas of Canterbury, Bishop and Martyr',
nameLa: 'Sanctus Thomas Cantuariensis, Episcopus et Martyr',
rank: 'duplex',
});
});
@@ -99,12 +103,14 @@ describe('applyChristmasOctaveSunday', () => {
kind: 'sanctoral',
id: 'st-stephen-protomartyr',
name: 'St. Stephen, Protomartyr',
nameLa: 'Sanctus Stephanus, Protomartyr',
rank: 'duplex-2-classis',
});
expect(resolveDay('2029-12-29').winner).toEqual({
kind: 'sanctoral',
id: 'st-thomas-becket',
name: 'St. Thomas of Canterbury, Bishop and Martyr',
nameLa: 'Sanctus Thomas Cantuariensis, Episcopus et Martyr',
rank: 'duplex',
});
});