mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-20 15:01:46 +01:00
58 lines
1.2 KiB
TypeScript
58 lines
1.2 KiB
TypeScript
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',
|
||
back: 'Orqaga'
|
||
},
|
||
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'
|
||
}
|
||
}
|
||
})
|