From 0ef327fb61fcba70c4cc609047952923b06f071f Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 16 Oct 2024 04:16:48 -0400 Subject: [PATCH] Adding nynorsk language. (#409) --- src/shared/i18next.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shared/i18next.ts b/src/shared/i18next.ts index 0b2b64f..597c2e3 100644 --- a/src/shared/i18next.ts +++ b/src/shared/i18next.ts @@ -18,6 +18,7 @@ import { it } from "./translations/it"; import { ja } from "./translations/ja"; import { ko } from "./translations/ko"; import { nb_NO } from "./translations/nb_NO"; +import { nn } from "./translations/nn"; import { nl } from "./translations/nl"; import { pl } from "./translations/pl"; import { pt } from "./translations/pt"; @@ -43,6 +44,7 @@ export const LANGUAGES = [ { resource: ja, code: "ja", name: "日本語" }, { resource: ko, code: "ko", name: "한국어" }, { resource: nb_NO, code: "nb-NO", name: "Norsk (bokmål)" }, + { resource: nn, code: "nn", name: "nynorsk" }, { resource: nl, code: "nl", name: "Nederlands" }, { resource: pl, code: "pl", name: "Polski" }, { resource: pt, code: "pt", name: "Português" },