mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
feat(locale): add Ukrainian language (#2908)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
@@ -15,5 +15,6 @@ export { default as pt_br } from './pt_br'
|
||||
export { default as ru } from './ru'
|
||||
export { default as sk } from './sk'
|
||||
export { default as tr } from './tr'
|
||||
export { default as uk } from './uk'
|
||||
export { default as zh_hans } from './zh_hans'
|
||||
export { default as zh_hant } from './zh_hant'
|
||||
|
||||
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