Website/astro-i18n.config.ts

21 Zeilen
747 B
TypeScript

2023-10-12 21:02:57 +02:00
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: "server", //"client+server" or "server"
showPrimaryLocale: false, // "/en/about" vs "/about"
translationLoadingRules: [], // per page group loading
translationDirectory: {
i18n: "i18n",
}, // translation directory names
translations: {}, // { [translation_group1]: { [locale1]: {}, ... } }
routes: {
de: {
about: "ueber-uns",
join: "jetzt-spielen"
}
}, // { [secondary_locale1]: { about: "about-translated", ... } }
})