Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

uk.js 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. //! moment.js locale configuration
  2. ;(function (global, factory) {
  3. typeof exports === 'object' && typeof module !== 'undefined'
  4. && typeof require === 'function' ? factory(require('../moment')) :
  5. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  6. factory(global.moment)
  7. }(this, (function (moment) { 'use strict';
  8. function plural(word, num) {
  9. var forms = word.split('_');
  10. 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]);
  11. }
  12. function relativeTimeWithPlural(number, withoutSuffix, key) {
  13. var format = {
  14. 'ss': withoutSuffix ? 'секунда_секунди_секунд' : 'секунду_секунди_секунд',
  15. 'mm': withoutSuffix ? 'хвилина_хвилини_хвилин' : 'хвилину_хвилини_хвилин',
  16. 'hh': withoutSuffix ? 'година_години_годин' : 'годину_години_годин',
  17. 'dd': 'день_дні_днів',
  18. 'MM': 'місяць_місяці_місяців',
  19. 'yy': 'рік_роки_років'
  20. };
  21. if (key === 'm') {
  22. return withoutSuffix ? 'хвилина' : 'хвилину';
  23. }
  24. else if (key === 'h') {
  25. return withoutSuffix ? 'година' : 'годину';
  26. }
  27. else {
  28. return number + ' ' + plural(format[key], +number);
  29. }
  30. }
  31. function weekdaysCaseReplace(m, format) {
  32. var weekdays = {
  33. 'nominative': 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split('_'),
  34. 'accusative': 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split('_'),
  35. 'genitive': 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split('_')
  36. };
  37. if (m === true) {
  38. return weekdays['nominative'].slice(1, 7).concat(weekdays['nominative'].slice(0, 1));
  39. }
  40. if (!m) {
  41. return weekdays['nominative'];
  42. }
  43. var nounCase = (/(\[[ВвУу]\]) ?dddd/).test(format) ?
  44. 'accusative' :
  45. ((/\[?(?:минулої|наступної)? ?\] ?dddd/).test(format) ?
  46. 'genitive' :
  47. 'nominative');
  48. return weekdays[nounCase][m.day()];
  49. }
  50. function processHoursFunction(str) {
  51. return function () {
  52. return str + 'о' + (this.hours() === 11 ? 'б' : '') + '] LT';
  53. };
  54. }
  55. var uk = moment.defineLocale('uk', {
  56. months : {
  57. 'format': 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split('_'),
  58. 'standalone': 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split('_')
  59. },
  60. monthsShort : 'січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд'.split('_'),
  61. weekdays : weekdaysCaseReplace,
  62. weekdaysShort : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
  63. weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
  64. longDateFormat : {
  65. LT : 'HH:mm',
  66. LTS : 'HH:mm:ss',
  67. L : 'DD.MM.YYYY',
  68. LL : 'D MMMM YYYY р.',
  69. LLL : 'D MMMM YYYY р., HH:mm',
  70. LLLL : 'dddd, D MMMM YYYY р., HH:mm'
  71. },
  72. calendar : {
  73. sameDay: processHoursFunction('[Сьогодні '),
  74. nextDay: processHoursFunction('[Завтра '),
  75. lastDay: processHoursFunction('[Вчора '),
  76. nextWeek: processHoursFunction('[У] dddd ['),
  77. lastWeek: function () {
  78. switch (this.day()) {
  79. case 0:
  80. case 3:
  81. case 5:
  82. case 6:
  83. return processHoursFunction('[Минулої] dddd [').call(this);
  84. case 1:
  85. case 2:
  86. case 4:
  87. return processHoursFunction('[Минулого] dddd [').call(this);
  88. }
  89. },
  90. sameElse: 'L'
  91. },
  92. relativeTime : {
  93. future : 'за %s',
  94. past : '%s тому',
  95. s : 'декілька секунд',
  96. ss : relativeTimeWithPlural,
  97. m : relativeTimeWithPlural,
  98. mm : relativeTimeWithPlural,
  99. h : 'годину',
  100. hh : relativeTimeWithPlural,
  101. d : 'день',
  102. dd : relativeTimeWithPlural,
  103. M : 'місяць',
  104. MM : relativeTimeWithPlural,
  105. y : 'рік',
  106. yy : relativeTimeWithPlural
  107. },
  108. // M. E.: those two are virtually unused but a user might want to implement them for his/her website for some reason
  109. meridiemParse: /ночі|ранку|дня|вечора/,
  110. isPM: function (input) {
  111. return /^(дня|вечора)$/.test(input);
  112. },
  113. meridiem : function (hour, minute, isLower) {
  114. if (hour < 4) {
  115. return 'ночі';
  116. } else if (hour < 12) {
  117. return 'ранку';
  118. } else if (hour < 17) {
  119. return 'дня';
  120. } else {
  121. return 'вечора';
  122. }
  123. },
  124. dayOfMonthOrdinalParse: /\d{1,2}-(й|го)/,
  125. ordinal: function (number, period) {
  126. switch (period) {
  127. case 'M':
  128. case 'd':
  129. case 'DDD':
  130. case 'w':
  131. case 'W':
  132. return number + '-й';
  133. case 'D':
  134. return number + '-го';
  135. default:
  136. return number;
  137. }
  138. },
  139. week : {
  140. dow : 1, // Monday is the first day of the week.
  141. doy : 7 // The week that contains Jan 7th is the first week of the year.
  142. }
  143. });
  144. return uk;
  145. })));