Configuration
Default configuration keys for @quik/i18n. See Config Keys and Environment Variables for the full generated table.
i18n.default(default"en") is the languageQI18nuses when no language is requested explicitly.i18n.fallback(default"en") is the languageQI18nfalls back to when a key is missing in the requested language.i18n.supported/i18n.preload(defaultde,en,es,fr,it,nl,pt,ro) list the languagesQI18naccepts and preloads.i18n.cookie(default"quik:lang") names the cookie used bysetupHttpEngine()'s language detector to persist the resolved language.i18n.debugenablesi18nextdebug logging duringsetup().
Resolving translations
getI18n() (from @quik/core) returns the active IQI18n instance. If @quik/i18n has not been registered, it
returns a no-op default implementation whose translate() returns the key unchanged — register @quik/i18n to get
real translation, fallback, and interpolation behavior.