mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-19 22:41:42 +01:00
38 lines
697 B
TypeScript
38 lines
697 B
TypeScript
import { defineLocale } from '../composables/defineLocale'
|
|
|
|
export default defineLocale('Italiano', 'it', {
|
|
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: 'Successiva',
|
|
goto: 'Vai alla slide {slide}'
|
|
},
|
|
modal: {
|
|
close: 'Chiudi'
|
|
},
|
|
slideover: {
|
|
close: 'Chiudi'
|
|
},
|
|
alert: {
|
|
close: 'Chiudi'
|
|
},
|
|
table: {
|
|
noData: 'Nessuno dato'
|
|
}
|
|
})
|