Skip to content

Commit 9af3294

Browse files
authoredMar 19, 2025··
rename language file and register aliases (#262)
1 parent 4ddb59a commit 9af3294

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 
File renamed without changes.

‎src/lib/i18n.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ export const initLang = async () => {
2626
register("pl", () => import("../i18n/pl.json"));
2727
register("nl", () => import("../i18n/nl.json"));
2828
register("vi", () => import("../i18n/vi.json"));
29-
register("nb_NO", () => import("../i18n/nb_NO.json"));
29+
register("no", () => import("../i18n/nb.json"));
30+
register("nb", () => import("../i18n/nb.json"));
31+
register("nn", () => import("../i18n/nb.json"));
3032

3133
await init({
3234
fallbackLocale: defaultLocale,

0 commit comments

Comments
 (0)
Please sign in to comment.