feat(fe i18n): added locale files

This commit is contained in:
Marco Cavalli 2025-02-28 17:43:20 +01:00
parent ffac56616f
commit c84bc8b102
2 changed files with 14 additions and 1 deletions

View file

@ -1,11 +1,13 @@
import {loginIt} from "@/locale/it/login.ts";
import {headerIt} from "@/locale/it/header.ts";
export const vueI18n = {
locale: 'it',
fallbackLocale: 'it',
messages: {
it: {
login: loginIt
login: loginIt,
header: headerIt
}
}
}

View file

@ -0,0 +1,11 @@
export const headerIt = {
onair: "On Air",
clock: {
title: "Clock",
nothingfound: "Non risulta niente in questa fascia oraria"
},
userinfo: {
info: "info",
logout: "Logout",
}
}