diff --git a/src/i18n/index.ts b/src/i18n/index.ts index fab7958..4ec8e18 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -3,6 +3,7 @@ import isNodeJs from 'detect-node' import en from './en' import es from './es' +import it from './it' export interface LOCALE { 'PROCESSING' (): string; @@ -24,6 +25,7 @@ export interface LOCALE { const locales = ( (l: L) => Object.freeze(l))({ en, es, + it, }) // detect browser language