be.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. //! moment.js locale configuration
  2. //! locale : Belarusian [be]
  3. //! author : Dmitry Demidov : https://github.com/demidov91
  4. //! author: Praleska: http://praleska.pro/
  5. //! Author : Menelion Elensúle : https://github.com/Oire
  6. import moment from '../moment';
  7. function plural(word, num) {
  8. var forms = word.split('_');
  9. return num % 10 === 1 && num % 100 !== 11
  10. ? forms[0]
  11. : num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)
  12. ? forms[1]
  13. : forms[2];
  14. }
  15. function relativeTimeWithPlural(number, withoutSuffix, key) {
  16. var format = {
  17. ss: withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',
  18. mm: withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',
  19. hh: withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',
  20. dd: 'дзень_дні_дзён',
  21. MM: 'месяц_месяцы_месяцаў',
  22. yy: 'год_гады_гадоў',
  23. };
  24. if (key === 'm') {
  25. return withoutSuffix ? 'хвіліна' : 'хвіліну';
  26. } else if (key === 'h') {
  27. return withoutSuffix ? 'гадзіна' : 'гадзіну';
  28. } else {
  29. return number + ' ' + plural(format[key], +number);
  30. }
  31. }
  32. export default moment.defineLocale('be', {
  33. months: {
  34. format: 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split(
  35. '_'
  36. ),
  37. standalone:
  38. 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split(
  39. '_'
  40. ),
  41. },
  42. monthsShort:
  43. 'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split('_'),
  44. weekdays: {
  45. format: 'нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу'.split(
  46. '_'
  47. ),
  48. standalone:
  49. 'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split(
  50. '_'
  51. ),
  52. isFormat: /\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/,
  53. },
  54. weekdaysShort: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
  55. weekdaysMin: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
  56. longDateFormat: {
  57. LT: 'HH:mm',
  58. LTS: 'HH:mm:ss',
  59. L: 'DD.MM.YYYY',
  60. LL: 'D MMMM YYYY г.',
  61. LLL: 'D MMMM YYYY г., HH:mm',
  62. LLLL: 'dddd, D MMMM YYYY г., HH:mm',
  63. },
  64. calendar: {
  65. sameDay: '[Сёння ў] LT',
  66. nextDay: '[Заўтра ў] LT',
  67. lastDay: '[Учора ў] LT',
  68. nextWeek: function () {
  69. return '[У] dddd [ў] LT';
  70. },
  71. lastWeek: function () {
  72. switch (this.day()) {
  73. case 0:
  74. case 3:
  75. case 5:
  76. case 6:
  77. return '[У мінулую] dddd [ў] LT';
  78. case 1:
  79. case 2:
  80. case 4:
  81. return '[У мінулы] dddd [ў] LT';
  82. }
  83. },
  84. sameElse: 'L',
  85. },
  86. relativeTime: {
  87. future: 'праз %s',
  88. past: '%s таму',
  89. s: 'некалькі секунд',
  90. m: relativeTimeWithPlural,
  91. mm: relativeTimeWithPlural,
  92. h: relativeTimeWithPlural,
  93. hh: relativeTimeWithPlural,
  94. d: 'дзень',
  95. dd: relativeTimeWithPlural,
  96. M: 'месяц',
  97. MM: relativeTimeWithPlural,
  98. y: 'год',
  99. yy: relativeTimeWithPlural,
  100. },
  101. meridiemParse: /ночы|раніцы|дня|вечара/,
  102. isPM: function (input) {
  103. return /^(дня|вечара)$/.test(input);
  104. },
  105. meridiem: function (hour, minute, isLower) {
  106. if (hour < 4) {
  107. return 'ночы';
  108. } else if (hour < 12) {
  109. return 'раніцы';
  110. } else if (hour < 17) {
  111. return 'дня';
  112. } else {
  113. return 'вечара';
  114. }
  115. },
  116. dayOfMonthOrdinalParse: /\d{1,2}-(і|ы|га)/,
  117. ordinal: function (number, period) {
  118. switch (period) {
  119. case 'M':
  120. case 'd':
  121. case 'DDD':
  122. case 'w':
  123. case 'W':
  124. return (number % 10 === 2 || number % 10 === 3) &&
  125. number % 100 !== 12 &&
  126. number % 100 !== 13
  127. ? number + '-і'
  128. : number + '-ы';
  129. case 'D':
  130. return number + '-га';
  131. default:
  132. return number;
  133. }
  134. },
  135. week: {
  136. dow: 1, // Monday is the first day of the week.
  137. doy: 7, // The week that contains Jan 7th is the first week of the year.
  138. },
  139. });