feat(locale): add Slovak language (#2821)

This commit is contained in:
Jakub Jelínek
2024-12-02 17:38:11 +01:00
committed by GitHub
parent 004a577467
commit 68a10f09d5
2 changed files with 54 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ export { default as ko } from './ko'
export { default as nl } from './nl'
export { default as pl } from './pl'
export { default as ru } from './ru'
export { default as sk } from './sk'
export { default as tr } from './tr'
export { default as zh_hans } from './zh_hans'
export { default as zh_hant } from './zh_hant'

53
src/runtime/locale/sk.ts Normal file
View 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'
}
}
})