1 // moment.js locale configuration
2 // locale : polish (pl)
3 // author : Rafal Hirsz : https://github.com/evoL
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
16 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('_');
20 return (n
% 10 < 5) && (n
% 10 > 1) && ((~~(n
/ 10) % 10) !== 1);
23 function translate(number
, withoutSuffix
, key
) {
24 var result
= number
+ ' ';
27 return withoutSuffix
? 'minuta' : 'minutę';
29 return result
+ (plural(number
) ? 'minuty' : 'minut');
31 return withoutSuffix
? 'godzina' : 'godzinę';
33 return result
+ (plural(number
) ? 'godziny' : 'godzin');
35 return result
+ (plural(number
) ? 'miesiące' : 'miesięcy');
37 return result
+ (plural(number
) ? 'lata' : 'lat');
41 return moment
.defineLocale('pl', {
42 months : function (momentToFormat
, format
) {
43 if (/D MMMM/.test(format
)) {
44 return monthsSubjective
[momentToFormat
.month()];
46 return monthsNominative
[momentToFormat
.month()];
49 monthsShort
: 'sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru'.split('_'),
50 weekdays
: 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split('_'),
51 weekdaysShort
: 'nie_pon_wt_śr_czw_pt_sb'.split('_'),
52 weekdaysMin
: 'N_Pn_Wt_Śr_Cz_Pt_So'.split('_'),
58 LLL
: 'D MMMM YYYY LT',
59 LLLL
: 'dddd, D MMMM YYYY LT'
62 sameDay
: '[Dziś o] LT',
63 nextDay
: '[Jutro o] LT',
64 nextWeek
: '[W] dddd [o] LT',
65 lastDay
: '[Wczoraj o] LT',
66 lastWeek: function () {
69 return '[W zeszłą niedzielę o] LT';
71 return '[W zeszłą środę o] LT';
73 return '[W zeszłą sobotę o] LT';
75 return '[W zeszły] dddd [o] LT';
95 ordinalParse
: /\d{1,2}\./,
98 dow
: 1, // Monday is the first day of the week.
99 doy
: 4 // The week that contains Jan 4th is the first week of the year.