da.js (2161B)
1//! moment.js locale configuration 2//! locale : Danish [da] 3//! author : Ulrik Nielsen : https://github.com/mrbase 4 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) : 9 factory(global.moment) 10}(this, (function (moment) { 'use strict'; 11 12 //! moment.js locale configuration 13 14 var da = moment.defineLocale('da', { 15 months: 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split( 16 '_' 17 ), 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('_'), 22 longDateFormat: { 23 LT: 'HH:mm', 24 LTS: 'HH:mm:ss', 25 L: 'DD.MM.YYYY', 26 LL: 'D. MMMM YYYY', 27 LLL: 'D. MMMM YYYY HH:mm', 28 LLLL: 'dddd [d.] D. MMMM YYYY [kl.] HH:mm', 29 }, 30 calendar: { 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', 36 sameElse: 'L', 37 }, 38 relativeTime: { 39 future: 'om %s', 40 past: '%s siden', 41 s: 'få sekunder', 42 ss: '%d sekunder', 43 m: 'et minut', 44 mm: '%d minutter', 45 h: 'en time', 46 hh: '%d timer', 47 d: 'en dag', 48 dd: '%d dage', 49 M: 'en måned', 50 MM: '%d måneder', 51 y: 'et år', 52 yy: '%d år', 53 }, 54 dayOfMonthOrdinalParse: /\d{1,2}\./, 55 ordinal: '%d.', 56 week: { 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. 59 }, 60 }); 61 62 return da; 63 64})));