Files
homepage/src/params/fitnessMeasure.ts
Alexander Bocken f5420badc1
All checks were successful
CI / update (push) Successful in 2m4s
fitness: add bilingual EN/DE support for all fitness routes and components
Use SvelteKit param matchers for bilingual URL routing (e.g. /fitness/stats
and /fitness/statistik). Add centralized i18n module with translation
dictionary, language detection from URL, and path conversion utilities.
Translate all UI text across pages, components, and navigation.
2026-03-22 21:25:03 +01:00

6 lines
154 B
TypeScript

import type { ParamMatcher } from '@sveltejs/kit';
export const match: ParamMatcher = (param) => {
return param === 'measure' || param === 'messen';
};