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:
lenny76
2025-09-25 14:42:04 +02:00
committed by GitHub
parent 0792862c0d
commit a282ca35f1
3 changed files with 247 additions and 0 deletions
+2
View File
@@ -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,