pl.js 4.1 KB

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