Enhance localization support; update error messages and add translations for adventure calendar

This commit is contained in:
Sean Morley
2024-12-14 09:56:12 -05:00
parent 9bf0849b92
commit 0376709325
17 changed files with 212 additions and 68 deletions

View File

@@ -7,6 +7,7 @@
import TimeGrid from '@event-calendar/time-grid';
// @ts-ignore
import DayGrid from '@event-calendar/day-grid';
import { t } from 'svelte-i18n';
export let data: PageData;
@@ -20,6 +21,6 @@
};
</script>
<h1 class="text-center text-2xl font-bold">Adventure Calendar</h1>
<h1 class="text-center text-2xl font-bold">{$t('adventures.adventure_calendar')}</h1>
<Calendar {plugins} {options} />