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.

145 lines
5.9 KiB

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