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
8 if (typeof define
=== 'function' && define
.amd
) {
9 define(['moment'], factory
); // AMD
10 } else if (typeof exports
=== 'object') {
11 module
.exports
= factory(require('../moment')); // Node
13 factory((typeof global
!== 'undefined' ? global
: this).moment
); // node or other global
16 function plural(word
, num
) {
17 var forms
= word
.split('_');
18 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]);
21 function relativeTimeWithPlural(number
, withoutSuffix
, key
) {
23 'mm': withoutSuffix
? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',
24 'hh': withoutSuffix
? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',
25 'dd': 'дзень_дні_дзён',
26 'MM': 'месяц_месяцы_месяцаў',
27 'yy': 'год_гады_гадоў'
30 return withoutSuffix
? 'хвіліна' : 'хвіліну';
32 else if (key
=== 'h') {
33 return withoutSuffix
? 'гадзіна' : 'гадзіну';
36 return number
+ ' ' + plural(format
[key
], +number
);
40 function monthsCaseReplace(m
, format
) {
42 'nominative': 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split('_'),
43 'accusative': 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split('_')
46 nounCase
= (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format
) ?
50 return months
[nounCase
][m
.month()];
53 function weekdaysCaseReplace(m
, format
) {
55 'nominative': 'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split('_'),
56 'accusative': 'нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу'.split('_')
59 nounCase
= (/\[ ?[Вв] ?(?:мінулую|наступную)? ?\] ?dddd/).test(format
) ?
63 return weekdays
[nounCase
][m
.day()];
66 return moment
.defineLocale('be', {
67 months
: monthsCaseReplace
,
68 monthsShort
: 'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split('_'),
69 weekdays
: weekdaysCaseReplace
,
70 weekdaysShort
: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
71 weekdaysMin
: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
76 LL
: 'D MMMM YYYY г.',
77 LLL
: 'D MMMM YYYY г., LT',
78 LLLL
: 'dddd, D MMMM YYYY г., LT'
81 sameDay
: '[Сёння ў] LT',
82 nextDay
: '[Заўтра ў] LT',
83 lastDay
: '[Учора ў] LT',
84 nextWeek: function () {
85 return '[У] dddd [ў] LT';
87 lastWeek: function () {
93 return '[У мінулую] dddd [ў] LT';
97 return '[У мінулы] dddd [ў] LT';
105 s
: 'некалькі секунд',
106 m
: relativeTimeWithPlural
,
107 mm
: relativeTimeWithPlural
,
108 h
: relativeTimeWithPlural
,
109 hh
: relativeTimeWithPlural
,
111 dd
: relativeTimeWithPlural
,
113 MM
: relativeTimeWithPlural
,
115 yy
: relativeTimeWithPlural
119 meridiem : function (hour
, minute
, isLower
) {
122 } else if (hour
< 12) {
124 } else if (hour
< 17) {
131 ordinalParse
: /\d{1,2}-(і|ы|га)/,
132 ordinal: function (number
, period
) {
139 return (number
% 10 === 2 || number
% 10 === 3) && (number
% 100 !== 12 && number
% 100 !== 13) ? number
+ '-і' : number
+ '-ы';
141 return number
+ '-га';
148 dow
: 1, // Monday is the first day of the week.
149 doy
: 7 // The week that contains Jan 1st is the first week of the year.