diff --git a/package.json b/package.json index 2c2d819..f3cb1e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "homepage", - "version": "1.32.0", + "version": "1.32.1", "private": true, "type": "module", "scripts": { diff --git a/src/routes/[faithLang=faithLang]/+page.svelte b/src/routes/[faithLang=faithLang]/+page.svelte index 38f8518..74c8ff6 100644 --- a/src/routes/[faithLang=faithLang]/+page.svelte +++ b/src/routes/[faithLang=faithLang]/+page.svelte @@ -7,6 +7,7 @@ const isLatin = $derived(data.lang === 'la'); const prayersPath = $derived(isLatin ? 'orationes' : isEnglish ? 'prayers' : 'gebete'); const rosaryPath = $derived(isLatin ? 'rosarium' : isEnglish ? 'rosary' : 'rosenkranz'); + const calendarPath = $derived(isLatin ? 'calendarium' : isEnglish ? 'calendar' : 'kalender'); const eastertide = isEastertide(); const labels = $derived({ @@ -14,10 +15,11 @@ description: isLatin ? 'Hic invenies orationes et rosarium interactivum fidei catholicae.' : isEnglish - ? 'Here you will find some prayers and an interactive rosary for the Catholic faith. A focus on Latin and the Tridentine rite will be noticeable.' - : 'Hier findet man einige Gebete und einen interaktiven Rosenkranz zum katholischen Glauben. Ein Fokus auf Latein und den tridentinischen Ritus wird zu bemerken sein.', + ? 'Here you will find some prayers and an interactive rosary for the Catholic faith. A focus on Latin and the older rite will be noticeable.' + : 'Hier findet man einige Gebete und einen interaktiven Rosenkranz zum katholischen Glauben. Ein Fokus auf Latein und den alten Ritus wird zu bemerken sein.', prayers: isLatin ? 'Orationes' : isEnglish ? 'Prayers' : 'Gebete', - rosary: isLatin ? 'Rosarium Vivum' : isEnglish ? 'Rosary' : 'Rosenkranz' + rosary: isLatin ? 'Rosarium Vivum' : isEnglish ? 'Rosary' : 'Rosenkranz', + calendar: isLatin ? 'Calendarium' : isEnglish ? 'Calendar' : 'Kalender' }); @@ -126,4 +128,8 @@