Files
Website/astro-i18n.config.ts
Chaoscaot 75f1a6528b
All checks were successful
SteamWarCI Build successful
Refactor authentication and implement password reset.
2025-02-17 18:29:17 +01:00

28 lines
851 B
TypeScript

import { defineAstroI18nConfig } from "astro-i18n";
export default defineAstroI18nConfig({
primaryLocale: "de",
secondaryLocales: ["en"],
fallbackLocale: "de",
trailingSlash: "never",
run: "client+server",
showPrimaryLocale: false,
translationLoadingRules: [],
translationDirectory: {},
translations: {},
routes: {
en: {
"jetzt-spielen": "join",
impressum: "imprint",
verhaltensrichtlinien: "code-of-conduct",
regeln: "rules",
rangliste: "ranked",
"haeufige-fragen": "faq",
statistiken: "stats",
ankuendigungen: "announcements",
datenschutzerklaerung: "privacy-policy",
"passwort-zuruecksetzen": "reset-password",
"passwort-setzen": "set-password",
},
},
});