1 //! moment.js locale configuration
2 //! locale : Japanese [jv]
3 //! author : Rony Lantip : https://github.com/lantip
4 //! reference: http://jv.wikipedia.org/wiki/Basa_Jawa
6 ;(function (global
, factory
) {
7 typeof exports
=== 'object' && typeof module
!== 'undefined'
8 && typeof require
=== 'function' ? factory(require('../moment')) :
9 typeof define
=== 'function' && define
.amd
? define(['../moment'], factory
) :
10 factory(global
.moment
)
11 }(this, function (moment
) { 'use strict';
14 var jv
= moment
.defineLocale('jv', {
15 months
: 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember'.split('_'),
16 monthsShort
: 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des'.split('_'),
17 weekdays
: 'Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu'.split('_'),
18 weekdaysShort
: 'Min_Sen_Sel_Reb_Kem_Jem_Sep'.split('_'),
19 weekdaysMin
: 'Mg_Sn_Sl_Rb_Km_Jm_Sp'.split('_'),
25 LLL
: 'D MMMM YYYY [pukul] HH.mm',
26 LLLL
: 'dddd, D MMMM YYYY [pukul] HH.mm'
28 meridiemParse
: /enjing|siyang|sonten|ndalu/,
29 meridiemHour : function (hour
, meridiem
) {
33 if (meridiem
=== 'enjing') {
35 } else if (meridiem
=== 'siyang') {
36 return hour
>= 11 ? hour
: hour
+ 12;
37 } else if (meridiem
=== 'sonten' || meridiem
=== 'ndalu') {
41 meridiem : function (hours
, minutes
, isLower
) {
44 } else if (hours
< 15) {
46 } else if (hours
< 19) {
53 sameDay
: '[Dinten puniko pukul] LT',
54 nextDay
: '[Mbenjang pukul] LT',
55 nextWeek
: 'dddd [pukul] LT',
56 lastDay
: '[Kala wingi pukul] LT',
57 lastWeek
: 'dddd [kepengker pukul] LT',
61 future
: 'wonten ing %s',
62 past
: '%s ingkang kepengker',
63 s
: 'sawetawis detik',
64 m
: 'setunggal menit',
76 dow
: 1, // Monday is the first day of the week.
77 doy
: 7 // The week that contains Jan 1st is the first week of the year.