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