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