// Base catalog — the source of truth. Every other locale (de.ts) mirrors // these keys EXACTLY; `defineLocale()` enforces that at `tsc`. // // The doc pages are keyed by SLUG (stable across locales — the URL structure // is the same, only the /de prefix differs); the per-locale title + body come // from these `docs.*` entries. Keep ICU placeholders (`{project}`, `{slug}`) // + rich-text tags (``) identical across locales. import { defineCatalog } from '@voltro/i18n' export default defineCatalog({ 'nav.home': 'Home', 'nav.language': 'Language', // `{project}` is the scaffold-substituted app name, passed as a value. 'home.title': '{project} docs', 'docs.getting-started.title': 'Getting started', 'docs.getting-started.body': 'Welcome to the {{capProjectName}} docs.', 'docs.first-page.title': 'Your first page', 'docs.first-page.body': 'Drop a `*.tsx` file into src/pages/.', 'docs.notFound.title': 'Not found', 'docs.notFound.body': 'No doc at {slug}.', 'meta.home.title': 'Documentation', 'meta.home.description': 'A bilingual documentation site built with Voltro — English at the bare path, German under /de.', 'meta.docs.description': 'Reference documentation, pre-rendered per locale as static HTML.', } as const)