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.

pl.js 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split('_'),
  9. monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split('_');
  10. function plural(n) {
  11. return (n % 10 < 5) && (n % 10 > 1) && ((~~(n / 10) % 10) !== 1);
  12. }
  13. function translate(number, withoutSuffix, key) {
  14. var result = number + ' ';
  15. switch (key) {
  16. case 'ss':
  17. return result + (plural(number) ? 'sekundy' : 'sekund');
  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: function () {
  63. switch (this.day()) {
  64. case 0:
  65. return '[W niedzielę o] LT';
  66. case 2:
  67. return '[We wtorek o] LT';
  68. case 3:
  69. return '[W środę o] LT';
  70. case 6:
  71. return '[W sobotę o] LT';
  72. default:
  73. return '[W] dddd [o] LT';
  74. }
  75. },
  76. lastDay: '[Wczoraj o] LT',
  77. lastWeek: function () {
  78. switch (this.day()) {
  79. case 0:
  80. return '[W zeszłą niedzielę o] LT';
  81. case 3:
  82. return '[W zeszłą środę o] LT';
  83. case 6:
  84. return '[W zeszłą sobotę o] LT';
  85. default:
  86. return '[W zeszły] dddd [o] LT';
  87. }
  88. },
  89. sameElse: 'L'
  90. },
  91. relativeTime : {
  92. future : 'za %s',
  93. past : '%s temu',
  94. s : 'kilka sekund',
  95. ss : translate,
  96. m : translate,
  97. mm : translate,
  98. h : translate,
  99. hh : translate,
  100. d : '1 dzień',
  101. dd : '%d dni',
  102. M : 'miesiąc',
  103. MM : translate,
  104. y : 'rok',
  105. yy : translate
  106. },
  107. dayOfMonthOrdinalParse: /\d{1,2}\./,
  108. ordinal : '%d.',
  109. week : {
  110. dow : 1, // Monday is the first day of the week.
  111. doy : 4 // The week that contains Jan 4th is the first week of the year.
  112. }
  113. });
  114. return pl;
  115. })));