feat(i18n): add Finnish translations for i18n (#1782)

This commit is contained in:
Suamppa
2025-02-25 23:27:32 +02:00
committed by GitHub
parent 5794405974
commit 1a02642469
2 changed files with 86 additions and 0 deletions

View File

@ -24,6 +24,7 @@ import cs from "./locales/cs-CZ"
import tr from "./locales/tr-TR"
import th from "./locales/th-TH"
import lt from "./locales/lt-LT"
import fi from "./locales/fi-FI"
export const TRANSLATIONS = {
"en-US": enUs,
@ -72,6 +73,7 @@ export const TRANSLATIONS = {
"tr-TR": tr,
"th-TH": th,
"lt-LT": lt,
"fi-FI": fi,
} as const
export const defaultTranslation = "en-US"