feat(locale): add Uzbek language (#3548)

Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
Ulugbek Nagmatov
2025-03-20 19:03:51 +05:00
committed by GitHub
parent 126ba2326f
commit 302e04bd77
2 changed files with 57 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ export { default as th } from './th'
export { default as tr } from './tr' export { default as tr } from './tr'
export { default as uk } from './uk' export { default as uk } from './uk'
export { default as ur } from './ur' export { default as ur } from './ur'
export { default as uz } from './uz'
export { default as vi } from './vi' export { default as vi } from './vi'
export { default as zh_cn } from './zh_cn' export { default as zh_cn } from './zh_cn'
export { default as zh_tw } from './zh_tw' export { default as zh_tw } from './zh_tw'

56
src/runtime/locale/uz.ts Normal file
View File

@@ -0,0 +1,56 @@
import type { Messages } from '../types'
import { defineLocale } from '../composables/defineLocale'
export default defineLocale<Messages>({
name: 'Oʻzbek',
code: 'uz',
messages: {
inputMenu: {
noMatch: 'Mos keluvchi natija topilmadi',
noData: 'Maʼlumot yoʻq',
create: '"{label}" yaratish'
},
calendar: {
prevYear: 'Oldingi yil',
nextYear: 'Keyingi yil',
prevMonth: 'Oldingi oy',
nextMonth: 'Keyingi oy'
},
inputNumber: {
increment: 'Qoʻshish',
decrement: 'Ayirish'
},
commandPalette: {
placeholder: 'Buyruq kiriting yoki qidiring...',
noMatch: 'Mos keluvchi natija topilmadi',
noData: 'Maʼlumot yoʻq',
close: 'Yopish'
},
selectMenu: {
noMatch: 'Mos keluvchi natija topilmadi',
noData: 'Maʼlumot yoʻq',
create: '"{label}" yaratish',
search: 'Qidirish...'
},
toast: {
close: 'Yopish'
},
carousel: {
prev: 'Ortga',
next: 'Oldinga',
goto: '{slide}-slaydga otish'
},
modal: {
close: 'Yopish'
},
slideover: {
close: 'Yopish'
},
alert: {
close: 'Yopish'
},
table: {
noData: 'Maʼlumot yoʻq'
}
}
})