From ff6645d2abc5c16dc2d714b5fde7ea0e6cad0261 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 21 Jun 2023 20:12:56 +0200 Subject: [PATCH] feat(i18n): enable Spanish translation --- src/i18n/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/index.ts b/src/i18n/index.ts index 2d2c1cddb..8b49bc9df 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -15,6 +15,7 @@ export const SUPPORTED_LOCALES = { 'pt-PT': 'Português', 'zh-CN': 'Chinese', 'no-NO': 'Norsk Bokmål', + 'es-ES': 'Español', } as const export type SupportedLocale = keyof typeof SUPPORTED_LOCALES