fecha-locales
Version:
i18n locales for fecha.js
21 lines • 861 B
JavaScript
(function () {
var locale = {
amPm: [
'am',
'pm'
],
DoFn: function (number) {
return number;
},
dayNames: 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split('_'),
dayNamesShort: 'CN_T2_T3_T4_T5_T6_T7'.split('_'),
monthNames: '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('_'),
monthNamesShort: 'Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12'.split('_')
};
if (typeof module !== 'undefined' && typeof module.exports === 'object') {
module.exports = locale;
} else if (window && window.window === window) {
window.fechaLocales = window.fechaLocales || {};
window.fechaLocales['vi'] = locale;
}
}());