LaravelTest
90 строк · 3.0 Кб
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
5
6;(function (global, factory) {7typeof exports === 'object' && typeof module !== 'undefined'8&& typeof require === 'function' ? factory(require('../moment')) :9typeof define === 'function' && define.amd ? define(['../moment'], factory) :10factory(global.moment)11}(this, (function (moment) { 'use strict';12
13//! moment.js locale configuration14
15var vi = moment.defineLocale('vi', {16months: '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(17'_'18),19monthsShort: '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(20'_'21),22monthsParseExact: true,23weekdays: 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split(24'_'25),26weekdaysShort: 'CN_T2_T3_T4_T5_T6_T7'.split('_'),27weekdaysMin: 'CN_T2_T3_T4_T5_T6_T7'.split('_'),28weekdaysParseExact: true,29meridiemParse: /sa|ch/i,30isPM: function (input) {31return /^ch$/i.test(input);32},33meridiem: function (hours, minutes, isLower) {34if (hours < 12) {35return isLower ? 'sa' : 'SA';36} else {37return isLower ? 'ch' : 'CH';38}39},40longDateFormat: {41LT: 'HH:mm',42LTS: 'HH:mm:ss',43L: 'DD/MM/YYYY',44LL: 'D MMMM [năm] YYYY',45LLL: 'D MMMM [năm] YYYY HH:mm',46LLLL: 'dddd, D MMMM [năm] YYYY HH:mm',47l: 'DD/M/YYYY',48ll: 'D MMM YYYY',49lll: 'D MMM YYYY HH:mm',50llll: 'ddd, D MMM YYYY HH:mm',51},52calendar: {53sameDay: '[Hôm nay lúc] LT',54nextDay: '[Ngày mai lúc] LT',55nextWeek: 'dddd [tuần tới lúc] LT',56lastDay: '[Hôm qua lúc] LT',57lastWeek: 'dddd [tuần trước lúc] LT',58sameElse: 'L',59},60relativeTime: {61future: '%s tới',62past: '%s trước',63s: 'vài giây',64ss: '%d giây',65m: 'một phút',66mm: '%d phút',67h: 'một giờ',68hh: '%d giờ',69d: 'một ngày',70dd: '%d ngày',71w: 'một tuần',72ww: '%d tuần',73M: 'một tháng',74MM: '%d tháng',75y: 'một năm',76yy: '%d năm',77},78dayOfMonthOrdinalParse: /\d{1,2}/,79ordinal: function (number) {80return number;81},82week: {83dow: 1, // Monday is the first day of the week.84doy: 4, // The week that contains Jan 4th is the first week of the year.85},86});87
88return vi;89
90})));91