Files
ui/src/runtime/locale/uk.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.5 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: 'Українська',
code: 'uk',
messages: {
inputMenu: {
noMatch: 'Збігів не знайдено',
noData: 'Немає даних',
create: 'Створити "{label}"'
},
calendar: {
prevYear: 'Попередній рік',
nextYear: 'Наступний рік',
prevMonth: 'Попередній місяць',
nextMonth: 'Наступний місяць'
},
inputNumber: {
increment: 'Збільшити',
decrement: 'Зменшити'
},
commandPalette: {
placeholder: 'Введіть команду або шукайте...',
noMatch: 'Збігів не знайдено',
noData: 'Немає даних',
close: 'Закрити',
back: 'Назад'
},
selectMenu: {
noMatch: 'Збігів не знайдено',
noData: 'Немає даних',
create: 'Створити "{label}"',
search: 'Пошук...'
},
toast: {
close: 'Закрити'
},
carousel: {
prev: 'Назад',
next: 'Далі',
goto: 'Перейти до {slide}'
},
modal: {
close: 'Закрити'
},
slideover: {
close: 'Закрити'
},
alert: {
close: 'Закрити'
},
table: {
noData: 'Немає даних'
}
}
})