From d8282e9a4db297bbeed8ddc89f606cd98cf930d3 Mon Sep 17 00:00:00 2001 From: Jordan Jones Date: Fri, 29 Mar 2024 12:15:50 -0500 Subject: [PATCH] feat(lang): enable bulgarian lang --- src/pages/_app.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index ceb5734ecb..403eb7c08c 100644 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -28,6 +28,8 @@ const loadLocaleData = (locale: AvailableLocale): Promise => { switch (locale) { case 'ar': return import('../i18n/locale/ar.json'); + case 'bg': + return import('../i18n/locale/bg.json'); case 'ca': return import('../i18n/locale/ca.json'); case 'cs':