mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
feat(locale): add support for Italian (#2583)
This commit is contained in:
@@ -2,6 +2,7 @@ export { default as ar } from './ar'
|
|||||||
export { default as de } from './de'
|
export { default as de } from './de'
|
||||||
export { default as en } from './en'
|
export { default as en } from './en'
|
||||||
export { default as fr } from './fr'
|
export { default as fr } from './fr'
|
||||||
|
export { default as it } from './it'
|
||||||
export { default as ru } from './ru'
|
export { default as ru } from './ru'
|
||||||
export { default as zh_hans } from './zh_hans'
|
export { default as zh_hans } from './zh_hans'
|
||||||
export { default as zh_hant } from './zh_hant'
|
export { default as zh_hant } from './zh_hant'
|
||||||
|
|||||||
37
src/runtime/locale/it.ts
Normal file
37
src/runtime/locale/it.ts
Normal 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'
|
||||||
|
}
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user