feat(i18n): Add Italian language support (#2185)
* feat(i18n): Add Italian language support This commit introduces Italian (it) language support to the application. The `it` locale has been added to the `messages` object in `i18n.config.ts`, enabling the application to load and display content in Italian. * little fix for italian translation * Update nuxt.config.ts for italian language --------- Co-authored-by: LucaS <l.scrigna@eoscaffe.it>
This commit is contained in:
@@ -3,6 +3,7 @@ import pl from './locales/pl.json';
|
||||
import uk from './locales/uk.json';
|
||||
import fr from './locales/fr.json';
|
||||
import de from './locales/de.json';
|
||||
import it from './locales/it.json';
|
||||
import ru from './locales/ru.json';
|
||||
import zhhk from './locales/zh-HK.json';
|
||||
import zhcn from './locales/zh-CN.json';
|
||||
@@ -22,6 +23,7 @@ export default defineI18nConfig(() => ({
|
||||
uk,
|
||||
fr,
|
||||
de,
|
||||
it,
|
||||
ru,
|
||||
'zh-HK': zhhk,
|
||||
'zh-CN': zhcn,
|
||||
|
||||
Reference in New Issue
Block a user