feat(i18n): added nb-NO (Norwegian) (#1795)

This commit is contained in:
Jon Erling Hustadnes
2025-02-27 22:33:15 +01:00
committed by GitHub
parent 4901472aa8
commit 9b47279fe6
2 changed files with 86 additions and 0 deletions

View File

@ -25,6 +25,7 @@ import tr from "./locales/tr-TR"
import th from "./locales/th-TH"
import lt from "./locales/lt-LT"
import fi from "./locales/fi-FI"
import no from "./locales/nb-NO"
export const TRANSLATIONS = {
"en-US": enUs,
@ -74,6 +75,7 @@ export const TRANSLATIONS = {
"th-TH": th,
"lt-LT": lt,
"fi-FI": fi,
"nb-NO": no,
} as const
export const defaultTranslation = "en-US"