1 //! moment.js locale configuration
2 //! locale : Polish [pl]
3 //! author : Rafal Hirsz : https://github.com/evoL
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 }(this, (function (moment) { 'use strict';
12 //! moment.js locale configuration
14 var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split(
17 monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split(
21 return n % 10 < 5 && n % 10 > 1 && ~~(n / 10) % 10 !== 1;
23 function translate(number, withoutSuffix, key) {
24 var result = number + ' ';
27 return result + (plural(number) ? 'sekundy' : 'sekund');
29 return withoutSuffix ? 'minuta' : 'minutę';
31 return result + (plural(number) ? 'minuty' : 'minut');
33 return withoutSuffix ? 'godzina' : 'godzinę';
35 return result + (plural(number) ? 'godziny' : 'godzin');
37 return result + (plural(number) ? 'miesiące' : 'miesięcy');
39 return result + (plural(number) ? 'lata' : 'lat');
43 var pl = moment.defineLocale('pl', {
44 months: function (momentToFormat, format) {
45 if (!momentToFormat) {
46 return monthsNominative;
47 } else if (format === '') {
48 // Hack: if format empty we know this is used to generate
49 // RegExp by moment. Give then back both valid forms of months
50 // in RegExp ready format.
53 monthsSubjective[momentToFormat.month()] +
55 monthsNominative[momentToFormat.month()] +
58 } else if (/D MMMM/.test(format)) {
59 return monthsSubjective[momentToFormat.month()];
61 return monthsNominative[momentToFormat.month()];
64 monthsShort: 'sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru'.split('_'),
65 weekdays: 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split(
68 weekdaysShort: 'ndz_pon_wt_śr_czw_pt_sob'.split('_'),
69 weekdaysMin: 'Nd_Pn_Wt_Śr_Cz_Pt_So'.split('_'),
75 LLL: 'D MMMM YYYY HH:mm',
76 LLLL: 'dddd, D MMMM YYYY HH:mm',
79 sameDay: '[Dziś o] LT',
80 nextDay: '[Jutro o] LT',
81 nextWeek: function () {
84 return '[W niedzielę o] LT';
87 return '[We wtorek o] LT';
90 return '[W środę o] LT';
93 return '[W sobotę o] LT';
96 return '[W] dddd [o] LT';
99 lastDay: '[Wczoraj o] LT',
100 lastWeek: function () {
101 switch (this.day()) {
103 return '[W zeszłą niedzielę o] LT';
105 return '[W zeszłą środę o] LT';
107 return '[W zeszłą sobotę o] LT';
109 return '[W zeszły] dddd [o] LT';
130 dayOfMonthOrdinalParse: /\d{1,2}\./,
133 dow: 1, // Monday is the first day of the week.
134 doy: 4, // The week that contains Jan 4th is the first week of the year.