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.

se.js 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //! moment.js locale configuration
  2. //! locale : Northern Sami [se]
  3. //! authors : Bård Rolstad Henriksen : https://github.com/karamell
  4. import moment from '../moment';
  5. export default moment.defineLocale('se', {
  6. months: 'ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu'.split(
  7. '_'
  8. ),
  9. monthsShort: 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split(
  10. '_'
  11. ),
  12. weekdays: 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split(
  13. '_'
  14. ),
  15. weekdaysShort: 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'),
  16. weekdaysMin: 's_v_m_g_d_b_L'.split('_'),
  17. longDateFormat: {
  18. LT: 'HH:mm',
  19. LTS: 'HH:mm:ss',
  20. L: 'DD.MM.YYYY',
  21. LL: 'MMMM D. [b.] YYYY',
  22. LLL: 'MMMM D. [b.] YYYY [ti.] HH:mm',
  23. LLLL: 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm',
  24. },
  25. calendar: {
  26. sameDay: '[otne ti] LT',
  27. nextDay: '[ihttin ti] LT',
  28. nextWeek: 'dddd [ti] LT',
  29. lastDay: '[ikte ti] LT',
  30. lastWeek: '[ovddit] dddd [ti] LT',
  31. sameElse: 'L',
  32. },
  33. relativeTime: {
  34. future: '%s geažes',
  35. past: 'maŋit %s',
  36. s: 'moadde sekunddat',
  37. ss: '%d sekunddat',
  38. m: 'okta minuhta',
  39. mm: '%d minuhtat',
  40. h: 'okta diimmu',
  41. hh: '%d diimmut',
  42. d: 'okta beaivi',
  43. dd: '%d beaivvit',
  44. M: 'okta mánnu',
  45. MM: '%d mánut',
  46. y: 'okta jahki',
  47. yy: '%d jagit',
  48. },
  49. dayOfMonthOrdinalParse: /\d{1,2}\./,
  50. ordinal: '%d.',
  51. week: {
  52. dow: 1, // Monday is the first day of the week.
  53. doy: 4, // The week that contains Jan 4th is the first week of the year.
  54. },
  55. });