Skip to content

Commit

Permalink
feat(locale): add Slovak language (#2821)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubkoje authored Dec 2, 2024
1 parent 004a577 commit 68a10f0
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/runtime/locale/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 53 additions & 0 deletions src/runtime/locale/sk.ts
Original file line number Diff line number Diff line change
@@ -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'
}
}
})

0 comments on commit 68a10f0

Please sign in to comment.