mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
feat(locale): add Uzbek language (#3548)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
@@ -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
56
src/runtime/locale/uz.ts
Normal 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 o‘tish'
|
||||||
|
},
|
||||||
|
modal: {
|
||||||
|
close: 'Yopish'
|
||||||
|
},
|
||||||
|
slideover: {
|
||||||
|
close: 'Yopish'
|
||||||
|
},
|
||||||
|
alert: {
|
||||||
|
close: 'Yopish'
|
||||||
|
},
|
||||||
|
table: {
|
||||||
|
noData: 'Maʼlumot yoʻq'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user