From ed2edf2008e82500bc33b3c22d4bfc07f42cda5c Mon Sep 17 00:00:00 2001 From: Devaansh Bhandari <107868772+brf153@users.noreply.github.com> Date: Fri, 22 Dec 2023 21:11:50 +0530 Subject: [PATCH] feat(i18n): Add Hungarian language (#5417) Signed-off-by: brf153 <153hsb@gmail.com> Co-authored-by: Diego Mello --- app/i18n/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/i18n/index.ts b/app/i18n/index.ts index aa2fdb8ba..c9a2d4bf3 100644 --- a/app/i18n/index.ts +++ b/app/i18n/index.ts @@ -60,6 +60,12 @@ export const LANGUAGES: ILanguage[] = [ file: () => require('./locales/hi-IN.json') }, + { + label: 'Hungarian', + value: 'hu', + file: () => require('./locales/hu.json') + }, + { label: 'Italiano', value: 'it',