mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-29 03:10:42 +01:00
feat(locale): add Slovak language (#2821)
This commit is contained in:
@@ -11,6 +11,7 @@ export { default as ko } from './ko'
|
|||||||
export { default as nl } from './nl'
|
export { default as nl } from './nl'
|
||||||
export { default as pl } from './pl'
|
export { default as pl } from './pl'
|
||||||
export { default as ru } from './ru'
|
export { default as ru } from './ru'
|
||||||
|
export { default as sk } from './sk'
|
||||||
export { default as tr } from './tr'
|
export { default as tr } from './tr'
|
||||||
export { default as zh_hans } from './zh_hans'
|
export { default as zh_hans } from './zh_hans'
|
||||||
export { default as zh_hant } from './zh_hant'
|
export { default as zh_hant } from './zh_hant'
|
||||||
|
|||||||
53
src/runtime/locale/sk.ts
Normal file
53
src/runtime/locale/sk.ts
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
import { defineLocale } from '../composables/defineLocale'
|
||||||
|
|
||||||
|
export default defineLocale({
|
||||||
|
name: 'Slovenčina',
|
||||||
|
code: 'sk',
|
||||||
|
messages: {
|
||||||
|
inputMenu: {
|
||||||
|
noMatch: 'Žiadna zhoda',
|
||||||
|
noData: 'Žiadne dáta',
|
||||||
|
create: 'Vytvoriť "{label}"'
|
||||||
|
},
|
||||||
|
calendar: {
|
||||||
|
prevYear: 'Predchádzajúci rok',
|
||||||
|
nextYear: 'Nasledujúci rok',
|
||||||
|
prevMonth: 'Predchádzajúci mesiac',
|
||||||
|
nextMonth: 'Nasledujúci mesiac'
|
||||||
|
},
|
||||||
|
inputNumber: {
|
||||||
|
increment: 'Zvýšiť',
|
||||||
|
decrement: 'Znížiť'
|
||||||
|
},
|
||||||
|
commandPalette: {
|
||||||
|
noMatch: 'Žiadna zhoda',
|
||||||
|
noData: 'Žiadne dáta',
|
||||||
|
close: 'Zatvoriť'
|
||||||
|
},
|
||||||
|
selectMenu: {
|
||||||
|
noMatch: 'Žiadna zhoda',
|
||||||
|
noData: 'Žiadne dáta',
|
||||||
|
create: 'Vytvoriť "{label}"'
|
||||||
|
},
|
||||||
|
toast: {
|
||||||
|
close: 'Zatvoriť'
|
||||||
|
},
|
||||||
|
carousel: {
|
||||||
|
prev: 'Predchádzajúci',
|
||||||
|
next: 'Nasledujúci',
|
||||||
|
goto: 'Prejsť na {slide}'
|
||||||
|
},
|
||||||
|
modal: {
|
||||||
|
close: 'Zatvoriť'
|
||||||
|
},
|
||||||
|
slideover: {
|
||||||
|
close: 'Zatvoriť'
|
||||||
|
},
|
||||||
|
alert: {
|
||||||
|
close: 'Zatvoriť'
|
||||||
|
},
|
||||||
|
table: {
|
||||||
|
noData: 'Žiadne dáta'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user