Files
ui/src/runtime/locale/hi.ts
Alex a9c8eb3f60 feat(useLocale): handle generic messages (#3100)
Co-authored-by: hywax <me@hywax.space>
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
2025-03-10 18:37:28 +01:00

57 lines
1.6 KiB
TypeScript

import type { Messages } from '../types'
import { defineLocale } from '../composables/defineLocale'
export default defineLocale<Messages>({
name: 'Hindi',
code: 'hi',
messages: {
inputMenu: {
noMatch: 'कोई मेल खाता डेटा नहीं',
noData: 'कोई डेटा नहीं',
create: '"{label}" बनाएँ'
},
calendar: {
prevYear: 'पिछला वर्ष',
nextYear: 'अगला वर्ष',
prevMonth: 'पिछला महीना',
nextMonth: 'अगला महीना'
},
inputNumber: {
increment: 'बढ़ाना',
decrement: 'घटाना'
},
commandPalette: {
placeholder: 'एक आदेश या खोज टाइप करें...',
noMatch: 'कोई मेल खाता डेटा नहीं',
noData: 'कोई डेटा नहीं',
close: 'बंद करें'
},
selectMenu: {
noMatch: 'कोई मेल खाता डेटा नहीं',
noData: 'कोई डेटा नहीं',
create: '"{label}" बनाएँ',
search: 'खोजें...'
},
toast: {
close: 'बंद करें'
},
carousel: {
prev: 'पिछला',
next: 'अगला',
goto: 'स्लाइड {slide} पर जाएँ'
},
modal: {
close: 'बंद करें'
},
slideover: {
close: 'बंद करें'
},
alert: {
close: 'बंद करें'
},
table: {
noData: 'कोई डेटा नहीं'
}
}
})