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.

nn.js 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //! moment.js locale configuration
  2. //! locale : Nynorsk [nn]
  3. //! authors : https://github.com/mechuwind
  4. //! Stephen Ramthun : https://github.com/stephenramthun
  5. import moment from '../moment';
  6. export default moment.defineLocale('nn', {
  7. months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
  8. '_'
  9. ),
  10. monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split(
  11. '_'
  12. ),
  13. monthsParseExact: true,
  14. weekdays: 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'),
  15. weekdaysShort: 'su._må._ty._on._to._fr._lau.'.split('_'),
  16. weekdaysMin: 'su_må_ty_on_to_fr_la'.split('_'),
  17. weekdaysParseExact: true,
  18. longDateFormat: {
  19. LT: 'HH:mm',
  20. LTS: 'HH:mm:ss',
  21. L: 'DD.MM.YYYY',
  22. LL: 'D. MMMM YYYY',
  23. LLL: 'D. MMMM YYYY [kl.] H:mm',
  24. LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',
  25. },
  26. calendar: {
  27. sameDay: '[I dag klokka] LT',
  28. nextDay: '[I morgon klokka] LT',
  29. nextWeek: 'dddd [klokka] LT',
  30. lastDay: '[I går klokka] LT',
  31. lastWeek: '[Føregåande] dddd [klokka] LT',
  32. sameElse: 'L',
  33. },
  34. relativeTime: {
  35. future: 'om %s',
  36. past: '%s sidan',
  37. s: 'nokre sekund',
  38. ss: '%d sekund',
  39. m: 'eit minutt',
  40. mm: '%d minutt',
  41. h: 'ein time',
  42. hh: '%d timar',
  43. d: 'ein dag',
  44. dd: '%d dagar',
  45. w: 'ei veke',
  46. ww: '%d veker',
  47. M: 'ein månad',
  48. MM: '%d månader',
  49. y: 'eit år',
  50. yy: '%d år',
  51. },
  52. dayOfMonthOrdinalParse: /\d{1,2}\./,
  53. ordinal: '%d.',
  54. week: {
  55. dow: 1, // Monday is the first day of the week.
  56. doy: 4, // The week that contains Jan 4th is the first week of the year.
  57. },
  58. });