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.

jv.js 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. //! moment.js locale configuration
  2. ;(function (global, factory) {
  3. typeof exports === 'object' && typeof module !== 'undefined'
  4. && typeof require === 'function' ? factory(require('../moment')) :
  5. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  6. factory(global.moment)
  7. }(this, (function (moment) { 'use strict';
  8. var jv = moment.defineLocale('jv', {
  9. months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember'.split('_'),
  10. monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des'.split('_'),
  11. weekdays : 'Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu'.split('_'),
  12. weekdaysShort : 'Min_Sen_Sel_Reb_Kem_Jem_Sep'.split('_'),
  13. weekdaysMin : 'Mg_Sn_Sl_Rb_Km_Jm_Sp'.split('_'),
  14. longDateFormat : {
  15. LT : 'HH.mm',
  16. LTS : 'HH.mm.ss',
  17. L : 'DD/MM/YYYY',
  18. LL : 'D MMMM YYYY',
  19. LLL : 'D MMMM YYYY [pukul] HH.mm',
  20. LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'
  21. },
  22. meridiemParse: /enjing|siyang|sonten|ndalu/,
  23. meridiemHour : function (hour, meridiem) {
  24. if (hour === 12) {
  25. hour = 0;
  26. }
  27. if (meridiem === 'enjing') {
  28. return hour;
  29. } else if (meridiem === 'siyang') {
  30. return hour >= 11 ? hour : hour + 12;
  31. } else if (meridiem === 'sonten' || meridiem === 'ndalu') {
  32. return hour + 12;
  33. }
  34. },
  35. meridiem : function (hours, minutes, isLower) {
  36. if (hours < 11) {
  37. return 'enjing';
  38. } else if (hours < 15) {
  39. return 'siyang';
  40. } else if (hours < 19) {
  41. return 'sonten';
  42. } else {
  43. return 'ndalu';
  44. }
  45. },
  46. calendar : {
  47. sameDay : '[Dinten puniko pukul] LT',
  48. nextDay : '[Mbenjang pukul] LT',
  49. nextWeek : 'dddd [pukul] LT',
  50. lastDay : '[Kala wingi pukul] LT',
  51. lastWeek : 'dddd [kepengker pukul] LT',
  52. sameElse : 'L'
  53. },
  54. relativeTime : {
  55. future : 'wonten ing %s',
  56. past : '%s ingkang kepengker',
  57. s : 'sawetawis detik',
  58. ss : '%d detik',
  59. m : 'setunggal menit',
  60. mm : '%d menit',
  61. h : 'setunggal jam',
  62. hh : '%d jam',
  63. d : 'sedinten',
  64. dd : '%d dinten',
  65. M : 'sewulan',
  66. MM : '%d wulan',
  67. y : 'setaun',
  68. yy : '%d taun'
  69. },
  70. week : {
  71. dow : 1, // Monday is the first day of the week.
  72. doy : 7 // The week that contains Jan 7th is the first week of the year.
  73. }
  74. });
  75. return jv;
  76. })));