55 lines
2.2 KiB
JavaScript
55 lines
2.2 KiB
JavaScript
(function (global, factory) {
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
typeof define === 'function' && define.amd ? define(factory) :
|
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, (global.date = global.date || {}, global.date.locale = global.date.locale || {}, global.date.locale.jv = factory()));
|
|
})(this, (function () { 'use strict';
|
|
|
|
/**
|
|
* @preserve date-and-time.js locale configuration
|
|
* @preserve Javanese (jv)
|
|
* @preserve It is using moment.js locale configuration as a reference.
|
|
*/
|
|
|
|
var jv = function (date) {
|
|
var code = 'jv';
|
|
|
|
date.locale(code, {
|
|
res: {
|
|
MMMM: ['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli', 'Agustus', 'September', 'Oktober', 'Nopember', 'Desember'],
|
|
MMM: ['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Ags', 'Sep', 'Okt', 'Nop', 'Des'],
|
|
dddd: ['Minggu', 'Senen', 'Seloso', 'Rebu', 'Kemis', 'Jemuwah', 'Septu'],
|
|
ddd: ['Min', 'Sen', 'Sel', 'Reb', 'Kem', 'Jem', 'Sep'],
|
|
dd: ['Mg', 'Sn', 'Sl', 'Rb', 'Km', 'Jm', 'Sp'],
|
|
A: ['enjing', 'siyang', 'sonten', 'ndalu']
|
|
},
|
|
formatter: {
|
|
A: function (d) {
|
|
var h = d.getHours();
|
|
if (h < 11) {
|
|
return this.res.A[0]; // enjing
|
|
} else if (h < 15) {
|
|
return this.res.A[1]; // siyang
|
|
} else if (h < 19) {
|
|
return this.res.A[2]; // sonten
|
|
}
|
|
return this.res.A[3]; // ndalu
|
|
}
|
|
},
|
|
parser: {
|
|
h12: function (h, a) {
|
|
if (a < 1) {
|
|
return h; // enjing
|
|
} else if (a < 2) {
|
|
return h >= 11 ? h : h + 12; // siyang
|
|
}
|
|
return h + 12; // sonten, ndalu
|
|
}
|
|
}
|
|
});
|
|
return code;
|
|
};
|
|
|
|
return jv;
|
|
|
|
}));
|