1 // moment.js language configuration
2 // language : vietnamese (vi)
3 // author : Bang Nguyen : https://github.com/bangnk
6 if (typeof define
=== 'function' && define
.amd
) {
7 define(['moment'], factory
); // AMD
8 } else if (typeof exports
=== 'object') {
9 module
.exports
= factory(require('../moment')); // Node
11 factory(window
.moment
); // Browser global
14 return moment
.lang('vi', {
15 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("_"),
16 monthsShort
: "Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),
17 weekdays
: "chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),
18 weekdaysShort
: "CN_T2_T3_T4_T5_T6_T7".split("_"),
19 weekdaysMin
: "CN_T2_T3_T4_T5_T6_T7".split("_"),
23 LL
: "D MMMM [năm] YYYY",
24 LLL
: "D MMMM [năm] YYYY LT",
25 LLLL
: "dddd, D MMMM [năm] YYYY LT",
28 lll
: "D MMM YYYY LT",
29 llll
: "ddd, D MMM YYYY LT"
32 sameDay
: "[Hôm nay lúc] LT",
33 nextDay
: '[Ngày mai lúc] LT',
34 nextWeek
: 'dddd [tuần tới lúc] LT',
35 lastDay
: '[Hôm qua lúc] LT',
36 lastWeek
: 'dddd [tuần rồi lúc] LT',
54 ordinal : function (number
) {
58 dow
: 1, // Monday is the first day of the week.
59 doy
: 4 // The week that contains Jan 4th is the first week of the year.