mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-27 18:30:35 +01:00
feat(locale): add Ukrainian language (#2908)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
53
src/runtime/locale/uk.ts
Normal file
53
src/runtime/locale/uk.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
import { defineLocale } from '../composables/defineLocale'
|
||||
|
||||
export default defineLocale({
|
||||
name: 'Українська',
|
||||
code: 'uk',
|
||||
messages: {
|
||||
inputMenu: {
|
||||
noMatch: 'Збігів не знайдено',
|
||||
noData: 'Немає даних',
|
||||
create: 'Створити "{label}"'
|
||||
},
|
||||
calendar: {
|
||||
prevYear: 'Попередній рік',
|
||||
nextYear: 'Наступний рік',
|
||||
prevMonth: 'Попередній місяць',
|
||||
nextMonth: 'Наступний місяць'
|
||||
},
|
||||
inputNumber: {
|
||||
increment: 'Збільшити',
|
||||
decrement: 'Зменшити'
|
||||
},
|
||||
commandPalette: {
|
||||
noMatch: 'Збігів не знайдено',
|
||||
noData: 'Немає даних',
|
||||
close: 'Закрити'
|
||||
},
|
||||
selectMenu: {
|
||||
noMatch: 'Збігів не знайдено',
|
||||
noData: 'Немає даних',
|
||||
create: 'Створити "{label}"'
|
||||
},
|
||||
toast: {
|
||||
close: 'Закрити'
|
||||
},
|
||||
carousel: {
|
||||
prev: 'Назад',
|
||||
next: 'Далі',
|
||||
goto: 'Перейти до {slide}'
|
||||
},
|
||||
modal: {
|
||||
close: 'Закрити'
|
||||
},
|
||||
slideover: {
|
||||
close: 'Закрити'
|
||||
},
|
||||
alert: {
|
||||
close: 'Закрити'
|
||||
},
|
||||
table: {
|
||||
noData: 'Немає даних'
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user