Files
ui/src/runtime/locale/uz.ts
Hugo Richard 59c26ec123 feat(CommandPalette): handle children in items (#4226)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
2025-06-13 14:49:43 +02:00

58 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 otish'
},
modal: {
close: 'Yopish'
},
slideover: {
close: 'Yopish'
},
alert: {
close: 'Yopish'
},
table: {
noData: 'Maʼlumot yoʻq'
}
}
})