1 //! moment.js locale configuration
2 //! locale : Vietnamese [vi]
3 //! author : Bang Nguyen : https://github.com/bangnk
4 //! author : Chien Kira : https://github.com/chienkira
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';
13 //! moment.js locale configuration
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: 'Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12'.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',
76 dayOfMonthOrdinalParse: /\d{1,2}/,
77 ordinal: function (number) {
81 dow: 1, // Monday is the first day of the week.
82 doy: 4, // The week that contains Jan 4th is the first week of the year.