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
+9 -1
View File
@@ -11,6 +11,7 @@ describe('October sanctoral pull (first pass)', () => {
kind: 'sanctoral',
id: 'ss-placid-and-companions',
name: 'Ss. Placid and Companions, Martyrs',
nameLa: 'Sanctus Placidus et Socii, Martyres',
rank: 'duplex-2-classis',
});
expect(day.commemorations).toEqual([]);
@@ -22,10 +23,11 @@ describe('October sanctoral pull (first pass)', () => {
kind: 'sanctoral',
id: 'st-justina',
name: 'St. Justina, Virgin and Martyr',
nameLa: 'Sancta Justina, Virgo et Martyr',
rank: 'duplex',
});
expect(day.commemorations).toEqual([
{ kind: 'sanctoral', id: 'st-marcus', name: 'St. Marcus, Pope and Confessor', rank: 'simplex' },
{ kind: 'sanctoral', id: 'st-marcus', name: 'St. Marcus, Pope and Confessor', nameLa: 'Sanctus Marcus, Papa et Confessor', rank: 'simplex' },
]);
});
@@ -35,6 +37,7 @@ describe('October sanctoral pull (first pass)', () => {
kind: 'sanctoral',
id: 'st-gall',
name: 'St. Gall, Abbot',
nameLa: 'Sanctus Gallus, Abbas',
rank: 'duplex',
});
expect(day.commemorations).toEqual([]);
@@ -46,6 +49,7 @@ describe('October sanctoral pull (first pass)', () => {
kind: 'sanctoral',
id: 'st-luke',
name: 'St. Luke, Evangelist',
nameLa: 'Sanctus Lucas, Evangelista',
rank: 'duplex-2-classis',
});
expect(getDayCollect(day).status.en).toBe('verified');
@@ -58,12 +62,14 @@ describe('October sanctoral pull (first pass)', () => {
kind: 'sanctoral',
id: 'vigil-of-ss-simon-and-jude',
name: 'Vigil of Ss. Simon and Jude',
nameLa: 'Vigilia Sanctorum Simonis et Judæ',
rank: 'vigil',
});
expect(day.winner).toEqual({
kind: 'sanctoral',
id: 'ss-simon-and-jude',
name: 'Ss. Simon and Jude, Apostles',
nameLa: 'Sancti Simon et Judas, Apostoli',
rank: 'duplex-2-classis',
});
expect(getDayCollect(day).status.en).toBe('verified');
@@ -76,6 +82,7 @@ describe('October sanctoral pull (first pass)', () => {
kind: 'sanctoral',
id: 'vigil-of-all-saints',
name: 'Vigil of All Saints',
nameLa: 'Vigilia Omnium Sanctorum',
rank: 'vigil',
});
expect(getDayCollect(vigil).status.en).toBe('verified');
@@ -83,6 +90,7 @@ describe('October sanctoral pull (first pass)', () => {
kind: 'sanctoral',
id: 'all-saints',
name: 'All Saints',
nameLa: 'Omnes Sancti',
rank: 'duplex-1-classis',
});
});