You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.3 KiB

  1. //! moment.js locale configuration
  2. //! locale : vietnamese (vi)
  3. //! author : Bang Nguyen : https://github.com/bangnk
  4. (function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
  6. typeof define === 'function' && define.amd ? define(['moment'], factory) :
  7. factory(global.moment)
  8. }(this, function (moment) { 'use strict';
  9. var vi = moment.defineLocale('vi', {
  10. 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('_'),
  11. monthsShort : 'Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12'.split('_'),
  12. weekdays : 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split('_'),
  13. weekdaysShort : 'CN_T2_T3_T4_T5_T6_T7'.split('_'),
  14. weekdaysMin : 'CN_T2_T3_T4_T5_T6_T7'.split('_'),
  15. longDateFormat : {
  16. LT : 'HH:mm',
  17. LTS : 'LT:ss',
  18. L : 'DD/MM/YYYY',
  19. LL : 'D MMMM [năm] YYYY',
  20. LLL : 'D MMMM [năm] YYYY LT',
  21. LLLL : 'dddd, D MMMM [năm] YYYY LT',
  22. l : 'DD/M/YYYY',
  23. ll : 'D MMM YYYY',
  24. lll : 'D MMM YYYY LT',
  25. llll : 'ddd, D MMM YYYY LT'
  26. },
  27. calendar : {
  28. sameDay: '[Hôm nay lúc] LT',
  29. nextDay: '[Ngày mai lúc] LT',
  30. nextWeek: 'dddd [tuần tới lúc] LT',
  31. lastDay: '[Hôm qua lúc] LT',
  32. lastWeek: 'dddd [tuần rồi lúc] LT',
  33. sameElse: 'L'
  34. },
  35. relativeTime : {
  36. future : '%s tới',
  37. past : '%s trước',
  38. s : 'vài giây',
  39. m : 'một phút',
  40. mm : '%d phút',
  41. h : 'một giờ',
  42. hh : '%d giờ',
  43. d : 'một ngày',
  44. dd : '%d ngày',
  45. M : 'một tháng',
  46. MM : '%d tháng',
  47. y : 'một năm',
  48. yy : '%d năm'
  49. },
  50. ordinalParse: /\d{1,2}/,
  51. ordinal : function (number) {
  52. return number;
  53. },
  54. week : {
  55. dow : 1, // Monday is the first day of the week.
  56. doy : 4 // The week that contains Jan 4th is the first week of the year.
  57. }
  58. });
  59. return vi;
  60. }));