vi.js 2.2 KB

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