Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 557f609

Browse files
committed
i18n: Fix warning about missing dev language
1 parent 84c535a commit 557f609

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/public/app/services/i18n.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ await i18next
66
.use(i18nextHttpBackend)
77
.init({
88
lng: "en",
9+
fallbackLng: "en",
910
debug: true,
1011
backend: {
1112
loadPath: `/${window.glob.assetPath}/translations/{{lng}}/{{ns}}.json`
12-
}
13+
}
1314
});
1415

1516
export const t = i18next.t;

0 commit comments

Comments
 (0)