Skip to content

Commit

Permalink
feat(locales): add Norwegian locale (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cmoen11 authored and arthurdenner committed Jan 14, 2020
1 parent c72722e commit c8b7a3d
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
31 changes: 31 additions & 0 deletions src/locales/no-NB.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"todayButton": "Idag",
"nextMonth": "Neste måned",
"previousMonth": "Forrige måned",
"nextYear": "Neste år",
"previousYear": "Forrige år",
"weekdays": [
"Søndag",
"Mandag",
"Tisdag",
"Onsdag",
"Torsdag",
"Fredag",
"Lørdag"
],
"months": [
"Januar",
"Februar",
"Mars",
"April",
"Mai",
"Juni",
"Juli",
"August",
"September",
"Oktober",
"November",
"Desember"
]
}

3 changes: 2 additions & 1 deletion src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ export type LocaleOptions =
| 'sv-SE'
| 'zn-CN'
| 'he-IL'
| 'tr-TR';
| 'tr-TR'
| 'nb-NO';

export type PickedDayzedProps = Pick<
DayzedProps,
Expand Down

0 comments on commit c8b7a3d

Please sign in to comment.