Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

da.js 2.1KB

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