From f4b45d2aa75f9893ec617c8256f65a2b23519a1e Mon Sep 17 00:00:00 2001 From: armando-marra <74777723+armando-marra@users.noreply.github.com> Date: Wed, 23 Aug 2023 14:22:47 +0200 Subject: [PATCH] Update localize.go Added Italian language --- core/i18n/localize.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/i18n/localize.go b/core/i18n/localize.go index b80c3a91..e5deb320 100644 --- a/core/i18n/localize.go +++ b/core/i18n/localize.go @@ -25,6 +25,7 @@ func SupportedLocales() (locales []string) { locales = append(locales, "pt-BR") locales = append(locales, "fr-FR") locales = append(locales, "ja-JP") + locales = append(locales, "it-IT") return }