import { defineAstroI18nConfig } from "astro-i18n" export default defineAstroI18nConfig({ primaryLocale: "en", // default app locale secondaryLocales: ["de"], // other supported locales fallbackLocale: "en", // fallback locale (on missing translation) trailingSlash: "never", // "never" or "always" run: "client+server", //"client+server" or "server" showPrimaryLocale: false, // "/en/about" vs "/about" translationLoadingRules: [], // per page group loading translationDirectory: {}, // translation directory names translations: {}, // { [translation_group1]: { [locale1]: {}, ... } } routes: { de: { about: "ueber-uns", join: "jetzt-spielen", imprint: "impressum", "code-of-conduct": "verhaltensrichtlinien", rules: "regeln", } }, // { [secondary_locale1]: { about: "about-translated", ... } } })