8000 feat(locale): add Hindi language by nexoscreator · Pull Request #3170 · nuxt/ui · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat(locale): add Hindi language #3170

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

8000

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/app/components/content/SupportedLanguages.vue 8000
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ function getEmojiFlag(locale: string): string {
el: 'gr',
et: 'ee',
en: 'gb',
hi: 'in',
ja: 'jp',
kh: 'km',
ko: 'kr',
Expand Down
55 changes: 55 additions & 0 deletions src/runtime/locale/hi.ts
Original file line number Diff line number Diff line change
@@ -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: 'कोई डेटा नहीं'
}
}
})
1 change: 1 addition & 0 deletions src/runtime/locale/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Loading
0