feat(locale): add Uyghur language (#3878)

This commit is contained in:
ElshadBeg
2025-04-14 16:48:40 +08:00
committed by GitHub
parent 43153c4e91
commit b7fc69baa7
2 changed files with 58 additions and 0 deletions

View File

@@ -42,3 +42,4 @@ export { default as uz } from './uz'
export { default as vi } from './vi'
export { default as zh_cn } from './zh_cn'
export { default as zh_tw } from './zh_tw'
export { default as zh_ug } from './zh_ug'

View File

@@ -0,0 +1,57 @@
import type { Messages } from '../types'
import { defineLocale } from '../composables/defineLocale'
export default defineLocale<Messages>({
name: 'ئۇيغۇرچە',
code: 'zh-UG',
dir: 'rtl',
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: 'سانلىق مەلۇمات يوق'
}
}
})