feat(locale): add Hindi language (#3170)

This commit is contained in:
Nexos Creator
2025-01-24 22:01:14 +05:30
committed by GitHub
parent 36d7402be1
commit 8e96daa5cc
3 changed files with 57 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ function getEmojiFlag(locale: string): string {
el: 'gr',
et: 'ee',
en: 'gb',
hi: 'in',
ja: 'jp',
kh: 'km',
ko: 'kr',

55
src/runtime/locale/hi.ts Normal file
View File

@@ -0,0 +1,55 @@
import { defineLocale } from '../composables/defineLocale'
export default defineLocale({
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: 'कोई डेटा नहीं'
}
}
})

View File

@@ -9,6 +9,7 @@ export { default as es } from './es'
export { default as fa_ir } from './fa_ir'
export { default as fi } from './fi'
export { default as fr } from './fr'
export { default as hi } from './hi'
export { default as id } from './id'
export { default as it } from './it'
export { default as ja } from './ja'