Ohm-Management - Projektarbeit B-ME
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.

vi.js 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //! moment.js locale configuration
  2. ;(function (global, factory) {
  3. typeof exports === 'object' && typeof module !== 'undefined'
  4. && typeof require === 'function' ? factory(require('../moment')) :
  5. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  6. factory(global.moment)
  7. }(this, (function (moment) { 'use strict';
  8. var vi = moment.defineLocale('vi', {
  9. 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('_'),
  10. monthsShort : 'Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12'.split('_'),
  11. monthsParseExact : true,
  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. weekdaysParseExact : true,
  16. meridiemParse: /sa|ch/i,
  17. isPM : function (input) {
  18. return /^ch$/i.test(input);
  19. },
  20. meridiem : function (hours, minutes, isLower) {
  21. if (hours < 12) {
  22. return isLower ? 'sa' : 'SA';
  23. } else {
  24. return isLower ? 'ch' : 'CH';
  25. }
  26. },
  27. longDateFormat : {
  28. LT : 'HH:mm',
  29. LTS : 'HH:mm:ss',
  30. L : 'DD/MM/YYYY',
  31. LL : 'D MMMM [năm] YYYY',
  32. LLL : 'D MMMM [năm] YYYY HH:mm',
  33. LLLL : 'dddd, D MMMM [năm] YYYY HH:mm',
  34. l : 'DD/M/YYYY',
  35. ll : 'D MMM YYYY',
  36. lll : 'D MMM YYYY HH:mm',
  37. llll : 'ddd, D MMM YYYY HH:mm'
  38. },
  39. calendar : {
  40. sameDay: '[Hôm nay lúc] LT',
  41. nextDay: '[Ngày mai lúc] LT',
  42. nextWeek: 'dddd [tuần tới lúc] LT',
  43. lastDay: '[Hôm qua lúc] LT',
  44. lastWeek: 'dddd [tuần rồi lúc] LT',
  45. sameElse: 'L'
  46. },
  47. relativeTime : {
  48. future : '%s tới',
  49. past : '%s trước',
  50. s : 'vài giây',
  51. ss : '%d giây' ,
  52. m : 'một phút',
  53. mm : '%d phút',
  54. h : 'một giờ',
  55. hh : '%d giờ',
  56. d : 'một ngày',
  57. dd : '%d ngày',
  58. M : 'một tháng',
  59. MM : '%d tháng',
  60. y : 'một năm',
  61. yy : '%d năm'
  62. },
  63. dayOfMonthOrdinalParse: /\d{1,2}/,
  64. ordinal : function (number) {
  65. return number;
  66. },
  67. week : {
  68. dow : 1, // Monday is the first day of the week.
  69. doy : 4 // The week that contains Jan 4th is the first week of the year.
  70. }
  71. });
  72. return vi;
  73. })));