mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-19 14:31:47 +01:00
58 lines
1.2 KiB
TypeScript
58 lines
1.2 KiB
TypeScript
import type { Messages } from '../types'
|
|
import { defineLocale } from '../composables/defineLocale'
|
|
|
|
export default defineLocale<Messages>({
|
|
name: 'English',
|
|
code: 'en',
|
|
messages: {
|
|
inputMenu: {
|
|
noMatch: 'No matching data',
|
|
noData: 'No data',
|
|
create: 'Create "{label}"'
|
|
},
|
|
calendar: {
|
|
prevYear: 'Previous year',
|
|
nextYear: 'Next year',
|
|
prevMonth: 'Previous month',
|
|
nextMonth: 'Next month'
|
|
},
|
|
inputNumber: {
|
|
increment: 'Increment',
|
|
decrement: 'Decrement'
|
|
},
|
|
commandPalette: {
|
|
placeholder: 'Type a command or search...',
|
|
noMatch: 'No matching data',
|
|
noData: 'No data',
|
|
close: 'Close',
|
|
back: 'Back'
|
|
},
|
|
selectMenu: {
|
|
noMatch: 'No matching data',
|
|
noData: 'No data',
|
|
create: 'Create "{label}"',
|
|
search: 'Search...'
|
|
},
|
|
toast: {
|
|
close: 'Close'
|
|
},
|
|
carousel: {
|
|
prev: 'Prev',
|
|
next: 'Next',
|
|
goto: 'Go to slide {slide}'
|
|
},
|
|
modal: {
|
|
close: 'Close'
|
|
},
|
|
slideover: {
|
|
close: 'Close'
|
|
},
|
|
alert: {
|
|
close: 'Close'
|
|
},
|
|
table: {
|
|
noData: 'No data'
|
|
}
|
|
}
|
|
})
|