1 // moment.js locale configuration
2 // locale : ukrainian (uk)
3 // author : zemlanin : https://github.com/zemlanin
4 // Author : Menelion Elensúle : https://github.com/Oire
7 // Comment out broken wrapper, see T145382
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
17 function plural(word, num) {
18 var forms = word.split('_');
19 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]);
22 function relativeTimeWithPlural(number, withoutSuffix, key) {
24 'mm': 'хвилина_хвилини_хвилин',
25 'hh': 'година_години_годин',
26 'dd': 'день_дні_днів',
27 'MM': 'місяць_місяці_місяців',
28 'yy': 'рік_роки_років'
31 return withoutSuffix ? 'хвилина' : 'хвилину';
33 else if (key === 'h') {
34 return withoutSuffix ? 'година' : 'годину';
37 return number + ' ' + plural(format[key], +number);
41 function monthsCaseReplace(m, format) {
43 'nominative': 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split('_'),
44 'accusative': 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split('_')
47 nounCase = (/D[oD]? *MMMM?/).test(format) ?
51 return months[nounCase][m.month()];
54 function weekdaysCaseReplace(m, format) {
56 'nominative': 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split('_'),
57 'accusative': 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split('_'),
58 'genitive': 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split('_')
61 nounCase = (/(\[[ВвУу]\]) ?dddd/).test(format) ?
63 ((/\[?(?:минулої|наступної)? ?\] ?dddd/).test(format) ?
67 return weekdays[nounCase][m.day()];
70 function processHoursFunction(str) {
72 return str + 'о' + (this.hours() === 11 ? 'б' : '') + '] LT';
76 return moment.defineLocale('uk', {
77 months : monthsCaseReplace,
78 monthsShort : 'січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд'.split('_'),
79 weekdays : weekdaysCaseReplace,
80 weekdaysShort : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
81 weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
86 LL : 'D MMMM YYYY р.',
87 LLL : 'D MMMM YYYY р., LT',
88 LLLL : 'dddd, D MMMM YYYY р., LT'
91 sameDay: processHoursFunction('[Сьогодні '),
92 nextDay: processHoursFunction('[Завтра '),
93 lastDay: processHoursFunction('[Вчора '),
94 nextWeek: processHoursFunction('[У] dddd ['),
95 lastWeek: function () {
101 return processHoursFunction('[Минулої] dddd [').call(this);
105 return processHoursFunction('[Минулого] dddd [').call(this);
113 s : 'декілька секунд',
114 m : relativeTimeWithPlural,
115 mm : relativeTimeWithPlural,
117 hh : relativeTimeWithPlural,
119 dd : relativeTimeWithPlural,
121 MM : relativeTimeWithPlural,
123 yy : relativeTimeWithPlural
126 // M. E.: those two are virtually unused but a user might want to implement them for his/her website for some reason
128 meridiem : function (hour, minute, isLower) {
131 } else if (hour < 12) {
133 } else if (hour < 17) {
140 ordinalParse: /\d{1,2}-(й|го)/,
141 ordinal: function (number, period) {
148 return number + '-й';
150 return number + '-го';
157 dow : 1, // Monday is the first day of the week.
158 doy : 7 // The week that contains Jan 1st is the first week of the year.