Ohm-Management - Projektarbeit B-ME
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.

fo.js 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //! moment.js locale configuration
  2. //! locale : Faroese [fo]
  3. //! author : Ragnar Johannesen : https://github.com/ragnar123
  4. //! author : Kristian Sakarisson : https://github.com/sakarisson
  5. import moment from '../moment';
  6. export default moment.defineLocale('fo', {
  7. months : 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
  8. monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
  9. weekdays : 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'),
  10. weekdaysShort : 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
  11. weekdaysMin : 'su_má_tý_mi_hó_fr_le'.split('_'),
  12. longDateFormat : {
  13. LT : 'HH:mm',
  14. LTS : 'HH:mm:ss',
  15. L : 'DD/MM/YYYY',
  16. LL : 'D MMMM YYYY',
  17. LLL : 'D MMMM YYYY HH:mm',
  18. LLLL : 'dddd D. MMMM, YYYY HH:mm'
  19. },
  20. calendar : {
  21. sameDay : '[Í dag kl.] LT',
  22. nextDay : '[Í morgin kl.] LT',
  23. nextWeek : 'dddd [kl.] LT',
  24. lastDay : '[Í gjár kl.] LT',
  25. lastWeek : '[síðstu] dddd [kl] LT',
  26. sameElse : 'L'
  27. },
  28. relativeTime : {
  29. future : 'um %s',
  30. past : '%s síðani',
  31. s : 'fá sekund',
  32. ss : '%d sekundir',
  33. m : 'ein minuttur',
  34. mm : '%d minuttir',
  35. h : 'ein tími',
  36. hh : '%d tímar',
  37. d : 'ein dagur',
  38. dd : '%d dagar',
  39. M : 'ein mánaður',
  40. MM : '%d mánaðir',
  41. y : 'eitt ár',
  42. yy : '%d ár'
  43. },
  44. dayOfMonthOrdinalParse: /\d{1,2}\./,
  45. ordinal : '%d.',
  46. week : {
  47. dow : 1, // Monday is the first day of the week.
  48. doy : 4 // The week that contains Jan 4th is the first week of the year.
  49. }
  50. });