Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Danish locale #860

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
30 changes: 30 additions & 0 deletions src/locales/da-DK.json
@@ -0,0 +1,30 @@
{
"todayButton": "I dag",
"nextMonth": "Næste måned",
"previousMonth": "Forrige måned",
"nextYear": "Næste år",
"previousYear": "Forrige år",
"weekdays": [
"Søndag",
"Mandag",
"Tirsdag",
"Onsdag",
"Torsdag",
"Fredag",
"Lørdag"
],
"months": [
"Januar",
"Februar",
"Marts",
"April",
"Maj",
"Juni",
"Juli",
"August",
"September",
"Oktober",
"November",
"December"
]
}
1 change: 1 addition & 0 deletions src/types/index.ts
Expand Up @@ -18,6 +18,7 @@ export type LocaleOptions =
| 'bg-BG'
| 'ca-ES'
| 'cs-CZ'
| 'da-DK'
| 'de-DE'
| 'el-GR'
| 'en-US'
Expand Down
1 change: 1 addition & 0 deletions stories/data.ts
Expand Up @@ -7,6 +7,7 @@ const locale = <const>[
'bg-BG',
'ca-ES',
'cs-CZ',
'da-DK',
'de-DE',
'el-GR',
'en-US',
Expand Down