1 // moment.js language configuration
2 // language : ukrainian (uk)
3 // author : zemlanin : https://github.com/zemlanin
4 // Author : Menelion Elensúle : https://github.com/Oire
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(window
.moment
); // Browser global
15 function plural(word
, num
) {
16 var forms
= word
.split('_');
17 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]);
20 function relativeTimeWithPlural(number
, withoutSuffix
, key
) {
22 'mm': 'хвилина_хвилини_хвилин',
23 'hh': 'година_години_годин',
24 'dd': 'день_дні_днів',
25 'MM': 'місяць_місяці_місяців',
26 'yy': 'рік_роки_років'
29 return withoutSuffix
? 'хвилина' : 'хвилину';
31 else if (key
=== 'h') {
32 return withoutSuffix
? 'година' : 'годину';
35 return number
+ ' ' + plural(format
[key
], +number
);
39 function monthsCaseReplace(m
, format
) {
41 'nominative': 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split('_'),
42 'accusative': 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split('_')
45 nounCase
= (/D[oD]? *MMMM?/).test(format
) ?
49 return months
[nounCase
][m
.month()];
52 function weekdaysCaseReplace(m
, format
) {
54 'nominative': 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split('_'),
55 'accusative': 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split('_'),
56 'genitive': 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split('_')
59 nounCase
= (/(\[[ВвУу]\]) ?dddd/).test(format
) ?
61 ((/\[?(?:минулої|наступної)? ?\] ?dddd/).test(format
) ?
65 return weekdays
[nounCase
][m
.day()];
68 function processHoursFunction(str
) {
70 return str
+ 'о' + (this.hours() === 11 ? 'б' : '') + '] LT';
74 return moment
.lang('uk', {
75 months
: monthsCaseReplace
,
76 monthsShort
: "січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд".split("_"),
77 weekdays
: weekdaysCaseReplace
,
78 weekdaysShort
: "нд_пн_вт_ср_чт_пт_сб".split("_"),
79 weekdaysMin
: "нд_пн_вт_ср_чт_пт_сб".split("_"),
83 LL
: "D MMMM YYYY р.",
84 LLL
: "D MMMM YYYY р., LT",
85 LLLL
: "dddd, D MMMM YYYY р., LT"
88 sameDay
: processHoursFunction('[Сьогодні '),
89 nextDay
: processHoursFunction('[Завтра '),
90 lastDay
: processHoursFunction('[Вчора '),
91 nextWeek
: processHoursFunction('[У] dddd ['),
92 lastWeek: function () {
98 return processHoursFunction('[Минулої] dddd [').call(this);
102 return processHoursFunction('[Минулого] dddd [').call(this);
110 s
: "декілька секунд",
111 m
: relativeTimeWithPlural
,
112 mm
: relativeTimeWithPlural
,
114 hh
: relativeTimeWithPlural
,
116 dd
: relativeTimeWithPlural
,
118 MM
: relativeTimeWithPlural
,
120 yy
: relativeTimeWithPlural
123 // M. E.: those two are virtually unused but a user might want to implement them for his/her website for some reason
125 meridiem : function (hour
, minute
, isLower
) {
128 } else if (hour
< 12) {
130 } else if (hour
< 17) {
137 ordinal: function (number
, period
) {
144 return number
+ '-й';
146 return number
+ '-го';
153 dow
: 1, // Monday is the first day of the week.
154 doy
: 7 // The week that contains Jan 1st is the first week of the year.