pl.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split('_');
  11. var monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split('_');
  12. function plural(n) {
  13. return (n % 10 < 5) && (n % 10 > 1) && ((~~(n / 10) % 10) !== 1);
  14. }
  15. function translate(number, withoutSuffix, key) {
  16. var result = number + ' ';
  17. switch (key) {
  18. case 'm':
  19. return withoutSuffix ? 'minuta' : 'minutę';
  20. case 'mm':
  21. return result + (plural(number) ? 'minuty' : 'minut');
  22. case 'h':
  23. return withoutSuffix ? 'godzina' : 'godzinę';
  24. case 'hh':
  25. return result + (plural(number) ? 'godziny' : 'godzin');
  26. case 'MM':
  27. return result + (plural(number) ? 'miesiące' : 'miesięcy');
  28. case 'yy':
  29. return result + (plural(number) ? 'lata' : 'lat');
  30. }
  31. }
  32. var pl = moment.defineLocale('pl', {
  33. months : function (momentToFormat, format) {
  34. if (!momentToFormat) {
  35. return monthsNominative;
  36. } else if (format === '') {
  37. // Hack: if format empty we know this is used to generate
  38. // RegExp by moment. Give then back both valid forms of months
  39. // in RegExp ready format.
  40. return '(' + monthsSubjective[momentToFormat.month()] + '|' + monthsNominative[momentToFormat.month()] + ')';
  41. } else if (/D MMMM/.test(format)) {
  42. return monthsSubjective[momentToFormat.month()];
  43. } else {
  44. return monthsNominative[momentToFormat.month()];
  45. }
  46. },
  47. monthsShort : 'sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru'.split('_'),
  48. weekdays : 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split('_'),
  49. weekdaysShort : 'ndz_pon_wt_śr_czw_pt_sob'.split('_'),
  50. weekdaysMin : 'Nd_Pn_Wt_Śr_Cz_Pt_So'.split('_'),
  51. longDateFormat : {
  52. LT : 'HH:mm',
  53. LTS : 'HH:mm:ss',
  54. L : 'DD.MM.YYYY',
  55. LL : 'D MMMM YYYY',
  56. LLL : 'D MMMM YYYY HH:mm',
  57. LLLL : 'dddd, D MMMM YYYY HH:mm'
  58. },
  59. calendar : {
  60. sameDay: '[Dziś o] LT',
  61. nextDay: '[Jutro o] LT',
  62. nextWeek: '[W] dddd [o] LT',
  63. lastDay: '[Wczoraj o] LT',
  64. lastWeek: function () {
  65. switch (this.day()) {
  66. case 0:
  67. return '[W zeszłą niedzielę o] LT';
  68. case 3:
  69. return '[W zeszłą środę o] LT';
  70. case 6:
  71. return '[W zeszłą sobotę o] LT';
  72. default:
  73. return '[W zeszły] dddd [o] LT';
  74. }
  75. },
  76. sameElse: 'L'
  77. },
  78. relativeTime : {
  79. future : 'za %s',
  80. past : '%s temu',
  81. s : 'kilka sekund',
  82. m : translate,
  83. mm : translate,
  84. h : translate,
  85. hh : translate,
  86. d : '1 dzień',
  87. dd : '%d dni',
  88. M : 'miesiąc',
  89. MM : translate,
  90. y : 'rok',
  91. yy : translate
  92. },
  93. dayOfMonthOrdinalParse: /\d{1,2}\./,
  94. ordinal : '%d.',
  95. week : {
  96. dow : 1, // Monday is the first day of the week.
  97. doy : 4 // The week that contains Jan 4th is the first week of the year.
  98. }
  99. });
  100. return pl;
  101. })));