mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-21 23:40:39 +01:00
58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
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: 'Немає даних'
|
||
}
|
||
}
|
||
})
|