feat(fe i18n): added locale files
This commit is contained in:
parent
ffac56616f
commit
c84bc8b102
2 changed files with 14 additions and 1 deletions
|
@ -1,11 +1,13 @@
|
||||||
import {loginIt} from "@/locale/it/login.ts";
|
import {loginIt} from "@/locale/it/login.ts";
|
||||||
|
import {headerIt} from "@/locale/it/header.ts";
|
||||||
|
|
||||||
export const vueI18n = {
|
export const vueI18n = {
|
||||||
locale: 'it',
|
locale: 'it',
|
||||||
fallbackLocale: 'it',
|
fallbackLocale: 'it',
|
||||||
messages: {
|
messages: {
|
||||||
it: {
|
it: {
|
||||||
login: loginIt
|
login: loginIt,
|
||||||
|
header: headerIt
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
11
resources/js/locale/it/header.ts
Normal file
11
resources/js/locale/it/header.ts
Normal 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",
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue