LaravelTest
64 строки · 2.1 Кб
1//! moment.js locale configuration
2//! locale : Danish [da]
3//! author : Ulrik Nielsen : https://github.com/mrbase
4
5;(function (global, factory) {6typeof exports === 'object' && typeof module !== 'undefined'7&& typeof require === 'function' ? factory(require('../moment')) :8typeof define === 'function' && define.amd ? define(['../moment'], factory) :9factory(global.moment)10}(this, (function (moment) { 'use strict';11
12//! moment.js locale configuration13
14var da = moment.defineLocale('da', {15months: 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split(16'_'17),18monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),19weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),20weekdaysShort: 'søn_man_tir_ons_tor_fre_lør'.split('_'),21weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),22longDateFormat: {23LT: 'HH:mm',24LTS: 'HH:mm:ss',25L: 'DD.MM.YYYY',26LL: 'D. MMMM YYYY',27LLL: 'D. MMMM YYYY HH:mm',28LLLL: 'dddd [d.] D. MMMM YYYY [kl.] HH:mm',29},30calendar: {31sameDay: '[i dag kl.] LT',32nextDay: '[i morgen kl.] LT',33nextWeek: 'på dddd [kl.] LT',34lastDay: '[i går kl.] LT',35lastWeek: '[i] dddd[s kl.] LT',36sameElse: 'L',37},38relativeTime: {39future: 'om %s',40past: '%s siden',41s: 'få sekunder',42ss: '%d sekunder',43m: 'et minut',44mm: '%d minutter',45h: 'en time',46hh: '%d timer',47d: 'en dag',48dd: '%d dage',49M: 'en måned',50MM: '%d måneder',51y: 'et år',52yy: '%d år',53},54dayOfMonthOrdinalParse: /\d{1,2}\./,55ordinal: '%d.',56week: {57dow: 1, // Monday is the first day of the week.58doy: 4, // The week that contains Jan 4th is the first week of the year.59},60});61
62return da;63
64})));65