1 //! moment.js locale configuration
2 //! locale : Danish [da]
3 //! author : Ulrik Nielsen : https://github.com/mrbase
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 }(this, (function (moment) { 'use strict';
12 //! moment.js locale configuration
14 var da = moment.defineLocale('da', {
15 months: 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split(
18 monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
19 weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
20 weekdaysShort: 'søn_man_tir_ons_tor_fre_lør'.split('_'),
21 weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),
27 LLL: 'D. MMMM YYYY HH:mm',
28 LLLL: 'dddd [d.] D. MMMM YYYY [kl.] HH:mm',
31 sameDay: '[i dag kl.] LT',
32 nextDay: '[i morgen kl.] LT',
33 nextWeek: 'på dddd [kl.] LT',
34 lastDay: '[i går kl.] LT',
35 lastWeek: '[i] dddd[s kl.] LT',
54 dayOfMonthOrdinalParse: /\d{1,2}\./,
57 dow: 1, // Monday is the first day of the week.
58 doy: 4, // The week that contains Jan 4th is the first week of the year.