-
Notifications
You must be signed in to change notification settings - Fork 604
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(locale): add Danish language (#2952)
- Loading branch information
1 parent
1b3c919
commit e1d385a
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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' | ||
} | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters