feat(locale): add support for Italian (#2583)

This commit is contained in:
Sandro Circi
2024-11-09 13:50:03 +01:00
committed by GitHub
parent 602a667343
commit 4fbbb25f68
2 changed files with 38 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ export { default as ar } from './ar'
export { default as de } from './de'
export { default as en } from './en'
export { default as fr } from './fr'
export { default as it } from './it'
export { default as ru } from './ru'
export { default as zh_hans } from './zh_hans'
export { default as zh_hant } from './zh_hant'

37
src/runtime/locale/it.ts Normal file
View File

@@ -0,0 +1,37 @@
import { defineLocale } from '../composables/defineLocale'
export default defineLocale('Italiano', {
inputMenu: {
noMatch: 'Nessun dato corrispondente',
noData: 'Nessun dato'
},
commandPalette: {
noMatch: 'Nessun dato corrispondente',
noData: 'Nessun dato',
close: 'Chiudi'
},
selectMenu: {
noMatch: 'Nessun dato corrispondente',
noData: 'Nessun dato'
},
toast: {
close: 'Chiudi'
},
carousel: {
prev: 'Precedente',
next: 'Successivo',
goto: 'Vai alla slide {slide}'
},
modal: {
close: 'Chiudi'
},
slideover: {
close: 'Chiudi'
},
alert: {
close: 'Chiudi'
},
table: {
noData: 'Nessuno dato'
}
})