pl.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. //! moment.js locale configuration
  2. //! locale : Polish [pl]
  3. //! author : Rafal Hirsz : https://github.com/evoL
  4. ;(function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined'
  6. && typeof require === 'function' ? factory(require('../moment')) :
  7. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  8. factory(global.moment)
  9. }(this, (function (moment) { 'use strict';
  10. //! moment.js locale configuration
  11. var monthsNominative =
  12. 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split(
  13. '_'
  14. ),
  15. monthsSubjective =
  16. 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split(
  17. '_'
  18. ),
  19. monthsParse = [
  20. /^sty/i,
  21. /^lut/i,
  22. /^mar/i,
  23. /^kwi/i,
  24. /^maj/i,
  25. /^cze/i,
  26. /^lip/i,
  27. /^sie/i,
  28. /^wrz/i,
  29. /^paź/i,
  30. /^lis/i,
  31. /^gru/i,
  32. ];
  33. function plural(n) {
  34. return n % 10 < 5 && n % 10 > 1 && ~~(n / 10) % 10 !== 1;
  35. }
  36. function translate(number, withoutSuffix, key) {
  37. var result = number + ' ';
  38. switch (key) {
  39. case 'ss':
  40. return result + (plural(number) ? 'sekundy' : 'sekund');
  41. case 'm':
  42. return withoutSuffix ? 'minuta' : 'minutę';
  43. case 'mm':
  44. return result + (plural(number) ? 'minuty' : 'minut');
  45. case 'h':
  46. return withoutSuffix ? 'godzina' : 'godzinę';
  47. case 'hh':
  48. return result + (plural(number) ? 'godziny' : 'godzin');
  49. case 'ww':
  50. return result + (plural(number) ? 'tygodnie' : 'tygodni');
  51. case 'MM':
  52. return result + (plural(number) ? 'miesiące' : 'miesięcy');
  53. case 'yy':
  54. return result + (plural(number) ? 'lata' : 'lat');
  55. }
  56. }
  57. var pl = moment.defineLocale('pl', {
  58. months: function (momentToFormat, format) {
  59. if (!momentToFormat) {
  60. return monthsNominative;
  61. } else if (/D MMMM/.test(format)) {
  62. return monthsSubjective[momentToFormat.month()];
  63. } else {
  64. return monthsNominative[momentToFormat.month()];
  65. }
  66. },
  67. monthsShort: 'sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru'.split('_'),
  68. monthsParse: monthsParse,
  69. longMonthsParse: monthsParse,
  70. shortMonthsParse: monthsParse,
  71. weekdays:
  72. 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split('_'),
  73. weekdaysShort: 'ndz_pon_wt_śr_czw_pt_sob'.split('_'),
  74. weekdaysMin: 'Nd_Pn_Wt_Śr_Cz_Pt_So'.split('_'),
  75. longDateFormat: {
  76. LT: 'HH:mm',
  77. LTS: 'HH:mm:ss',
  78. L: 'DD.MM.YYYY',
  79. LL: 'D MMMM YYYY',
  80. LLL: 'D MMMM YYYY HH:mm',
  81. LLLL: 'dddd, D MMMM YYYY HH:mm',
  82. },
  83. calendar: {
  84. sameDay: '[Dziś o] LT',
  85. nextDay: '[Jutro o] LT',
  86. nextWeek: function () {
  87. switch (this.day()) {
  88. case 0:
  89. return '[W niedzielę o] LT';
  90. case 2:
  91. return '[We wtorek o] LT';
  92. case 3:
  93. return '[W środę o] LT';
  94. case 6:
  95. return '[W sobotę o] LT';
  96. default:
  97. return '[W] dddd [o] LT';
  98. }
  99. },
  100. lastDay: '[Wczoraj o] LT',
  101. lastWeek: function () {
  102. switch (this.day()) {
  103. case 0:
  104. return '[W zeszłą niedzielę o] LT';
  105. case 3:
  106. return '[W zeszłą środę o] LT';
  107. case 6:
  108. return '[W zeszłą sobotę o] LT';
  109. default:
  110. return '[W zeszły] dddd [o] LT';
  111. }
  112. },
  113. sameElse: 'L',
  114. },
  115. relativeTime: {
  116. future: 'za %s',
  117. past: '%s temu',
  118. s: 'kilka sekund',
  119. ss: translate,
  120. m: translate,
  121. mm: translate,
  122. h: translate,
  123. hh: translate,
  124. d: '1 dzień',
  125. dd: '%d dni',
  126. w: 'tydzień',
  127. ww: translate,
  128. M: 'miesiąc',
  129. MM: translate,
  130. y: 'rok',
  131. yy: translate,
  132. },
  133. dayOfMonthOrdinalParse: /\d{1,2}\./,
  134. ordinal: '%d.',
  135. week: {
  136. dow: 1, // Monday is the first day of the week.
  137. doy: 4, // The week that contains Jan 4th is the first week of the year.
  138. },
  139. });
  140. return pl;
  141. })));