LaravelTest
75 строк · 3.2 Кб
1//! moment.js locale configuration
2//! locale : Thai [th]
3//! author : Kridsada Thanabulpong : https://github.com/sirn
4
5;(function (global, factory) {6typeof exports === 'object' && typeof module !== 'undefined'7&& typeof require === 'function' ? factory(require('../moment')) :8typeof define === 'function' && define.amd ? define(['../moment'], factory) :9factory(global.moment)10}(this, (function (moment) { 'use strict';11
12//! moment.js locale configuration13
14var th = moment.defineLocale('th', {15months: 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split(16'_'17),18monthsShort: 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split(19'_'20),21monthsParseExact: true,22weekdays: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),23weekdaysShort: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference24weekdaysMin: 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'),25weekdaysParseExact: true,26longDateFormat: {27LT: 'H:mm',28LTS: 'H:mm:ss',29L: 'DD/MM/YYYY',30LL: 'D MMMM YYYY',31LLL: 'D MMMM YYYY เวลา H:mm',32LLLL: 'วันddddที่ D MMMM YYYY เวลา H:mm',33},34meridiemParse: /ก่อนเที่ยง|หลังเที่ยง/,35isPM: function (input) {36return input === 'หลังเที่ยง';37},38meridiem: function (hour, minute, isLower) {39if (hour < 12) {40return 'ก่อนเที่ยง';41} else {42return 'หลังเที่ยง';43}44},45calendar: {46sameDay: '[วันนี้ เวลา] LT',47nextDay: '[พรุ่งนี้ เวลา] LT',48nextWeek: 'dddd[หน้า เวลา] LT',49lastDay: '[เมื่อวานนี้ เวลา] LT',50lastWeek: '[วัน]dddd[ที่แล้ว เวลา] LT',51sameElse: 'L',52},53relativeTime: {54future: 'อีก %s',55past: '%sที่แล้ว',56s: 'ไม่กี่วินาที',57ss: '%d วินาที',58m: '1 นาที',59mm: '%d นาที',60h: '1 ชั่วโมง',61hh: '%d ชั่วโมง',62d: '1 วัน',63dd: '%d วัน',64w: '1 สัปดาห์',65ww: '%d สัปดาห์',66M: '1 เดือน',67MM: '%d เดือน',68y: '1 ปี',69yy: '%d ปี',70},71});72
73return th;74
75})));76