i18n: add Hungarian translations (#1023)

* add Hungarian translations

* typo: _ instead of - in hu-HU

* run prettier

* revert prettier messing up tsconfig

* Update hu-HU.ts
This commit is contained in:
Kun-Szabó Kristóf
2024-03-24 17:35:07 +01:00
committed by GitHub
parent 85a737b4ee
commit 6efc4dd724
2 changed files with 83 additions and 0 deletions

View File

@ -13,6 +13,7 @@ import ru from "./locales/ru-RU"
import ko from "./locales/ko-KR"
import zh from "./locales/zh-CN"
import vi from "./locales/vi-VN"
import hu from "./locales/hu-HU"
export const TRANSLATIONS = {
"en-US": en,
@ -50,6 +51,7 @@ export const TRANSLATIONS = {
"ko-KR": ko,
"zh-CN": zh,
"vi-VN": vi,
"hu-HU": hu,
} as const
export const defaultTranslation = "en-US"