You can define custom rules for any locale. Just make sure you return an array containing all locales.
// Default the Wookie locale to English.
i18n.locales.register("wk", (_i18n, locale) => {
return ["en"];
});
The locale's name.
The locale resolver strategy.
Generated using TypeDoc
Return a list of all locales that must be tried before returning the missing translation message. By default, this will consider the inline option, current locale and fallback locale.