Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.0KB

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