mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
feat(locale): add Danish language (#2952)
This commit is contained in:
53
src/runtime/locale/da.ts
Normal file
53
src/runtime/locale/da.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
import { defineLocale } from '../composables/defineLocale'
|
||||
|
||||
export default defineLocale({
|
||||
name: 'Danish',
|
||||
code: 'da',
|
||||
messages: {
|
||||
inputMenu: {
|
||||
noMatch: 'Ingen matchende data',
|
||||
noData: 'Ingen data',
|
||||
create: 'Opret "{label}"'
|
||||
},
|
||||
calendar: {
|
||||
prevYear: 'Forrige år',
|
||||
nextYear: 'Næste år',
|
||||
prevMonth: 'Forrige måned',
|
||||
nextMonth: 'Næste måned'
|
||||
},
|
||||
inputNumber: {
|
||||
increment: 'Øg',
|
||||
decrement: 'Reducer'
|
||||
},
|
||||
commandPalette: {
|
||||
noMatch: 'Ingen matchende data',
|
||||
noData: 'Ingen data',
|
||||
close: 'Luk'
|
||||
},
|
||||
selectMenu: {
|
||||
noMatch: 'Ingen matchende data',
|
||||
noData: 'Ingen data',
|
||||
create: 'Opret "{label}"'
|
||||
},
|
||||
toast: {
|
||||
close: 'Luk'
|
||||
},
|
||||
carousel: {
|
||||
prev: 'Forrige',
|
||||
next: 'Næste',
|
||||
goto: 'Gå til slide {slide}'
|
||||
},
|
||||
modal: {
|
||||
close: 'Luk'
|
||||
},
|
||||
slideover: {
|
||||
close: 'Luk'
|
||||
},
|
||||
alert: {
|
||||
close: 'Luk'
|
||||
},
|
||||
table: {
|
||||
noData: 'Ingen data'
|
||||
}
|
||||
}
|
||||
})
|
||||
@@ -1,5 +1,6 @@
|
||||
export { default as ar } from './ar'
|
||||
export { default as cs } from './cs'
|
||||
export { default as da } from './da'
|
||||
export { default as de } from './de'
|
||||
export { default as en } from './en'
|
||||
export { default as es } from './es'
|
||||
|
||||
Reference in New Issue
Block a user