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.

111 lines
4.2 KiB

  1. //! moment.js locale configuration
  2. //! locale : Bengali (bn)
  3. //! author : Kaushik Gandhi : https://github.com/kaushikgandhi
  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 symbolMap = {
  10. '1': '১',
  11. '2': '২',
  12. '3': '৩',
  13. '4': '৪',
  14. '5': '৫',
  15. '6': '৬',
  16. '7': '৭',
  17. '8': '৮',
  18. '9': '৯',
  19. '0': '০'
  20. },
  21. numberMap = {
  22. '১': '1',
  23. '২': '2',
  24. '৩': '3',
  25. '৪': '4',
  26. '৫': '5',
  27. '৬': '6',
  28. '৭': '7',
  29. '৮': '8',
  30. '৯': '9',
  31. '০': '0'
  32. };
  33. var bn = moment.defineLocale('bn', {
  34. months : 'জানুয়ারী_ফেবুয়ারী_মার্চ_এপ্রিল_মে_জুন_জুলাই_অগাস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split('_'),
  35. monthsShort : 'জানু_ফেব_মার্চ_এপর_মে_জুন_জুল_অগ_সেপ্ট_অক্টো_নভ_ডিসেম্'.split('_'),
  36. weekdays : 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পত্তিবার_শুক্রুবার_শনিবার'.split('_'),
  37. weekdaysShort : 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পত্তি_শুক্রু_শনি'.split('_'),
  38. weekdaysMin : 'রব_সম_মঙ্গ_বু_ব্রিহ_শু_শনি'.split('_'),
  39. longDateFormat : {
  40. LT : 'A h:mm সময়',
  41. LTS : 'A h:mm:ss সময়',
  42. L : 'DD/MM/YYYY',
  43. LL : 'D MMMM YYYY',
  44. LLL : 'D MMMM YYYY, LT',
  45. LLLL : 'dddd, D MMMM YYYY, LT'
  46. },
  47. calendar : {
  48. sameDay : '[আজ] LT',
  49. nextDay : '[আগামীকাল] LT',
  50. nextWeek : 'dddd, LT',
  51. lastDay : '[গতকাল] LT',
  52. lastWeek : '[গত] dddd, LT',
  53. sameElse : 'L'
  54. },
  55. relativeTime : {
  56. future : '%s পরে',
  57. past : '%s আগে',
  58. s : 'কএক সেকেন্ড',
  59. m : 'এক মিনিট',
  60. mm : '%d মিনিট',
  61. h : 'এক ঘন্টা',
  62. hh : '%d ঘন্টা',
  63. d : 'এক দিন',
  64. dd : '%d দিন',
  65. M : 'এক মাস',
  66. MM : '%d মাস',
  67. y : 'এক বছর',
  68. yy : '%d বছর'
  69. },
  70. preparse: function (string) {
  71. return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {
  72. return numberMap[match];
  73. });
  74. },
  75. postformat: function (string) {
  76. return string.replace(/\d/g, function (match) {
  77. return symbolMap[match];
  78. });
  79. },
  80. meridiemParse: /রাত|শকাল|দুপুর|বিকেল|রাত/,
  81. isPM: function (input) {
  82. return /^(দুপুর|বিকেল|রাত)$/.test(input);
  83. },
  84. //Bengali is a vast language its spoken
  85. //in different forms in various parts of the world.
  86. //I have just generalized with most common one used
  87. meridiem : function (hour, minute, isLower) {
  88. if (hour < 4) {
  89. return 'রাত';
  90. } else if (hour < 10) {
  91. return 'শকাল';
  92. } else if (hour < 17) {
  93. return 'দুপুর';
  94. } else if (hour < 20) {
  95. return 'বিকেল';
  96. } else {
  97. return 'রাত';
  98. }
  99. },
  100. week : {
  101. dow : 0, // Sunday is the first day of the week.
  102. doy : 6 // The week that contains Jan 1st is the first week of the year.
  103. }
  104. });
  105. return bn;
  106. }));