feat(i18n): add Italian language

This commit is contained in:
Xmader 2021-01-02 07:41:46 -05:00
parent 46879ffacd
commit 44f7edfaa3
No known key found for this signature in database
GPG Key ID: A20B97FB9EB730E4
1 changed files with 2 additions and 0 deletions

View File

@ -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 extends { [n: string]: LOCALE } /** type checking */> (l: L) => Object.freeze(l))({
en,
es,
it,
})
// detect browser language