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.

76 lines
3.2 KiB

//! moment.js locale configuration
//! locale : Thai [th]
//! author : Kridsada Thanabulpong : https://github.com/sirn
;(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined'
&& typeof require === 'function' ? factory(require('../moment')) :
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
factory(global.moment)
}(this, (function (moment) { 'use strict';
//! moment.js locale configuration
var th = moment.defineLocale('th', {
months: 'มกราคม_กมภาพนธ_มนาคม_เมษายน_พฤษภาคม_มนายน_กรกฎาคม_สงหาคม_กนยายน_ตลาคม_พฤศจกายน_ธนวาคม'.split(
'_'
),
monthsShort: 'ม.ค._ก.พ._ม.ค._เม.ย._พ.ค._ม.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split(
'_'
),
monthsParseExact: true,
weekdays: 'อาทตย_จนทร_องคาร_พธ_พฤหสบด_ศกร_เสาร'.split('_'),
weekdaysShort: 'อาทตย_จนทร_องคาร_พธ_พฤหส_ศกร_เสาร'.split('_'), // yes, three characters difference
weekdaysMin: 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'),
weekdaysParseExact: true,
longDateFormat: {
LT: 'H:mm',
LTS: 'H:mm:ss',
L: 'DD/MM/YYYY',
LL: 'D MMMM YYYY',
LLL: 'D MMMM YYYY เวลา H:mm',
LLLL: 'วนddddท D MMMM YYYY เวลา H:mm',
},
meridiemParse: /กอนเทยง|หลงเทยง/,
isPM: function (input) {
return input === 'หลงเทยง';
},
meridiem: function (hour, minute, isLower) {
if (hour < 12) {
return 'กอนเทยง';
} else {
return 'หลงเทยง';
}
},
calendar: {
sameDay: '[วนน เวลา] LT',
nextDay: '[พรงน เวลา] LT',
nextWeek: 'dddd[หนา เวลา] LT',
lastDay: '[เมอวานน เวลา] LT',
lastWeek: '[วน]dddd[ทแลว เวลา] LT',
sameElse: 'L',
},
relativeTime: {
future: 'อก %s',
past: '%sทแลว',
s: 'ไมนาท',
ss: '%d วนาท',
m: '1 นาท',
mm: '%d นาท',
h: '1 ชวโมง',
hh: '%d ชวโมง',
d: '1 วน',
dd: '%d วน',
w: '1 สปดาห',
ww: '%d สปดาห',
M: '1 เดอน',
MM: '%d เดอน',
y: '1 ป',
yy: '%d ป',
},
});
return th;
})));