Files
ui/src/runtime/locale/en.ts
Hugo Richard 59c26ec123 feat(CommandPalette): handle children in items (#4226)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
2025-06-13 14:49:43 +02:00

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'
}
}
})