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';
15
var vi = moment.defineLocale('vi', {
16
months: 'tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12'.split(
19
monthsShort: 'Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12'.split(
22
monthsParseExact: true,
23
weekdays: 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split(
26
weekdaysShort: 'CN_T2_T3_T4_T5_T6_T7'.split('_'),
27
weekdaysMin: 'CN_T2_T3_T4_T5_T6_T7'.split('_'),
28
weekdaysParseExact: true,
29
meridiemParse: /sa|ch/i,
30
isPM: function (input) {
31
return /^ch$/i.test(input);
33
meridiem: function (hours, minutes, isLower) {
35
return isLower ? 'sa' : 'SA';
37
return isLower ? 'ch' : 'CH';
44
LL: 'D MMMM [năm] YYYY',
45
LLL: 'D MMMM [năm] YYYY HH:mm',
46
LLLL: 'dddd, D MMMM [năm] YYYY HH:mm',
49
lll: 'D MMM YYYY HH:mm',
50
llll: 'ddd, D MMM YYYY HH:mm',
53
sameDay: '[Hôm nay lúc] LT',
54
nextDay: '[Ngày mai lúc] LT',
55
nextWeek: 'dddd [tuần tới lúc] LT',
56
lastDay: '[Hôm qua lúc] LT',
57
lastWeek: 'dddd [tuần trước lúc] LT',
78
dayOfMonthOrdinalParse: /\d{1,2}/,
79
ordinal: function (number) {