forked from yassinedoghri/astro-i18next
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: move astro-i18next config in a standalone file to load it for C…
…LI commands update config properties for consistency BREAKING CHANGE: config is now a standalone file + some property names have changed for better clarity and consistency - `baseLocale` is now `defaultLanguage` - `supportedLocales` is now `supportedLanguages``
- Loading branch information
1 parent
02ddb76
commit bdf2408
Showing
14 changed files
with
870 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export default { | ||
defaultLanguage: "en", | ||
supportedLanguages: ["en", "fr"], | ||
i18next: { | ||
debug: true, | ||
initImmediate: false, | ||
backend: { | ||
loadPath: "./src/locales/{{lng}}.json", | ||
}, | ||
}, | ||
i18nextPlugins: { fsBackend: "i18next-fs-backend" }, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.