--- import translate from '$i18n/translate'; import tSite from '$i18n/translations/site'; import { getLocaleFromPathOrThrow } from '$lib/getLocaleFromPath'; import type { Contribution } from '$types/LallansIssue'; interface Props { contributions: Contribution[]; } const { contributions } = Astro.props; const locale = getLocaleFromPathOrThrow(Astro.url.pathname); const t = translate(locale); ---

Contributions