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
+5
View File
@@ -43,6 +43,11 @@ export default defineNuxtConfig({
language: 'es-ES',
name: 'Español',
},
{
code: 'it',
language: 'it-IT',
name: 'Italiano',
},
{
code: 'fr',
language: 'fr-FR',