1 // moment.js locale configuration
2 // locale : macedonian (mk)
3 // author : Borislav Mickov : https://github.com/B0k0
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
16 return moment
.defineLocale('mk', {
17 months
: 'јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември'.split('_'),
18 monthsShort
: 'јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек'.split('_'),
19 weekdays
: 'недела_понеделник_вторник_среда_четврток_петок_сабота'.split('_'),
20 weekdaysShort
: 'нед_пон_вто_сре_чет_пет_саб'.split('_'),
21 weekdaysMin
: 'нe_пo_вт_ср_че_пе_сa'.split('_'),
27 LLL
: 'D MMMM YYYY LT',
28 LLLL
: 'dddd, D MMMM YYYY LT'
31 sameDay
: '[Денес во] LT',
32 nextDay
: '[Утре во] LT',
33 nextWeek
: 'dddd [во] LT',
34 lastDay
: '[Вчера во] LT',
35 lastWeek : function () {
40 return '[Во изминатата] dddd [во] LT';
45 return '[Во изминатиот] dddd [во] LT';
53 s
: 'неколку секунди',
65 ordinalParse
: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
66 ordinal : function (number
) {
67 var lastDigit
= number
% 10,
68 last2Digits
= number
% 100;
70 return number
+ '-ев';
71 } else if (last2Digits
=== 0) {
72 return number
+ '-ен';
73 } else if (last2Digits
> 10 && last2Digits
< 20) {
74 return number
+ '-ти';
75 } else if (lastDigit
=== 1) {
76 return number
+ '-ви';
77 } else if (lastDigit
=== 2) {
78 return number
+ '-ри';
79 } else if (lastDigit
=== 7 || lastDigit
=== 8) {
80 return number
+ '-ми';
82 return number
+ '-ти';
86 dow
: 1, // Monday is the first day of the week.
87 doy
: 7 // The week that contains Jan 1st is the first week of the year.