1 // moment.js language configuration
2 // language : 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(window
.moment
); // Browser global
14 return moment
.lang('mk', {
15 months
: "јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември".split("_"),
16 monthsShort
: "јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек".split("_"),
17 weekdays
: "недела_понеделник_вторник_среда_четврток_петок_сабота".split("_"),
18 weekdaysShort
: "нед_пон_вто_сре_чет_пет_саб".split("_"),
19 weekdaysMin
: "нe_пo_вт_ср_че_пе_сa".split("_"),
24 LLL
: "D MMMM YYYY LT",
25 LLLL
: "dddd, D MMMM YYYY LT"
28 sameDay
: '[Денес во] LT',
29 nextDay
: '[Утре во] LT',
30 nextWeek
: 'dddd [во] LT',
31 lastDay
: '[Вчера во] LT',
32 lastWeek : function () {
37 return '[Во изминатата] dddd [во] LT';
42 return '[Во изминатиот] dddd [во] LT';
50 s
: "неколку секунди",
62 ordinal : function (number
) {
63 var lastDigit
= number
% 10,
64 last2Digits
= number
% 100;
66 return number
+ '-ев';
67 } else if (last2Digits
=== 0) {
68 return number
+ '-ен';
69 } else if (last2Digits
> 10 && last2Digits
< 20) {
70 return number
+ '-ти';
71 } else if (lastDigit
=== 1) {
72 return number
+ '-ви';
73 } else if (lastDigit
=== 2) {
74 return number
+ '-ри';
75 } else if (lastDigit
=== 7 || lastDigit
=== 8) {
76 return number
+ '-ми';
78 return number
+ '-ти';
82 dow
: 1, // Monday is the first day of the week.
83 doy
: 7 // The week that contains Jan 1st is the first week of the year.