This is an automated email from the ASF dual-hosted git repository. young pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git
The following commit(s) were added to refs/heads/master by this push: new fd6a06929 feat(i18n): fallback to en when i18n is incomplete (#3165) fd6a06929 is described below commit fd6a0692922b464afbee9242deb05f018d77b913 Author: YYYoung <isk...@outlook.com> AuthorDate: Tue Aug 12 12:13:15 2025 +0800 feat(i18n): fallback to en when i18n is incomplete (#3165) --- src/config/i18n.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/i18n.ts b/src/config/i18n.ts index dfe594841..999806220 100644 --- a/src/config/i18n.ts +++ b/src/config/i18n.ts @@ -37,6 +37,7 @@ i18n.use(initReactI18next).init({ ns: ['common'], defaultNS, resources, + fallbackLng: 'en', }); export default i18n;