From 38b69297f49b8d315fad4c27458d5d8117644da1 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Fri, 18 Aug 2023 00:27:55 +0200 Subject: [PATCH] Add new languages to resources (#409) --- src/i18n/translations.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/i18n/translations.ts b/src/i18n/translations.ts index 11502c51..a90dfb28 100644 --- a/src/i18n/translations.ts +++ b/src/i18n/translations.ts @@ -17,6 +17,7 @@ import ja from '@/i18n/locale/ja.json'; import ko from '@/i18n/locale/ko.json'; import pt from '@/i18n/locale/pt.json'; import uk from '@/i18n/locale/uk.json'; +import vi from '@/i18n/locale/vi.json'; import zh_Hans from '@/i18n/locale/zh_Hans.json'; import zh_Hant from '@/i18n/locale/zh_Hant.json'; @@ -40,6 +41,7 @@ const resources = { ko: translationHelper(ko), pt: translationHelper(pt), uk: translationHelper(uk), + vi: translationHelper(vi), 'zh-Hans': translationHelper(zh_Hans), 'zh-Hant': translationHelper(zh_Hant), } as const;