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.

nb.js 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. //! moment.js locale configuration
  2. //! locale : Norwegian Bokmål [nb]
  3. //! authors : Espen Hovlandsdal : https://github.com/rexxars
  4. //! Sigurd Gartmann : https://github.com/sigurdga
  5. //! Stephen Ramthun : https://github.com/stephenramthun
  6. ;(function (global, factory) {
  7. typeof exports === 'object' && typeof module !== 'undefined'
  8. && typeof require === 'function' ? factory(require('../moment')) :
  9. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  10. factory(global.moment)
  11. }(this, (function (moment) { 'use strict';
  12. //! moment.js locale configuration
  13. var nb = moment.defineLocale('nb', {
  14. months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
  15. '_'
  16. ),
  17. monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split(
  18. '_'
  19. ),
  20. monthsParseExact: true,
  21. weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
  22. weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),
  23. weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),
  24. weekdaysParseExact: true,
  25. longDateFormat: {
  26. LT: 'HH:mm',
  27. LTS: 'HH:mm:ss',
  28. L: 'DD.MM.YYYY',
  29. LL: 'D. MMMM YYYY',
  30. LLL: 'D. MMMM YYYY [kl.] HH:mm',
  31. LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',
  32. },
  33. calendar: {
  34. sameDay: '[i dag kl.] LT',
  35. nextDay: '[i morgen kl.] LT',
  36. nextWeek: 'dddd [kl.] LT',
  37. lastDay: '[i går kl.] LT',
  38. lastWeek: '[forrige] dddd [kl.] LT',
  39. sameElse: 'L',
  40. },
  41. relativeTime: {
  42. future: 'om %s',
  43. past: '%s siden',
  44. s: 'noen sekunder',
  45. ss: '%d sekunder',
  46. m: 'ett minutt',
  47. mm: '%d minutter',
  48. h: 'en time',
  49. hh: '%d timer',
  50. d: 'en dag',
  51. dd: '%d dager',
  52. w: 'en uke',
  53. ww: '%d uker',
  54. M: 'en måned',
  55. MM: '%d måneder',
  56. y: 'ett år',
  57. yy: '%d år',
  58. },
  59. dayOfMonthOrdinalParse: /\d{1,2}\./,
  60. ordinal: '%d.',
  61. week: {
  62. dow: 1, // Monday is the first day of the week.
  63. doy: 4, // The week that contains Jan 4th is the first week of the year.
  64. },
  65. });
  66. return nb;
  67. })));