PATH:
usr
/
local
/
lib
/
node_modules
/
knex-migrator
/
node_modules
/
moment
/
locale
//! moment.js locale configuration ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; var months = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split('_'), monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_'); var monthsParse = [/^led/i, /^úno/i, /^bře/i, /^dub/i, /^kvě/i, /^(čvn|červen$|června)/i, /^(čvc|červenec|července)/i, /^srp/i, /^zář/i, /^říj/i, /^lis/i, /^pro/i]; // NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched. // Otherwise parser matches '1. červenec' as '1. červen' + 'ec'. var monthsRegex = /^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i; function plural(n) { return (n > 1) && (n < 5) && (~~(n / 10) !== 1); } function translate(number, withoutSuffix, key, isFuture) { var result = number + ' '; switch (key) { case 's': // a few seconds / in a few seconds / a few seconds ago return (withoutSuffix || isFuture) ? 'pár sekund' : 'pár sekundami'; case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago if (withoutSuffix || isFuture) { return result + (plural(number) ? 'sekundy' : 'sekund'); } else { return result + 'sekundami'; } break; case 'm': // a minute / in a minute / a minute ago return withoutSuffix ? 'minuta' : (isFuture ? 'minutu' : 'minutou'); case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago if (withoutSuffix || isFuture) { return result + (plural(number) ? 'minuty' : 'minut'); } else { return result + 'minutami'; } break; case 'h': // an hour / in an hour / an hour ago return withoutSuffix ? 'hodina' : (isFuture ? 'hodinu' : 'hodinou'); case 'hh': // 9 hours / in 9 hours / 9 hours ago if (withoutSuffix || isFuture) { return result + (plural(number) ? 'hodiny' : 'hodin'); } else { return result + 'hodinami'; } break; case 'd': // a day / in a day / a day ago return (withoutSuffix || isFuture) ? 'den' : 'dnem'; case 'dd': // 9 days / in 9 days / 9 days ago if (withoutSuffix || isFuture) { return result + (plural(number) ? 'dny' : 'dní'); } else { return result + 'dny'; } break; case 'M': // a month / in a month / a month ago return (withoutSuffix || isFuture) ? 'měsíc' : 'měsícem'; case 'MM': // 9 months / in 9 months / 9 months ago if (withoutSuffix || isFuture) { return result + (plural(number) ? 'měsíce' : 'měsíců'); } else { return result + 'měsíci'; } break; case 'y': // a year / in a year / a year ago return (withoutSuffix || isFuture) ? 'rok' : 'rokem'; case 'yy': // 9 years / in 9 years / 9 years ago if (withoutSuffix || isFuture) { return result + (plural(number) ? 'roky' : 'let'); } else { return result + 'lety'; } break; } } var cs = moment.defineLocale('cs', { months : months, monthsShort : monthsShort, monthsRegex : monthsRegex, monthsShortRegex : monthsRegex, // NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched. // Otherwise parser matches '1. červenec' as '1. červen' + 'ec'. monthsStrictRegex : /^(leden|ledna|února|únor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i, monthsShortStrictRegex : /^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i, monthsParse : monthsParse, longMonthsParse : monthsParse, shortMonthsParse : monthsParse, weekdays : 'neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota'.split('_'), weekdaysShort : 'ne_po_út_st_čt_pá_so'.split('_'), weekdaysMin : 'ne_po_út_st_čt_pá_so'.split('_'), longDateFormat : { LT: 'H:mm', LTS : 'H:mm:ss', L : 'DD.MM.YYYY', LL : 'D. MMMM YYYY', LLL : 'D. MMMM YYYY H:mm', LLLL : 'dddd D. MMMM YYYY H:mm', l : 'D. M. YYYY' }, calendar : { sameDay: '[dnes v] LT', nextDay: '[zítra v] LT', nextWeek: function () { switch (this.day()) { case 0: return '[v neděli v] LT'; case 1: case 2: return '[v] dddd [v] LT'; case 3: return '[ve středu v] LT'; case 4: return '[ve čtvrtek v] LT'; case 5: return '[v pátek v] LT'; case 6: return '[v sobotu v] LT'; } }, lastDay: '[včera v] LT', lastWeek: function () { switch (this.day()) { case 0: return '[minulou neděli v] LT'; case 1: case 2: return '[minulé] dddd [v] LT'; case 3: return '[minulou středu v] LT'; case 4: case 5: return '[minulý] dddd [v] LT'; case 6: return '[minulou sobotu v] LT'; } }, sameElse: 'L' }, relativeTime : { future : 'za %s', past : 'před %s', s : translate, ss : translate, m : translate, mm : translate, h : translate, hh : translate, d : translate, dd : translate, M : translate, MM : translate, y : translate, yy : translate }, dayOfMonthOrdinalParse : /\d{1,2}\./, ordinal : '%d.', week : { dow : 1, // Monday is the first day of the week. doy : 4 // The week that contains Jan 4th is the first week of the year. } }); return cs; })));
[-] bn.js
[edit]
[-] ug-cn.js
[edit]
[-] tzm.js
[edit]
[-] sk.js
[edit]
[-] cy.js
[edit]
[-] id.js
[edit]
[-] ms-my.js
[edit]
[-] nl.js
[edit]
[-] bm.js
[edit]
[-] fy.js
[edit]
[-] nb.js
[edit]
[-] zh-tw.js
[edit]
[-] uk.js
[edit]
[-] bo.js
[edit]
[-] lv.js
[edit]
[-] ja.js
[edit]
[-] gom-latn.js
[edit]
[-] gl.js
[edit]
[-] mr.js
[edit]
[-] tlh.js
[edit]
[-] ka.js
[edit]
[-] ar-kw.js
[edit]
[-] fr-ch.js
[edit]
[-] ca.js
[edit]
[-] ne.js
[edit]
[-] lb.js
[edit]
[-] az.js
[edit]
[-] sw.js
[edit]
[-] da.js
[edit]
[-] is.js
[edit]
[+]
..
[-] tzm-latn.js
[edit]
[-] ru.js
[edit]
[-] te.js
[edit]
[-] tzl.js
[edit]
[-] pt-br.js
[edit]
[-] ar-dz.js
[edit]
[-] nl-be.js
[edit]
[-] gu.js
[edit]
[-] si.js
[edit]
[-] en-ie.js
[edit]
[-] en-au.js
[edit]
[-] af.js
[edit]
[-] zh-hk.js
[edit]
[-] ml.js
[edit]
[-] el.js
[edit]
[-] be.js
[edit]
[-] vi.js
[edit]
[-] zh-cn.js
[edit]
[-] fa.js
[edit]
[-] sv.js
[edit]
[-] ar-ma.js
[edit]
[-] uz-latn.js
[edit]
[-] de-ch.js
[edit]
[-] yo.js
[edit]
[-] jv.js
[edit]
[-] km.js
[edit]
[-] tl-ph.js
[edit]
[-] bg.js
[edit]
[-] ar-ly.js
[edit]
[-] fo.js
[edit]
[-] mi.js
[edit]
[-] kn.js
[edit]
[-] eu.js
[edit]
[-] pl.js
[edit]
[-] lo.js
[edit]
[-] sr-cyrl.js
[edit]
[-] gd.js
[edit]
[-] ro.js
[edit]
[-] x-pseudo.js
[edit]
[-] ms.js
[edit]
[-] my.js
[edit]
[-] sl.js
[edit]
[-] es-do.js
[edit]
[-] uz.js
[edit]
[-] es.js
[edit]
[-] hi.js
[edit]
[-] ur.js
[edit]
[-] fi.js
[edit]
[-] fr.js
[edit]
[-] lt.js
[edit]
[-] en-il.js
[edit]
[-] ar-sa.js
[edit]
[-] sd.js
[edit]
[-] tg.js
[edit]
[-] de.js
[edit]
[-] hu.js
[edit]
[-] ku.js
[edit]
[-] hr.js
[edit]
[-] it-ch.js
[edit]
[-] ky.js
[edit]
[-] dv.js
[edit]
[-] ko.js
[edit]
[-] tr.js
[edit]
[-] en-nz.js
[edit]
[-] it.js
[edit]
[-] en-SG.js
[edit]
[-] hy-am.js
[edit]
[-] cv.js
[edit]
[-] pt.js
[edit]
[-] mn.js
[edit]
[-] de-at.js
[edit]
[-] ar-tn.js
[edit]
[-] nn.js
[edit]
[-] tet.js
[edit]
[-] he.js
[edit]
[-] en-gb.js
[edit]
[-] br.js
[edit]
[-] ss.js
[edit]
[-] es-us.js
[edit]
[-] ga.js
[edit]
[-] cs.js
[edit]
[-] me.js
[edit]
[-] th.js
[edit]
[-] bs.js
[edit]
[-] fr-ca.js
[edit]
[-] en-ca.js
[edit]
[-] et.js
[edit]
[-] se.js
[edit]
[-] ta.js
[edit]
[-] kk.js
[edit]
[-] mk.js
[edit]
[-] mt.js
[edit]
[-] eo.js
[edit]
[-] pa-in.js
[edit]
[-] ar.js
[edit]
[-] sq.js
[edit]
[-] sr.js
[edit]