locales.js 431 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384
  1. ;(function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined'
  3. && typeof require === 'function' ? factory(require('../moment')) :
  4. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  5. factory(global.moment)
  6. }(this, (function (moment) { 'use strict';
  7. //! moment.js locale configuration
  8. moment.defineLocale('af', {
  9. months: 'Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember'.split(
  10. '_'
  11. ),
  12. monthsShort: 'Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'),
  13. weekdays: 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split(
  14. '_'
  15. ),
  16. weekdaysShort: 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'),
  17. weekdaysMin: 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'),
  18. meridiemParse: /vm|nm/i,
  19. isPM: function (input) {
  20. return /^nm$/i.test(input);
  21. },
  22. meridiem: function (hours, minutes, isLower) {
  23. if (hours < 12) {
  24. return isLower ? 'vm' : 'VM';
  25. } else {
  26. return isLower ? 'nm' : 'NM';
  27. }
  28. },
  29. longDateFormat: {
  30. LT: 'HH:mm',
  31. LTS: 'HH:mm:ss',
  32. L: 'DD/MM/YYYY',
  33. LL: 'D MMMM YYYY',
  34. LLL: 'D MMMM YYYY HH:mm',
  35. LLLL: 'dddd, D MMMM YYYY HH:mm',
  36. },
  37. calendar: {
  38. sameDay: '[Vandag om] LT',
  39. nextDay: '[Môre om] LT',
  40. nextWeek: 'dddd [om] LT',
  41. lastDay: '[Gister om] LT',
  42. lastWeek: '[Laas] dddd [om] LT',
  43. sameElse: 'L',
  44. },
  45. relativeTime: {
  46. future: 'oor %s',
  47. past: '%s gelede',
  48. s: "'n paar sekondes",
  49. ss: '%d sekondes',
  50. m: "'n minuut",
  51. mm: '%d minute',
  52. h: "'n uur",
  53. hh: '%d ure',
  54. d: "'n dag",
  55. dd: '%d dae',
  56. M: "'n maand",
  57. MM: '%d maande',
  58. y: "'n jaar",
  59. yy: '%d jaar',
  60. },
  61. dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
  62. ordinal: function (number) {
  63. return (
  64. number +
  65. (number === 1 || number === 8 || number >= 20 ? 'ste' : 'de')
  66. ); // Thanks to Joris Röling : https://github.com/jjupiter
  67. },
  68. week: {
  69. dow: 1, // Maandag is die eerste dag van die week.
  70. doy: 4, // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
  71. },
  72. });
  73. //! moment.js locale configuration
  74. var pluralForm = function (n) {
  75. return n === 0
  76. ? 0
  77. : n === 1
  78. ? 1
  79. : n === 2
  80. ? 2
  81. : n % 100 >= 3 && n % 100 <= 10
  82. ? 3
  83. : n % 100 >= 11
  84. ? 4
  85. : 5;
  86. },
  87. plurals = {
  88. s: [
  89. 'أقل من ثانية',
  90. 'ثانية واحدة',
  91. ['ثانيتان', 'ثانيتين'],
  92. '%d ثوان',
  93. '%d ثانية',
  94. '%d ثانية',
  95. ],
  96. m: [
  97. 'أقل من دقيقة',
  98. 'دقيقة واحدة',
  99. ['دقيقتان', 'دقيقتين'],
  100. '%d دقائق',
  101. '%d دقيقة',
  102. '%d دقيقة',
  103. ],
  104. h: [
  105. 'أقل من ساعة',
  106. 'ساعة واحدة',
  107. ['ساعتان', 'ساعتين'],
  108. '%d ساعات',
  109. '%d ساعة',
  110. '%d ساعة',
  111. ],
  112. d: [
  113. 'أقل من يوم',
  114. 'يوم واحد',
  115. ['يومان', 'يومين'],
  116. '%d أيام',
  117. '%d يومًا',
  118. '%d يوم',
  119. ],
  120. M: [
  121. 'أقل من شهر',
  122. 'شهر واحد',
  123. ['شهران', 'شهرين'],
  124. '%d أشهر',
  125. '%d شهرا',
  126. '%d شهر',
  127. ],
  128. y: [
  129. 'أقل من عام',
  130. 'عام واحد',
  131. ['عامان', 'عامين'],
  132. '%d أعوام',
  133. '%d عامًا',
  134. '%d عام',
  135. ],
  136. },
  137. pluralize = function (u) {
  138. return function (number, withoutSuffix, string, isFuture) {
  139. var f = pluralForm(number),
  140. str = plurals[u][pluralForm(number)];
  141. if (f === 2) {
  142. str = str[withoutSuffix ? 0 : 1];
  143. }
  144. return str.replace(/%d/i, number);
  145. };
  146. },
  147. months = [
  148. 'جانفي',
  149. 'فيفري',
  150. 'مارس',
  151. 'أفريل',
  152. 'ماي',
  153. 'جوان',
  154. 'جويلية',
  155. 'أوت',
  156. 'سبتمبر',
  157. 'أكتوبر',
  158. 'نوفمبر',
  159. 'ديسمبر',
  160. ];
  161. moment.defineLocale('ar-dz', {
  162. months: months,
  163. monthsShort: months,
  164. weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  165. weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
  166. weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  167. weekdaysParseExact: true,
  168. longDateFormat: {
  169. LT: 'HH:mm',
  170. LTS: 'HH:mm:ss',
  171. L: 'D/\u200FM/\u200FYYYY',
  172. LL: 'D MMMM YYYY',
  173. LLL: 'D MMMM YYYY HH:mm',
  174. LLLL: 'dddd D MMMM YYYY HH:mm',
  175. },
  176. meridiemParse: /ص|م/,
  177. isPM: function (input) {
  178. return 'م' === input;
  179. },
  180. meridiem: function (hour, minute, isLower) {
  181. if (hour < 12) {
  182. return 'ص';
  183. } else {
  184. return 'م';
  185. }
  186. },
  187. calendar: {
  188. sameDay: '[اليوم عند الساعة] LT',
  189. nextDay: '[غدًا عند الساعة] LT',
  190. nextWeek: 'dddd [عند الساعة] LT',
  191. lastDay: '[أمس عند الساعة] LT',
  192. lastWeek: 'dddd [عند الساعة] LT',
  193. sameElse: 'L',
  194. },
  195. relativeTime: {
  196. future: 'بعد %s',
  197. past: 'منذ %s',
  198. s: pluralize('s'),
  199. ss: pluralize('s'),
  200. m: pluralize('m'),
  201. mm: pluralize('m'),
  202. h: pluralize('h'),
  203. hh: pluralize('h'),
  204. d: pluralize('d'),
  205. dd: pluralize('d'),
  206. M: pluralize('M'),
  207. MM: pluralize('M'),
  208. y: pluralize('y'),
  209. yy: pluralize('y'),
  210. },
  211. postformat: function (string) {
  212. return string.replace(/,/g, '،');
  213. },
  214. week: {
  215. dow: 0, // Sunday is the first day of the week.
  216. doy: 4, // The week that contains Jan 4th is the first week of the year.
  217. },
  218. });
  219. //! moment.js locale configuration
  220. moment.defineLocale('ar-kw', {
  221. months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
  222. '_'
  223. ),
  224. monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
  225. '_'
  226. ),
  227. weekdays: 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  228. weekdaysShort: 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
  229. weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  230. weekdaysParseExact: true,
  231. longDateFormat: {
  232. LT: 'HH:mm',
  233. LTS: 'HH:mm:ss',
  234. L: 'DD/MM/YYYY',
  235. LL: 'D MMMM YYYY',
  236. LLL: 'D MMMM YYYY HH:mm',
  237. LLLL: 'dddd D MMMM YYYY HH:mm',
  238. },
  239. calendar: {
  240. sameDay: '[اليوم على الساعة] LT',
  241. nextDay: '[غدا على الساعة] LT',
  242. nextWeek: 'dddd [على الساعة] LT',
  243. lastDay: '[أمس على الساعة] LT',
  244. lastWeek: 'dddd [على الساعة] LT',
  245. sameElse: 'L',
  246. },
  247. relativeTime: {
  248. future: 'في %s',
  249. past: 'منذ %s',
  250. s: 'ثوان',
  251. ss: '%d ثانية',
  252. m: 'دقيقة',
  253. mm: '%d دقائق',
  254. h: 'ساعة',
  255. hh: '%d ساعات',
  256. d: 'يوم',
  257. dd: '%d أيام',
  258. M: 'شهر',
  259. MM: '%d أشهر',
  260. y: 'سنة',
  261. yy: '%d سنوات',
  262. },
  263. week: {
  264. dow: 0, // Sunday is the first day of the week.
  265. doy: 12, // The week that contains Jan 12th is the first week of the year.
  266. },
  267. });
  268. //! moment.js locale configuration
  269. var symbolMap = {
  270. 1: '1',
  271. 2: '2',
  272. 3: '3',
  273. 4: '4',
  274. 5: '5',
  275. 6: '6',
  276. 7: '7',
  277. 8: '8',
  278. 9: '9',
  279. 0: '0',
  280. },
  281. pluralForm$1 = function (n) {
  282. return n === 0
  283. ? 0
  284. : n === 1
  285. ? 1
  286. : n === 2
  287. ? 2
  288. : n % 100 >= 3 && n % 100 <= 10
  289. ? 3
  290. : n % 100 >= 11
  291. ? 4
  292. : 5;
  293. },
  294. plurals$1 = {
  295. s: [
  296. 'أقل من ثانية',
  297. 'ثانية واحدة',
  298. ['ثانيتان', 'ثانيتين'],
  299. '%d ثوان',
  300. '%d ثانية',
  301. '%d ثانية',
  302. ],
  303. m: [
  304. 'أقل من دقيقة',
  305. 'دقيقة واحدة',
  306. ['دقيقتان', 'دقيقتين'],
  307. '%d دقائق',
  308. '%d دقيقة',
  309. '%d دقيقة',
  310. ],
  311. h: [
  312. 'أقل من ساعة',
  313. 'ساعة واحدة',
  314. ['ساعتان', 'ساعتين'],
  315. '%d ساعات',
  316. '%d ساعة',
  317. '%d ساعة',
  318. ],
  319. d: [
  320. 'أقل من يوم',
  321. 'يوم واحد',
  322. ['يومان', 'يومين'],
  323. '%d أيام',
  324. '%d يومًا',
  325. '%d يوم',
  326. ],
  327. M: [
  328. 'أقل من شهر',
  329. 'شهر واحد',
  330. ['شهران', 'شهرين'],
  331. '%d أشهر',
  332. '%d شهرا',
  333. '%d شهر',
  334. ],
  335. y: [
  336. 'أقل من عام',
  337. 'عام واحد',
  338. ['عامان', 'عامين'],
  339. '%d أعوام',
  340. '%d عامًا',
  341. '%d عام',
  342. ],
  343. },
  344. pluralize$1 = function (u) {
  345. return function (number, withoutSuffix, string, isFuture) {
  346. var f = pluralForm$1(number),
  347. str = plurals$1[u][pluralForm$1(number)];
  348. if (f === 2) {
  349. str = str[withoutSuffix ? 0 : 1];
  350. }
  351. return str.replace(/%d/i, number);
  352. };
  353. },
  354. months$1 = [
  355. 'يناير',
  356. 'فبراير',
  357. 'مارس',
  358. 'أبريل',
  359. 'مايو',
  360. 'يونيو',
  361. 'يوليو',
  362. 'أغسطس',
  363. 'سبتمبر',
  364. 'أكتوبر',
  365. 'نوفمبر',
  366. 'ديسمبر',
  367. ];
  368. moment.defineLocale('ar-ly', {
  369. months: months$1,
  370. monthsShort: months$1,
  371. weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  372. weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
  373. weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  374. weekdaysParseExact: true,
  375. longDateFormat: {
  376. LT: 'HH:mm',
  377. LTS: 'HH:mm:ss',
  378. L: 'D/\u200FM/\u200FYYYY',
  379. LL: 'D MMMM YYYY',
  380. LLL: 'D MMMM YYYY HH:mm',
  381. LLLL: 'dddd D MMMM YYYY HH:mm',
  382. },
  383. meridiemParse: /ص|م/,
  384. isPM: function (input) {
  385. return 'م' === input;
  386. },
  387. meridiem: function (hour, minute, isLower) {
  388. if (hour < 12) {
  389. return 'ص';
  390. } else {
  391. return 'م';
  392. }
  393. },
  394. calendar: {
  395. sameDay: '[اليوم عند الساعة] LT',
  396. nextDay: '[غدًا عند الساعة] LT',
  397. nextWeek: 'dddd [عند الساعة] LT',
  398. lastDay: '[أمس عند الساعة] LT',
  399. lastWeek: 'dddd [عند الساعة] LT',
  400. sameElse: 'L',
  401. },
  402. relativeTime: {
  403. future: 'بعد %s',
  404. past: 'منذ %s',
  405. s: pluralize$1('s'),
  406. ss: pluralize$1('s'),
  407. m: pluralize$1('m'),
  408. mm: pluralize$1('m'),
  409. h: pluralize$1('h'),
  410. hh: pluralize$1('h'),
  411. d: pluralize$1('d'),
  412. dd: pluralize$1('d'),
  413. M: pluralize$1('M'),
  414. MM: pluralize$1('M'),
  415. y: pluralize$1('y'),
  416. yy: pluralize$1('y'),
  417. },
  418. preparse: function (string) {
  419. return string.replace(/،/g, ',');
  420. },
  421. postformat: function (string) {
  422. return string
  423. .replace(/\d/g, function (match) {
  424. return symbolMap[match];
  425. })
  426. .replace(/,/g, '،');
  427. },
  428. week: {
  429. dow: 6, // Saturday is the first day of the week.
  430. doy: 12, // The week that contains Jan 12th is the first week of the year.
  431. },
  432. });
  433. //! moment.js locale configuration
  434. moment.defineLocale('ar-ma', {
  435. months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
  436. '_'
  437. ),
  438. monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
  439. '_'
  440. ),
  441. weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  442. weekdaysShort: 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
  443. weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  444. weekdaysParseExact: true,
  445. longDateFormat: {
  446. LT: 'HH:mm',
  447. LTS: 'HH:mm:ss',
  448. L: 'DD/MM/YYYY',
  449. LL: 'D MMMM YYYY',
  450. LLL: 'D MMMM YYYY HH:mm',
  451. LLLL: 'dddd D MMMM YYYY HH:mm',
  452. },
  453. calendar: {
  454. sameDay: '[اليوم على الساعة] LT',
  455. nextDay: '[غدا على الساعة] LT',
  456. nextWeek: 'dddd [على الساعة] LT',
  457. lastDay: '[أمس على الساعة] LT',
  458. lastWeek: 'dddd [على الساعة] LT',
  459. sameElse: 'L',
  460. },
  461. relativeTime: {
  462. future: 'في %s',
  463. past: 'منذ %s',
  464. s: 'ثوان',
  465. ss: '%d ثانية',
  466. m: 'دقيقة',
  467. mm: '%d دقائق',
  468. h: 'ساعة',
  469. hh: '%d ساعات',
  470. d: 'يوم',
  471. dd: '%d أيام',
  472. M: 'شهر',
  473. MM: '%d أشهر',
  474. y: 'سنة',
  475. yy: '%d سنوات',
  476. },
  477. week: {
  478. dow: 1, // Monday is the first day of the week.
  479. doy: 4, // The week that contains Jan 4th is the first week of the year.
  480. },
  481. });
  482. //! moment.js locale configuration
  483. var symbolMap$1 = {
  484. 1: '١',
  485. 2: '٢',
  486. 3: '٣',
  487. 4: '٤',
  488. 5: '٥',
  489. 6: '٦',
  490. 7: '٧',
  491. 8: '٨',
  492. 9: '٩',
  493. 0: '٠',
  494. },
  495. numberMap = {
  496. '١': '1',
  497. '٢': '2',
  498. '٣': '3',
  499. '٤': '4',
  500. '٥': '5',
  501. '٦': '6',
  502. '٧': '7',
  503. '٨': '8',
  504. '٩': '9',
  505. '٠': '0',
  506. };
  507. moment.defineLocale('ar-sa', {
  508. months: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
  509. '_'
  510. ),
  511. monthsShort: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
  512. '_'
  513. ),
  514. weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  515. weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
  516. weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  517. weekdaysParseExact: true,
  518. longDateFormat: {
  519. LT: 'HH:mm',
  520. LTS: 'HH:mm:ss',
  521. L: 'DD/MM/YYYY',
  522. LL: 'D MMMM YYYY',
  523. LLL: 'D MMMM YYYY HH:mm',
  524. LLLL: 'dddd D MMMM YYYY HH:mm',
  525. },
  526. meridiemParse: /ص|م/,
  527. isPM: function (input) {
  528. return 'م' === input;
  529. },
  530. meridiem: function (hour, minute, isLower) {
  531. if (hour < 12) {
  532. return 'ص';
  533. } else {
  534. return 'م';
  535. }
  536. },
  537. calendar: {
  538. sameDay: '[اليوم على الساعة] LT',
  539. nextDay: '[غدا على الساعة] LT',
  540. nextWeek: 'dddd [على الساعة] LT',
  541. lastDay: '[أمس على الساعة] LT',
  542. lastWeek: 'dddd [على الساعة] LT',
  543. sameElse: 'L',
  544. },
  545. relativeTime: {
  546. future: 'في %s',
  547. past: 'منذ %s',
  548. s: 'ثوان',
  549. ss: '%d ثانية',
  550. m: 'دقيقة',
  551. mm: '%d دقائق',
  552. h: 'ساعة',
  553. hh: '%d ساعات',
  554. d: 'يوم',
  555. dd: '%d أيام',
  556. M: 'شهر',
  557. MM: '%d أشهر',
  558. y: 'سنة',
  559. yy: '%d سنوات',
  560. },
  561. preparse: function (string) {
  562. return string
  563. .replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
  564. return numberMap[match];
  565. })
  566. .replace(/،/g, ',');
  567. },
  568. postformat: function (string) {
  569. return string
  570. .replace(/\d/g, function (match) {
  571. return symbolMap$1[match];
  572. })
  573. .replace(/,/g, '،');
  574. },
  575. week: {
  576. dow: 0, // Sunday is the first day of the week.
  577. doy: 6, // The week that contains Jan 6th is the first week of the year.
  578. },
  579. });
  580. //! moment.js locale configuration
  581. moment.defineLocale('ar-tn', {
  582. months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
  583. '_'
  584. ),
  585. monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
  586. '_'
  587. ),
  588. weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  589. weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
  590. weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  591. weekdaysParseExact: true,
  592. longDateFormat: {
  593. LT: 'HH:mm',
  594. LTS: 'HH:mm:ss',
  595. L: 'DD/MM/YYYY',
  596. LL: 'D MMMM YYYY',
  597. LLL: 'D MMMM YYYY HH:mm',
  598. LLLL: 'dddd D MMMM YYYY HH:mm',
  599. },
  600. calendar: {
  601. sameDay: '[اليوم على الساعة] LT',
  602. nextDay: '[غدا على الساعة] LT',
  603. nextWeek: 'dddd [على الساعة] LT',
  604. lastDay: '[أمس على الساعة] LT',
  605. lastWeek: 'dddd [على الساعة] LT',
  606. sameElse: 'L',
  607. },
  608. relativeTime: {
  609. future: 'في %s',
  610. past: 'منذ %s',
  611. s: 'ثوان',
  612. ss: '%d ثانية',
  613. m: 'دقيقة',
  614. mm: '%d دقائق',
  615. h: 'ساعة',
  616. hh: '%d ساعات',
  617. d: 'يوم',
  618. dd: '%d أيام',
  619. M: 'شهر',
  620. MM: '%d أشهر',
  621. y: 'سنة',
  622. yy: '%d سنوات',
  623. },
  624. week: {
  625. dow: 1, // Monday is the first day of the week.
  626. doy: 4, // The week that contains Jan 4th is the first week of the year.
  627. },
  628. });
  629. //! moment.js locale configuration
  630. var symbolMap$2 = {
  631. 1: '١',
  632. 2: '٢',
  633. 3: '٣',
  634. 4: '٤',
  635. 5: '٥',
  636. 6: '٦',
  637. 7: '٧',
  638. 8: '٨',
  639. 9: '٩',
  640. 0: '٠',
  641. },
  642. numberMap$1 = {
  643. '١': '1',
  644. '٢': '2',
  645. '٣': '3',
  646. '٤': '4',
  647. '٥': '5',
  648. '٦': '6',
  649. '٧': '7',
  650. '٨': '8',
  651. '٩': '9',
  652. '٠': '0',
  653. },
  654. pluralForm$2 = function (n) {
  655. return n === 0
  656. ? 0
  657. : n === 1
  658. ? 1
  659. : n === 2
  660. ? 2
  661. : n % 100 >= 3 && n % 100 <= 10
  662. ? 3
  663. : n % 100 >= 11
  664. ? 4
  665. : 5;
  666. },
  667. plurals$2 = {
  668. s: [
  669. 'أقل من ثانية',
  670. 'ثانية واحدة',
  671. ['ثانيتان', 'ثانيتين'],
  672. '%d ثوان',
  673. '%d ثانية',
  674. '%d ثانية',
  675. ],
  676. m: [
  677. 'أقل من دقيقة',
  678. 'دقيقة واحدة',
  679. ['دقيقتان', 'دقيقتين'],
  680. '%d دقائق',
  681. '%d دقيقة',
  682. '%d دقيقة',
  683. ],
  684. h: [
  685. 'أقل من ساعة',
  686. 'ساعة واحدة',
  687. ['ساعتان', 'ساعتين'],
  688. '%d ساعات',
  689. '%d ساعة',
  690. '%d ساعة',
  691. ],
  692. d: [
  693. 'أقل من يوم',
  694. 'يوم واحد',
  695. ['يومان', 'يومين'],
  696. '%d أيام',
  697. '%d يومًا',
  698. '%d يوم',
  699. ],
  700. M: [
  701. 'أقل من شهر',
  702. 'شهر واحد',
  703. ['شهران', 'شهرين'],
  704. '%d أشهر',
  705. '%d شهرا',
  706. '%d شهر',
  707. ],
  708. y: [
  709. 'أقل من عام',
  710. 'عام واحد',
  711. ['عامان', 'عامين'],
  712. '%d أعوام',
  713. '%d عامًا',
  714. '%d عام',
  715. ],
  716. },
  717. pluralize$2 = function (u) {
  718. return function (number, withoutSuffix, string, isFuture) {
  719. var f = pluralForm$2(number),
  720. str = plurals$2[u][pluralForm$2(number)];
  721. if (f === 2) {
  722. str = str[withoutSuffix ? 0 : 1];
  723. }
  724. return str.replace(/%d/i, number);
  725. };
  726. },
  727. months$2 = [
  728. 'يناير',
  729. 'فبراير',
  730. 'مارس',
  731. 'أبريل',
  732. 'مايو',
  733. 'يونيو',
  734. 'يوليو',
  735. 'أغسطس',
  736. 'سبتمبر',
  737. 'أكتوبر',
  738. 'نوفمبر',
  739. 'ديسمبر',
  740. ];
  741. moment.defineLocale('ar', {
  742. months: months$2,
  743. monthsShort: months$2,
  744. weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  745. weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
  746. weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  747. weekdaysParseExact: true,
  748. longDateFormat: {
  749. LT: 'HH:mm',
  750. LTS: 'HH:mm:ss',
  751. L: 'D/\u200FM/\u200FYYYY',
  752. LL: 'D MMMM YYYY',
  753. LLL: 'D MMMM YYYY HH:mm',
  754. LLLL: 'dddd D MMMM YYYY HH:mm',
  755. },
  756. meridiemParse: /ص|م/,
  757. isPM: function (input) {
  758. return 'م' === input;
  759. },
  760. meridiem: function (hour, minute, isLower) {
  761. if (hour < 12) {
  762. return 'ص';
  763. } else {
  764. return 'م';
  765. }
  766. },
  767. calendar: {
  768. sameDay: '[اليوم عند الساعة] LT',
  769. nextDay: '[غدًا عند الساعة] LT',
  770. nextWeek: 'dddd [عند الساعة] LT',
  771. lastDay: '[أمس عند الساعة] LT',
  772. lastWeek: 'dddd [عند الساعة] LT',
  773. sameElse: 'L',
  774. },
  775. relativeTime: {
  776. future: 'بعد %s',
  777. past: 'منذ %s',
  778. s: pluralize$2('s'),
  779. ss: pluralize$2('s'),
  780. m: pluralize$2('m'),
  781. mm: pluralize$2('m'),
  782. h: pluralize$2('h'),
  783. hh: pluralize$2('h'),
  784. d: pluralize$2('d'),
  785. dd: pluralize$2('d'),
  786. M: pluralize$2('M'),
  787. MM: pluralize$2('M'),
  788. y: pluralize$2('y'),
  789. yy: pluralize$2('y'),
  790. },
  791. preparse: function (string) {
  792. return string
  793. .replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
  794. return numberMap$1[match];
  795. })
  796. .replace(/،/g, ',');
  797. },
  798. postformat: function (string) {
  799. return string
  800. .replace(/\d/g, function (match) {
  801. return symbolMap$2[match];
  802. })
  803. .replace(/,/g, '،');
  804. },
  805. week: {
  806. dow: 6, // Saturday is the first day of the week.
  807. doy: 12, // The week that contains Jan 12th is the first week of the year.
  808. },
  809. });
  810. //! moment.js locale configuration
  811. var suffixes = {
  812. 1: '-inci',
  813. 5: '-inci',
  814. 8: '-inci',
  815. 70: '-inci',
  816. 80: '-inci',
  817. 2: '-nci',
  818. 7: '-nci',
  819. 20: '-nci',
  820. 50: '-nci',
  821. 3: '-üncü',
  822. 4: '-üncü',
  823. 100: '-üncü',
  824. 6: '-ncı',
  825. 9: '-uncu',
  826. 10: '-uncu',
  827. 30: '-uncu',
  828. 60: '-ıncı',
  829. 90: '-ıncı',
  830. };
  831. moment.defineLocale('az', {
  832. months: 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split(
  833. '_'
  834. ),
  835. monthsShort: 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),
  836. weekdays: 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split(
  837. '_'
  838. ),
  839. weekdaysShort: 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'),
  840. weekdaysMin: 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),
  841. weekdaysParseExact: true,
  842. longDateFormat: {
  843. LT: 'HH:mm',
  844. LTS: 'HH:mm:ss',
  845. L: 'DD.MM.YYYY',
  846. LL: 'D MMMM YYYY',
  847. LLL: 'D MMMM YYYY HH:mm',
  848. LLLL: 'dddd, D MMMM YYYY HH:mm',
  849. },
  850. calendar: {
  851. sameDay: '[bugün saat] LT',
  852. nextDay: '[sabah saat] LT',
  853. nextWeek: '[gələn həftə] dddd [saat] LT',
  854. lastDay: '[dünən] LT',
  855. lastWeek: '[keçən həftə] dddd [saat] LT',
  856. sameElse: 'L',
  857. },
  858. relativeTime: {
  859. future: '%s sonra',
  860. past: '%s əvvəl',
  861. s: 'bir neçə saniyə',
  862. ss: '%d saniyə',
  863. m: 'bir dəqiqə',
  864. mm: '%d dəqiqə',
  865. h: 'bir saat',
  866. hh: '%d saat',
  867. d: 'bir gün',
  868. dd: '%d gün',
  869. M: 'bir ay',
  870. MM: '%d ay',
  871. y: 'bir il',
  872. yy: '%d il',
  873. },
  874. meridiemParse: /gecə|səhər|gündüz|axşam/,
  875. isPM: function (input) {
  876. return /^(gündüz|axşam)$/.test(input);
  877. },
  878. meridiem: function (hour, minute, isLower) {
  879. if (hour < 4) {
  880. return 'gecə';
  881. } else if (hour < 12) {
  882. return 'səhər';
  883. } else if (hour < 17) {
  884. return 'gündüz';
  885. } else {
  886. return 'axşam';
  887. }
  888. },
  889. dayOfMonthOrdinalParse: /\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,
  890. ordinal: function (number) {
  891. if (number === 0) {
  892. // special case for zero
  893. return number + '-ıncı';
  894. }
  895. var a = number % 10,
  896. b = (number % 100) - a,
  897. c = number >= 100 ? 100 : null;
  898. return number + (suffixes[a] || suffixes[b] || suffixes[c]);
  899. },
  900. week: {
  901. dow: 1, // Monday is the first day of the week.
  902. doy: 7, // The week that contains Jan 7th is the first week of the year.
  903. },
  904. });
  905. //! moment.js locale configuration
  906. function plural(word, num) {
  907. var forms = word.split('_');
  908. return num % 10 === 1 && num % 100 !== 11
  909. ? forms[0]
  910. : num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)
  911. ? forms[1]
  912. : forms[2];
  913. }
  914. function relativeTimeWithPlural(number, withoutSuffix, key) {
  915. var format = {
  916. ss: withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',
  917. mm: withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',
  918. hh: withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',
  919. dd: 'дзень_дні_дзён',
  920. MM: 'месяц_месяцы_месяцаў',
  921. yy: 'год_гады_гадоў',
  922. };
  923. if (key === 'm') {
  924. return withoutSuffix ? 'хвіліна' : 'хвіліну';
  925. } else if (key === 'h') {
  926. return withoutSuffix ? 'гадзіна' : 'гадзіну';
  927. } else {
  928. return number + ' ' + plural(format[key], +number);
  929. }
  930. }
  931. moment.defineLocale('be', {
  932. months: {
  933. format: 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split(
  934. '_'
  935. ),
  936. standalone: 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split(
  937. '_'
  938. ),
  939. },
  940. monthsShort: 'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split(
  941. '_'
  942. ),
  943. weekdays: {
  944. format: 'нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу'.split(
  945. '_'
  946. ),
  947. standalone: 'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split(
  948. '_'
  949. ),
  950. isFormat: /\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/,
  951. },
  952. weekdaysShort: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
  953. weekdaysMin: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
  954. longDateFormat: {
  955. LT: 'HH:mm',
  956. LTS: 'HH:mm:ss',
  957. L: 'DD.MM.YYYY',
  958. LL: 'D MMMM YYYY г.',
  959. LLL: 'D MMMM YYYY г., HH:mm',
  960. LLLL: 'dddd, D MMMM YYYY г., HH:mm',
  961. },
  962. calendar: {
  963. sameDay: '[Сёння ў] LT',
  964. nextDay: '[Заўтра ў] LT',
  965. lastDay: '[Учора ў] LT',
  966. nextWeek: function () {
  967. return '[У] dddd [ў] LT';
  968. },
  969. lastWeek: function () {
  970. switch (this.day()) {
  971. case 0:
  972. case 3:
  973. case 5:
  974. case 6:
  975. return '[У мінулую] dddd [ў] LT';
  976. case 1:
  977. case 2:
  978. case 4:
  979. return '[У мінулы] dddd [ў] LT';
  980. }
  981. },
  982. sameElse: 'L',
  983. },
  984. relativeTime: {
  985. future: 'праз %s',
  986. past: '%s таму',
  987. s: 'некалькі секунд',
  988. m: relativeTimeWithPlural,
  989. mm: relativeTimeWithPlural,
  990. h: relativeTimeWithPlural,
  991. hh: relativeTimeWithPlural,
  992. d: 'дзень',
  993. dd: relativeTimeWithPlural,
  994. M: 'месяц',
  995. MM: relativeTimeWithPlural,
  996. y: 'год',
  997. yy: relativeTimeWithPlural,
  998. },
  999. meridiemParse: /ночы|раніцы|дня|вечара/,
  1000. isPM: function (input) {
  1001. return /^(дня|вечара)$/.test(input);
  1002. },
  1003. meridiem: function (hour, minute, isLower) {
  1004. if (hour < 4) {
  1005. return 'ночы';
  1006. } else if (hour < 12) {
  1007. return 'раніцы';
  1008. } else if (hour < 17) {
  1009. return 'дня';
  1010. } else {
  1011. return 'вечара';
  1012. }
  1013. },
  1014. dayOfMonthOrdinalParse: /\d{1,2}-(і|ы|га)/,
  1015. ordinal: function (number, period) {
  1016. switch (period) {
  1017. case 'M':
  1018. case 'd':
  1019. case 'DDD':
  1020. case 'w':
  1021. case 'W':
  1022. return (number % 10 === 2 || number % 10 === 3) &&
  1023. number % 100 !== 12 &&
  1024. number % 100 !== 13
  1025. ? number + '-і'
  1026. : number + '-ы';
  1027. case 'D':
  1028. return number + '-га';
  1029. default:
  1030. return number;
  1031. }
  1032. },
  1033. week: {
  1034. dow: 1, // Monday is the first day of the week.
  1035. doy: 7, // The week that contains Jan 7th is the first week of the year.
  1036. },
  1037. });
  1038. //! moment.js locale configuration
  1039. moment.defineLocale('bg', {
  1040. months: 'януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември'.split(
  1041. '_'
  1042. ),
  1043. monthsShort: 'яну_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек'.split('_'),
  1044. weekdays: 'неделя_понеделник_вторник_сряда_четвъртък_петък_събота'.split(
  1045. '_'
  1046. ),
  1047. weekdaysShort: 'нед_пон_вто_сря_чет_пет_съб'.split('_'),
  1048. weekdaysMin: 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
  1049. longDateFormat: {
  1050. LT: 'H:mm',
  1051. LTS: 'H:mm:ss',
  1052. L: 'D.MM.YYYY',
  1053. LL: 'D MMMM YYYY',
  1054. LLL: 'D MMMM YYYY H:mm',
  1055. LLLL: 'dddd, D MMMM YYYY H:mm',
  1056. },
  1057. calendar: {
  1058. sameDay: '[Днес в] LT',
  1059. nextDay: '[Утре в] LT',
  1060. nextWeek: 'dddd [в] LT',
  1061. lastDay: '[Вчера в] LT',
  1062. lastWeek: function () {
  1063. switch (this.day()) {
  1064. case 0:
  1065. case 3:
  1066. case 6:
  1067. return '[Миналата] dddd [в] LT';
  1068. case 1:
  1069. case 2:
  1070. case 4:
  1071. case 5:
  1072. return '[Миналия] dddd [в] LT';
  1073. }
  1074. },
  1075. sameElse: 'L',
  1076. },
  1077. relativeTime: {
  1078. future: 'след %s',
  1079. past: 'преди %s',
  1080. s: 'няколко секунди',
  1081. ss: '%d секунди',
  1082. m: 'минута',
  1083. mm: '%d минути',
  1084. h: 'час',
  1085. hh: '%d часа',
  1086. d: 'ден',
  1087. dd: '%d дена',
  1088. w: 'седмица',
  1089. ww: '%d седмици',
  1090. M: 'месец',
  1091. MM: '%d месеца',
  1092. y: 'година',
  1093. yy: '%d години',
  1094. },
  1095. dayOfMonthOrdinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
  1096. ordinal: function (number) {
  1097. var lastDigit = number % 10,
  1098. last2Digits = number % 100;
  1099. if (number === 0) {
  1100. return number + '-ев';
  1101. } else if (last2Digits === 0) {
  1102. return number + '-ен';
  1103. } else if (last2Digits > 10 && last2Digits < 20) {
  1104. return number + '-ти';
  1105. } else if (lastDigit === 1) {
  1106. return number + '-ви';
  1107. } else if (lastDigit === 2) {
  1108. return number + '-ри';
  1109. } else if (lastDigit === 7 || lastDigit === 8) {
  1110. return number + '-ми';
  1111. } else {
  1112. return number + '-ти';
  1113. }
  1114. },
  1115. week: {
  1116. dow: 1, // Monday is the first day of the week.
  1117. doy: 7, // The week that contains Jan 7th is the first week of the year.
  1118. },
  1119. });
  1120. //! moment.js locale configuration
  1121. moment.defineLocale('bm', {
  1122. months: 'Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo'.split(
  1123. '_'
  1124. ),
  1125. monthsShort: 'Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des'.split('_'),
  1126. weekdays: 'Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri'.split('_'),
  1127. weekdaysShort: 'Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib'.split('_'),
  1128. weekdaysMin: 'Ka_Nt_Ta_Ar_Al_Ju_Si'.split('_'),
  1129. longDateFormat: {
  1130. LT: 'HH:mm',
  1131. LTS: 'HH:mm:ss',
  1132. L: 'DD/MM/YYYY',
  1133. LL: 'MMMM [tile] D [san] YYYY',
  1134. LLL: 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',
  1135. LLLL: 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',
  1136. },
  1137. calendar: {
  1138. sameDay: '[Bi lɛrɛ] LT',
  1139. nextDay: '[Sini lɛrɛ] LT',
  1140. nextWeek: 'dddd [don lɛrɛ] LT',
  1141. lastDay: '[Kunu lɛrɛ] LT',
  1142. lastWeek: 'dddd [tɛmɛnen lɛrɛ] LT',
  1143. sameElse: 'L',
  1144. },
  1145. relativeTime: {
  1146. future: '%s kɔnɔ',
  1147. past: 'a bɛ %s bɔ',
  1148. s: 'sanga dama dama',
  1149. ss: 'sekondi %d',
  1150. m: 'miniti kelen',
  1151. mm: 'miniti %d',
  1152. h: 'lɛrɛ kelen',
  1153. hh: 'lɛrɛ %d',
  1154. d: 'tile kelen',
  1155. dd: 'tile %d',
  1156. M: 'kalo kelen',
  1157. MM: 'kalo %d',
  1158. y: 'san kelen',
  1159. yy: 'san %d',
  1160. },
  1161. week: {
  1162. dow: 1, // Monday is the first day of the week.
  1163. doy: 4, // The week that contains Jan 4th is the first week of the year.
  1164. },
  1165. });
  1166. //! moment.js locale configuration
  1167. var symbolMap$3 = {
  1168. 1: '১',
  1169. 2: '২',
  1170. 3: '৩',
  1171. 4: '৪',
  1172. 5: '৫',
  1173. 6: '৬',
  1174. 7: '৭',
  1175. 8: '৮',
  1176. 9: '৯',
  1177. 0: '০',
  1178. },
  1179. numberMap$2 = {
  1180. '১': '1',
  1181. '২': '2',
  1182. '৩': '3',
  1183. '৪': '4',
  1184. '৫': '5',
  1185. '৬': '6',
  1186. '৭': '7',
  1187. '৮': '8',
  1188. '৯': '9',
  1189. '০': '0',
  1190. };
  1191. moment.defineLocale('bn-bd', {
  1192. months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(
  1193. '_'
  1194. ),
  1195. monthsShort: 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(
  1196. '_'
  1197. ),
  1198. weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(
  1199. '_'
  1200. ),
  1201. weekdaysShort: 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),
  1202. weekdaysMin: 'রবি_সোম_মঙ্গল_বুধ_বৃহ_শুক্র_শনি'.split('_'),
  1203. longDateFormat: {
  1204. LT: 'A h:mm সময়',
  1205. LTS: 'A h:mm:ss সময়',
  1206. L: 'DD/MM/YYYY',
  1207. LL: 'D MMMM YYYY',
  1208. LLL: 'D MMMM YYYY, A h:mm সময়',
  1209. LLLL: 'dddd, D MMMM YYYY, A h:mm সময়',
  1210. },
  1211. calendar: {
  1212. sameDay: '[আজ] LT',
  1213. nextDay: '[আগামীকাল] LT',
  1214. nextWeek: 'dddd, LT',
  1215. lastDay: '[গতকাল] LT',
  1216. lastWeek: '[গত] dddd, LT',
  1217. sameElse: 'L',
  1218. },
  1219. relativeTime: {
  1220. future: '%s পরে',
  1221. past: '%s আগে',
  1222. s: 'কয়েক সেকেন্ড',
  1223. ss: '%d সেকেন্ড',
  1224. m: 'এক মিনিট',
  1225. mm: '%d মিনিট',
  1226. h: 'এক ঘন্টা',
  1227. hh: '%d ঘন্টা',
  1228. d: 'এক দিন',
  1229. dd: '%d দিন',
  1230. M: 'এক মাস',
  1231. MM: '%d মাস',
  1232. y: 'এক বছর',
  1233. yy: '%d বছর',
  1234. },
  1235. preparse: function (string) {
  1236. return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {
  1237. return numberMap$2[match];
  1238. });
  1239. },
  1240. postformat: function (string) {
  1241. return string.replace(/\d/g, function (match) {
  1242. return symbolMap$3[match];
  1243. });
  1244. },
  1245. meridiemParse: /রাত|ভোর|সকাল|দুপুর|বিকাল|সন্ধ্যা|রাত/,
  1246. meridiemHour: function (hour, meridiem) {
  1247. if (hour === 12) {
  1248. hour = 0;
  1249. }
  1250. if (meridiem === 'রাত') {
  1251. return hour < 4 ? hour : hour + 12;
  1252. } else if (meridiem === 'ভোর') {
  1253. return hour;
  1254. } else if (meridiem === 'সকাল') {
  1255. return hour;
  1256. } else if (meridiem === 'দুপুর') {
  1257. return hour >= 3 ? hour : hour + 12;
  1258. } else if (meridiem === 'বিকাল') {
  1259. return hour + 12;
  1260. } else if (meridiem === 'সন্ধ্যা') {
  1261. return hour + 12;
  1262. }
  1263. },
  1264. meridiem: function (hour, minute, isLower) {
  1265. if (hour < 4) {
  1266. return 'রাত';
  1267. } else if (hour < 6) {
  1268. return 'ভোর';
  1269. } else if (hour < 12) {
  1270. return 'সকাল';
  1271. } else if (hour < 15) {
  1272. return 'দুপুর';
  1273. } else if (hour < 18) {
  1274. return 'বিকাল';
  1275. } else if (hour < 20) {
  1276. return 'সন্ধ্যা';
  1277. } else {
  1278. return 'রাত';
  1279. }
  1280. },
  1281. week: {
  1282. dow: 0, // Sunday is the first day of the week.
  1283. doy: 6, // The week that contains Jan 6th is the first week of the year.
  1284. },
  1285. });
  1286. //! moment.js locale configuration
  1287. var symbolMap$4 = {
  1288. 1: '১',
  1289. 2: '২',
  1290. 3: '৩',
  1291. 4: '৪',
  1292. 5: '৫',
  1293. 6: '৬',
  1294. 7: '৭',
  1295. 8: '৮',
  1296. 9: '৯',
  1297. 0: '০',
  1298. },
  1299. numberMap$3 = {
  1300. '১': '1',
  1301. '২': '2',
  1302. '৩': '3',
  1303. '৪': '4',
  1304. '৫': '5',
  1305. '৬': '6',
  1306. '৭': '7',
  1307. '৮': '8',
  1308. '৯': '9',
  1309. '০': '0',
  1310. };
  1311. moment.defineLocale('bn', {
  1312. months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(
  1313. '_'
  1314. ),
  1315. monthsShort: 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(
  1316. '_'
  1317. ),
  1318. weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(
  1319. '_'
  1320. ),
  1321. weekdaysShort: 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),
  1322. weekdaysMin: 'রবি_সোম_মঙ্গল_বুধ_বৃহ_শুক্র_শনি'.split('_'),
  1323. longDateFormat: {
  1324. LT: 'A h:mm সময়',
  1325. LTS: 'A h:mm:ss সময়',
  1326. L: 'DD/MM/YYYY',
  1327. LL: 'D MMMM YYYY',
  1328. LLL: 'D MMMM YYYY, A h:mm সময়',
  1329. LLLL: 'dddd, D MMMM YYYY, A h:mm সময়',
  1330. },
  1331. calendar: {
  1332. sameDay: '[আজ] LT',
  1333. nextDay: '[আগামীকাল] LT',
  1334. nextWeek: 'dddd, LT',
  1335. lastDay: '[গতকাল] LT',
  1336. lastWeek: '[গত] dddd, LT',
  1337. sameElse: 'L',
  1338. },
  1339. relativeTime: {
  1340. future: '%s পরে',
  1341. past: '%s আগে',
  1342. s: 'কয়েক সেকেন্ড',
  1343. ss: '%d সেকেন্ড',
  1344. m: 'এক মিনিট',
  1345. mm: '%d মিনিট',
  1346. h: 'এক ঘন্টা',
  1347. hh: '%d ঘন্টা',
  1348. d: 'এক দিন',
  1349. dd: '%d দিন',
  1350. M: 'এক মাস',
  1351. MM: '%d মাস',
  1352. y: 'এক বছর',
  1353. yy: '%d বছর',
  1354. },
  1355. preparse: function (string) {
  1356. return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {
  1357. return numberMap$3[match];
  1358. });
  1359. },
  1360. postformat: function (string) {
  1361. return string.replace(/\d/g, function (match) {
  1362. return symbolMap$4[match];
  1363. });
  1364. },
  1365. meridiemParse: /রাত|সকাল|দুপুর|বিকাল|রাত/,
  1366. meridiemHour: function (hour, meridiem) {
  1367. if (hour === 12) {
  1368. hour = 0;
  1369. }
  1370. if (
  1371. (meridiem === 'রাত' && hour >= 4) ||
  1372. (meridiem === 'দুপুর' && hour < 5) ||
  1373. meridiem === 'বিকাল'
  1374. ) {
  1375. return hour + 12;
  1376. } else {
  1377. return hour;
  1378. }
  1379. },
  1380. meridiem: function (hour, minute, isLower) {
  1381. if (hour < 4) {
  1382. return 'রাত';
  1383. } else if (hour < 10) {
  1384. return 'সকাল';
  1385. } else if (hour < 17) {
  1386. return 'দুপুর';
  1387. } else if (hour < 20) {
  1388. return 'বিকাল';
  1389. } else {
  1390. return 'রাত';
  1391. }
  1392. },
  1393. week: {
  1394. dow: 0, // Sunday is the first day of the week.
  1395. doy: 6, // The week that contains Jan 6th is the first week of the year.
  1396. },
  1397. });
  1398. //! moment.js locale configuration
  1399. var symbolMap$5 = {
  1400. 1: '༡',
  1401. 2: '༢',
  1402. 3: '༣',
  1403. 4: '༤',
  1404. 5: '༥',
  1405. 6: '༦',
  1406. 7: '༧',
  1407. 8: '༨',
  1408. 9: '༩',
  1409. 0: '༠',
  1410. },
  1411. numberMap$4 = {
  1412. '༡': '1',
  1413. '༢': '2',
  1414. '༣': '3',
  1415. '༤': '4',
  1416. '༥': '5',
  1417. '༦': '6',
  1418. '༧': '7',
  1419. '༨': '8',
  1420. '༩': '9',
  1421. '༠': '0',
  1422. };
  1423. moment.defineLocale('bo', {
  1424. months: 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split(
  1425. '_'
  1426. ),
  1427. monthsShort: 'ཟླ་1_ཟླ་2_ཟླ་3_ཟླ་4_ཟླ་5_ཟླ་6_ཟླ་7_ཟླ་8_ཟླ་9_ཟླ་10_ཟླ་11_ཟླ་12'.split(
  1428. '_'
  1429. ),
  1430. monthsShortRegex: /^(ཟླ་\d{1,2})/,
  1431. monthsParseExact: true,
  1432. weekdays: 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split(
  1433. '_'
  1434. ),
  1435. weekdaysShort: 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split(
  1436. '_'
  1437. ),
  1438. weekdaysMin: 'ཉི_ཟླ_མིག_ལྷག_ཕུར_སངས_སྤེན'.split('_'),
  1439. longDateFormat: {
  1440. LT: 'A h:mm',
  1441. LTS: 'A h:mm:ss',
  1442. L: 'DD/MM/YYYY',
  1443. LL: 'D MMMM YYYY',
  1444. LLL: 'D MMMM YYYY, A h:mm',
  1445. LLLL: 'dddd, D MMMM YYYY, A h:mm',
  1446. },
  1447. calendar: {
  1448. sameDay: '[དི་རིང] LT',
  1449. nextDay: '[སང་ཉིན] LT',
  1450. nextWeek: '[བདུན་ཕྲག་རྗེས་མ], LT',
  1451. lastDay: '[ཁ་སང] LT',
  1452. lastWeek: '[བདུན་ཕྲག་མཐའ་མ] dddd, LT',
  1453. sameElse: 'L',
  1454. },
  1455. relativeTime: {
  1456. future: '%s ལ་',
  1457. past: '%s སྔན་ལ',
  1458. s: 'ལམ་སང',
  1459. ss: '%d སྐར་ཆ།',
  1460. m: 'སྐར་མ་གཅིག',
  1461. mm: '%d སྐར་མ',
  1462. h: 'ཆུ་ཚོད་གཅིག',
  1463. hh: '%d ཆུ་ཚོད',
  1464. d: 'ཉིན་གཅིག',
  1465. dd: '%d ཉིན་',
  1466. M: 'ཟླ་བ་གཅིག',
  1467. MM: '%d ཟླ་བ',
  1468. y: 'ལོ་གཅིག',
  1469. yy: '%d ལོ',
  1470. },
  1471. preparse: function (string) {
  1472. return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) {
  1473. return numberMap$4[match];
  1474. });
  1475. },
  1476. postformat: function (string) {
  1477. return string.replace(/\d/g, function (match) {
  1478. return symbolMap$5[match];
  1479. });
  1480. },
  1481. meridiemParse: /མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,
  1482. meridiemHour: function (hour, meridiem) {
  1483. if (hour === 12) {
  1484. hour = 0;
  1485. }
  1486. if (
  1487. (meridiem === 'མཚན་མོ' && hour >= 4) ||
  1488. (meridiem === 'ཉིན་གུང' && hour < 5) ||
  1489. meridiem === 'དགོང་དག'
  1490. ) {
  1491. return hour + 12;
  1492. } else {
  1493. return hour;
  1494. }
  1495. },
  1496. meridiem: function (hour, minute, isLower) {
  1497. if (hour < 4) {
  1498. return 'མཚན་མོ';
  1499. } else if (hour < 10) {
  1500. return 'ཞོགས་ཀས';
  1501. } else if (hour < 17) {
  1502. return 'ཉིན་གུང';
  1503. } else if (hour < 20) {
  1504. return 'དགོང་དག';
  1505. } else {
  1506. return 'མཚན་མོ';
  1507. }
  1508. },
  1509. week: {
  1510. dow: 0, // Sunday is the first day of the week.
  1511. doy: 6, // The week that contains Jan 6th is the first week of the year.
  1512. },
  1513. });
  1514. //! moment.js locale configuration
  1515. function relativeTimeWithMutation(number, withoutSuffix, key) {
  1516. var format = {
  1517. mm: 'munutenn',
  1518. MM: 'miz',
  1519. dd: 'devezh',
  1520. };
  1521. return number + ' ' + mutation(format[key], number);
  1522. }
  1523. function specialMutationForYears(number) {
  1524. switch (lastNumber(number)) {
  1525. case 1:
  1526. case 3:
  1527. case 4:
  1528. case 5:
  1529. case 9:
  1530. return number + ' bloaz';
  1531. default:
  1532. return number + ' vloaz';
  1533. }
  1534. }
  1535. function lastNumber(number) {
  1536. if (number > 9) {
  1537. return lastNumber(number % 10);
  1538. }
  1539. return number;
  1540. }
  1541. function mutation(text, number) {
  1542. if (number === 2) {
  1543. return softMutation(text);
  1544. }
  1545. return text;
  1546. }
  1547. function softMutation(text) {
  1548. var mutationTable = {
  1549. m: 'v',
  1550. b: 'v',
  1551. d: 'z',
  1552. };
  1553. if (mutationTable[text.charAt(0)] === undefined) {
  1554. return text;
  1555. }
  1556. return mutationTable[text.charAt(0)] + text.substring(1);
  1557. }
  1558. var monthsParse = [
  1559. /^gen/i,
  1560. /^c[ʼ\']hwe/i,
  1561. /^meu/i,
  1562. /^ebr/i,
  1563. /^mae/i,
  1564. /^(mez|eve)/i,
  1565. /^gou/i,
  1566. /^eos/i,
  1567. /^gwe/i,
  1568. /^her/i,
  1569. /^du/i,
  1570. /^ker/i,
  1571. ],
  1572. monthsRegex = /^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,
  1573. monthsStrictRegex = /^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,
  1574. monthsShortStrictRegex = /^(gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,
  1575. fullWeekdaysParse = [
  1576. /^sul/i,
  1577. /^lun/i,
  1578. /^meurzh/i,
  1579. /^merc[ʼ\']her/i,
  1580. /^yaou/i,
  1581. /^gwener/i,
  1582. /^sadorn/i,
  1583. ],
  1584. shortWeekdaysParse = [
  1585. /^Sul/i,
  1586. /^Lun/i,
  1587. /^Meu/i,
  1588. /^Mer/i,
  1589. /^Yao/i,
  1590. /^Gwe/i,
  1591. /^Sad/i,
  1592. ],
  1593. minWeekdaysParse = [
  1594. /^Su/i,
  1595. /^Lu/i,
  1596. /^Me([^r]|$)/i,
  1597. /^Mer/i,
  1598. /^Ya/i,
  1599. /^Gw/i,
  1600. /^Sa/i,
  1601. ];
  1602. moment.defineLocale('br', {
  1603. months: 'Genver_Cʼhwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu'.split(
  1604. '_'
  1605. ),
  1606. monthsShort: 'Gen_Cʼhwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker'.split('_'),
  1607. weekdays: 'Sul_Lun_Meurzh_Mercʼher_Yaou_Gwener_Sadorn'.split('_'),
  1608. weekdaysShort: 'Sul_Lun_Meu_Mer_Yao_Gwe_Sad'.split('_'),
  1609. weekdaysMin: 'Su_Lu_Me_Mer_Ya_Gw_Sa'.split('_'),
  1610. weekdaysParse: minWeekdaysParse,
  1611. fullWeekdaysParse: fullWeekdaysParse,
  1612. shortWeekdaysParse: shortWeekdaysParse,
  1613. minWeekdaysParse: minWeekdaysParse,
  1614. monthsRegex: monthsRegex,
  1615. monthsShortRegex: monthsRegex,
  1616. monthsStrictRegex: monthsStrictRegex,
  1617. monthsShortStrictRegex: monthsShortStrictRegex,
  1618. monthsParse: monthsParse,
  1619. longMonthsParse: monthsParse,
  1620. shortMonthsParse: monthsParse,
  1621. longDateFormat: {
  1622. LT: 'HH:mm',
  1623. LTS: 'HH:mm:ss',
  1624. L: 'DD/MM/YYYY',
  1625. LL: 'D [a viz] MMMM YYYY',
  1626. LLL: 'D [a viz] MMMM YYYY HH:mm',
  1627. LLLL: 'dddd, D [a viz] MMMM YYYY HH:mm',
  1628. },
  1629. calendar: {
  1630. sameDay: '[Hiziv da] LT',
  1631. nextDay: '[Warcʼhoazh da] LT',
  1632. nextWeek: 'dddd [da] LT',
  1633. lastDay: '[Decʼh da] LT',
  1634. lastWeek: 'dddd [paset da] LT',
  1635. sameElse: 'L',
  1636. },
  1637. relativeTime: {
  1638. future: 'a-benn %s',
  1639. past: '%s ʼzo',
  1640. s: 'un nebeud segondennoù',
  1641. ss: '%d eilenn',
  1642. m: 'ur vunutenn',
  1643. mm: relativeTimeWithMutation,
  1644. h: 'un eur',
  1645. hh: '%d eur',
  1646. d: 'un devezh',
  1647. dd: relativeTimeWithMutation,
  1648. M: 'ur miz',
  1649. MM: relativeTimeWithMutation,
  1650. y: 'ur bloaz',
  1651. yy: specialMutationForYears,
  1652. },
  1653. dayOfMonthOrdinalParse: /\d{1,2}(añ|vet)/,
  1654. ordinal: function (number) {
  1655. var output = number === 1 ? 'añ' : 'vet';
  1656. return number + output;
  1657. },
  1658. week: {
  1659. dow: 1, // Monday is the first day of the week.
  1660. doy: 4, // The week that contains Jan 4th is the first week of the year.
  1661. },
  1662. meridiemParse: /a.m.|g.m./, // goude merenn | a-raok merenn
  1663. isPM: function (token) {
  1664. return token === 'g.m.';
  1665. },
  1666. meridiem: function (hour, minute, isLower) {
  1667. return hour < 12 ? 'a.m.' : 'g.m.';
  1668. },
  1669. });
  1670. //! moment.js locale configuration
  1671. function translate(number, withoutSuffix, key) {
  1672. var result = number + ' ';
  1673. switch (key) {
  1674. case 'ss':
  1675. if (number === 1) {
  1676. result += 'sekunda';
  1677. } else if (number === 2 || number === 3 || number === 4) {
  1678. result += 'sekunde';
  1679. } else {
  1680. result += 'sekundi';
  1681. }
  1682. return result;
  1683. case 'm':
  1684. return withoutSuffix ? 'jedna minuta' : 'jedne minute';
  1685. case 'mm':
  1686. if (number === 1) {
  1687. result += 'minuta';
  1688. } else if (number === 2 || number === 3 || number === 4) {
  1689. result += 'minute';
  1690. } else {
  1691. result += 'minuta';
  1692. }
  1693. return result;
  1694. case 'h':
  1695. return withoutSuffix ? 'jedan sat' : 'jednog sata';
  1696. case 'hh':
  1697. if (number === 1) {
  1698. result += 'sat';
  1699. } else if (number === 2 || number === 3 || number === 4) {
  1700. result += 'sata';
  1701. } else {
  1702. result += 'sati';
  1703. }
  1704. return result;
  1705. case 'dd':
  1706. if (number === 1) {
  1707. result += 'dan';
  1708. } else {
  1709. result += 'dana';
  1710. }
  1711. return result;
  1712. case 'MM':
  1713. if (number === 1) {
  1714. result += 'mjesec';
  1715. } else if (number === 2 || number === 3 || number === 4) {
  1716. result += 'mjeseca';
  1717. } else {
  1718. result += 'mjeseci';
  1719. }
  1720. return result;
  1721. case 'yy':
  1722. if (number === 1) {
  1723. result += 'godina';
  1724. } else if (number === 2 || number === 3 || number === 4) {
  1725. result += 'godine';
  1726. } else {
  1727. result += 'godina';
  1728. }
  1729. return result;
  1730. }
  1731. }
  1732. moment.defineLocale('bs', {
  1733. months: 'januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar'.split(
  1734. '_'
  1735. ),
  1736. monthsShort: 'jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.'.split(
  1737. '_'
  1738. ),
  1739. monthsParseExact: true,
  1740. weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(
  1741. '_'
  1742. ),
  1743. weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),
  1744. weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),
  1745. weekdaysParseExact: true,
  1746. longDateFormat: {
  1747. LT: 'H:mm',
  1748. LTS: 'H:mm:ss',
  1749. L: 'DD.MM.YYYY',
  1750. LL: 'D. MMMM YYYY',
  1751. LLL: 'D. MMMM YYYY H:mm',
  1752. LLLL: 'dddd, D. MMMM YYYY H:mm',
  1753. },
  1754. calendar: {
  1755. sameDay: '[danas u] LT',
  1756. nextDay: '[sutra u] LT',
  1757. nextWeek: function () {
  1758. switch (this.day()) {
  1759. case 0:
  1760. return '[u] [nedjelju] [u] LT';
  1761. case 3:
  1762. return '[u] [srijedu] [u] LT';
  1763. case 6:
  1764. return '[u] [subotu] [u] LT';
  1765. case 1:
  1766. case 2:
  1767. case 4:
  1768. case 5:
  1769. return '[u] dddd [u] LT';
  1770. }
  1771. },
  1772. lastDay: '[jučer u] LT',
  1773. lastWeek: function () {
  1774. switch (this.day()) {
  1775. case 0:
  1776. case 3:
  1777. return '[prošlu] dddd [u] LT';
  1778. case 6:
  1779. return '[prošle] [subote] [u] LT';
  1780. case 1:
  1781. case 2:
  1782. case 4:
  1783. case 5:
  1784. return '[prošli] dddd [u] LT';
  1785. }
  1786. },
  1787. sameElse: 'L',
  1788. },
  1789. relativeTime: {
  1790. future: 'za %s',
  1791. past: 'prije %s',
  1792. s: 'par sekundi',
  1793. ss: translate,
  1794. m: translate,
  1795. mm: translate,
  1796. h: translate,
  1797. hh: translate,
  1798. d: 'dan',
  1799. dd: translate,
  1800. M: 'mjesec',
  1801. MM: translate,
  1802. y: 'godinu',
  1803. yy: translate,
  1804. },
  1805. dayOfMonthOrdinalParse: /\d{1,2}\./,
  1806. ordinal: '%d.',
  1807. week: {
  1808. dow: 1, // Monday is the first day of the week.
  1809. doy: 7, // The week that contains Jan 7th is the first week of the year.
  1810. },
  1811. });
  1812. //! moment.js locale configuration
  1813. moment.defineLocale('ca', {
  1814. months: {
  1815. standalone: 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split(
  1816. '_'
  1817. ),
  1818. format: "de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split(
  1819. '_'
  1820. ),
  1821. isFormat: /D[oD]?(\s)+MMMM/,
  1822. },
  1823. monthsShort: 'gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.'.split(
  1824. '_'
  1825. ),
  1826. monthsParseExact: true,
  1827. weekdays: 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split(
  1828. '_'
  1829. ),
  1830. weekdaysShort: 'dg._dl._dt._dc._dj._dv._ds.'.split('_'),
  1831. weekdaysMin: 'dg_dl_dt_dc_dj_dv_ds'.split('_'),
  1832. weekdaysParseExact: true,
  1833. longDateFormat: {
  1834. LT: 'H:mm',
  1835. LTS: 'H:mm:ss',
  1836. L: 'DD/MM/YYYY',
  1837. LL: 'D MMMM [de] YYYY',
  1838. ll: 'D MMM YYYY',
  1839. LLL: 'D MMMM [de] YYYY [a les] H:mm',
  1840. lll: 'D MMM YYYY, H:mm',
  1841. LLLL: 'dddd D MMMM [de] YYYY [a les] H:mm',
  1842. llll: 'ddd D MMM YYYY, H:mm',
  1843. },
  1844. calendar: {
  1845. sameDay: function () {
  1846. return '[avui a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
  1847. },
  1848. nextDay: function () {
  1849. return '[demà a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
  1850. },
  1851. nextWeek: function () {
  1852. return 'dddd [a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
  1853. },
  1854. lastDay: function () {
  1855. return '[ahir a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
  1856. },
  1857. lastWeek: function () {
  1858. return (
  1859. '[el] dddd [passat a ' +
  1860. (this.hours() !== 1 ? 'les' : 'la') +
  1861. '] LT'
  1862. );
  1863. },
  1864. sameElse: 'L',
  1865. },
  1866. relativeTime: {
  1867. future: "d'aquí %s",
  1868. past: 'fa %s',
  1869. s: 'uns segons',
  1870. ss: '%d segons',
  1871. m: 'un minut',
  1872. mm: '%d minuts',
  1873. h: 'una hora',
  1874. hh: '%d hores',
  1875. d: 'un dia',
  1876. dd: '%d dies',
  1877. M: 'un mes',
  1878. MM: '%d mesos',
  1879. y: 'un any',
  1880. yy: '%d anys',
  1881. },
  1882. dayOfMonthOrdinalParse: /\d{1,2}(r|n|t|è|a)/,
  1883. ordinal: function (number, period) {
  1884. var output =
  1885. number === 1
  1886. ? 'r'
  1887. : number === 2
  1888. ? 'n'
  1889. : number === 3
  1890. ? 'r'
  1891. : number === 4
  1892. ? 't'
  1893. : 'è';
  1894. if (period === 'w' || period === 'W') {
  1895. output = 'a';
  1896. }
  1897. return number + output;
  1898. },
  1899. week: {
  1900. dow: 1, // Monday is the first day of the week.
  1901. doy: 4, // The week that contains Jan 4th is the first week of the year.
  1902. },
  1903. });
  1904. //! moment.js locale configuration
  1905. var months$3 = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split(
  1906. '_'
  1907. ),
  1908. monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_'),
  1909. monthsParse$1 = [
  1910. /^led/i,
  1911. /^úno/i,
  1912. /^bře/i,
  1913. /^dub/i,
  1914. /^kvě/i,
  1915. /^(čvn|červen$|června)/i,
  1916. /^(čvc|červenec|července)/i,
  1917. /^srp/i,
  1918. /^zář/i,
  1919. /^říj/i,
  1920. /^lis/i,
  1921. /^pro/i,
  1922. ],
  1923. // NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.
  1924. // Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.
  1925. monthsRegex$1 = /^(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;
  1926. function plural$1(n) {
  1927. return n > 1 && n < 5 && ~~(n / 10) !== 1;
  1928. }
  1929. function translate$1(number, withoutSuffix, key, isFuture) {
  1930. var result = number + ' ';
  1931. switch (key) {
  1932. case 's': // a few seconds / in a few seconds / a few seconds ago
  1933. return withoutSuffix || isFuture ? 'pár sekund' : 'pár sekundami';
  1934. case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago
  1935. if (withoutSuffix || isFuture) {
  1936. return result + (plural$1(number) ? 'sekundy' : 'sekund');
  1937. } else {
  1938. return result + 'sekundami';
  1939. }
  1940. case 'm': // a minute / in a minute / a minute ago
  1941. return withoutSuffix ? 'minuta' : isFuture ? 'minutu' : 'minutou';
  1942. case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
  1943. if (withoutSuffix || isFuture) {
  1944. return result + (plural$1(number) ? 'minuty' : 'minut');
  1945. } else {
  1946. return result + 'minutami';
  1947. }
  1948. case 'h': // an hour / in an hour / an hour ago
  1949. return withoutSuffix ? 'hodina' : isFuture ? 'hodinu' : 'hodinou';
  1950. case 'hh': // 9 hours / in 9 hours / 9 hours ago
  1951. if (withoutSuffix || isFuture) {
  1952. return result + (plural$1(number) ? 'hodiny' : 'hodin');
  1953. } else {
  1954. return result + 'hodinami';
  1955. }
  1956. case 'd': // a day / in a day / a day ago
  1957. return withoutSuffix || isFuture ? 'den' : 'dnem';
  1958. case 'dd': // 9 days / in 9 days / 9 days ago
  1959. if (withoutSuffix || isFuture) {
  1960. return result + (plural$1(number) ? 'dny' : 'dní');
  1961. } else {
  1962. return result + 'dny';
  1963. }
  1964. case 'M': // a month / in a month / a month ago
  1965. return withoutSuffix || isFuture ? 'měsíc' : 'měsícem';
  1966. case 'MM': // 9 months / in 9 months / 9 months ago
  1967. if (withoutSuffix || isFuture) {
  1968. return result + (plural$1(number) ? 'měsíce' : 'měsíců');
  1969. } else {
  1970. return result + 'měsíci';
  1971. }
  1972. case 'y': // a year / in a year / a year ago
  1973. return withoutSuffix || isFuture ? 'rok' : 'rokem';
  1974. case 'yy': // 9 years / in 9 years / 9 years ago
  1975. if (withoutSuffix || isFuture) {
  1976. return result + (plural$1(number) ? 'roky' : 'let');
  1977. } else {
  1978. return result + 'lety';
  1979. }
  1980. }
  1981. }
  1982. moment.defineLocale('cs', {
  1983. months: months$3,
  1984. monthsShort: monthsShort,
  1985. monthsRegex: monthsRegex$1,
  1986. monthsShortRegex: monthsRegex$1,
  1987. // NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.
  1988. // Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.
  1989. 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,
  1990. monthsShortStrictRegex: /^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i,
  1991. monthsParse: monthsParse$1,
  1992. longMonthsParse: monthsParse$1,
  1993. shortMonthsParse: monthsParse$1,
  1994. weekdays: 'neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota'.split('_'),
  1995. weekdaysShort: 'ne_po_út_st_čt_pá_so'.split('_'),
  1996. weekdaysMin: 'ne_po_út_st_čt_pá_so'.split('_'),
  1997. longDateFormat: {
  1998. LT: 'H:mm',
  1999. LTS: 'H:mm:ss',
  2000. L: 'DD.MM.YYYY',
  2001. LL: 'D. MMMM YYYY',
  2002. LLL: 'D. MMMM YYYY H:mm',
  2003. LLLL: 'dddd D. MMMM YYYY H:mm',
  2004. l: 'D. M. YYYY',
  2005. },
  2006. calendar: {
  2007. sameDay: '[dnes v] LT',
  2008. nextDay: '[zítra v] LT',
  2009. nextWeek: function () {
  2010. switch (this.day()) {
  2011. case 0:
  2012. return '[v neděli v] LT';
  2013. case 1:
  2014. case 2:
  2015. return '[v] dddd [v] LT';
  2016. case 3:
  2017. return '[ve středu v] LT';
  2018. case 4:
  2019. return '[ve čtvrtek v] LT';
  2020. case 5:
  2021. return '[v pátek v] LT';
  2022. case 6:
  2023. return '[v sobotu v] LT';
  2024. }
  2025. },
  2026. lastDay: '[včera v] LT',
  2027. lastWeek: function () {
  2028. switch (this.day()) {
  2029. case 0:
  2030. return '[minulou neděli v] LT';
  2031. case 1:
  2032. case 2:
  2033. return '[minulé] dddd [v] LT';
  2034. case 3:
  2035. return '[minulou středu v] LT';
  2036. case 4:
  2037. case 5:
  2038. return '[minulý] dddd [v] LT';
  2039. case 6:
  2040. return '[minulou sobotu v] LT';
  2041. }
  2042. },
  2043. sameElse: 'L',
  2044. },
  2045. relativeTime: {
  2046. future: 'za %s',
  2047. past: 'před %s',
  2048. s: translate$1,
  2049. ss: translate$1,
  2050. m: translate$1,
  2051. mm: translate$1,
  2052. h: translate$1,
  2053. hh: translate$1,
  2054. d: translate$1,
  2055. dd: translate$1,
  2056. M: translate$1,
  2057. MM: translate$1,
  2058. y: translate$1,
  2059. yy: translate$1,
  2060. },
  2061. dayOfMonthOrdinalParse: /\d{1,2}\./,
  2062. ordinal: '%d.',
  2063. week: {
  2064. dow: 1, // Monday is the first day of the week.
  2065. doy: 4, // The week that contains Jan 4th is the first week of the year.
  2066. },
  2067. });
  2068. //! moment.js locale configuration
  2069. moment.defineLocale('cv', {
  2070. months: 'кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав'.split(
  2071. '_'
  2072. ),
  2073. monthsShort: 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'),
  2074. weekdays: 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split(
  2075. '_'
  2076. ),
  2077. weekdaysShort: 'выр_тун_ытл_юн_кӗҫ_эрн_шӑм'.split('_'),
  2078. weekdaysMin: 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'),
  2079. longDateFormat: {
  2080. LT: 'HH:mm',
  2081. LTS: 'HH:mm:ss',
  2082. L: 'DD-MM-YYYY',
  2083. LL: 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]',
  2084. LLL: 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',
  2085. LLLL: 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',
  2086. },
  2087. calendar: {
  2088. sameDay: '[Паян] LT [сехетре]',
  2089. nextDay: '[Ыран] LT [сехетре]',
  2090. lastDay: '[Ӗнер] LT [сехетре]',
  2091. nextWeek: '[Ҫитес] dddd LT [сехетре]',
  2092. lastWeek: '[Иртнӗ] dddd LT [сехетре]',
  2093. sameElse: 'L',
  2094. },
  2095. relativeTime: {
  2096. future: function (output) {
  2097. var affix = /сехет$/i.exec(output)
  2098. ? 'рен'
  2099. : /ҫул$/i.exec(output)
  2100. ? 'тан'
  2101. : 'ран';
  2102. return output + affix;
  2103. },
  2104. past: '%s каялла',
  2105. s: 'пӗр-ик ҫеккунт',
  2106. ss: '%d ҫеккунт',
  2107. m: 'пӗр минут',
  2108. mm: '%d минут',
  2109. h: 'пӗр сехет',
  2110. hh: '%d сехет',
  2111. d: 'пӗр кун',
  2112. dd: '%d кун',
  2113. M: 'пӗр уйӑх',
  2114. MM: '%d уйӑх',
  2115. y: 'пӗр ҫул',
  2116. yy: '%d ҫул',
  2117. },
  2118. dayOfMonthOrdinalParse: /\d{1,2}-мӗш/,
  2119. ordinal: '%d-мӗш',
  2120. week: {
  2121. dow: 1, // Monday is the first day of the week.
  2122. doy: 7, // The week that contains Jan 7th is the first week of the year.
  2123. },
  2124. });
  2125. //! moment.js locale configuration
  2126. moment.defineLocale('cy', {
  2127. months: 'Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr'.split(
  2128. '_'
  2129. ),
  2130. monthsShort: 'Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag'.split(
  2131. '_'
  2132. ),
  2133. weekdays: 'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split(
  2134. '_'
  2135. ),
  2136. weekdaysShort: 'Sul_Llun_Maw_Mer_Iau_Gwe_Sad'.split('_'),
  2137. weekdaysMin: 'Su_Ll_Ma_Me_Ia_Gw_Sa'.split('_'),
  2138. weekdaysParseExact: true,
  2139. // time formats are the same as en-gb
  2140. longDateFormat: {
  2141. LT: 'HH:mm',
  2142. LTS: 'HH:mm:ss',
  2143. L: 'DD/MM/YYYY',
  2144. LL: 'D MMMM YYYY',
  2145. LLL: 'D MMMM YYYY HH:mm',
  2146. LLLL: 'dddd, D MMMM YYYY HH:mm',
  2147. },
  2148. calendar: {
  2149. sameDay: '[Heddiw am] LT',
  2150. nextDay: '[Yfory am] LT',
  2151. nextWeek: 'dddd [am] LT',
  2152. lastDay: '[Ddoe am] LT',
  2153. lastWeek: 'dddd [diwethaf am] LT',
  2154. sameElse: 'L',
  2155. },
  2156. relativeTime: {
  2157. future: 'mewn %s',
  2158. past: '%s yn ôl',
  2159. s: 'ychydig eiliadau',
  2160. ss: '%d eiliad',
  2161. m: 'munud',
  2162. mm: '%d munud',
  2163. h: 'awr',
  2164. hh: '%d awr',
  2165. d: 'diwrnod',
  2166. dd: '%d diwrnod',
  2167. M: 'mis',
  2168. MM: '%d mis',
  2169. y: 'blwyddyn',
  2170. yy: '%d flynedd',
  2171. },
  2172. dayOfMonthOrdinalParse: /\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,
  2173. // traditional ordinal numbers above 31 are not commonly used in colloquial Welsh
  2174. ordinal: function (number) {
  2175. var b = number,
  2176. output = '',
  2177. lookup = [
  2178. '',
  2179. 'af',
  2180. 'il',
  2181. 'ydd',
  2182. 'ydd',
  2183. 'ed',
  2184. 'ed',
  2185. 'ed',
  2186. 'fed',
  2187. 'fed',
  2188. 'fed', // 1af to 10fed
  2189. 'eg',
  2190. 'fed',
  2191. 'eg',
  2192. 'eg',
  2193. 'fed',
  2194. 'eg',
  2195. 'eg',
  2196. 'fed',
  2197. 'eg',
  2198. 'fed', // 11eg to 20fed
  2199. ];
  2200. if (b > 20) {
  2201. if (b === 40 || b === 50 || b === 60 || b === 80 || b === 100) {
  2202. output = 'fed'; // not 30ain, 70ain or 90ain
  2203. } else {
  2204. output = 'ain';
  2205. }
  2206. } else if (b > 0) {
  2207. output = lookup[b];
  2208. }
  2209. return number + output;
  2210. },
  2211. week: {
  2212. dow: 1, // Monday is the first day of the week.
  2213. doy: 4, // The week that contains Jan 4th is the first week of the year.
  2214. },
  2215. });
  2216. //! moment.js locale configuration
  2217. moment.defineLocale('da', {
  2218. months: 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split(
  2219. '_'
  2220. ),
  2221. monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
  2222. weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
  2223. weekdaysShort: 'søn_man_tir_ons_tor_fre_lør'.split('_'),
  2224. weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),
  2225. longDateFormat: {
  2226. LT: 'HH:mm',
  2227. LTS: 'HH:mm:ss',
  2228. L: 'DD.MM.YYYY',
  2229. LL: 'D. MMMM YYYY',
  2230. LLL: 'D. MMMM YYYY HH:mm',
  2231. LLLL: 'dddd [d.] D. MMMM YYYY [kl.] HH:mm',
  2232. },
  2233. calendar: {
  2234. sameDay: '[i dag kl.] LT',
  2235. nextDay: '[i morgen kl.] LT',
  2236. nextWeek: 'på dddd [kl.] LT',
  2237. lastDay: '[i går kl.] LT',
  2238. lastWeek: '[i] dddd[s kl.] LT',
  2239. sameElse: 'L',
  2240. },
  2241. relativeTime: {
  2242. future: 'om %s',
  2243. past: '%s siden',
  2244. s: 'få sekunder',
  2245. ss: '%d sekunder',
  2246. m: 'et minut',
  2247. mm: '%d minutter',
  2248. h: 'en time',
  2249. hh: '%d timer',
  2250. d: 'en dag',
  2251. dd: '%d dage',
  2252. M: 'en måned',
  2253. MM: '%d måneder',
  2254. y: 'et år',
  2255. yy: '%d år',
  2256. },
  2257. dayOfMonthOrdinalParse: /\d{1,2}\./,
  2258. ordinal: '%d.',
  2259. week: {
  2260. dow: 1, // Monday is the first day of the week.
  2261. doy: 4, // The week that contains Jan 4th is the first week of the year.
  2262. },
  2263. });
  2264. //! moment.js locale configuration
  2265. function processRelativeTime(number, withoutSuffix, key, isFuture) {
  2266. var format = {
  2267. m: ['eine Minute', 'einer Minute'],
  2268. h: ['eine Stunde', 'einer Stunde'],
  2269. d: ['ein Tag', 'einem Tag'],
  2270. dd: [number + ' Tage', number + ' Tagen'],
  2271. w: ['eine Woche', 'einer Woche'],
  2272. M: ['ein Monat', 'einem Monat'],
  2273. MM: [number + ' Monate', number + ' Monaten'],
  2274. y: ['ein Jahr', 'einem Jahr'],
  2275. yy: [number + ' Jahre', number + ' Jahren'],
  2276. };
  2277. return withoutSuffix ? format[key][0] : format[key][1];
  2278. }
  2279. moment.defineLocale('de-at', {
  2280. months: 'Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
  2281. '_'
  2282. ),
  2283. monthsShort: 'Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split(
  2284. '_'
  2285. ),
  2286. monthsParseExact: true,
  2287. weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
  2288. '_'
  2289. ),
  2290. weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
  2291. weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
  2292. weekdaysParseExact: true,
  2293. longDateFormat: {
  2294. LT: 'HH:mm',
  2295. LTS: 'HH:mm:ss',
  2296. L: 'DD.MM.YYYY',
  2297. LL: 'D. MMMM YYYY',
  2298. LLL: 'D. MMMM YYYY HH:mm',
  2299. LLLL: 'dddd, D. MMMM YYYY HH:mm',
  2300. },
  2301. calendar: {
  2302. sameDay: '[heute um] LT [Uhr]',
  2303. sameElse: 'L',
  2304. nextDay: '[morgen um] LT [Uhr]',
  2305. nextWeek: 'dddd [um] LT [Uhr]',
  2306. lastDay: '[gestern um] LT [Uhr]',
  2307. lastWeek: '[letzten] dddd [um] LT [Uhr]',
  2308. },
  2309. relativeTime: {
  2310. future: 'in %s',
  2311. past: 'vor %s',
  2312. s: 'ein paar Sekunden',
  2313. ss: '%d Sekunden',
  2314. m: processRelativeTime,
  2315. mm: '%d Minuten',
  2316. h: processRelativeTime,
  2317. hh: '%d Stunden',
  2318. d: processRelativeTime,
  2319. dd: processRelativeTime,
  2320. w: processRelativeTime,
  2321. ww: '%d Wochen',
  2322. M: processRelativeTime,
  2323. MM: processRelativeTime,
  2324. y: processRelativeTime,
  2325. yy: processRelativeTime,
  2326. },
  2327. dayOfMonthOrdinalParse: /\d{1,2}\./,
  2328. ordinal: '%d.',
  2329. week: {
  2330. dow: 1, // Monday is the first day of the week.
  2331. doy: 4, // The week that contains Jan 4th is the first week of the year.
  2332. },
  2333. });
  2334. //! moment.js locale configuration
  2335. function processRelativeTime$1(number, withoutSuffix, key, isFuture) {
  2336. var format = {
  2337. m: ['eine Minute', 'einer Minute'],
  2338. h: ['eine Stunde', 'einer Stunde'],
  2339. d: ['ein Tag', 'einem Tag'],
  2340. dd: [number + ' Tage', number + ' Tagen'],
  2341. w: ['eine Woche', 'einer Woche'],
  2342. M: ['ein Monat', 'einem Monat'],
  2343. MM: [number + ' Monate', number + ' Monaten'],
  2344. y: ['ein Jahr', 'einem Jahr'],
  2345. yy: [number + ' Jahre', number + ' Jahren'],
  2346. };
  2347. return withoutSuffix ? format[key][0] : format[key][1];
  2348. }
  2349. moment.defineLocale('de-ch', {
  2350. months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
  2351. '_'
  2352. ),
  2353. monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split(
  2354. '_'
  2355. ),
  2356. monthsParseExact: true,
  2357. weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
  2358. '_'
  2359. ),
  2360. weekdaysShort: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
  2361. weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
  2362. weekdaysParseExact: true,
  2363. longDateFormat: {
  2364. LT: 'HH:mm',
  2365. LTS: 'HH:mm:ss',
  2366. L: 'DD.MM.YYYY',
  2367. LL: 'D. MMMM YYYY',
  2368. LLL: 'D. MMMM YYYY HH:mm',
  2369. LLLL: 'dddd, D. MMMM YYYY HH:mm',
  2370. },
  2371. calendar: {
  2372. sameDay: '[heute um] LT [Uhr]',
  2373. sameElse: 'L',
  2374. nextDay: '[morgen um] LT [Uhr]',
  2375. nextWeek: 'dddd [um] LT [Uhr]',
  2376. lastDay: '[gestern um] LT [Uhr]',
  2377. lastWeek: '[letzten] dddd [um] LT [Uhr]',
  2378. },
  2379. relativeTime: {
  2380. future: 'in %s',
  2381. past: 'vor %s',
  2382. s: 'ein paar Sekunden',
  2383. ss: '%d Sekunden',
  2384. m: processRelativeTime$1,
  2385. mm: '%d Minuten',
  2386. h: processRelativeTime$1,
  2387. hh: '%d Stunden',
  2388. d: processRelativeTime$1,
  2389. dd: processRelativeTime$1,
  2390. w: processRelativeTime$1,
  2391. ww: '%d Wochen',
  2392. M: processRelativeTime$1,
  2393. MM: processRelativeTime$1,
  2394. y: processRelativeTime$1,
  2395. yy: processRelativeTime$1,
  2396. },
  2397. dayOfMonthOrdinalParse: /\d{1,2}\./,
  2398. ordinal: '%d.',
  2399. week: {
  2400. dow: 1, // Monday is the first day of the week.
  2401. doy: 4, // The week that contains Jan 4th is the first week of the year.
  2402. },
  2403. });
  2404. //! moment.js locale configuration
  2405. function processRelativeTime$2(number, withoutSuffix, key, isFuture) {
  2406. var format = {
  2407. m: ['eine Minute', 'einer Minute'],
  2408. h: ['eine Stunde', 'einer Stunde'],
  2409. d: ['ein Tag', 'einem Tag'],
  2410. dd: [number + ' Tage', number + ' Tagen'],
  2411. w: ['eine Woche', 'einer Woche'],
  2412. M: ['ein Monat', 'einem Monat'],
  2413. MM: [number + ' Monate', number + ' Monaten'],
  2414. y: ['ein Jahr', 'einem Jahr'],
  2415. yy: [number + ' Jahre', number + ' Jahren'],
  2416. };
  2417. return withoutSuffix ? format[key][0] : format[key][1];
  2418. }
  2419. moment.defineLocale('de', {
  2420. months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
  2421. '_'
  2422. ),
  2423. monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split(
  2424. '_'
  2425. ),
  2426. monthsParseExact: true,
  2427. weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
  2428. '_'
  2429. ),
  2430. weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
  2431. weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
  2432. weekdaysParseExact: true,
  2433. longDateFormat: {
  2434. LT: 'HH:mm',
  2435. LTS: 'HH:mm:ss',
  2436. L: 'DD.MM.YYYY',
  2437. LL: 'D. MMMM YYYY',
  2438. LLL: 'D. MMMM YYYY HH:mm',
  2439. LLLL: 'dddd, D. MMMM YYYY HH:mm',
  2440. },
  2441. calendar: {
  2442. sameDay: '[heute um] LT [Uhr]',
  2443. sameElse: 'L',
  2444. nextDay: '[morgen um] LT [Uhr]',
  2445. nextWeek: 'dddd [um] LT [Uhr]',
  2446. lastDay: '[gestern um] LT [Uhr]',
  2447. lastWeek: '[letzten] dddd [um] LT [Uhr]',
  2448. },
  2449. relativeTime: {
  2450. future: 'in %s',
  2451. past: 'vor %s',
  2452. s: 'ein paar Sekunden',
  2453. ss: '%d Sekunden',
  2454. m: processRelativeTime$2,
  2455. mm: '%d Minuten',
  2456. h: processRelativeTime$2,
  2457. hh: '%d Stunden',
  2458. d: processRelativeTime$2,
  2459. dd: processRelativeTime$2,
  2460. w: processRelativeTime$2,
  2461. ww: '%d Wochen',
  2462. M: processRelativeTime$2,
  2463. MM: processRelativeTime$2,
  2464. y: processRelativeTime$2,
  2465. yy: processRelativeTime$2,
  2466. },
  2467. dayOfMonthOrdinalParse: /\d{1,2}\./,
  2468. ordinal: '%d.',
  2469. week: {
  2470. dow: 1, // Monday is the first day of the week.
  2471. doy: 4, // The week that contains Jan 4th is the first week of the year.
  2472. },
  2473. });
  2474. //! moment.js locale configuration
  2475. var months$4 = [
  2476. 'ޖެނުއަރީ',
  2477. 'ފެބްރުއަރީ',
  2478. 'މާރިޗު',
  2479. 'އޭޕްރީލު',
  2480. 'މޭ',
  2481. 'ޖޫން',
  2482. 'ޖުލައި',
  2483. 'އޯގަސްޓު',
  2484. 'ސެޕްޓެމްބަރު',
  2485. 'އޮކްޓޯބަރު',
  2486. 'ނޮވެމްބަރު',
  2487. 'ޑިސެމްބަރު',
  2488. ],
  2489. weekdays = [
  2490. 'އާދިއްތަ',
  2491. 'ހޯމަ',
  2492. 'އަންގާރަ',
  2493. 'ބުދަ',
  2494. 'ބުރާސްފަތި',
  2495. 'ހުކުރު',
  2496. 'ހޮނިހިރު',
  2497. ];
  2498. moment.defineLocale('dv', {
  2499. months: months$4,
  2500. monthsShort: months$4,
  2501. weekdays: weekdays,
  2502. weekdaysShort: weekdays,
  2503. weekdaysMin: 'އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި'.split('_'),
  2504. longDateFormat: {
  2505. LT: 'HH:mm',
  2506. LTS: 'HH:mm:ss',
  2507. L: 'D/M/YYYY',
  2508. LL: 'D MMMM YYYY',
  2509. LLL: 'D MMMM YYYY HH:mm',
  2510. LLLL: 'dddd D MMMM YYYY HH:mm',
  2511. },
  2512. meridiemParse: /މކ|މފ/,
  2513. isPM: function (input) {
  2514. return 'މފ' === input;
  2515. },
  2516. meridiem: function (hour, minute, isLower) {
  2517. if (hour < 12) {
  2518. return 'މކ';
  2519. } else {
  2520. return 'މފ';
  2521. }
  2522. },
  2523. calendar: {
  2524. sameDay: '[މިއަދު] LT',
  2525. nextDay: '[މާދަމާ] LT',
  2526. nextWeek: 'dddd LT',
  2527. lastDay: '[އިއްޔެ] LT',
  2528. lastWeek: '[ފާއިތުވި] dddd LT',
  2529. sameElse: 'L',
  2530. },
  2531. relativeTime: {
  2532. future: 'ތެރޭގައި %s',
  2533. past: 'ކުރިން %s',
  2534. s: 'ސިކުންތުކޮޅެއް',
  2535. ss: 'd% ސިކުންތު',
  2536. m: 'މިނިޓެއް',
  2537. mm: 'މިނިޓު %d',
  2538. h: 'ގަޑިއިރެއް',
  2539. hh: 'ގަޑިއިރު %d',
  2540. d: 'ދުވަހެއް',
  2541. dd: 'ދުވަސް %d',
  2542. M: 'މަހެއް',
  2543. MM: 'މަސް %d',
  2544. y: 'އަހަރެއް',
  2545. yy: 'އަހަރު %d',
  2546. },
  2547. preparse: function (string) {
  2548. return string.replace(/،/g, ',');
  2549. },
  2550. postformat: function (string) {
  2551. return string.replace(/,/g, '،');
  2552. },
  2553. week: {
  2554. dow: 7, // Sunday is the first day of the week.
  2555. doy: 12, // The week that contains Jan 12th is the first week of the year.
  2556. },
  2557. });
  2558. //! moment.js locale configuration
  2559. function isFunction(input) {
  2560. return (
  2561. (typeof Function !== 'undefined' && input instanceof Function) ||
  2562. Object.prototype.toString.call(input) === '[object Function]'
  2563. );
  2564. }
  2565. moment.defineLocale('el', {
  2566. monthsNominativeEl: 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split(
  2567. '_'
  2568. ),
  2569. monthsGenitiveEl: 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split(
  2570. '_'
  2571. ),
  2572. months: function (momentToFormat, format) {
  2573. if (!momentToFormat) {
  2574. return this._monthsNominativeEl;
  2575. } else if (
  2576. typeof format === 'string' &&
  2577. /D/.test(format.substring(0, format.indexOf('MMMM')))
  2578. ) {
  2579. // if there is a day number before 'MMMM'
  2580. return this._monthsGenitiveEl[momentToFormat.month()];
  2581. } else {
  2582. return this._monthsNominativeEl[momentToFormat.month()];
  2583. }
  2584. },
  2585. monthsShort: 'Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ'.split('_'),
  2586. weekdays: 'Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο'.split(
  2587. '_'
  2588. ),
  2589. weekdaysShort: 'Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ'.split('_'),
  2590. weekdaysMin: 'Κυ_Δε_Τρ_Τε_Πε_Πα_Σα'.split('_'),
  2591. meridiem: function (hours, minutes, isLower) {
  2592. if (hours > 11) {
  2593. return isLower ? 'μμ' : 'ΜΜ';
  2594. } else {
  2595. return isLower ? 'πμ' : 'ΠΜ';
  2596. }
  2597. },
  2598. isPM: function (input) {
  2599. return (input + '').toLowerCase()[0] === 'μ';
  2600. },
  2601. meridiemParse: /[ΠΜ]\.?Μ?\.?/i,
  2602. longDateFormat: {
  2603. LT: 'h:mm A',
  2604. LTS: 'h:mm:ss A',
  2605. L: 'DD/MM/YYYY',
  2606. LL: 'D MMMM YYYY',
  2607. LLL: 'D MMMM YYYY h:mm A',
  2608. LLLL: 'dddd, D MMMM YYYY h:mm A',
  2609. },
  2610. calendarEl: {
  2611. sameDay: '[Σήμερα {}] LT',
  2612. nextDay: '[Αύριο {}] LT',
  2613. nextWeek: 'dddd [{}] LT',
  2614. lastDay: '[Χθες {}] LT',
  2615. lastWeek: function () {
  2616. switch (this.day()) {
  2617. case 6:
  2618. return '[το προηγούμενο] dddd [{}] LT';
  2619. default:
  2620. return '[την προηγούμενη] dddd [{}] LT';
  2621. }
  2622. },
  2623. sameElse: 'L',
  2624. },
  2625. calendar: function (key, mom) {
  2626. var output = this._calendarEl[key],
  2627. hours = mom && mom.hours();
  2628. if (isFunction(output)) {
  2629. output = output.apply(mom);
  2630. }
  2631. return output.replace('{}', hours % 12 === 1 ? 'στη' : 'στις');
  2632. },
  2633. relativeTime: {
  2634. future: 'σε %s',
  2635. past: '%s πριν',
  2636. s: 'λίγα δευτερόλεπτα',
  2637. ss: '%d δευτερόλεπτα',
  2638. m: 'ένα λεπτό',
  2639. mm: '%d λεπτά',
  2640. h: 'μία ώρα',
  2641. hh: '%d ώρες',
  2642. d: 'μία μέρα',
  2643. dd: '%d μέρες',
  2644. M: 'ένας μήνας',
  2645. MM: '%d μήνες',
  2646. y: 'ένας χρόνος',
  2647. yy: '%d χρόνια',
  2648. },
  2649. dayOfMonthOrdinalParse: /\d{1,2}η/,
  2650. ordinal: '%dη',
  2651. week: {
  2652. dow: 1, // Monday is the first day of the week.
  2653. doy: 4, // The week that contains Jan 4st is the first week of the year.
  2654. },
  2655. });
  2656. //! moment.js locale configuration
  2657. moment.defineLocale('en-au', {
  2658. months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
  2659. '_'
  2660. ),
  2661. monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2662. weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
  2663. '_'
  2664. ),
  2665. weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2666. weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2667. longDateFormat: {
  2668. LT: 'h:mm A',
  2669. LTS: 'h:mm:ss A',
  2670. L: 'DD/MM/YYYY',
  2671. LL: 'D MMMM YYYY',
  2672. LLL: 'D MMMM YYYY h:mm A',
  2673. LLLL: 'dddd, D MMMM YYYY h:mm A',
  2674. },
  2675. calendar: {
  2676. sameDay: '[Today at] LT',
  2677. nextDay: '[Tomorrow at] LT',
  2678. nextWeek: 'dddd [at] LT',
  2679. lastDay: '[Yesterday at] LT',
  2680. lastWeek: '[Last] dddd [at] LT',
  2681. sameElse: 'L',
  2682. },
  2683. relativeTime: {
  2684. future: 'in %s',
  2685. past: '%s ago',
  2686. s: 'a few seconds',
  2687. ss: '%d seconds',
  2688. m: 'a minute',
  2689. mm: '%d minutes',
  2690. h: 'an hour',
  2691. hh: '%d hours',
  2692. d: 'a day',
  2693. dd: '%d days',
  2694. M: 'a month',
  2695. MM: '%d months',
  2696. y: 'a year',
  2697. yy: '%d years',
  2698. },
  2699. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  2700. ordinal: function (number) {
  2701. var b = number % 10,
  2702. output =
  2703. ~~((number % 100) / 10) === 1
  2704. ? 'th'
  2705. : b === 1
  2706. ? 'st'
  2707. : b === 2
  2708. ? 'nd'
  2709. : b === 3
  2710. ? 'rd'
  2711. : 'th';
  2712. return number + output;
  2713. },
  2714. week: {
  2715. dow: 0, // Sunday is the first day of the week.
  2716. doy: 4, // The week that contains Jan 4th is the first week of the year.
  2717. },
  2718. });
  2719. //! moment.js locale configuration
  2720. moment.defineLocale('en-ca', {
  2721. months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
  2722. '_'
  2723. ),
  2724. monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2725. weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
  2726. '_'
  2727. ),
  2728. weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2729. weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2730. longDateFormat: {
  2731. LT: 'h:mm A',
  2732. LTS: 'h:mm:ss A',
  2733. L: 'YYYY-MM-DD',
  2734. LL: 'MMMM D, YYYY',
  2735. LLL: 'MMMM D, YYYY h:mm A',
  2736. LLLL: 'dddd, MMMM D, YYYY h:mm A',
  2737. },
  2738. calendar: {
  2739. sameDay: '[Today at] LT',
  2740. nextDay: '[Tomorrow at] LT',
  2741. nextWeek: 'dddd [at] LT',
  2742. lastDay: '[Yesterday at] LT',
  2743. lastWeek: '[Last] dddd [at] LT',
  2744. sameElse: 'L',
  2745. },
  2746. relativeTime: {
  2747. future: 'in %s',
  2748. past: '%s ago',
  2749. s: 'a few seconds',
  2750. ss: '%d seconds',
  2751. m: 'a minute',
  2752. mm: '%d minutes',
  2753. h: 'an hour',
  2754. hh: '%d hours',
  2755. d: 'a day',
  2756. dd: '%d days',
  2757. M: 'a month',
  2758. MM: '%d months',
  2759. y: 'a year',
  2760. yy: '%d years',
  2761. },
  2762. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  2763. ordinal: function (number) {
  2764. var b = number % 10,
  2765. output =
  2766. ~~((number % 100) / 10) === 1
  2767. ? 'th'
  2768. : b === 1
  2769. ? 'st'
  2770. : b === 2
  2771. ? 'nd'
  2772. : b === 3
  2773. ? 'rd'
  2774. : 'th';
  2775. return number + output;
  2776. },
  2777. });
  2778. //! moment.js locale configuration
  2779. moment.defineLocale('en-gb', {
  2780. months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
  2781. '_'
  2782. ),
  2783. monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2784. weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
  2785. '_'
  2786. ),
  2787. weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2788. weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2789. longDateFormat: {
  2790. LT: 'HH:mm',
  2791. LTS: 'HH:mm:ss',
  2792. L: 'DD/MM/YYYY',
  2793. LL: 'D MMMM YYYY',
  2794. LLL: 'D MMMM YYYY HH:mm',
  2795. LLLL: 'dddd, D MMMM YYYY HH:mm',
  2796. },
  2797. calendar: {
  2798. sameDay: '[Today at] LT',
  2799. nextDay: '[Tomorrow at] LT',
  2800. nextWeek: 'dddd [at] LT',
  2801. lastDay: '[Yesterday at] LT',
  2802. lastWeek: '[Last] dddd [at] LT',
  2803. sameElse: 'L',
  2804. },
  2805. relativeTime: {
  2806. future: 'in %s',
  2807. past: '%s ago',
  2808. s: 'a few seconds',
  2809. ss: '%d seconds',
  2810. m: 'a minute',
  2811. mm: '%d minutes',
  2812. h: 'an hour',
  2813. hh: '%d hours',
  2814. d: 'a day',
  2815. dd: '%d days',
  2816. M: 'a month',
  2817. MM: '%d months',
  2818. y: 'a year',
  2819. yy: '%d years',
  2820. },
  2821. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  2822. ordinal: function (number) {
  2823. var b = number % 10,
  2824. output =
  2825. ~~((number % 100) / 10) === 1
  2826. ? 'th'
  2827. : b === 1
  2828. ? 'st'
  2829. : b === 2
  2830. ? 'nd'
  2831. : b === 3
  2832. ? 'rd'
  2833. : 'th';
  2834. return number + output;
  2835. },
  2836. week: {
  2837. dow: 1, // Monday is the first day of the week.
  2838. doy: 4, // The week that contains Jan 4th is the first week of the year.
  2839. },
  2840. });
  2841. //! moment.js locale configuration
  2842. moment.defineLocale('en-ie', {
  2843. months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
  2844. '_'
  2845. ),
  2846. monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2847. weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
  2848. '_'
  2849. ),
  2850. weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2851. weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2852. longDateFormat: {
  2853. LT: 'HH:mm',
  2854. LTS: 'HH:mm:ss',
  2855. L: 'DD/MM/YYYY',
  2856. LL: 'D MMMM YYYY',
  2857. LLL: 'D MMMM YYYY HH:mm',
  2858. LLLL: 'dddd D MMMM YYYY HH:mm',
  2859. },
  2860. calendar: {
  2861. sameDay: '[Today at] LT',
  2862. nextDay: '[Tomorrow at] LT',
  2863. nextWeek: 'dddd [at] LT',
  2864. lastDay: '[Yesterday at] LT',
  2865. lastWeek: '[Last] dddd [at] LT',
  2866. sameElse: 'L',
  2867. },
  2868. relativeTime: {
  2869. future: 'in %s',
  2870. past: '%s ago',
  2871. s: 'a few seconds',
  2872. ss: '%d seconds',
  2873. m: 'a minute',
  2874. mm: '%d minutes',
  2875. h: 'an hour',
  2876. hh: '%d hours',
  2877. d: 'a day',
  2878. dd: '%d days',
  2879. M: 'a month',
  2880. MM: '%d months',
  2881. y: 'a year',
  2882. yy: '%d years',
  2883. },
  2884. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  2885. ordinal: function (number) {
  2886. var b = number % 10,
  2887. output =
  2888. ~~((number % 100) / 10) === 1
  2889. ? 'th'
  2890. : b === 1
  2891. ? 'st'
  2892. : b === 2
  2893. ? 'nd'
  2894. : b === 3
  2895. ? 'rd'
  2896. : 'th';
  2897. return number + output;
  2898. },
  2899. week: {
  2900. dow: 1, // Monday is the first day of the week.
  2901. doy: 4, // The week that contains Jan 4th is the first week of the year.
  2902. },
  2903. });
  2904. //! moment.js locale configuration
  2905. moment.defineLocale('en-il', {
  2906. months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
  2907. '_'
  2908. ),
  2909. monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2910. weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
  2911. '_'
  2912. ),
  2913. weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2914. weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2915. longDateFormat: {
  2916. LT: 'HH:mm',
  2917. LTS: 'HH:mm:ss',
  2918. L: 'DD/MM/YYYY',
  2919. LL: 'D MMMM YYYY',
  2920. LLL: 'D MMMM YYYY HH:mm',
  2921. LLLL: 'dddd, D MMMM YYYY HH:mm',
  2922. },
  2923. calendar: {
  2924. sameDay: '[Today at] LT',
  2925. nextDay: '[Tomorrow at] LT',
  2926. nextWeek: 'dddd [at] LT',
  2927. lastDay: '[Yesterday at] LT',
  2928. lastWeek: '[Last] dddd [at] LT',
  2929. sameElse: 'L',
  2930. },
  2931. relativeTime: {
  2932. future: 'in %s',
  2933. past: '%s ago',
  2934. s: 'a few seconds',
  2935. ss: '%d seconds',
  2936. m: 'a minute',
  2937. mm: '%d minutes',
  2938. h: 'an hour',
  2939. hh: '%d hours',
  2940. d: 'a day',
  2941. dd: '%d days',
  2942. M: 'a month',
  2943. MM: '%d months',
  2944. y: 'a year',
  2945. yy: '%d years',
  2946. },
  2947. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  2948. ordinal: function (number) {
  2949. var b = number % 10,
  2950. output =
  2951. ~~((number % 100) / 10) === 1
  2952. ? 'th'
  2953. : b === 1
  2954. ? 'st'
  2955. : b === 2
  2956. ? 'nd'
  2957. : b === 3
  2958. ? 'rd'
  2959. : 'th';
  2960. return number + output;
  2961. },
  2962. });
  2963. //! moment.js locale configuration
  2964. moment.defineLocale('en-in', {
  2965. months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
  2966. '_'
  2967. ),
  2968. monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2969. weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
  2970. '_'
  2971. ),
  2972. weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2973. weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2974. longDateFormat: {
  2975. LT: 'h:mm A',
  2976. LTS: 'h:mm:ss A',
  2977. L: 'DD/MM/YYYY',
  2978. LL: 'D MMMM YYYY',
  2979. LLL: 'D MMMM YYYY h:mm A',
  2980. LLLL: 'dddd, D MMMM YYYY h:mm A',
  2981. },
  2982. calendar: {
  2983. sameDay: '[Today at] LT',
  2984. nextDay: '[Tomorrow at] LT',
  2985. nextWeek: 'dddd [at] LT',
  2986. lastDay: '[Yesterday at] LT',
  2987. lastWeek: '[Last] dddd [at] LT',
  2988. sameElse: 'L',
  2989. },
  2990. relativeTime: {
  2991. future: 'in %s',
  2992. past: '%s ago',
  2993. s: 'a few seconds',
  2994. ss: '%d seconds',
  2995. m: 'a minute',
  2996. mm: '%d minutes',
  2997. h: 'an hour',
  2998. hh: '%d hours',
  2999. d: 'a day',
  3000. dd: '%d days',
  3001. M: 'a month',
  3002. MM: '%d months',
  3003. y: 'a year',
  3004. yy: '%d years',
  3005. },
  3006. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  3007. ordinal: function (number) {
  3008. var b = number % 10,
  3009. output =
  3010. ~~((number % 100) / 10) === 1
  3011. ? 'th'
  3012. : b === 1
  3013. ? 'st'
  3014. : b === 2
  3015. ? 'nd'
  3016. : b === 3
  3017. ? 'rd'
  3018. : 'th';
  3019. return number + output;
  3020. },
  3021. week: {
  3022. dow: 0, // Sunday is the first day of the week.
  3023. doy: 6, // The week that contains Jan 1st is the first week of the year.
  3024. },
  3025. });
  3026. //! moment.js locale configuration
  3027. moment.defineLocale('en-nz', {
  3028. months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
  3029. '_'
  3030. ),
  3031. monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  3032. weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
  3033. '_'
  3034. ),
  3035. weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  3036. weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  3037. longDateFormat: {
  3038. LT: 'h:mm A',
  3039. LTS: 'h:mm:ss A',
  3040. L: 'DD/MM/YYYY',
  3041. LL: 'D MMMM YYYY',
  3042. LLL: 'D MMMM YYYY h:mm A',
  3043. LLLL: 'dddd, D MMMM YYYY h:mm A',
  3044. },
  3045. calendar: {
  3046. sameDay: '[Today at] LT',
  3047. nextDay: '[Tomorrow at] LT',
  3048. nextWeek: 'dddd [at] LT',
  3049. lastDay: '[Yesterday at] LT',
  3050. lastWeek: '[Last] dddd [at] LT',
  3051. sameElse: 'L',
  3052. },
  3053. relativeTime: {
  3054. future: 'in %s',
  3055. past: '%s ago',
  3056. s: 'a few seconds',
  3057. ss: '%d seconds',
  3058. m: 'a minute',
  3059. mm: '%d minutes',
  3060. h: 'an hour',
  3061. hh: '%d hours',
  3062. d: 'a day',
  3063. dd: '%d days',
  3064. M: 'a month',
  3065. MM: '%d months',
  3066. y: 'a year',
  3067. yy: '%d years',
  3068. },
  3069. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  3070. ordinal: function (number) {
  3071. var b = number % 10,
  3072. output =
  3073. ~~((number % 100) / 10) === 1
  3074. ? 'th'
  3075. : b === 1
  3076. ? 'st'
  3077. : b === 2
  3078. ? 'nd'
  3079. : b === 3
  3080. ? 'rd'
  3081. : 'th';
  3082. return number + output;
  3083. },
  3084. week: {
  3085. dow: 1, // Monday is the first day of the week.
  3086. doy: 4, // The week that contains Jan 4th is the first week of the year.
  3087. },
  3088. });
  3089. //! moment.js locale configuration
  3090. moment.defineLocale('en-sg', {
  3091. months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
  3092. '_'
  3093. ),
  3094. monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  3095. weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
  3096. '_'
  3097. ),
  3098. weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  3099. weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  3100. longDateFormat: {
  3101. LT: 'HH:mm',
  3102. LTS: 'HH:mm:ss',
  3103. L: 'DD/MM/YYYY',
  3104. LL: 'D MMMM YYYY',
  3105. LLL: 'D MMMM YYYY HH:mm',
  3106. LLLL: 'dddd, D MMMM YYYY HH:mm',
  3107. },
  3108. calendar: {
  3109. sameDay: '[Today at] LT',
  3110. nextDay: '[Tomorrow at] LT',
  3111. nextWeek: 'dddd [at] LT',
  3112. lastDay: '[Yesterday at] LT',
  3113. lastWeek: '[Last] dddd [at] LT',
  3114. sameElse: 'L',
  3115. },
  3116. relativeTime: {
  3117. future: 'in %s',
  3118. past: '%s ago',
  3119. s: 'a few seconds',
  3120. ss: '%d seconds',
  3121. m: 'a minute',
  3122. mm: '%d minutes',
  3123. h: 'an hour',
  3124. hh: '%d hours',
  3125. d: 'a day',
  3126. dd: '%d days',
  3127. M: 'a month',
  3128. MM: '%d months',
  3129. y: 'a year',
  3130. yy: '%d years',
  3131. },
  3132. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  3133. ordinal: function (number) {
  3134. var b = number % 10,
  3135. output =
  3136. ~~((number % 100) / 10) === 1
  3137. ? 'th'
  3138. : b === 1
  3139. ? 'st'
  3140. : b === 2
  3141. ? 'nd'
  3142. : b === 3
  3143. ? 'rd'
  3144. : 'th';
  3145. return number + output;
  3146. },
  3147. week: {
  3148. dow: 1, // Monday is the first day of the week.
  3149. doy: 4, // The week that contains Jan 4th is the first week of the year.
  3150. },
  3151. });
  3152. //! moment.js locale configuration
  3153. moment.defineLocale('eo', {
  3154. months: 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split(
  3155. '_'
  3156. ),
  3157. monthsShort: 'jan_feb_mart_apr_maj_jun_jul_aŭg_sept_okt_nov_dec'.split('_'),
  3158. weekdays: 'dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato'.split('_'),
  3159. weekdaysShort: 'dim_lun_mard_merk_ĵaŭ_ven_sab'.split('_'),
  3160. weekdaysMin: 'di_lu_ma_me_ĵa_ve_sa'.split('_'),
  3161. longDateFormat: {
  3162. LT: 'HH:mm',
  3163. LTS: 'HH:mm:ss',
  3164. L: 'YYYY-MM-DD',
  3165. LL: '[la] D[-an de] MMMM, YYYY',
  3166. LLL: '[la] D[-an de] MMMM, YYYY HH:mm',
  3167. LLLL: 'dddd[n], [la] D[-an de] MMMM, YYYY HH:mm',
  3168. llll: 'ddd, [la] D[-an de] MMM, YYYY HH:mm',
  3169. },
  3170. meridiemParse: /[ap]\.t\.m/i,
  3171. isPM: function (input) {
  3172. return input.charAt(0).toLowerCase() === 'p';
  3173. },
  3174. meridiem: function (hours, minutes, isLower) {
  3175. if (hours > 11) {
  3176. return isLower ? 'p.t.m.' : 'P.T.M.';
  3177. } else {
  3178. return isLower ? 'a.t.m.' : 'A.T.M.';
  3179. }
  3180. },
  3181. calendar: {
  3182. sameDay: '[Hodiaŭ je] LT',
  3183. nextDay: '[Morgaŭ je] LT',
  3184. nextWeek: 'dddd[n je] LT',
  3185. lastDay: '[Hieraŭ je] LT',
  3186. lastWeek: '[pasintan] dddd[n je] LT',
  3187. sameElse: 'L',
  3188. },
  3189. relativeTime: {
  3190. future: 'post %s',
  3191. past: 'antaŭ %s',
  3192. s: 'kelkaj sekundoj',
  3193. ss: '%d sekundoj',
  3194. m: 'unu minuto',
  3195. mm: '%d minutoj',
  3196. h: 'unu horo',
  3197. hh: '%d horoj',
  3198. d: 'unu tago', //ne 'diurno', ĉar estas uzita por proksimumo
  3199. dd: '%d tagoj',
  3200. M: 'unu monato',
  3201. MM: '%d monatoj',
  3202. y: 'unu jaro',
  3203. yy: '%d jaroj',
  3204. },
  3205. dayOfMonthOrdinalParse: /\d{1,2}a/,
  3206. ordinal: '%da',
  3207. week: {
  3208. dow: 1, // Monday is the first day of the week.
  3209. doy: 7, // The week that contains Jan 7th is the first week of the year.
  3210. },
  3211. });
  3212. //! moment.js locale configuration
  3213. var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
  3214. '_'
  3215. ),
  3216. monthsShort$1 = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
  3217. monthsParse$2 = [
  3218. /^ene/i,
  3219. /^feb/i,
  3220. /^mar/i,
  3221. /^abr/i,
  3222. /^may/i,
  3223. /^jun/i,
  3224. /^jul/i,
  3225. /^ago/i,
  3226. /^sep/i,
  3227. /^oct/i,
  3228. /^nov/i,
  3229. /^dic/i,
  3230. ],
  3231. monthsRegex$2 = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
  3232. moment.defineLocale('es-do', {
  3233. months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
  3234. '_'
  3235. ),
  3236. monthsShort: function (m, format) {
  3237. if (!m) {
  3238. return monthsShortDot;
  3239. } else if (/-MMM-/.test(format)) {
  3240. return monthsShort$1[m.month()];
  3241. } else {
  3242. return monthsShortDot[m.month()];
  3243. }
  3244. },
  3245. monthsRegex: monthsRegex$2,
  3246. monthsShortRegex: monthsRegex$2,
  3247. monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
  3248. monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
  3249. monthsParse: monthsParse$2,
  3250. longMonthsParse: monthsParse$2,
  3251. shortMonthsParse: monthsParse$2,
  3252. weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
  3253. weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
  3254. weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
  3255. weekdaysParseExact: true,
  3256. longDateFormat: {
  3257. LT: 'h:mm A',
  3258. LTS: 'h:mm:ss A',
  3259. L: 'DD/MM/YYYY',
  3260. LL: 'D [de] MMMM [de] YYYY',
  3261. LLL: 'D [de] MMMM [de] YYYY h:mm A',
  3262. LLLL: 'dddd, D [de] MMMM [de] YYYY h:mm A',
  3263. },
  3264. calendar: {
  3265. sameDay: function () {
  3266. return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3267. },
  3268. nextDay: function () {
  3269. return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3270. },
  3271. nextWeek: function () {
  3272. return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3273. },
  3274. lastDay: function () {
  3275. return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3276. },
  3277. lastWeek: function () {
  3278. return (
  3279. '[el] dddd [pasado a la' +
  3280. (this.hours() !== 1 ? 's' : '') +
  3281. '] LT'
  3282. );
  3283. },
  3284. sameElse: 'L',
  3285. },
  3286. relativeTime: {
  3287. future: 'en %s',
  3288. past: 'hace %s',
  3289. s: 'unos segundos',
  3290. ss: '%d segundos',
  3291. m: 'un minuto',
  3292. mm: '%d minutos',
  3293. h: 'una hora',
  3294. hh: '%d horas',
  3295. d: 'un día',
  3296. dd: '%d días',
  3297. w: 'una semana',
  3298. ww: '%d semanas',
  3299. M: 'un mes',
  3300. MM: '%d meses',
  3301. y: 'un año',
  3302. yy: '%d años',
  3303. },
  3304. dayOfMonthOrdinalParse: /\d{1,2}º/,
  3305. ordinal: '%dº',
  3306. week: {
  3307. dow: 1, // Monday is the first day of the week.
  3308. doy: 4, // The week that contains Jan 4th is the first week of the year.
  3309. },
  3310. });
  3311. //! moment.js locale configuration
  3312. var monthsShortDot$1 = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
  3313. '_'
  3314. ),
  3315. monthsShort$2 = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
  3316. monthsParse$3 = [
  3317. /^ene/i,
  3318. /^feb/i,
  3319. /^mar/i,
  3320. /^abr/i,
  3321. /^may/i,
  3322. /^jun/i,
  3323. /^jul/i,
  3324. /^ago/i,
  3325. /^sep/i,
  3326. /^oct/i,
  3327. /^nov/i,
  3328. /^dic/i,
  3329. ],
  3330. monthsRegex$3 = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
  3331. moment.defineLocale('es-mx', {
  3332. months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
  3333. '_'
  3334. ),
  3335. monthsShort: function (m, format) {
  3336. if (!m) {
  3337. return monthsShortDot$1;
  3338. } else if (/-MMM-/.test(format)) {
  3339. return monthsShort$2[m.month()];
  3340. } else {
  3341. return monthsShortDot$1[m.month()];
  3342. }
  3343. },
  3344. monthsRegex: monthsRegex$3,
  3345. monthsShortRegex: monthsRegex$3,
  3346. monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
  3347. monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
  3348. monthsParse: monthsParse$3,
  3349. longMonthsParse: monthsParse$3,
  3350. shortMonthsParse: monthsParse$3,
  3351. weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
  3352. weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
  3353. weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
  3354. weekdaysParseExact: true,
  3355. longDateFormat: {
  3356. LT: 'H:mm',
  3357. LTS: 'H:mm:ss',
  3358. L: 'DD/MM/YYYY',
  3359. LL: 'D [de] MMMM [de] YYYY',
  3360. LLL: 'D [de] MMMM [de] YYYY H:mm',
  3361. LLLL: 'dddd, D [de] MMMM [de] YYYY H:mm',
  3362. },
  3363. calendar: {
  3364. sameDay: function () {
  3365. return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3366. },
  3367. nextDay: function () {
  3368. return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3369. },
  3370. nextWeek: function () {
  3371. return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3372. },
  3373. lastDay: function () {
  3374. return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3375. },
  3376. lastWeek: function () {
  3377. return (
  3378. '[el] dddd [pasado a la' +
  3379. (this.hours() !== 1 ? 's' : '') +
  3380. '] LT'
  3381. );
  3382. },
  3383. sameElse: 'L',
  3384. },
  3385. relativeTime: {
  3386. future: 'en %s',
  3387. past: 'hace %s',
  3388. s: 'unos segundos',
  3389. ss: '%d segundos',
  3390. m: 'un minuto',
  3391. mm: '%d minutos',
  3392. h: 'una hora',
  3393. hh: '%d horas',
  3394. d: 'un día',
  3395. dd: '%d días',
  3396. w: 'una semana',
  3397. ww: '%d semanas',
  3398. M: 'un mes',
  3399. MM: '%d meses',
  3400. y: 'un año',
  3401. yy: '%d años',
  3402. },
  3403. dayOfMonthOrdinalParse: /\d{1,2}º/,
  3404. ordinal: '%dº',
  3405. week: {
  3406. dow: 0, // Sunday is the first day of the week.
  3407. doy: 4, // The week that contains Jan 4th is the first week of the year.
  3408. },
  3409. invalidDate: 'Fecha inválida',
  3410. });
  3411. //! moment.js locale configuration
  3412. var monthsShortDot$2 = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
  3413. '_'
  3414. ),
  3415. monthsShort$3 = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
  3416. monthsParse$4 = [
  3417. /^ene/i,
  3418. /^feb/i,
  3419. /^mar/i,
  3420. /^abr/i,
  3421. /^may/i,
  3422. /^jun/i,
  3423. /^jul/i,
  3424. /^ago/i,
  3425. /^sep/i,
  3426. /^oct/i,
  3427. /^nov/i,
  3428. /^dic/i,
  3429. ],
  3430. monthsRegex$4 = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
  3431. moment.defineLocale('es-us', {
  3432. months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
  3433. '_'
  3434. ),
  3435. monthsShort: function (m, format) {
  3436. if (!m) {
  3437. return monthsShortDot$2;
  3438. } else if (/-MMM-/.test(format)) {
  3439. return monthsShort$3[m.month()];
  3440. } else {
  3441. return monthsShortDot$2[m.month()];
  3442. }
  3443. },
  3444. monthsRegex: monthsRegex$4,
  3445. monthsShortRegex: monthsRegex$4,
  3446. monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
  3447. monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
  3448. monthsParse: monthsParse$4,
  3449. longMonthsParse: monthsParse$4,
  3450. shortMonthsParse: monthsParse$4,
  3451. weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
  3452. weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
  3453. weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
  3454. weekdaysParseExact: true,
  3455. longDateFormat: {
  3456. LT: 'h:mm A',
  3457. LTS: 'h:mm:ss A',
  3458. L: 'MM/DD/YYYY',
  3459. LL: 'D [de] MMMM [de] YYYY',
  3460. LLL: 'D [de] MMMM [de] YYYY h:mm A',
  3461. LLLL: 'dddd, D [de] MMMM [de] YYYY h:mm A',
  3462. },
  3463. calendar: {
  3464. sameDay: function () {
  3465. return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3466. },
  3467. nextDay: function () {
  3468. return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3469. },
  3470. nextWeek: function () {
  3471. return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3472. },
  3473. lastDay: function () {
  3474. return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3475. },
  3476. lastWeek: function () {
  3477. return (
  3478. '[el] dddd [pasado a la' +
  3479. (this.hours() !== 1 ? 's' : '') +
  3480. '] LT'
  3481. );
  3482. },
  3483. sameElse: 'L',
  3484. },
  3485. relativeTime: {
  3486. future: 'en %s',
  3487. past: 'hace %s',
  3488. s: 'unos segundos',
  3489. ss: '%d segundos',
  3490. m: 'un minuto',
  3491. mm: '%d minutos',
  3492. h: 'una hora',
  3493. hh: '%d horas',
  3494. d: 'un día',
  3495. dd: '%d días',
  3496. w: 'una semana',
  3497. ww: '%d semanas',
  3498. M: 'un mes',
  3499. MM: '%d meses',
  3500. y: 'un año',
  3501. yy: '%d años',
  3502. },
  3503. dayOfMonthOrdinalParse: /\d{1,2}º/,
  3504. ordinal: '%dº',
  3505. week: {
  3506. dow: 0, // Sunday is the first day of the week.
  3507. doy: 6, // The week that contains Jan 6th is the first week of the year.
  3508. },
  3509. });
  3510. //! moment.js locale configuration
  3511. var monthsShortDot$3 = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
  3512. '_'
  3513. ),
  3514. monthsShort$4 = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
  3515. monthsParse$5 = [
  3516. /^ene/i,
  3517. /^feb/i,
  3518. /^mar/i,
  3519. /^abr/i,
  3520. /^may/i,
  3521. /^jun/i,
  3522. /^jul/i,
  3523. /^ago/i,
  3524. /^sep/i,
  3525. /^oct/i,
  3526. /^nov/i,
  3527. /^dic/i,
  3528. ],
  3529. monthsRegex$5 = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
  3530. moment.defineLocale('es', {
  3531. months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
  3532. '_'
  3533. ),
  3534. monthsShort: function (m, format) {
  3535. if (!m) {
  3536. return monthsShortDot$3;
  3537. } else if (/-MMM-/.test(format)) {
  3538. return monthsShort$4[m.month()];
  3539. } else {
  3540. return monthsShortDot$3[m.month()];
  3541. }
  3542. },
  3543. monthsRegex: monthsRegex$5,
  3544. monthsShortRegex: monthsRegex$5,
  3545. monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
  3546. monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
  3547. monthsParse: monthsParse$5,
  3548. longMonthsParse: monthsParse$5,
  3549. shortMonthsParse: monthsParse$5,
  3550. weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
  3551. weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
  3552. weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
  3553. weekdaysParseExact: true,
  3554. longDateFormat: {
  3555. LT: 'H:mm',
  3556. LTS: 'H:mm:ss',
  3557. L: 'DD/MM/YYYY',
  3558. LL: 'D [de] MMMM [de] YYYY',
  3559. LLL: 'D [de] MMMM [de] YYYY H:mm',
  3560. LLLL: 'dddd, D [de] MMMM [de] YYYY H:mm',
  3561. },
  3562. calendar: {
  3563. sameDay: function () {
  3564. return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3565. },
  3566. nextDay: function () {
  3567. return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3568. },
  3569. nextWeek: function () {
  3570. return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3571. },
  3572. lastDay: function () {
  3573. return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  3574. },
  3575. lastWeek: function () {
  3576. return (
  3577. '[el] dddd [pasado a la' +
  3578. (this.hours() !== 1 ? 's' : '') +
  3579. '] LT'
  3580. );
  3581. },
  3582. sameElse: 'L',
  3583. },
  3584. relativeTime: {
  3585. future: 'en %s',
  3586. past: 'hace %s',
  3587. s: 'unos segundos',
  3588. ss: '%d segundos',
  3589. m: 'un minuto',
  3590. mm: '%d minutos',
  3591. h: 'una hora',
  3592. hh: '%d horas',
  3593. d: 'un día',
  3594. dd: '%d días',
  3595. w: 'una semana',
  3596. ww: '%d semanas',
  3597. M: 'un mes',
  3598. MM: '%d meses',
  3599. y: 'un año',
  3600. yy: '%d años',
  3601. },
  3602. dayOfMonthOrdinalParse: /\d{1,2}º/,
  3603. ordinal: '%dº',
  3604. week: {
  3605. dow: 1, // Monday is the first day of the week.
  3606. doy: 4, // The week that contains Jan 4th is the first week of the year.
  3607. },
  3608. invalidDate: 'Fecha inválida',
  3609. });
  3610. //! moment.js locale configuration
  3611. function processRelativeTime$3(number, withoutSuffix, key, isFuture) {
  3612. var format = {
  3613. s: ['mõne sekundi', 'mõni sekund', 'paar sekundit'],
  3614. ss: [number + 'sekundi', number + 'sekundit'],
  3615. m: ['ühe minuti', 'üks minut'],
  3616. mm: [number + ' minuti', number + ' minutit'],
  3617. h: ['ühe tunni', 'tund aega', 'üks tund'],
  3618. hh: [number + ' tunni', number + ' tundi'],
  3619. d: ['ühe päeva', 'üks päev'],
  3620. M: ['kuu aja', 'kuu aega', 'üks kuu'],
  3621. MM: [number + ' kuu', number + ' kuud'],
  3622. y: ['ühe aasta', 'aasta', 'üks aasta'],
  3623. yy: [number + ' aasta', number + ' aastat'],
  3624. };
  3625. if (withoutSuffix) {
  3626. return format[key][2] ? format[key][2] : format[key][1];
  3627. }
  3628. return isFuture ? format[key][0] : format[key][1];
  3629. }
  3630. moment.defineLocale('et', {
  3631. months: 'jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember'.split(
  3632. '_'
  3633. ),
  3634. monthsShort: 'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets'.split(
  3635. '_'
  3636. ),
  3637. weekdays: 'pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev'.split(
  3638. '_'
  3639. ),
  3640. weekdaysShort: 'P_E_T_K_N_R_L'.split('_'),
  3641. weekdaysMin: 'P_E_T_K_N_R_L'.split('_'),
  3642. longDateFormat: {
  3643. LT: 'H:mm',
  3644. LTS: 'H:mm:ss',
  3645. L: 'DD.MM.YYYY',
  3646. LL: 'D. MMMM YYYY',
  3647. LLL: 'D. MMMM YYYY H:mm',
  3648. LLLL: 'dddd, D. MMMM YYYY H:mm',
  3649. },
  3650. calendar: {
  3651. sameDay: '[Täna,] LT',
  3652. nextDay: '[Homme,] LT',
  3653. nextWeek: '[Järgmine] dddd LT',
  3654. lastDay: '[Eile,] LT',
  3655. lastWeek: '[Eelmine] dddd LT',
  3656. sameElse: 'L',
  3657. },
  3658. relativeTime: {
  3659. future: '%s pärast',
  3660. past: '%s tagasi',
  3661. s: processRelativeTime$3,
  3662. ss: processRelativeTime$3,
  3663. m: processRelativeTime$3,
  3664. mm: processRelativeTime$3,
  3665. h: processRelativeTime$3,
  3666. hh: processRelativeTime$3,
  3667. d: processRelativeTime$3,
  3668. dd: '%d päeva',
  3669. M: processRelativeTime$3,
  3670. MM: processRelativeTime$3,
  3671. y: processRelativeTime$3,
  3672. yy: processRelativeTime$3,
  3673. },
  3674. dayOfMonthOrdinalParse: /\d{1,2}\./,
  3675. ordinal: '%d.',
  3676. week: {
  3677. dow: 1, // Monday is the first day of the week.
  3678. doy: 4, // The week that contains Jan 4th is the first week of the year.
  3679. },
  3680. });
  3681. //! moment.js locale configuration
  3682. moment.defineLocale('eu', {
  3683. months: 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split(
  3684. '_'
  3685. ),
  3686. monthsShort: 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split(
  3687. '_'
  3688. ),
  3689. monthsParseExact: true,
  3690. weekdays: 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split(
  3691. '_'
  3692. ),
  3693. weekdaysShort: 'ig._al._ar._az._og._ol._lr.'.split('_'),
  3694. weekdaysMin: 'ig_al_ar_az_og_ol_lr'.split('_'),
  3695. weekdaysParseExact: true,
  3696. longDateFormat: {
  3697. LT: 'HH:mm',
  3698. LTS: 'HH:mm:ss',
  3699. L: 'YYYY-MM-DD',
  3700. LL: 'YYYY[ko] MMMM[ren] D[a]',
  3701. LLL: 'YYYY[ko] MMMM[ren] D[a] HH:mm',
  3702. LLLL: 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',
  3703. l: 'YYYY-M-D',
  3704. ll: 'YYYY[ko] MMM D[a]',
  3705. lll: 'YYYY[ko] MMM D[a] HH:mm',
  3706. llll: 'ddd, YYYY[ko] MMM D[a] HH:mm',
  3707. },
  3708. calendar: {
  3709. sameDay: '[gaur] LT[etan]',
  3710. nextDay: '[bihar] LT[etan]',
  3711. nextWeek: 'dddd LT[etan]',
  3712. lastDay: '[atzo] LT[etan]',
  3713. lastWeek: '[aurreko] dddd LT[etan]',
  3714. sameElse: 'L',
  3715. },
  3716. relativeTime: {
  3717. future: '%s barru',
  3718. past: 'duela %s',
  3719. s: 'segundo batzuk',
  3720. ss: '%d segundo',
  3721. m: 'minutu bat',
  3722. mm: '%d minutu',
  3723. h: 'ordu bat',
  3724. hh: '%d ordu',
  3725. d: 'egun bat',
  3726. dd: '%d egun',
  3727. M: 'hilabete bat',
  3728. MM: '%d hilabete',
  3729. y: 'urte bat',
  3730. yy: '%d urte',
  3731. },
  3732. dayOfMonthOrdinalParse: /\d{1,2}\./,
  3733. ordinal: '%d.',
  3734. week: {
  3735. dow: 1, // Monday is the first day of the week.
  3736. doy: 7, // The week that contains Jan 7th is the first week of the year.
  3737. },
  3738. });
  3739. //! moment.js locale configuration
  3740. var symbolMap$6 = {
  3741. 1: '۱',
  3742. 2: '۲',
  3743. 3: '۳',
  3744. 4: '۴',
  3745. 5: '۵',
  3746. 6: '۶',
  3747. 7: '۷',
  3748. 8: '۸',
  3749. 9: '۹',
  3750. 0: '۰',
  3751. },
  3752. numberMap$5 = {
  3753. '۱': '1',
  3754. '۲': '2',
  3755. '۳': '3',
  3756. '۴': '4',
  3757. '۵': '5',
  3758. '۶': '6',
  3759. '۷': '7',
  3760. '۸': '8',
  3761. '۹': '9',
  3762. '۰': '0',
  3763. };
  3764. moment.defineLocale('fa', {
  3765. months: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(
  3766. '_'
  3767. ),
  3768. monthsShort: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(
  3769. '_'
  3770. ),
  3771. weekdays: 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
  3772. '_'
  3773. ),
  3774. weekdaysShort: 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
  3775. '_'
  3776. ),
  3777. weekdaysMin: 'ی_د_س_چ_پ_ج_ش'.split('_'),
  3778. weekdaysParseExact: true,
  3779. longDateFormat: {
  3780. LT: 'HH:mm',
  3781. LTS: 'HH:mm:ss',
  3782. L: 'DD/MM/YYYY',
  3783. LL: 'D MMMM YYYY',
  3784. LLL: 'D MMMM YYYY HH:mm',
  3785. LLLL: 'dddd, D MMMM YYYY HH:mm',
  3786. },
  3787. meridiemParse: /قبل از ظهر|بعد از ظهر/,
  3788. isPM: function (input) {
  3789. return /بعد از ظهر/.test(input);
  3790. },
  3791. meridiem: function (hour, minute, isLower) {
  3792. if (hour < 12) {
  3793. return 'قبل از ظهر';
  3794. } else {
  3795. return 'بعد از ظهر';
  3796. }
  3797. },
  3798. calendar: {
  3799. sameDay: '[امروز ساعت] LT',
  3800. nextDay: '[فردا ساعت] LT',
  3801. nextWeek: 'dddd [ساعت] LT',
  3802. lastDay: '[دیروز ساعت] LT',
  3803. lastWeek: 'dddd [پیش] [ساعت] LT',
  3804. sameElse: 'L',
  3805. },
  3806. relativeTime: {
  3807. future: 'در %s',
  3808. past: '%s پیش',
  3809. s: 'چند ثانیه',
  3810. ss: '%d ثانیه',
  3811. m: 'یک دقیقه',
  3812. mm: '%d دقیقه',
  3813. h: 'یک ساعت',
  3814. hh: '%d ساعت',
  3815. d: 'یک روز',
  3816. dd: '%d روز',
  3817. M: 'یک ماه',
  3818. MM: '%d ماه',
  3819. y: 'یک سال',
  3820. yy: '%d سال',
  3821. },
  3822. preparse: function (string) {
  3823. return string
  3824. .replace(/[۰-۹]/g, function (match) {
  3825. return numberMap$5[match];
  3826. })
  3827. .replace(/،/g, ',');
  3828. },
  3829. postformat: function (string) {
  3830. return string
  3831. .replace(/\d/g, function (match) {
  3832. return symbolMap$6[match];
  3833. })
  3834. .replace(/,/g, '،');
  3835. },
  3836. dayOfMonthOrdinalParse: /\d{1,2}م/,
  3837. ordinal: '%dم',
  3838. week: {
  3839. dow: 6, // Saturday is the first day of the week.
  3840. doy: 12, // The week that contains Jan 12th is the first week of the year.
  3841. },
  3842. });
  3843. //! moment.js locale configuration
  3844. var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(
  3845. ' '
  3846. ),
  3847. numbersFuture = [
  3848. 'nolla',
  3849. 'yhden',
  3850. 'kahden',
  3851. 'kolmen',
  3852. 'neljän',
  3853. 'viiden',
  3854. 'kuuden',
  3855. numbersPast[7],
  3856. numbersPast[8],
  3857. numbersPast[9],
  3858. ];
  3859. function translate$2(number, withoutSuffix, key, isFuture) {
  3860. var result = '';
  3861. switch (key) {
  3862. case 's':
  3863. return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';
  3864. case 'ss':
  3865. result = isFuture ? 'sekunnin' : 'sekuntia';
  3866. break;
  3867. case 'm':
  3868. return isFuture ? 'minuutin' : 'minuutti';
  3869. case 'mm':
  3870. result = isFuture ? 'minuutin' : 'minuuttia';
  3871. break;
  3872. case 'h':
  3873. return isFuture ? 'tunnin' : 'tunti';
  3874. case 'hh':
  3875. result = isFuture ? 'tunnin' : 'tuntia';
  3876. break;
  3877. case 'd':
  3878. return isFuture ? 'päivän' : 'päivä';
  3879. case 'dd':
  3880. result = isFuture ? 'päivän' : 'päivää';
  3881. break;
  3882. case 'M':
  3883. return isFuture ? 'kuukauden' : 'kuukausi';
  3884. case 'MM':
  3885. result = isFuture ? 'kuukauden' : 'kuukautta';
  3886. break;
  3887. case 'y':
  3888. return isFuture ? 'vuoden' : 'vuosi';
  3889. case 'yy':
  3890. result = isFuture ? 'vuoden' : 'vuotta';
  3891. break;
  3892. }
  3893. result = verbalNumber(number, isFuture) + ' ' + result;
  3894. return result;
  3895. }
  3896. function verbalNumber(number, isFuture) {
  3897. return number < 10
  3898. ? isFuture
  3899. ? numbersFuture[number]
  3900. : numbersPast[number]
  3901. : number;
  3902. }
  3903. moment.defineLocale('fi', {
  3904. months: 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu'.split(
  3905. '_'
  3906. ),
  3907. monthsShort: 'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split(
  3908. '_'
  3909. ),
  3910. weekdays: 'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split(
  3911. '_'
  3912. ),
  3913. weekdaysShort: 'su_ma_ti_ke_to_pe_la'.split('_'),
  3914. weekdaysMin: 'su_ma_ti_ke_to_pe_la'.split('_'),
  3915. longDateFormat: {
  3916. LT: 'HH.mm',
  3917. LTS: 'HH.mm.ss',
  3918. L: 'DD.MM.YYYY',
  3919. LL: 'Do MMMM[ta] YYYY',
  3920. LLL: 'Do MMMM[ta] YYYY, [klo] HH.mm',
  3921. LLLL: 'dddd, Do MMMM[ta] YYYY, [klo] HH.mm',
  3922. l: 'D.M.YYYY',
  3923. ll: 'Do MMM YYYY',
  3924. lll: 'Do MMM YYYY, [klo] HH.mm',
  3925. llll: 'ddd, Do MMM YYYY, [klo] HH.mm',
  3926. },
  3927. calendar: {
  3928. sameDay: '[tänään] [klo] LT',
  3929. nextDay: '[huomenna] [klo] LT',
  3930. nextWeek: 'dddd [klo] LT',
  3931. lastDay: '[eilen] [klo] LT',
  3932. lastWeek: '[viime] dddd[na] [klo] LT',
  3933. sameElse: 'L',
  3934. },
  3935. relativeTime: {
  3936. future: '%s päästä',
  3937. past: '%s sitten',
  3938. s: translate$2,
  3939. ss: translate$2,
  3940. m: translate$2,
  3941. mm: translate$2,
  3942. h: translate$2,
  3943. hh: translate$2,
  3944. d: translate$2,
  3945. dd: translate$2,
  3946. M: translate$2,
  3947. MM: translate$2,
  3948. y: translate$2,
  3949. yy: translate$2,
  3950. },
  3951. dayOfMonthOrdinalParse: /\d{1,2}\./,
  3952. ordinal: '%d.',
  3953. week: {
  3954. dow: 1, // Monday is the first day of the week.
  3955. doy: 4, // The week that contains Jan 4th is the first week of the year.
  3956. },
  3957. });
  3958. //! moment.js locale configuration
  3959. moment.defineLocale('fil', {
  3960. months: 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split(
  3961. '_'
  3962. ),
  3963. monthsShort: 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),
  3964. weekdays: 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split(
  3965. '_'
  3966. ),
  3967. weekdaysShort: 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'),
  3968. weekdaysMin: 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'),
  3969. longDateFormat: {
  3970. LT: 'HH:mm',
  3971. LTS: 'HH:mm:ss',
  3972. L: 'MM/D/YYYY',
  3973. LL: 'MMMM D, YYYY',
  3974. LLL: 'MMMM D, YYYY HH:mm',
  3975. LLLL: 'dddd, MMMM DD, YYYY HH:mm',
  3976. },
  3977. calendar: {
  3978. sameDay: 'LT [ngayong araw]',
  3979. nextDay: '[Bukas ng] LT',
  3980. nextWeek: 'LT [sa susunod na] dddd',
  3981. lastDay: 'LT [kahapon]',
  3982. lastWeek: 'LT [noong nakaraang] dddd',
  3983. sameElse: 'L',
  3984. },
  3985. relativeTime: {
  3986. future: 'sa loob ng %s',
  3987. past: '%s ang nakalipas',
  3988. s: 'ilang segundo',
  3989. ss: '%d segundo',
  3990. m: 'isang minuto',
  3991. mm: '%d minuto',
  3992. h: 'isang oras',
  3993. hh: '%d oras',
  3994. d: 'isang araw',
  3995. dd: '%d araw',
  3996. M: 'isang buwan',
  3997. MM: '%d buwan',
  3998. y: 'isang taon',
  3999. yy: '%d taon',
  4000. },
  4001. dayOfMonthOrdinalParse: /\d{1,2}/,
  4002. ordinal: function (number) {
  4003. return number;
  4004. },
  4005. week: {
  4006. dow: 1, // Monday is the first day of the week.
  4007. doy: 4, // The week that contains Jan 4th is the first week of the year.
  4008. },
  4009. });
  4010. //! moment.js locale configuration
  4011. moment.defineLocale('fo', {
  4012. months: 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split(
  4013. '_'
  4014. ),
  4015. monthsShort: 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
  4016. weekdays: 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split(
  4017. '_'
  4018. ),
  4019. weekdaysShort: 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
  4020. weekdaysMin: 'su_má_tý_mi_hó_fr_le'.split('_'),
  4021. longDateFormat: {
  4022. LT: 'HH:mm',
  4023. LTS: 'HH:mm:ss',
  4024. L: 'DD/MM/YYYY',
  4025. LL: 'D MMMM YYYY',
  4026. LLL: 'D MMMM YYYY HH:mm',
  4027. LLLL: 'dddd D. MMMM, YYYY HH:mm',
  4028. },
  4029. calendar: {
  4030. sameDay: '[Í dag kl.] LT',
  4031. nextDay: '[Í morgin kl.] LT',
  4032. nextWeek: 'dddd [kl.] LT',
  4033. lastDay: '[Í gjár kl.] LT',
  4034. lastWeek: '[síðstu] dddd [kl] LT',
  4035. sameElse: 'L',
  4036. },
  4037. relativeTime: {
  4038. future: 'um %s',
  4039. past: '%s síðani',
  4040. s: 'fá sekund',
  4041. ss: '%d sekundir',
  4042. m: 'ein minuttur',
  4043. mm: '%d minuttir',
  4044. h: 'ein tími',
  4045. hh: '%d tímar',
  4046. d: 'ein dagur',
  4047. dd: '%d dagar',
  4048. M: 'ein mánaður',
  4049. MM: '%d mánaðir',
  4050. y: 'eitt ár',
  4051. yy: '%d ár',
  4052. },
  4053. dayOfMonthOrdinalParse: /\d{1,2}\./,
  4054. ordinal: '%d.',
  4055. week: {
  4056. dow: 1, // Monday is the first day of the week.
  4057. doy: 4, // The week that contains Jan 4th is the first week of the year.
  4058. },
  4059. });
  4060. //! moment.js locale configuration
  4061. moment.defineLocale('fr-ca', {
  4062. months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
  4063. '_'
  4064. ),
  4065. monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
  4066. '_'
  4067. ),
  4068. monthsParseExact: true,
  4069. weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
  4070. weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
  4071. weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),
  4072. weekdaysParseExact: true,
  4073. longDateFormat: {
  4074. LT: 'HH:mm',
  4075. LTS: 'HH:mm:ss',
  4076. L: 'YYYY-MM-DD',
  4077. LL: 'D MMMM YYYY',
  4078. LLL: 'D MMMM YYYY HH:mm',
  4079. LLLL: 'dddd D MMMM YYYY HH:mm',
  4080. },
  4081. calendar: {
  4082. sameDay: '[Aujourd’hui à] LT',
  4083. nextDay: '[Demain à] LT',
  4084. nextWeek: 'dddd [à] LT',
  4085. lastDay: '[Hier à] LT',
  4086. lastWeek: 'dddd [dernier à] LT',
  4087. sameElse: 'L',
  4088. },
  4089. relativeTime: {
  4090. future: 'dans %s',
  4091. past: 'il y a %s',
  4092. s: 'quelques secondes',
  4093. ss: '%d secondes',
  4094. m: 'une minute',
  4095. mm: '%d minutes',
  4096. h: 'une heure',
  4097. hh: '%d heures',
  4098. d: 'un jour',
  4099. dd: '%d jours',
  4100. M: 'un mois',
  4101. MM: '%d mois',
  4102. y: 'un an',
  4103. yy: '%d ans',
  4104. },
  4105. dayOfMonthOrdinalParse: /\d{1,2}(er|e)/,
  4106. ordinal: function (number, period) {
  4107. switch (period) {
  4108. // Words with masculine grammatical gender: mois, trimestre, jour
  4109. default:
  4110. case 'M':
  4111. case 'Q':
  4112. case 'D':
  4113. case 'DDD':
  4114. case 'd':
  4115. return number + (number === 1 ? 'er' : 'e');
  4116. // Words with feminine grammatical gender: semaine
  4117. case 'w':
  4118. case 'W':
  4119. return number + (number === 1 ? 're' : 'e');
  4120. }
  4121. },
  4122. });
  4123. //! moment.js locale configuration
  4124. moment.defineLocale('fr-ch', {
  4125. months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
  4126. '_'
  4127. ),
  4128. monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
  4129. '_'
  4130. ),
  4131. monthsParseExact: true,
  4132. weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
  4133. weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
  4134. weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),
  4135. weekdaysParseExact: true,
  4136. longDateFormat: {
  4137. LT: 'HH:mm',
  4138. LTS: 'HH:mm:ss',
  4139. L: 'DD.MM.YYYY',
  4140. LL: 'D MMMM YYYY',
  4141. LLL: 'D MMMM YYYY HH:mm',
  4142. LLLL: 'dddd D MMMM YYYY HH:mm',
  4143. },
  4144. calendar: {
  4145. sameDay: '[Aujourd’hui à] LT',
  4146. nextDay: '[Demain à] LT',
  4147. nextWeek: 'dddd [à] LT',
  4148. lastDay: '[Hier à] LT',
  4149. lastWeek: 'dddd [dernier à] LT',
  4150. sameElse: 'L',
  4151. },
  4152. relativeTime: {
  4153. future: 'dans %s',
  4154. past: 'il y a %s',
  4155. s: 'quelques secondes',
  4156. ss: '%d secondes',
  4157. m: 'une minute',
  4158. mm: '%d minutes',
  4159. h: 'une heure',
  4160. hh: '%d heures',
  4161. d: 'un jour',
  4162. dd: '%d jours',
  4163. M: 'un mois',
  4164. MM: '%d mois',
  4165. y: 'un an',
  4166. yy: '%d ans',
  4167. },
  4168. dayOfMonthOrdinalParse: /\d{1,2}(er|e)/,
  4169. ordinal: function (number, period) {
  4170. switch (period) {
  4171. // Words with masculine grammatical gender: mois, trimestre, jour
  4172. default:
  4173. case 'M':
  4174. case 'Q':
  4175. case 'D':
  4176. case 'DDD':
  4177. case 'd':
  4178. return number + (number === 1 ? 'er' : 'e');
  4179. // Words with feminine grammatical gender: semaine
  4180. case 'w':
  4181. case 'W':
  4182. return number + (number === 1 ? 're' : 'e');
  4183. }
  4184. },
  4185. week: {
  4186. dow: 1, // Monday is the first day of the week.
  4187. doy: 4, // The week that contains Jan 4th is the first week of the year.
  4188. },
  4189. });
  4190. //! moment.js locale configuration
  4191. var monthsStrictRegex$1 = /^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,
  4192. monthsShortStrictRegex$1 = /(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?)/i,
  4193. monthsRegex$6 = /(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?|janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,
  4194. monthsParse$6 = [
  4195. /^janv/i,
  4196. /^févr/i,
  4197. /^mars/i,
  4198. /^avr/i,
  4199. /^mai/i,
  4200. /^juin/i,
  4201. /^juil/i,
  4202. /^août/i,
  4203. /^sept/i,
  4204. /^oct/i,
  4205. /^nov/i,
  4206. /^déc/i,
  4207. ];
  4208. moment.defineLocale('fr', {
  4209. months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
  4210. '_'
  4211. ),
  4212. monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
  4213. '_'
  4214. ),
  4215. monthsRegex: monthsRegex$6,
  4216. monthsShortRegex: monthsRegex$6,
  4217. monthsStrictRegex: monthsStrictRegex$1,
  4218. monthsShortStrictRegex: monthsShortStrictRegex$1,
  4219. monthsParse: monthsParse$6,
  4220. longMonthsParse: monthsParse$6,
  4221. shortMonthsParse: monthsParse$6,
  4222. weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
  4223. weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
  4224. weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),
  4225. weekdaysParseExact: true,
  4226. longDateFormat: {
  4227. LT: 'HH:mm',
  4228. LTS: 'HH:mm:ss',
  4229. L: 'DD/MM/YYYY',
  4230. LL: 'D MMMM YYYY',
  4231. LLL: 'D MMMM YYYY HH:mm',
  4232. LLLL: 'dddd D MMMM YYYY HH:mm',
  4233. },
  4234. calendar: {
  4235. sameDay: '[Aujourd’hui à] LT',
  4236. nextDay: '[Demain à] LT',
  4237. nextWeek: 'dddd [à] LT',
  4238. lastDay: '[Hier à] LT',
  4239. lastWeek: 'dddd [dernier à] LT',
  4240. sameElse: 'L',
  4241. },
  4242. relativeTime: {
  4243. future: 'dans %s',
  4244. past: 'il y a %s',
  4245. s: 'quelques secondes',
  4246. ss: '%d secondes',
  4247. m: 'une minute',
  4248. mm: '%d minutes',
  4249. h: 'une heure',
  4250. hh: '%d heures',
  4251. d: 'un jour',
  4252. dd: '%d jours',
  4253. w: 'une semaine',
  4254. ww: '%d semaines',
  4255. M: 'un mois',
  4256. MM: '%d mois',
  4257. y: 'un an',
  4258. yy: '%d ans',
  4259. },
  4260. dayOfMonthOrdinalParse: /\d{1,2}(er|)/,
  4261. ordinal: function (number, period) {
  4262. switch (period) {
  4263. // TODO: Return 'e' when day of month > 1. Move this case inside
  4264. // block for masculine words below.
  4265. // See https://github.com/moment/moment/issues/3375
  4266. case 'D':
  4267. return number + (number === 1 ? 'er' : '');
  4268. // Words with masculine grammatical gender: mois, trimestre, jour
  4269. default:
  4270. case 'M':
  4271. case 'Q':
  4272. case 'DDD':
  4273. case 'd':
  4274. return number + (number === 1 ? 'er' : 'e');
  4275. // Words with feminine grammatical gender: semaine
  4276. case 'w':
  4277. case 'W':
  4278. return number + (number === 1 ? 're' : 'e');
  4279. }
  4280. },
  4281. week: {
  4282. dow: 1, // Monday is the first day of the week.
  4283. doy: 4, // The week that contains Jan 4th is the first week of the year.
  4284. },
  4285. });
  4286. //! moment.js locale configuration
  4287. var monthsShortWithDots = 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split(
  4288. '_'
  4289. ),
  4290. monthsShortWithoutDots = 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split(
  4291. '_'
  4292. );
  4293. moment.defineLocale('fy', {
  4294. months: 'jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber'.split(
  4295. '_'
  4296. ),
  4297. monthsShort: function (m, format) {
  4298. if (!m) {
  4299. return monthsShortWithDots;
  4300. } else if (/-MMM-/.test(format)) {
  4301. return monthsShortWithoutDots[m.month()];
  4302. } else {
  4303. return monthsShortWithDots[m.month()];
  4304. }
  4305. },
  4306. monthsParseExact: true,
  4307. weekdays: 'snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon'.split(
  4308. '_'
  4309. ),
  4310. weekdaysShort: 'si._mo._ti._wo._to._fr._so.'.split('_'),
  4311. weekdaysMin: 'Si_Mo_Ti_Wo_To_Fr_So'.split('_'),
  4312. weekdaysParseExact: true,
  4313. longDateFormat: {
  4314. LT: 'HH:mm',
  4315. LTS: 'HH:mm:ss',
  4316. L: 'DD-MM-YYYY',
  4317. LL: 'D MMMM YYYY',
  4318. LLL: 'D MMMM YYYY HH:mm',
  4319. LLLL: 'dddd D MMMM YYYY HH:mm',
  4320. },
  4321. calendar: {
  4322. sameDay: '[hjoed om] LT',
  4323. nextDay: '[moarn om] LT',
  4324. nextWeek: 'dddd [om] LT',
  4325. lastDay: '[juster om] LT',
  4326. lastWeek: '[ôfrûne] dddd [om] LT',
  4327. sameElse: 'L',
  4328. },
  4329. relativeTime: {
  4330. future: 'oer %s',
  4331. past: '%s lyn',
  4332. s: 'in pear sekonden',
  4333. ss: '%d sekonden',
  4334. m: 'ien minút',
  4335. mm: '%d minuten',
  4336. h: 'ien oere',
  4337. hh: '%d oeren',
  4338. d: 'ien dei',
  4339. dd: '%d dagen',
  4340. M: 'ien moanne',
  4341. MM: '%d moannen',
  4342. y: 'ien jier',
  4343. yy: '%d jierren',
  4344. },
  4345. dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
  4346. ordinal: function (number) {
  4347. return (
  4348. number +
  4349. (number === 1 || number === 8 || number >= 20 ? 'ste' : 'de')
  4350. );
  4351. },
  4352. week: {
  4353. dow: 1, // Monday is the first day of the week.
  4354. doy: 4, // The week that contains Jan 4th is the first week of the year.
  4355. },
  4356. });
  4357. //! moment.js locale configuration
  4358. var months$5 = [
  4359. 'Eanáir',
  4360. 'Feabhra',
  4361. 'Márta',
  4362. 'Aibreán',
  4363. 'Bealtaine',
  4364. 'Meitheamh',
  4365. 'Iúil',
  4366. 'Lúnasa',
  4367. 'Meán Fómhair',
  4368. 'Deireadh Fómhair',
  4369. 'Samhain',
  4370. 'Nollaig',
  4371. ],
  4372. monthsShort$5 = [
  4373. 'Ean',
  4374. 'Feabh',
  4375. 'Márt',
  4376. 'Aib',
  4377. 'Beal',
  4378. 'Meith',
  4379. 'Iúil',
  4380. 'Lún',
  4381. 'M.F.',
  4382. 'D.F.',
  4383. 'Samh',
  4384. 'Noll',
  4385. ],
  4386. weekdays$1 = [
  4387. 'Dé Domhnaigh',
  4388. 'Dé Luain',
  4389. 'Dé Máirt',
  4390. 'Dé Céadaoin',
  4391. 'Déardaoin',
  4392. 'Dé hAoine',
  4393. 'Dé Sathairn',
  4394. ],
  4395. weekdaysShort = ['Domh', 'Luan', 'Máirt', 'Céad', 'Déar', 'Aoine', 'Sath'],
  4396. weekdaysMin = ['Do', 'Lu', 'Má', 'Cé', 'Dé', 'A', 'Sa'];
  4397. moment.defineLocale('ga', {
  4398. months: months$5,
  4399. monthsShort: monthsShort$5,
  4400. monthsParseExact: true,
  4401. weekdays: weekdays$1,
  4402. weekdaysShort: weekdaysShort,
  4403. weekdaysMin: weekdaysMin,
  4404. longDateFormat: {
  4405. LT: 'HH:mm',
  4406. LTS: 'HH:mm:ss',
  4407. L: 'DD/MM/YYYY',
  4408. LL: 'D MMMM YYYY',
  4409. LLL: 'D MMMM YYYY HH:mm',
  4410. LLLL: 'dddd, D MMMM YYYY HH:mm',
  4411. },
  4412. calendar: {
  4413. sameDay: '[Inniu ag] LT',
  4414. nextDay: '[Amárach ag] LT',
  4415. nextWeek: 'dddd [ag] LT',
  4416. lastDay: '[Inné ag] LT',
  4417. lastWeek: 'dddd [seo caite] [ag] LT',
  4418. sameElse: 'L',
  4419. },
  4420. relativeTime: {
  4421. future: 'i %s',
  4422. past: '%s ó shin',
  4423. s: 'cúpla soicind',
  4424. ss: '%d soicind',
  4425. m: 'nóiméad',
  4426. mm: '%d nóiméad',
  4427. h: 'uair an chloig',
  4428. hh: '%d uair an chloig',
  4429. d: 'lá',
  4430. dd: '%d lá',
  4431. M: 'mí',
  4432. MM: '%d míonna',
  4433. y: 'bliain',
  4434. yy: '%d bliain',
  4435. },
  4436. dayOfMonthOrdinalParse: /\d{1,2}(d|na|mh)/,
  4437. ordinal: function (number) {
  4438. var output = number === 1 ? 'd' : number % 10 === 2 ? 'na' : 'mh';
  4439. return number + output;
  4440. },
  4441. week: {
  4442. dow: 1, // Monday is the first day of the week.
  4443. doy: 4, // The week that contains Jan 4th is the first week of the year.
  4444. },
  4445. });
  4446. //! moment.js locale configuration
  4447. var months$6 = [
  4448. 'Am Faoilleach',
  4449. 'An Gearran',
  4450. 'Am Màrt',
  4451. 'An Giblean',
  4452. 'An Cèitean',
  4453. 'An t-Ògmhios',
  4454. 'An t-Iuchar',
  4455. 'An Lùnastal',
  4456. 'An t-Sultain',
  4457. 'An Dàmhair',
  4458. 'An t-Samhain',
  4459. 'An Dùbhlachd',
  4460. ],
  4461. monthsShort$6 = [
  4462. 'Faoi',
  4463. 'Gear',
  4464. 'Màrt',
  4465. 'Gibl',
  4466. 'Cèit',
  4467. 'Ògmh',
  4468. 'Iuch',
  4469. 'Lùn',
  4470. 'Sult',
  4471. 'Dàmh',
  4472. 'Samh',
  4473. 'Dùbh',
  4474. ],
  4475. weekdays$2 = [
  4476. 'Didòmhnaich',
  4477. 'Diluain',
  4478. 'Dimàirt',
  4479. 'Diciadain',
  4480. 'Diardaoin',
  4481. 'Dihaoine',
  4482. 'Disathairne',
  4483. ],
  4484. weekdaysShort$1 = ['Did', 'Dil', 'Dim', 'Dic', 'Dia', 'Dih', 'Dis'],
  4485. weekdaysMin$1 = ['Dò', 'Lu', 'Mà', 'Ci', 'Ar', 'Ha', 'Sa'];
  4486. moment.defineLocale('gd', {
  4487. months: months$6,
  4488. monthsShort: monthsShort$6,
  4489. monthsParseExact: true,
  4490. weekdays: weekdays$2,
  4491. weekdaysShort: weekdaysShort$1,
  4492. weekdaysMin: weekdaysMin$1,
  4493. longDateFormat: {
  4494. LT: 'HH:mm',
  4495. LTS: 'HH:mm:ss',
  4496. L: 'DD/MM/YYYY',
  4497. LL: 'D MMMM YYYY',
  4498. LLL: 'D MMMM YYYY HH:mm',
  4499. LLLL: 'dddd, D MMMM YYYY HH:mm',
  4500. },
  4501. calendar: {
  4502. sameDay: '[An-diugh aig] LT',
  4503. nextDay: '[A-màireach aig] LT',
  4504. nextWeek: 'dddd [aig] LT',
  4505. lastDay: '[An-dè aig] LT',
  4506. lastWeek: 'dddd [seo chaidh] [aig] LT',
  4507. sameElse: 'L',
  4508. },
  4509. relativeTime: {
  4510. future: 'ann an %s',
  4511. past: 'bho chionn %s',
  4512. s: 'beagan diogan',
  4513. ss: '%d diogan',
  4514. m: 'mionaid',
  4515. mm: '%d mionaidean',
  4516. h: 'uair',
  4517. hh: '%d uairean',
  4518. d: 'latha',
  4519. dd: '%d latha',
  4520. M: 'mìos',
  4521. MM: '%d mìosan',
  4522. y: 'bliadhna',
  4523. yy: '%d bliadhna',
  4524. },
  4525. dayOfMonthOrdinalParse: /\d{1,2}(d|na|mh)/,
  4526. ordinal: function (number) {
  4527. var output = number === 1 ? 'd' : number % 10 === 2 ? 'na' : 'mh';
  4528. return number + output;
  4529. },
  4530. week: {
  4531. dow: 1, // Monday is the first day of the week.
  4532. doy: 4, // The week that contains Jan 4th is the first week of the year.
  4533. },
  4534. });
  4535. //! moment.js locale configuration
  4536. moment.defineLocale('gl', {
  4537. months: 'xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro'.split(
  4538. '_'
  4539. ),
  4540. monthsShort: 'xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.'.split(
  4541. '_'
  4542. ),
  4543. monthsParseExact: true,
  4544. weekdays: 'domingo_luns_martes_mércores_xoves_venres_sábado'.split('_'),
  4545. weekdaysShort: 'dom._lun._mar._mér._xov._ven._sáb.'.split('_'),
  4546. weekdaysMin: 'do_lu_ma_mé_xo_ve_sá'.split('_'),
  4547. weekdaysParseExact: true,
  4548. longDateFormat: {
  4549. LT: 'H:mm',
  4550. LTS: 'H:mm:ss',
  4551. L: 'DD/MM/YYYY',
  4552. LL: 'D [de] MMMM [de] YYYY',
  4553. LLL: 'D [de] MMMM [de] YYYY H:mm',
  4554. LLLL: 'dddd, D [de] MMMM [de] YYYY H:mm',
  4555. },
  4556. calendar: {
  4557. sameDay: function () {
  4558. return '[hoxe ' + (this.hours() !== 1 ? 'ás' : 'á') + '] LT';
  4559. },
  4560. nextDay: function () {
  4561. return '[mañá ' + (this.hours() !== 1 ? 'ás' : 'á') + '] LT';
  4562. },
  4563. nextWeek: function () {
  4564. return 'dddd [' + (this.hours() !== 1 ? 'ás' : 'a') + '] LT';
  4565. },
  4566. lastDay: function () {
  4567. return '[onte ' + (this.hours() !== 1 ? 'á' : 'a') + '] LT';
  4568. },
  4569. lastWeek: function () {
  4570. return (
  4571. '[o] dddd [pasado ' + (this.hours() !== 1 ? 'ás' : 'a') + '] LT'
  4572. );
  4573. },
  4574. sameElse: 'L',
  4575. },
  4576. relativeTime: {
  4577. future: function (str) {
  4578. if (str.indexOf('un') === 0) {
  4579. return 'n' + str;
  4580. }
  4581. return 'en ' + str;
  4582. },
  4583. past: 'hai %s',
  4584. s: 'uns segundos',
  4585. ss: '%d segundos',
  4586. m: 'un minuto',
  4587. mm: '%d minutos',
  4588. h: 'unha hora',
  4589. hh: '%d horas',
  4590. d: 'un día',
  4591. dd: '%d días',
  4592. M: 'un mes',
  4593. MM: '%d meses',
  4594. y: 'un ano',
  4595. yy: '%d anos',
  4596. },
  4597. dayOfMonthOrdinalParse: /\d{1,2}º/,
  4598. ordinal: '%dº',
  4599. week: {
  4600. dow: 1, // Monday is the first day of the week.
  4601. doy: 4, // The week that contains Jan 4th is the first week of the year.
  4602. },
  4603. });
  4604. //! moment.js locale configuration
  4605. function processRelativeTime$4(number, withoutSuffix, key, isFuture) {
  4606. var format = {
  4607. s: ['थोडया सॅकंडांनी', 'थोडे सॅकंड'],
  4608. ss: [number + ' सॅकंडांनी', number + ' सॅकंड'],
  4609. m: ['एका मिणटान', 'एक मिनूट'],
  4610. mm: [number + ' मिणटांनी', number + ' मिणटां'],
  4611. h: ['एका वरान', 'एक वर'],
  4612. hh: [number + ' वरांनी', number + ' वरां'],
  4613. d: ['एका दिसान', 'एक दीस'],
  4614. dd: [number + ' दिसांनी', number + ' दीस'],
  4615. M: ['एका म्हयन्यान', 'एक म्हयनो'],
  4616. MM: [number + ' म्हयन्यानी', number + ' म्हयने'],
  4617. y: ['एका वर्सान', 'एक वर्स'],
  4618. yy: [number + ' वर्सांनी', number + ' वर्सां'],
  4619. };
  4620. return isFuture ? format[key][0] : format[key][1];
  4621. }
  4622. moment.defineLocale('gom-deva', {
  4623. months: {
  4624. standalone: 'जानेवारी_फेब्रुवारी_मार्च_एप्रील_मे_जून_जुलय_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split(
  4625. '_'
  4626. ),
  4627. format: 'जानेवारीच्या_फेब्रुवारीच्या_मार्चाच्या_एप्रीलाच्या_मेयाच्या_जूनाच्या_जुलयाच्या_ऑगस्टाच्या_सप्टेंबराच्या_ऑक्टोबराच्या_नोव्हेंबराच्या_डिसेंबराच्या'.split(
  4628. '_'
  4629. ),
  4630. isFormat: /MMMM(\s)+D[oD]?/,
  4631. },
  4632. monthsShort: 'जाने._फेब्रु._मार्च_एप्री._मे_जून_जुल._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split(
  4633. '_'
  4634. ),
  4635. monthsParseExact: true,
  4636. weekdays: 'आयतार_सोमार_मंगळार_बुधवार_बिरेस्तार_सुक्रार_शेनवार'.split('_'),
  4637. weekdaysShort: 'आयत._सोम._मंगळ._बुध._ब्रेस्त._सुक्र._शेन.'.split('_'),
  4638. weekdaysMin: 'आ_सो_मं_बु_ब्रे_सु_शे'.split('_'),
  4639. weekdaysParseExact: true,
  4640. longDateFormat: {
  4641. LT: 'A h:mm [वाजतां]',
  4642. LTS: 'A h:mm:ss [वाजतां]',
  4643. L: 'DD-MM-YYYY',
  4644. LL: 'D MMMM YYYY',
  4645. LLL: 'D MMMM YYYY A h:mm [वाजतां]',
  4646. LLLL: 'dddd, MMMM Do, YYYY, A h:mm [वाजतां]',
  4647. llll: 'ddd, D MMM YYYY, A h:mm [वाजतां]',
  4648. },
  4649. calendar: {
  4650. sameDay: '[आयज] LT',
  4651. nextDay: '[फाल्यां] LT',
  4652. nextWeek: '[फुडलो] dddd[,] LT',
  4653. lastDay: '[काल] LT',
  4654. lastWeek: '[फाटलो] dddd[,] LT',
  4655. sameElse: 'L',
  4656. },
  4657. relativeTime: {
  4658. future: '%s',
  4659. past: '%s आदीं',
  4660. s: processRelativeTime$4,
  4661. ss: processRelativeTime$4,
  4662. m: processRelativeTime$4,
  4663. mm: processRelativeTime$4,
  4664. h: processRelativeTime$4,
  4665. hh: processRelativeTime$4,
  4666. d: processRelativeTime$4,
  4667. dd: processRelativeTime$4,
  4668. M: processRelativeTime$4,
  4669. MM: processRelativeTime$4,
  4670. y: processRelativeTime$4,
  4671. yy: processRelativeTime$4,
  4672. },
  4673. dayOfMonthOrdinalParse: /\d{1,2}(वेर)/,
  4674. ordinal: function (number, period) {
  4675. switch (period) {
  4676. // the ordinal 'वेर' only applies to day of the month
  4677. case 'D':
  4678. return number + 'वेर';
  4679. default:
  4680. case 'M':
  4681. case 'Q':
  4682. case 'DDD':
  4683. case 'd':
  4684. case 'w':
  4685. case 'W':
  4686. return number;
  4687. }
  4688. },
  4689. week: {
  4690. dow: 0, // Sunday is the first day of the week
  4691. doy: 3, // The week that contains Jan 4th is the first week of the year (7 + 0 - 4)
  4692. },
  4693. meridiemParse: /राती|सकाळीं|दनपारां|सांजे/,
  4694. meridiemHour: function (hour, meridiem) {
  4695. if (hour === 12) {
  4696. hour = 0;
  4697. }
  4698. if (meridiem === 'राती') {
  4699. return hour < 4 ? hour : hour + 12;
  4700. } else if (meridiem === 'सकाळीं') {
  4701. return hour;
  4702. } else if (meridiem === 'दनपारां') {
  4703. return hour > 12 ? hour : hour + 12;
  4704. } else if (meridiem === 'सांजे') {
  4705. return hour + 12;
  4706. }
  4707. },
  4708. meridiem: function (hour, minute, isLower) {
  4709. if (hour < 4) {
  4710. return 'राती';
  4711. } else if (hour < 12) {
  4712. return 'सकाळीं';
  4713. } else if (hour < 16) {
  4714. return 'दनपारां';
  4715. } else if (hour < 20) {
  4716. return 'सांजे';
  4717. } else {
  4718. return 'राती';
  4719. }
  4720. },
  4721. });
  4722. //! moment.js locale configuration
  4723. function processRelativeTime$5(number, withoutSuffix, key, isFuture) {
  4724. var format = {
  4725. s: ['thoddea sekondamni', 'thodde sekond'],
  4726. ss: [number + ' sekondamni', number + ' sekond'],
  4727. m: ['eka mintan', 'ek minut'],
  4728. mm: [number + ' mintamni', number + ' mintam'],
  4729. h: ['eka voran', 'ek vor'],
  4730. hh: [number + ' voramni', number + ' voram'],
  4731. d: ['eka disan', 'ek dis'],
  4732. dd: [number + ' disamni', number + ' dis'],
  4733. M: ['eka mhoinean', 'ek mhoino'],
  4734. MM: [number + ' mhoineamni', number + ' mhoine'],
  4735. y: ['eka vorsan', 'ek voros'],
  4736. yy: [number + ' vorsamni', number + ' vorsam'],
  4737. };
  4738. return isFuture ? format[key][0] : format[key][1];
  4739. }
  4740. moment.defineLocale('gom-latn', {
  4741. months: {
  4742. standalone: 'Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr'.split(
  4743. '_'
  4744. ),
  4745. format: 'Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea'.split(
  4746. '_'
  4747. ),
  4748. isFormat: /MMMM(\s)+D[oD]?/,
  4749. },
  4750. monthsShort: 'Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.'.split(
  4751. '_'
  4752. ),
  4753. monthsParseExact: true,
  4754. weekdays: "Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var".split('_'),
  4755. weekdaysShort: 'Ait._Som._Mon._Bud._Bre._Suk._Son.'.split('_'),
  4756. weekdaysMin: 'Ai_Sm_Mo_Bu_Br_Su_Sn'.split('_'),
  4757. weekdaysParseExact: true,
  4758. longDateFormat: {
  4759. LT: 'A h:mm [vazta]',
  4760. LTS: 'A h:mm:ss [vazta]',
  4761. L: 'DD-MM-YYYY',
  4762. LL: 'D MMMM YYYY',
  4763. LLL: 'D MMMM YYYY A h:mm [vazta]',
  4764. LLLL: 'dddd, MMMM Do, YYYY, A h:mm [vazta]',
  4765. llll: 'ddd, D MMM YYYY, A h:mm [vazta]',
  4766. },
  4767. calendar: {
  4768. sameDay: '[Aiz] LT',
  4769. nextDay: '[Faleam] LT',
  4770. nextWeek: '[Fuddlo] dddd[,] LT',
  4771. lastDay: '[Kal] LT',
  4772. lastWeek: '[Fattlo] dddd[,] LT',
  4773. sameElse: 'L',
  4774. },
  4775. relativeTime: {
  4776. future: '%s',
  4777. past: '%s adim',
  4778. s: processRelativeTime$5,
  4779. ss: processRelativeTime$5,
  4780. m: processRelativeTime$5,
  4781. mm: processRelativeTime$5,
  4782. h: processRelativeTime$5,
  4783. hh: processRelativeTime$5,
  4784. d: processRelativeTime$5,
  4785. dd: processRelativeTime$5,
  4786. M: processRelativeTime$5,
  4787. MM: processRelativeTime$5,
  4788. y: processRelativeTime$5,
  4789. yy: processRelativeTime$5,
  4790. },
  4791. dayOfMonthOrdinalParse: /\d{1,2}(er)/,
  4792. ordinal: function (number, period) {
  4793. switch (period) {
  4794. // the ordinal 'er' only applies to day of the month
  4795. case 'D':
  4796. return number + 'er';
  4797. default:
  4798. case 'M':
  4799. case 'Q':
  4800. case 'DDD':
  4801. case 'd':
  4802. case 'w':
  4803. case 'W':
  4804. return number;
  4805. }
  4806. },
  4807. week: {
  4808. dow: 0, // Sunday is the first day of the week
  4809. doy: 3, // The week that contains Jan 4th is the first week of the year (7 + 0 - 4)
  4810. },
  4811. meridiemParse: /rati|sokallim|donparam|sanje/,
  4812. meridiemHour: function (hour, meridiem) {
  4813. if (hour === 12) {
  4814. hour = 0;
  4815. }
  4816. if (meridiem === 'rati') {
  4817. return hour < 4 ? hour : hour + 12;
  4818. } else if (meridiem === 'sokallim') {
  4819. return hour;
  4820. } else if (meridiem === 'donparam') {
  4821. return hour > 12 ? hour : hour + 12;
  4822. } else if (meridiem === 'sanje') {
  4823. return hour + 12;
  4824. }
  4825. },
  4826. meridiem: function (hour, minute, isLower) {
  4827. if (hour < 4) {
  4828. return 'rati';
  4829. } else if (hour < 12) {
  4830. return 'sokallim';
  4831. } else if (hour < 16) {
  4832. return 'donparam';
  4833. } else if (hour < 20) {
  4834. return 'sanje';
  4835. } else {
  4836. return 'rati';
  4837. }
  4838. },
  4839. });
  4840. //! moment.js locale configuration
  4841. var symbolMap$7 = {
  4842. 1: '૧',
  4843. 2: '૨',
  4844. 3: '૩',
  4845. 4: '૪',
  4846. 5: '૫',
  4847. 6: '૬',
  4848. 7: '૭',
  4849. 8: '૮',
  4850. 9: '૯',
  4851. 0: '૦',
  4852. },
  4853. numberMap$6 = {
  4854. '૧': '1',
  4855. '૨': '2',
  4856. '૩': '3',
  4857. '૪': '4',
  4858. '૫': '5',
  4859. '૬': '6',
  4860. '૭': '7',
  4861. '૮': '8',
  4862. '૯': '9',
  4863. '૦': '0',
  4864. };
  4865. moment.defineLocale('gu', {
  4866. months: 'જાન્યુઆરી_ફેબ્રુઆરી_માર્ચ_એપ્રિલ_મે_જૂન_જુલાઈ_ઑગસ્ટ_સપ્ટેમ્બર_ઑક્ટ્બર_નવેમ્બર_ડિસેમ્બર'.split(
  4867. '_'
  4868. ),
  4869. monthsShort: 'જાન્યુ._ફેબ્રુ._માર્ચ_એપ્રિ._મે_જૂન_જુલા._ઑગ._સપ્ટે._ઑક્ટ્._નવે._ડિસે.'.split(
  4870. '_'
  4871. ),
  4872. monthsParseExact: true,
  4873. weekdays: 'રવિવાર_સોમવાર_મંગળવાર_બુધ્વાર_ગુરુવાર_શુક્રવાર_શનિવાર'.split(
  4874. '_'
  4875. ),
  4876. weekdaysShort: 'રવિ_સોમ_મંગળ_બુધ્_ગુરુ_શુક્ર_શનિ'.split('_'),
  4877. weekdaysMin: 'ર_સો_મં_બુ_ગુ_શુ_શ'.split('_'),
  4878. longDateFormat: {
  4879. LT: 'A h:mm વાગ્યે',
  4880. LTS: 'A h:mm:ss વાગ્યે',
  4881. L: 'DD/MM/YYYY',
  4882. LL: 'D MMMM YYYY',
  4883. LLL: 'D MMMM YYYY, A h:mm વાગ્યે',
  4884. LLLL: 'dddd, D MMMM YYYY, A h:mm વાગ્યે',
  4885. },
  4886. calendar: {
  4887. sameDay: '[આજ] LT',
  4888. nextDay: '[કાલે] LT',
  4889. nextWeek: 'dddd, LT',
  4890. lastDay: '[ગઇકાલે] LT',
  4891. lastWeek: '[પાછલા] dddd, LT',
  4892. sameElse: 'L',
  4893. },
  4894. relativeTime: {
  4895. future: '%s મા',
  4896. past: '%s પહેલા',
  4897. s: 'અમુક પળો',
  4898. ss: '%d સેકંડ',
  4899. m: 'એક મિનિટ',
  4900. mm: '%d મિનિટ',
  4901. h: 'એક કલાક',
  4902. hh: '%d કલાક',
  4903. d: 'એક દિવસ',
  4904. dd: '%d દિવસ',
  4905. M: 'એક મહિનો',
  4906. MM: '%d મહિનો',
  4907. y: 'એક વર્ષ',
  4908. yy: '%d વર્ષ',
  4909. },
  4910. preparse: function (string) {
  4911. return string.replace(/[૧૨૩૪૫૬૭૮૯૦]/g, function (match) {
  4912. return numberMap$6[match];
  4913. });
  4914. },
  4915. postformat: function (string) {
  4916. return string.replace(/\d/g, function (match) {
  4917. return symbolMap$7[match];
  4918. });
  4919. },
  4920. // Gujarati notation for meridiems are quite fuzzy in practice. While there exists
  4921. // a rigid notion of a 'Pahar' it is not used as rigidly in modern Gujarati.
  4922. meridiemParse: /રાત|બપોર|સવાર|સાંજ/,
  4923. meridiemHour: function (hour, meridiem) {
  4924. if (hour === 12) {
  4925. hour = 0;
  4926. }
  4927. if (meridiem === 'રાત') {
  4928. return hour < 4 ? hour : hour + 12;
  4929. } else if (meridiem === 'સવાર') {
  4930. return hour;
  4931. } else if (meridiem === 'બપોર') {
  4932. return hour >= 10 ? hour : hour + 12;
  4933. } else if (meridiem === 'સાંજ') {
  4934. return hour + 12;
  4935. }
  4936. },
  4937. meridiem: function (hour, minute, isLower) {
  4938. if (hour < 4) {
  4939. return 'રાત';
  4940. } else if (hour < 10) {
  4941. return 'સવાર';
  4942. } else if (hour < 17) {
  4943. return 'બપોર';
  4944. } else if (hour < 20) {
  4945. return 'સાંજ';
  4946. } else {
  4947. return 'રાત';
  4948. }
  4949. },
  4950. week: {
  4951. dow: 0, // Sunday is the first day of the week.
  4952. doy: 6, // The week that contains Jan 6th is the first week of the year.
  4953. },
  4954. });
  4955. //! moment.js locale configuration
  4956. moment.defineLocale('he', {
  4957. months: 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split(
  4958. '_'
  4959. ),
  4960. monthsShort: 'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split(
  4961. '_'
  4962. ),
  4963. weekdays: 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'),
  4964. weekdaysShort: 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'),
  4965. weekdaysMin: 'א_ב_ג_ד_ה_ו_ש'.split('_'),
  4966. longDateFormat: {
  4967. LT: 'HH:mm',
  4968. LTS: 'HH:mm:ss',
  4969. L: 'DD/MM/YYYY',
  4970. LL: 'D [ב]MMMM YYYY',
  4971. LLL: 'D [ב]MMMM YYYY HH:mm',
  4972. LLLL: 'dddd, D [ב]MMMM YYYY HH:mm',
  4973. l: 'D/M/YYYY',
  4974. ll: 'D MMM YYYY',
  4975. lll: 'D MMM YYYY HH:mm',
  4976. llll: 'ddd, D MMM YYYY HH:mm',
  4977. },
  4978. calendar: {
  4979. sameDay: '[היום ב־]LT',
  4980. nextDay: '[מחר ב־]LT',
  4981. nextWeek: 'dddd [בשעה] LT',
  4982. lastDay: '[אתמול ב־]LT',
  4983. lastWeek: '[ביום] dddd [האחרון בשעה] LT',
  4984. sameElse: 'L',
  4985. },
  4986. relativeTime: {
  4987. future: 'בעוד %s',
  4988. past: 'לפני %s',
  4989. s: 'מספר שניות',
  4990. ss: '%d שניות',
  4991. m: 'דקה',
  4992. mm: '%d דקות',
  4993. h: 'שעה',
  4994. hh: function (number) {
  4995. if (number === 2) {
  4996. return 'שעתיים';
  4997. }
  4998. return number + ' שעות';
  4999. },
  5000. d: 'יום',
  5001. dd: function (number) {
  5002. if (number === 2) {
  5003. return 'יומיים';
  5004. }
  5005. return number + ' ימים';
  5006. },
  5007. M: 'חודש',
  5008. MM: function (number) {
  5009. if (number === 2) {
  5010. return 'חודשיים';
  5011. }
  5012. return number + ' חודשים';
  5013. },
  5014. y: 'שנה',
  5015. yy: function (number) {
  5016. if (number === 2) {
  5017. return 'שנתיים';
  5018. } else if (number % 10 === 0 && number !== 10) {
  5019. return number + ' שנה';
  5020. }
  5021. return number + ' שנים';
  5022. },
  5023. },
  5024. meridiemParse: /אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,
  5025. isPM: function (input) {
  5026. return /^(אחה"צ|אחרי הצהריים|בערב)$/.test(input);
  5027. },
  5028. meridiem: function (hour, minute, isLower) {
  5029. if (hour < 5) {
  5030. return 'לפנות בוקר';
  5031. } else if (hour < 10) {
  5032. return 'בבוקר';
  5033. } else if (hour < 12) {
  5034. return isLower ? 'לפנה"צ' : 'לפני הצהריים';
  5035. } else if (hour < 18) {
  5036. return isLower ? 'אחה"צ' : 'אחרי הצהריים';
  5037. } else {
  5038. return 'בערב';
  5039. }
  5040. },
  5041. });
  5042. //! moment.js locale configuration
  5043. var symbolMap$8 = {
  5044. 1: '१',
  5045. 2: '२',
  5046. 3: '३',
  5047. 4: '४',
  5048. 5: '५',
  5049. 6: '६',
  5050. 7: '७',
  5051. 8: '८',
  5052. 9: '९',
  5053. 0: '०',
  5054. },
  5055. numberMap$7 = {
  5056. '१': '1',
  5057. '२': '2',
  5058. '३': '3',
  5059. '४': '4',
  5060. '५': '5',
  5061. '६': '6',
  5062. '७': '7',
  5063. '८': '8',
  5064. '९': '9',
  5065. '०': '0',
  5066. };
  5067. moment.defineLocale('hi', {
  5068. months: 'जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर'.split(
  5069. '_'
  5070. ),
  5071. monthsShort: 'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split(
  5072. '_'
  5073. ),
  5074. monthsParseExact: true,
  5075. weekdays: 'रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
  5076. weekdaysShort: 'रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि'.split('_'),
  5077. weekdaysMin: 'र_सो_मं_बु_गु_शु_श'.split('_'),
  5078. longDateFormat: {
  5079. LT: 'A h:mm बजे',
  5080. LTS: 'A h:mm:ss बजे',
  5081. L: 'DD/MM/YYYY',
  5082. LL: 'D MMMM YYYY',
  5083. LLL: 'D MMMM YYYY, A h:mm बजे',
  5084. LLLL: 'dddd, D MMMM YYYY, A h:mm बजे',
  5085. },
  5086. calendar: {
  5087. sameDay: '[आज] LT',
  5088. nextDay: '[कल] LT',
  5089. nextWeek: 'dddd, LT',
  5090. lastDay: '[कल] LT',
  5091. lastWeek: '[पिछले] dddd, LT',
  5092. sameElse: 'L',
  5093. },
  5094. relativeTime: {
  5095. future: '%s में',
  5096. past: '%s पहले',
  5097. s: 'कुछ ही क्षण',
  5098. ss: '%d सेकंड',
  5099. m: 'एक मिनट',
  5100. mm: '%d मिनट',
  5101. h: 'एक घंटा',
  5102. hh: '%d घंटे',
  5103. d: 'एक दिन',
  5104. dd: '%d दिन',
  5105. M: 'एक महीने',
  5106. MM: '%d महीने',
  5107. y: 'एक वर्ष',
  5108. yy: '%d वर्ष',
  5109. },
  5110. preparse: function (string) {
  5111. return string.replace(/[१२३४५६७८९०]/g, function (match) {
  5112. return numberMap$7[match];
  5113. });
  5114. },
  5115. postformat: function (string) {
  5116. return string.replace(/\d/g, function (match) {
  5117. return symbolMap$8[match];
  5118. });
  5119. },
  5120. // Hindi notation for meridiems are quite fuzzy in practice. While there exists
  5121. // a rigid notion of a 'Pahar' it is not used as rigidly in modern Hindi.
  5122. meridiemParse: /रात|सुबह|दोपहर|शाम/,
  5123. meridiemHour: function (hour, meridiem) {
  5124. if (hour === 12) {
  5125. hour = 0;
  5126. }
  5127. if (meridiem === 'रात') {
  5128. return hour < 4 ? hour : hour + 12;
  5129. } else if (meridiem === 'सुबह') {
  5130. return hour;
  5131. } else if (meridiem === 'दोपहर') {
  5132. return hour >= 10 ? hour : hour + 12;
  5133. } else if (meridiem === 'शाम') {
  5134. return hour + 12;
  5135. }
  5136. },
  5137. meridiem: function (hour, minute, isLower) {
  5138. if (hour < 4) {
  5139. return 'रात';
  5140. } else if (hour < 10) {
  5141. return 'सुबह';
  5142. } else if (hour < 17) {
  5143. return 'दोपहर';
  5144. } else if (hour < 20) {
  5145. return 'शाम';
  5146. } else {
  5147. return 'रात';
  5148. }
  5149. },
  5150. week: {
  5151. dow: 0, // Sunday is the first day of the week.
  5152. doy: 6, // The week that contains Jan 6th is the first week of the year.
  5153. },
  5154. });
  5155. //! moment.js locale configuration
  5156. function translate$3(number, withoutSuffix, key) {
  5157. var result = number + ' ';
  5158. switch (key) {
  5159. case 'ss':
  5160. if (number === 1) {
  5161. result += 'sekunda';
  5162. } else if (number === 2 || number === 3 || number === 4) {
  5163. result += 'sekunde';
  5164. } else {
  5165. result += 'sekundi';
  5166. }
  5167. return result;
  5168. case 'm':
  5169. return withoutSuffix ? 'jedna minuta' : 'jedne minute';
  5170. case 'mm':
  5171. if (number === 1) {
  5172. result += 'minuta';
  5173. } else if (number === 2 || number === 3 || number === 4) {
  5174. result += 'minute';
  5175. } else {
  5176. result += 'minuta';
  5177. }
  5178. return result;
  5179. case 'h':
  5180. return withoutSuffix ? 'jedan sat' : 'jednog sata';
  5181. case 'hh':
  5182. if (number === 1) {
  5183. result += 'sat';
  5184. } else if (number === 2 || number === 3 || number === 4) {
  5185. result += 'sata';
  5186. } else {
  5187. result += 'sati';
  5188. }
  5189. return result;
  5190. case 'dd':
  5191. if (number === 1) {
  5192. result += 'dan';
  5193. } else {
  5194. result += 'dana';
  5195. }
  5196. return result;
  5197. case 'MM':
  5198. if (number === 1) {
  5199. result += 'mjesec';
  5200. } else if (number === 2 || number === 3 || number === 4) {
  5201. result += 'mjeseca';
  5202. } else {
  5203. result += 'mjeseci';
  5204. }
  5205. return result;
  5206. case 'yy':
  5207. if (number === 1) {
  5208. result += 'godina';
  5209. } else if (number === 2 || number === 3 || number === 4) {
  5210. result += 'godine';
  5211. } else {
  5212. result += 'godina';
  5213. }
  5214. return result;
  5215. }
  5216. }
  5217. moment.defineLocale('hr', {
  5218. months: {
  5219. format: 'siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca'.split(
  5220. '_'
  5221. ),
  5222. standalone: 'siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac'.split(
  5223. '_'
  5224. ),
  5225. },
  5226. monthsShort: 'sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.'.split(
  5227. '_'
  5228. ),
  5229. monthsParseExact: true,
  5230. weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(
  5231. '_'
  5232. ),
  5233. weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),
  5234. weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),
  5235. weekdaysParseExact: true,
  5236. longDateFormat: {
  5237. LT: 'H:mm',
  5238. LTS: 'H:mm:ss',
  5239. L: 'DD.MM.YYYY',
  5240. LL: 'Do MMMM YYYY',
  5241. LLL: 'Do MMMM YYYY H:mm',
  5242. LLLL: 'dddd, Do MMMM YYYY H:mm',
  5243. },
  5244. calendar: {
  5245. sameDay: '[danas u] LT',
  5246. nextDay: '[sutra u] LT',
  5247. nextWeek: function () {
  5248. switch (this.day()) {
  5249. case 0:
  5250. return '[u] [nedjelju] [u] LT';
  5251. case 3:
  5252. return '[u] [srijedu] [u] LT';
  5253. case 6:
  5254. return '[u] [subotu] [u] LT';
  5255. case 1:
  5256. case 2:
  5257. case 4:
  5258. case 5:
  5259. return '[u] dddd [u] LT';
  5260. }
  5261. },
  5262. lastDay: '[jučer u] LT',
  5263. lastWeek: function () {
  5264. switch (this.day()) {
  5265. case 0:
  5266. return '[prošlu] [nedjelju] [u] LT';
  5267. case 3:
  5268. return '[prošlu] [srijedu] [u] LT';
  5269. case 6:
  5270. return '[prošle] [subote] [u] LT';
  5271. case 1:
  5272. case 2:
  5273. case 4:
  5274. case 5:
  5275. return '[prošli] dddd [u] LT';
  5276. }
  5277. },
  5278. sameElse: 'L',
  5279. },
  5280. relativeTime: {
  5281. future: 'za %s',
  5282. past: 'prije %s',
  5283. s: 'par sekundi',
  5284. ss: translate$3,
  5285. m: translate$3,
  5286. mm: translate$3,
  5287. h: translate$3,
  5288. hh: translate$3,
  5289. d: 'dan',
  5290. dd: translate$3,
  5291. M: 'mjesec',
  5292. MM: translate$3,
  5293. y: 'godinu',
  5294. yy: translate$3,
  5295. },
  5296. dayOfMonthOrdinalParse: /\d{1,2}\./,
  5297. ordinal: '%d.',
  5298. week: {
  5299. dow: 1, // Monday is the first day of the week.
  5300. doy: 7, // The week that contains Jan 7th is the first week of the year.
  5301. },
  5302. });
  5303. //! moment.js locale configuration
  5304. var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(
  5305. ' '
  5306. );
  5307. function translate$4(number, withoutSuffix, key, isFuture) {
  5308. var num = number;
  5309. switch (key) {
  5310. case 's':
  5311. return isFuture || withoutSuffix
  5312. ? 'néhány másodperc'
  5313. : 'néhány másodperce';
  5314. case 'ss':
  5315. return num + (isFuture || withoutSuffix)
  5316. ? ' másodperc'
  5317. : ' másodperce';
  5318. case 'm':
  5319. return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');
  5320. case 'mm':
  5321. return num + (isFuture || withoutSuffix ? ' perc' : ' perce');
  5322. case 'h':
  5323. return 'egy' + (isFuture || withoutSuffix ? ' óra' : ' órája');
  5324. case 'hh':
  5325. return num + (isFuture || withoutSuffix ? ' óra' : ' órája');
  5326. case 'd':
  5327. return 'egy' + (isFuture || withoutSuffix ? ' nap' : ' napja');
  5328. case 'dd':
  5329. return num + (isFuture || withoutSuffix ? ' nap' : ' napja');
  5330. case 'M':
  5331. return 'egy' + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
  5332. case 'MM':
  5333. return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
  5334. case 'y':
  5335. return 'egy' + (isFuture || withoutSuffix ? ' év' : ' éve');
  5336. case 'yy':
  5337. return num + (isFuture || withoutSuffix ? ' év' : ' éve');
  5338. }
  5339. return '';
  5340. }
  5341. function week(isFuture) {
  5342. return (
  5343. (isFuture ? '' : '[múlt] ') +
  5344. '[' +
  5345. weekEndings[this.day()] +
  5346. '] LT[-kor]'
  5347. );
  5348. }
  5349. moment.defineLocale('hu', {
  5350. months: 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split(
  5351. '_'
  5352. ),
  5353. monthsShort: 'jan._feb._márc._ápr._máj._jún._júl._aug._szept._okt._nov._dec.'.split(
  5354. '_'
  5355. ),
  5356. monthsParseExact: true,
  5357. weekdays: 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),
  5358. weekdaysShort: 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'),
  5359. weekdaysMin: 'v_h_k_sze_cs_p_szo'.split('_'),
  5360. longDateFormat: {
  5361. LT: 'H:mm',
  5362. LTS: 'H:mm:ss',
  5363. L: 'YYYY.MM.DD.',
  5364. LL: 'YYYY. MMMM D.',
  5365. LLL: 'YYYY. MMMM D. H:mm',
  5366. LLLL: 'YYYY. MMMM D., dddd H:mm',
  5367. },
  5368. meridiemParse: /de|du/i,
  5369. isPM: function (input) {
  5370. return input.charAt(1).toLowerCase() === 'u';
  5371. },
  5372. meridiem: function (hours, minutes, isLower) {
  5373. if (hours < 12) {
  5374. return isLower === true ? 'de' : 'DE';
  5375. } else {
  5376. return isLower === true ? 'du' : 'DU';
  5377. }
  5378. },
  5379. calendar: {
  5380. sameDay: '[ma] LT[-kor]',
  5381. nextDay: '[holnap] LT[-kor]',
  5382. nextWeek: function () {
  5383. return week.call(this, true);
  5384. },
  5385. lastDay: '[tegnap] LT[-kor]',
  5386. lastWeek: function () {
  5387. return week.call(this, false);
  5388. },
  5389. sameElse: 'L',
  5390. },
  5391. relativeTime: {
  5392. future: '%s múlva',
  5393. past: '%s',
  5394. s: translate$4,
  5395. ss: translate$4,
  5396. m: translate$4,
  5397. mm: translate$4,
  5398. h: translate$4,
  5399. hh: translate$4,
  5400. d: translate$4,
  5401. dd: translate$4,
  5402. M: translate$4,
  5403. MM: translate$4,
  5404. y: translate$4,
  5405. yy: translate$4,
  5406. },
  5407. dayOfMonthOrdinalParse: /\d{1,2}\./,
  5408. ordinal: '%d.',
  5409. week: {
  5410. dow: 1, // Monday is the first day of the week.
  5411. doy: 4, // The week that contains Jan 4th is the first week of the year.
  5412. },
  5413. });
  5414. //! moment.js locale configuration
  5415. moment.defineLocale('hy-am', {
  5416. months: {
  5417. format: 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split(
  5418. '_'
  5419. ),
  5420. standalone: 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split(
  5421. '_'
  5422. ),
  5423. },
  5424. monthsShort: 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_'),
  5425. weekdays: 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split(
  5426. '_'
  5427. ),
  5428. weekdaysShort: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
  5429. weekdaysMin: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
  5430. longDateFormat: {
  5431. LT: 'HH:mm',
  5432. LTS: 'HH:mm:ss',
  5433. L: 'DD.MM.YYYY',
  5434. LL: 'D MMMM YYYY թ.',
  5435. LLL: 'D MMMM YYYY թ., HH:mm',
  5436. LLLL: 'dddd, D MMMM YYYY թ., HH:mm',
  5437. },
  5438. calendar: {
  5439. sameDay: '[այսօր] LT',
  5440. nextDay: '[վաղը] LT',
  5441. lastDay: '[երեկ] LT',
  5442. nextWeek: function () {
  5443. return 'dddd [օրը ժամը] LT';
  5444. },
  5445. lastWeek: function () {
  5446. return '[անցած] dddd [օրը ժամը] LT';
  5447. },
  5448. sameElse: 'L',
  5449. },
  5450. relativeTime: {
  5451. future: '%s հետո',
  5452. past: '%s առաջ',
  5453. s: 'մի քանի վայրկյան',
  5454. ss: '%d վայրկյան',
  5455. m: 'րոպե',
  5456. mm: '%d րոպե',
  5457. h: 'ժամ',
  5458. hh: '%d ժամ',
  5459. d: 'օր',
  5460. dd: '%d օր',
  5461. M: 'ամիս',
  5462. MM: '%d ամիս',
  5463. y: 'տարի',
  5464. yy: '%d տարի',
  5465. },
  5466. meridiemParse: /գիշերվա|առավոտվա|ցերեկվա|երեկոյան/,
  5467. isPM: function (input) {
  5468. return /^(ցերեկվա|երեկոյան)$/.test(input);
  5469. },
  5470. meridiem: function (hour) {
  5471. if (hour < 4) {
  5472. return 'գիշերվա';
  5473. } else if (hour < 12) {
  5474. return 'առավոտվա';
  5475. } else if (hour < 17) {
  5476. return 'ցերեկվա';
  5477. } else {
  5478. return 'երեկոյան';
  5479. }
  5480. },
  5481. dayOfMonthOrdinalParse: /\d{1,2}|\d{1,2}-(ին|րդ)/,
  5482. ordinal: function (number, period) {
  5483. switch (period) {
  5484. case 'DDD':
  5485. case 'w':
  5486. case 'W':
  5487. case 'DDDo':
  5488. if (number === 1) {
  5489. return number + '-ին';
  5490. }
  5491. return number + '-րդ';
  5492. default:
  5493. return number;
  5494. }
  5495. },
  5496. week: {
  5497. dow: 1, // Monday is the first day of the week.
  5498. doy: 7, // The week that contains Jan 7th is the first week of the year.
  5499. },
  5500. });
  5501. //! moment.js locale configuration
  5502. moment.defineLocale('id', {
  5503. months: 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember'.split(
  5504. '_'
  5505. ),
  5506. monthsShort: 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des'.split('_'),
  5507. weekdays: 'Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu'.split('_'),
  5508. weekdaysShort: 'Min_Sen_Sel_Rab_Kam_Jum_Sab'.split('_'),
  5509. weekdaysMin: 'Mg_Sn_Sl_Rb_Km_Jm_Sb'.split('_'),
  5510. longDateFormat: {
  5511. LT: 'HH.mm',
  5512. LTS: 'HH.mm.ss',
  5513. L: 'DD/MM/YYYY',
  5514. LL: 'D MMMM YYYY',
  5515. LLL: 'D MMMM YYYY [pukul] HH.mm',
  5516. LLLL: 'dddd, D MMMM YYYY [pukul] HH.mm',
  5517. },
  5518. meridiemParse: /pagi|siang|sore|malam/,
  5519. meridiemHour: function (hour, meridiem) {
  5520. if (hour === 12) {
  5521. hour = 0;
  5522. }
  5523. if (meridiem === 'pagi') {
  5524. return hour;
  5525. } else if (meridiem === 'siang') {
  5526. return hour >= 11 ? hour : hour + 12;
  5527. } else if (meridiem === 'sore' || meridiem === 'malam') {
  5528. return hour + 12;
  5529. }
  5530. },
  5531. meridiem: function (hours, minutes, isLower) {
  5532. if (hours < 11) {
  5533. return 'pagi';
  5534. } else if (hours < 15) {
  5535. return 'siang';
  5536. } else if (hours < 19) {
  5537. return 'sore';
  5538. } else {
  5539. return 'malam';
  5540. }
  5541. },
  5542. calendar: {
  5543. sameDay: '[Hari ini pukul] LT',
  5544. nextDay: '[Besok pukul] LT',
  5545. nextWeek: 'dddd [pukul] LT',
  5546. lastDay: '[Kemarin pukul] LT',
  5547. lastWeek: 'dddd [lalu pukul] LT',
  5548. sameElse: 'L',
  5549. },
  5550. relativeTime: {
  5551. future: 'dalam %s',
  5552. past: '%s yang lalu',
  5553. s: 'beberapa detik',
  5554. ss: '%d detik',
  5555. m: 'semenit',
  5556. mm: '%d menit',
  5557. h: 'sejam',
  5558. hh: '%d jam',
  5559. d: 'sehari',
  5560. dd: '%d hari',
  5561. M: 'sebulan',
  5562. MM: '%d bulan',
  5563. y: 'setahun',
  5564. yy: '%d tahun',
  5565. },
  5566. week: {
  5567. dow: 0, // Sunday is the first day of the week.
  5568. doy: 6, // The week that contains Jan 6th is the first week of the year.
  5569. },
  5570. });
  5571. //! moment.js locale configuration
  5572. function plural$2(n) {
  5573. if (n % 100 === 11) {
  5574. return true;
  5575. } else if (n % 10 === 1) {
  5576. return false;
  5577. }
  5578. return true;
  5579. }
  5580. function translate$5(number, withoutSuffix, key, isFuture) {
  5581. var result = number + ' ';
  5582. switch (key) {
  5583. case 's':
  5584. return withoutSuffix || isFuture
  5585. ? 'nokkrar sekúndur'
  5586. : 'nokkrum sekúndum';
  5587. case 'ss':
  5588. if (plural$2(number)) {
  5589. return (
  5590. result +
  5591. (withoutSuffix || isFuture ? 'sekúndur' : 'sekúndum')
  5592. );
  5593. }
  5594. return result + 'sekúnda';
  5595. case 'm':
  5596. return withoutSuffix ? 'mínúta' : 'mínútu';
  5597. case 'mm':
  5598. if (plural$2(number)) {
  5599. return (
  5600. result + (withoutSuffix || isFuture ? 'mínútur' : 'mínútum')
  5601. );
  5602. } else if (withoutSuffix) {
  5603. return result + 'mínúta';
  5604. }
  5605. return result + 'mínútu';
  5606. case 'hh':
  5607. if (plural$2(number)) {
  5608. return (
  5609. result +
  5610. (withoutSuffix || isFuture
  5611. ? 'klukkustundir'
  5612. : 'klukkustundum')
  5613. );
  5614. }
  5615. return result + 'klukkustund';
  5616. case 'd':
  5617. if (withoutSuffix) {
  5618. return 'dagur';
  5619. }
  5620. return isFuture ? 'dag' : 'degi';
  5621. case 'dd':
  5622. if (plural$2(number)) {
  5623. if (withoutSuffix) {
  5624. return result + 'dagar';
  5625. }
  5626. return result + (isFuture ? 'daga' : 'dögum');
  5627. } else if (withoutSuffix) {
  5628. return result + 'dagur';
  5629. }
  5630. return result + (isFuture ? 'dag' : 'degi');
  5631. case 'M':
  5632. if (withoutSuffix) {
  5633. return 'mánuður';
  5634. }
  5635. return isFuture ? 'mánuð' : 'mánuði';
  5636. case 'MM':
  5637. if (plural$2(number)) {
  5638. if (withoutSuffix) {
  5639. return result + 'mánuðir';
  5640. }
  5641. return result + (isFuture ? 'mánuði' : 'mánuðum');
  5642. } else if (withoutSuffix) {
  5643. return result + 'mánuður';
  5644. }
  5645. return result + (isFuture ? 'mánuð' : 'mánuði');
  5646. case 'y':
  5647. return withoutSuffix || isFuture ? 'ár' : 'ári';
  5648. case 'yy':
  5649. if (plural$2(number)) {
  5650. return result + (withoutSuffix || isFuture ? 'ár' : 'árum');
  5651. }
  5652. return result + (withoutSuffix || isFuture ? 'ár' : 'ári');
  5653. }
  5654. }
  5655. moment.defineLocale('is', {
  5656. months: 'janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember'.split(
  5657. '_'
  5658. ),
  5659. monthsShort: 'jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des'.split('_'),
  5660. weekdays: 'sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur'.split(
  5661. '_'
  5662. ),
  5663. weekdaysShort: 'sun_mán_þri_mið_fim_fös_lau'.split('_'),
  5664. weekdaysMin: 'Su_Má_Þr_Mi_Fi_Fö_La'.split('_'),
  5665. longDateFormat: {
  5666. LT: 'H:mm',
  5667. LTS: 'H:mm:ss',
  5668. L: 'DD.MM.YYYY',
  5669. LL: 'D. MMMM YYYY',
  5670. LLL: 'D. MMMM YYYY [kl.] H:mm',
  5671. LLLL: 'dddd, D. MMMM YYYY [kl.] H:mm',
  5672. },
  5673. calendar: {
  5674. sameDay: '[í dag kl.] LT',
  5675. nextDay: '[á morgun kl.] LT',
  5676. nextWeek: 'dddd [kl.] LT',
  5677. lastDay: '[í gær kl.] LT',
  5678. lastWeek: '[síðasta] dddd [kl.] LT',
  5679. sameElse: 'L',
  5680. },
  5681. relativeTime: {
  5682. future: 'eftir %s',
  5683. past: 'fyrir %s síðan',
  5684. s: translate$5,
  5685. ss: translate$5,
  5686. m: translate$5,
  5687. mm: translate$5,
  5688. h: 'klukkustund',
  5689. hh: translate$5,
  5690. d: translate$5,
  5691. dd: translate$5,
  5692. M: translate$5,
  5693. MM: translate$5,
  5694. y: translate$5,
  5695. yy: translate$5,
  5696. },
  5697. dayOfMonthOrdinalParse: /\d{1,2}\./,
  5698. ordinal: '%d.',
  5699. week: {
  5700. dow: 1, // Monday is the first day of the week.
  5701. doy: 4, // The week that contains Jan 4th is the first week of the year.
  5702. },
  5703. });
  5704. //! moment.js locale configuration
  5705. moment.defineLocale('it-ch', {
  5706. months: 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split(
  5707. '_'
  5708. ),
  5709. monthsShort: 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'),
  5710. weekdays: 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split(
  5711. '_'
  5712. ),
  5713. weekdaysShort: 'dom_lun_mar_mer_gio_ven_sab'.split('_'),
  5714. weekdaysMin: 'do_lu_ma_me_gi_ve_sa'.split('_'),
  5715. longDateFormat: {
  5716. LT: 'HH:mm',
  5717. LTS: 'HH:mm:ss',
  5718. L: 'DD.MM.YYYY',
  5719. LL: 'D MMMM YYYY',
  5720. LLL: 'D MMMM YYYY HH:mm',
  5721. LLLL: 'dddd D MMMM YYYY HH:mm',
  5722. },
  5723. calendar: {
  5724. sameDay: '[Oggi alle] LT',
  5725. nextDay: '[Domani alle] LT',
  5726. nextWeek: 'dddd [alle] LT',
  5727. lastDay: '[Ieri alle] LT',
  5728. lastWeek: function () {
  5729. switch (this.day()) {
  5730. case 0:
  5731. return '[la scorsa] dddd [alle] LT';
  5732. default:
  5733. return '[lo scorso] dddd [alle] LT';
  5734. }
  5735. },
  5736. sameElse: 'L',
  5737. },
  5738. relativeTime: {
  5739. future: function (s) {
  5740. return (/^[0-9].+$/.test(s) ? 'tra' : 'in') + ' ' + s;
  5741. },
  5742. past: '%s fa',
  5743. s: 'alcuni secondi',
  5744. ss: '%d secondi',
  5745. m: 'un minuto',
  5746. mm: '%d minuti',
  5747. h: "un'ora",
  5748. hh: '%d ore',
  5749. d: 'un giorno',
  5750. dd: '%d giorni',
  5751. M: 'un mese',
  5752. MM: '%d mesi',
  5753. y: 'un anno',
  5754. yy: '%d anni',
  5755. },
  5756. dayOfMonthOrdinalParse: /\d{1,2}º/,
  5757. ordinal: '%dº',
  5758. week: {
  5759. dow: 1, // Monday is the first day of the week.
  5760. doy: 4, // The week that contains Jan 4th is the first week of the year.
  5761. },
  5762. });
  5763. //! moment.js locale configuration
  5764. moment.defineLocale('it', {
  5765. months: 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split(
  5766. '_'
  5767. ),
  5768. monthsShort: 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'),
  5769. weekdays: 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split(
  5770. '_'
  5771. ),
  5772. weekdaysShort: 'dom_lun_mar_mer_gio_ven_sab'.split('_'),
  5773. weekdaysMin: 'do_lu_ma_me_gi_ve_sa'.split('_'),
  5774. longDateFormat: {
  5775. LT: 'HH:mm',
  5776. LTS: 'HH:mm:ss',
  5777. L: 'DD/MM/YYYY',
  5778. LL: 'D MMMM YYYY',
  5779. LLL: 'D MMMM YYYY HH:mm',
  5780. LLLL: 'dddd D MMMM YYYY HH:mm',
  5781. },
  5782. calendar: {
  5783. sameDay: function () {
  5784. return (
  5785. '[Oggi a' +
  5786. (this.hours() > 1 ? 'lle ' : this.hours() === 0 ? ' ' : "ll'") +
  5787. ']LT'
  5788. );
  5789. },
  5790. nextDay: function () {
  5791. return (
  5792. '[Domani a' +
  5793. (this.hours() > 1 ? 'lle ' : this.hours() === 0 ? ' ' : "ll'") +
  5794. ']LT'
  5795. );
  5796. },
  5797. nextWeek: function () {
  5798. return (
  5799. 'dddd [a' +
  5800. (this.hours() > 1 ? 'lle ' : this.hours() === 0 ? ' ' : "ll'") +
  5801. ']LT'
  5802. );
  5803. },
  5804. lastDay: function () {
  5805. return (
  5806. '[Ieri a' +
  5807. (this.hours() > 1 ? 'lle ' : this.hours() === 0 ? ' ' : "ll'") +
  5808. ']LT'
  5809. );
  5810. },
  5811. lastWeek: function () {
  5812. switch (this.day()) {
  5813. case 0:
  5814. return (
  5815. '[La scorsa] dddd [a' +
  5816. (this.hours() > 1
  5817. ? 'lle '
  5818. : this.hours() === 0
  5819. ? ' '
  5820. : "ll'") +
  5821. ']LT'
  5822. );
  5823. default:
  5824. return (
  5825. '[Lo scorso] dddd [a' +
  5826. (this.hours() > 1
  5827. ? 'lle '
  5828. : this.hours() === 0
  5829. ? ' '
  5830. : "ll'") +
  5831. ']LT'
  5832. );
  5833. }
  5834. },
  5835. sameElse: 'L',
  5836. },
  5837. relativeTime: {
  5838. future: 'tra %s',
  5839. past: '%s fa',
  5840. s: 'alcuni secondi',
  5841. ss: '%d secondi',
  5842. m: 'un minuto',
  5843. mm: '%d minuti',
  5844. h: "un'ora",
  5845. hh: '%d ore',
  5846. d: 'un giorno',
  5847. dd: '%d giorni',
  5848. w: 'una settimana',
  5849. ww: '%d settimane',
  5850. M: 'un mese',
  5851. MM: '%d mesi',
  5852. y: 'un anno',
  5853. yy: '%d anni',
  5854. },
  5855. dayOfMonthOrdinalParse: /\d{1,2}º/,
  5856. ordinal: '%dº',
  5857. week: {
  5858. dow: 1, // Monday is the first day of the week.
  5859. doy: 4, // The week that contains Jan 4th is the first week of the year.
  5860. },
  5861. });
  5862. //! moment.js locale configuration
  5863. moment.defineLocale('ja', {
  5864. eras: [
  5865. {
  5866. since: '2019-05-01',
  5867. offset: 1,
  5868. name: '令和',
  5869. narrow: '㋿',
  5870. abbr: 'R',
  5871. },
  5872. {
  5873. since: '1989-01-08',
  5874. until: '2019-04-30',
  5875. offset: 1,
  5876. name: '平成',
  5877. narrow: '㍻',
  5878. abbr: 'H',
  5879. },
  5880. {
  5881. since: '1926-12-25',
  5882. until: '1989-01-07',
  5883. offset: 1,
  5884. name: '昭和',
  5885. narrow: '㍼',
  5886. abbr: 'S',
  5887. },
  5888. {
  5889. since: '1912-07-30',
  5890. until: '1926-12-24',
  5891. offset: 1,
  5892. name: '大正',
  5893. narrow: '㍽',
  5894. abbr: 'T',
  5895. },
  5896. {
  5897. since: '1873-01-01',
  5898. until: '1912-07-29',
  5899. offset: 6,
  5900. name: '明治',
  5901. narrow: '㍾',
  5902. abbr: 'M',
  5903. },
  5904. {
  5905. since: '0001-01-01',
  5906. until: '1873-12-31',
  5907. offset: 1,
  5908. name: '西暦',
  5909. narrow: 'AD',
  5910. abbr: 'AD',
  5911. },
  5912. {
  5913. since: '0000-12-31',
  5914. until: -Infinity,
  5915. offset: 1,
  5916. name: '紀元前',
  5917. narrow: 'BC',
  5918. abbr: 'BC',
  5919. },
  5920. ],
  5921. eraYearOrdinalRegex: /(元|\d+)年/,
  5922. eraYearOrdinalParse: function (input, match) {
  5923. return match[1] === '元' ? 1 : parseInt(match[1] || input, 10);
  5924. },
  5925. months: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  5926. monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split(
  5927. '_'
  5928. ),
  5929. weekdays: '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'),
  5930. weekdaysShort: '日_月_火_水_木_金_土'.split('_'),
  5931. weekdaysMin: '日_月_火_水_木_金_土'.split('_'),
  5932. longDateFormat: {
  5933. LT: 'HH:mm',
  5934. LTS: 'HH:mm:ss',
  5935. L: 'YYYY/MM/DD',
  5936. LL: 'YYYY年M月D日',
  5937. LLL: 'YYYY年M月D日 HH:mm',
  5938. LLLL: 'YYYY年M月D日 dddd HH:mm',
  5939. l: 'YYYY/MM/DD',
  5940. ll: 'YYYY年M月D日',
  5941. lll: 'YYYY年M月D日 HH:mm',
  5942. llll: 'YYYY年M月D日(ddd) HH:mm',
  5943. },
  5944. meridiemParse: /午前|午後/i,
  5945. isPM: function (input) {
  5946. return input === '午後';
  5947. },
  5948. meridiem: function (hour, minute, isLower) {
  5949. if (hour < 12) {
  5950. return '午前';
  5951. } else {
  5952. return '午後';
  5953. }
  5954. },
  5955. calendar: {
  5956. sameDay: '[今日] LT',
  5957. nextDay: '[明日] LT',
  5958. nextWeek: function (now) {
  5959. if (now.week() !== this.week()) {
  5960. return '[来週]dddd LT';
  5961. } else {
  5962. return 'dddd LT';
  5963. }
  5964. },
  5965. lastDay: '[昨日] LT',
  5966. lastWeek: function (now) {
  5967. if (this.week() !== now.week()) {
  5968. return '[先週]dddd LT';
  5969. } else {
  5970. return 'dddd LT';
  5971. }
  5972. },
  5973. sameElse: 'L',
  5974. },
  5975. dayOfMonthOrdinalParse: /\d{1,2}日/,
  5976. ordinal: function (number, period) {
  5977. switch (period) {
  5978. case 'y':
  5979. return number === 1 ? '元年' : number + '年';
  5980. case 'd':
  5981. case 'D':
  5982. case 'DDD':
  5983. return number + '日';
  5984. default:
  5985. return number;
  5986. }
  5987. },
  5988. relativeTime: {
  5989. future: '%s後',
  5990. past: '%s前',
  5991. s: '数秒',
  5992. ss: '%d秒',
  5993. m: '1分',
  5994. mm: '%d分',
  5995. h: '1時間',
  5996. hh: '%d時間',
  5997. d: '1日',
  5998. dd: '%d日',
  5999. M: '1ヶ月',
  6000. MM: '%dヶ月',
  6001. y: '1年',
  6002. yy: '%d年',
  6003. },
  6004. });
  6005. //! moment.js locale configuration
  6006. moment.defineLocale('jv', {
  6007. months: 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember'.split(
  6008. '_'
  6009. ),
  6010. monthsShort: 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des'.split('_'),
  6011. weekdays: 'Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu'.split('_'),
  6012. weekdaysShort: 'Min_Sen_Sel_Reb_Kem_Jem_Sep'.split('_'),
  6013. weekdaysMin: 'Mg_Sn_Sl_Rb_Km_Jm_Sp'.split('_'),
  6014. longDateFormat: {
  6015. LT: 'HH.mm',
  6016. LTS: 'HH.mm.ss',
  6017. L: 'DD/MM/YYYY',
  6018. LL: 'D MMMM YYYY',
  6019. LLL: 'D MMMM YYYY [pukul] HH.mm',
  6020. LLLL: 'dddd, D MMMM YYYY [pukul] HH.mm',
  6021. },
  6022. meridiemParse: /enjing|siyang|sonten|ndalu/,
  6023. meridiemHour: function (hour, meridiem) {
  6024. if (hour === 12) {
  6025. hour = 0;
  6026. }
  6027. if (meridiem === 'enjing') {
  6028. return hour;
  6029. } else if (meridiem === 'siyang') {
  6030. return hour >= 11 ? hour : hour + 12;
  6031. } else if (meridiem === 'sonten' || meridiem === 'ndalu') {
  6032. return hour + 12;
  6033. }
  6034. },
  6035. meridiem: function (hours, minutes, isLower) {
  6036. if (hours < 11) {
  6037. return 'enjing';
  6038. } else if (hours < 15) {
  6039. return 'siyang';
  6040. } else if (hours < 19) {
  6041. return 'sonten';
  6042. } else {
  6043. return 'ndalu';
  6044. }
  6045. },
  6046. calendar: {
  6047. sameDay: '[Dinten puniko pukul] LT',
  6048. nextDay: '[Mbenjang pukul] LT',
  6049. nextWeek: 'dddd [pukul] LT',
  6050. lastDay: '[Kala wingi pukul] LT',
  6051. lastWeek: 'dddd [kepengker pukul] LT',
  6052. sameElse: 'L',
  6053. },
  6054. relativeTime: {
  6055. future: 'wonten ing %s',
  6056. past: '%s ingkang kepengker',
  6057. s: 'sawetawis detik',
  6058. ss: '%d detik',
  6059. m: 'setunggal menit',
  6060. mm: '%d menit',
  6061. h: 'setunggal jam',
  6062. hh: '%d jam',
  6063. d: 'sedinten',
  6064. dd: '%d dinten',
  6065. M: 'sewulan',
  6066. MM: '%d wulan',
  6067. y: 'setaun',
  6068. yy: '%d taun',
  6069. },
  6070. week: {
  6071. dow: 1, // Monday is the first day of the week.
  6072. doy: 7, // The week that contains Jan 7th is the first week of the year.
  6073. },
  6074. });
  6075. //! moment.js locale configuration
  6076. moment.defineLocale('ka', {
  6077. months: 'იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი'.split(
  6078. '_'
  6079. ),
  6080. monthsShort: 'იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ'.split('_'),
  6081. weekdays: {
  6082. standalone: 'კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი'.split(
  6083. '_'
  6084. ),
  6085. format: 'კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს'.split(
  6086. '_'
  6087. ),
  6088. isFormat: /(წინა|შემდეგ)/,
  6089. },
  6090. weekdaysShort: 'კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ'.split('_'),
  6091. weekdaysMin: 'კვ_ორ_სა_ოთ_ხუ_პა_შა'.split('_'),
  6092. longDateFormat: {
  6093. LT: 'HH:mm',
  6094. LTS: 'HH:mm:ss',
  6095. L: 'DD/MM/YYYY',
  6096. LL: 'D MMMM YYYY',
  6097. LLL: 'D MMMM YYYY HH:mm',
  6098. LLLL: 'dddd, D MMMM YYYY HH:mm',
  6099. },
  6100. calendar: {
  6101. sameDay: '[დღეს] LT[-ზე]',
  6102. nextDay: '[ხვალ] LT[-ზე]',
  6103. lastDay: '[გუშინ] LT[-ზე]',
  6104. nextWeek: '[შემდეგ] dddd LT[-ზე]',
  6105. lastWeek: '[წინა] dddd LT-ზე',
  6106. sameElse: 'L',
  6107. },
  6108. relativeTime: {
  6109. future: function (s) {
  6110. return s.replace(/(წამ|წუთ|საათ|წელ|დღ|თვ)(ი|ე)/, function (
  6111. $0,
  6112. $1,
  6113. $2
  6114. ) {
  6115. return $2 === 'ი' ? $1 + 'ში' : $1 + $2 + 'ში';
  6116. });
  6117. },
  6118. past: function (s) {
  6119. if (/(წამი|წუთი|საათი|დღე|თვე)/.test(s)) {
  6120. return s.replace(/(ი|ე)$/, 'ის წინ');
  6121. }
  6122. if (/წელი/.test(s)) {
  6123. return s.replace(/წელი$/, 'წლის წინ');
  6124. }
  6125. return s;
  6126. },
  6127. s: 'რამდენიმე წამი',
  6128. ss: '%d წამი',
  6129. m: 'წუთი',
  6130. mm: '%d წუთი',
  6131. h: 'საათი',
  6132. hh: '%d საათი',
  6133. d: 'დღე',
  6134. dd: '%d დღე',
  6135. M: 'თვე',
  6136. MM: '%d თვე',
  6137. y: 'წელი',
  6138. yy: '%d წელი',
  6139. },
  6140. dayOfMonthOrdinalParse: /0|1-ლი|მე-\d{1,2}|\d{1,2}-ე/,
  6141. ordinal: function (number) {
  6142. if (number === 0) {
  6143. return number;
  6144. }
  6145. if (number === 1) {
  6146. return number + '-ლი';
  6147. }
  6148. if (
  6149. number < 20 ||
  6150. (number <= 100 && number % 20 === 0) ||
  6151. number % 100 === 0
  6152. ) {
  6153. return 'მე-' + number;
  6154. }
  6155. return number + '-ე';
  6156. },
  6157. week: {
  6158. dow: 1,
  6159. doy: 7,
  6160. },
  6161. });
  6162. //! moment.js locale configuration
  6163. var suffixes$1 = {
  6164. 0: '-ші',
  6165. 1: '-ші',
  6166. 2: '-ші',
  6167. 3: '-ші',
  6168. 4: '-ші',
  6169. 5: '-ші',
  6170. 6: '-шы',
  6171. 7: '-ші',
  6172. 8: '-ші',
  6173. 9: '-шы',
  6174. 10: '-шы',
  6175. 20: '-шы',
  6176. 30: '-шы',
  6177. 40: '-шы',
  6178. 50: '-ші',
  6179. 60: '-шы',
  6180. 70: '-ші',
  6181. 80: '-ші',
  6182. 90: '-шы',
  6183. 100: '-ші',
  6184. };
  6185. moment.defineLocale('kk', {
  6186. months: 'қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан'.split(
  6187. '_'
  6188. ),
  6189. monthsShort: 'қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел'.split('_'),
  6190. weekdays: 'жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі'.split(
  6191. '_'
  6192. ),
  6193. weekdaysShort: 'жек_дүй_сей_сәр_бей_жұм_сен'.split('_'),
  6194. weekdaysMin: 'жк_дй_сй_ср_бй_жм_сн'.split('_'),
  6195. longDateFormat: {
  6196. LT: 'HH:mm',
  6197. LTS: 'HH:mm:ss',
  6198. L: 'DD.MM.YYYY',
  6199. LL: 'D MMMM YYYY',
  6200. LLL: 'D MMMM YYYY HH:mm',
  6201. LLLL: 'dddd, D MMMM YYYY HH:mm',
  6202. },
  6203. calendar: {
  6204. sameDay: '[Бүгін сағат] LT',
  6205. nextDay: '[Ертең сағат] LT',
  6206. nextWeek: 'dddd [сағат] LT',
  6207. lastDay: '[Кеше сағат] LT',
  6208. lastWeek: '[Өткен аптаның] dddd [сағат] LT',
  6209. sameElse: 'L',
  6210. },
  6211. relativeTime: {
  6212. future: '%s ішінде',
  6213. past: '%s бұрын',
  6214. s: 'бірнеше секунд',
  6215. ss: '%d секунд',
  6216. m: 'бір минут',
  6217. mm: '%d минут',
  6218. h: 'бір сағат',
  6219. hh: '%d сағат',
  6220. d: 'бір күн',
  6221. dd: '%d күн',
  6222. M: 'бір ай',
  6223. MM: '%d ай',
  6224. y: 'бір жыл',
  6225. yy: '%d жыл',
  6226. },
  6227. dayOfMonthOrdinalParse: /\d{1,2}-(ші|шы)/,
  6228. ordinal: function (number) {
  6229. var a = number % 10,
  6230. b = number >= 100 ? 100 : null;
  6231. return number + (suffixes$1[number] || suffixes$1[a] || suffixes$1[b]);
  6232. },
  6233. week: {
  6234. dow: 1, // Monday is the first day of the week.
  6235. doy: 7, // The week that contains Jan 7th is the first week of the year.
  6236. },
  6237. });
  6238. //! moment.js locale configuration
  6239. var symbolMap$9 = {
  6240. 1: '១',
  6241. 2: '២',
  6242. 3: '៣',
  6243. 4: '៤',
  6244. 5: '៥',
  6245. 6: '៦',
  6246. 7: '៧',
  6247. 8: '៨',
  6248. 9: '៩',
  6249. 0: '០',
  6250. },
  6251. numberMap$8 = {
  6252. '១': '1',
  6253. '២': '2',
  6254. '៣': '3',
  6255. '៤': '4',
  6256. '៥': '5',
  6257. '៦': '6',
  6258. '៧': '7',
  6259. '៨': '8',
  6260. '៩': '9',
  6261. '០': '0',
  6262. };
  6263. moment.defineLocale('km', {
  6264. months: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split(
  6265. '_'
  6266. ),
  6267. monthsShort: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split(
  6268. '_'
  6269. ),
  6270. weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
  6271. weekdaysShort: 'អា_ច_អ_ព_ព្រ_សុ_ស'.split('_'),
  6272. weekdaysMin: 'អា_ច_អ_ព_ព្រ_សុ_ស'.split('_'),
  6273. weekdaysParseExact: true,
  6274. longDateFormat: {
  6275. LT: 'HH:mm',
  6276. LTS: 'HH:mm:ss',
  6277. L: 'DD/MM/YYYY',
  6278. LL: 'D MMMM YYYY',
  6279. LLL: 'D MMMM YYYY HH:mm',
  6280. LLLL: 'dddd, D MMMM YYYY HH:mm',
  6281. },
  6282. meridiemParse: /ព្រឹក|ល្ងាច/,
  6283. isPM: function (input) {
  6284. return input === 'ល្ងាច';
  6285. },
  6286. meridiem: function (hour, minute, isLower) {
  6287. if (hour < 12) {
  6288. return 'ព្រឹក';
  6289. } else {
  6290. return 'ល្ងាច';
  6291. }
  6292. },
  6293. calendar: {
  6294. sameDay: '[ថ្ងៃនេះ ម៉ោង] LT',
  6295. nextDay: '[ស្អែក ម៉ោង] LT',
  6296. nextWeek: 'dddd [ម៉ោង] LT',
  6297. lastDay: '[ម្សិលមិញ ម៉ោង] LT',
  6298. lastWeek: 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT',
  6299. sameElse: 'L',
  6300. },
  6301. relativeTime: {
  6302. future: '%sទៀត',
  6303. past: '%sមុន',
  6304. s: 'ប៉ុន្មានវិនាទី',
  6305. ss: '%d វិនាទី',
  6306. m: 'មួយនាទី',
  6307. mm: '%d នាទី',
  6308. h: 'មួយម៉ោង',
  6309. hh: '%d ម៉ោង',
  6310. d: 'មួយថ្ងៃ',
  6311. dd: '%d ថ្ងៃ',
  6312. M: 'មួយខែ',
  6313. MM: '%d ខែ',
  6314. y: 'មួយឆ្នាំ',
  6315. yy: '%d ឆ្នាំ',
  6316. },
  6317. dayOfMonthOrdinalParse: /ទី\d{1,2}/,
  6318. ordinal: 'ទី%d',
  6319. preparse: function (string) {
  6320. return string.replace(/[១២៣៤៥៦៧៨៩០]/g, function (match) {
  6321. return numberMap$8[match];
  6322. });
  6323. },
  6324. postformat: function (string) {
  6325. return string.replace(/\d/g, function (match) {
  6326. return symbolMap$9[match];
  6327. });
  6328. },
  6329. week: {
  6330. dow: 1, // Monday is the first day of the week.
  6331. doy: 4, // The week that contains Jan 4th is the first week of the year.
  6332. },
  6333. });
  6334. //! moment.js locale configuration
  6335. var symbolMap$a = {
  6336. 1: '೧',
  6337. 2: '೨',
  6338. 3: '೩',
  6339. 4: '೪',
  6340. 5: '೫',
  6341. 6: '೬',
  6342. 7: '೭',
  6343. 8: '೮',
  6344. 9: '೯',
  6345. 0: '೦',
  6346. },
  6347. numberMap$9 = {
  6348. '೧': '1',
  6349. '೨': '2',
  6350. '೩': '3',
  6351. '೪': '4',
  6352. '೫': '5',
  6353. '೬': '6',
  6354. '೭': '7',
  6355. '೮': '8',
  6356. '೯': '9',
  6357. '೦': '0',
  6358. };
  6359. moment.defineLocale('kn', {
  6360. months: 'ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್'.split(
  6361. '_'
  6362. ),
  6363. monthsShort: 'ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ'.split(
  6364. '_'
  6365. ),
  6366. monthsParseExact: true,
  6367. weekdays: 'ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ'.split(
  6368. '_'
  6369. ),
  6370. weekdaysShort: 'ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ'.split('_'),
  6371. weekdaysMin: 'ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ'.split('_'),
  6372. longDateFormat: {
  6373. LT: 'A h:mm',
  6374. LTS: 'A h:mm:ss',
  6375. L: 'DD/MM/YYYY',
  6376. LL: 'D MMMM YYYY',
  6377. LLL: 'D MMMM YYYY, A h:mm',
  6378. LLLL: 'dddd, D MMMM YYYY, A h:mm',
  6379. },
  6380. calendar: {
  6381. sameDay: '[ಇಂದು] LT',
  6382. nextDay: '[ನಾಳೆ] LT',
  6383. nextWeek: 'dddd, LT',
  6384. lastDay: '[ನಿನ್ನೆ] LT',
  6385. lastWeek: '[ಕೊನೆಯ] dddd, LT',
  6386. sameElse: 'L',
  6387. },
  6388. relativeTime: {
  6389. future: '%s ನಂತರ',
  6390. past: '%s ಹಿಂದೆ',
  6391. s: 'ಕೆಲವು ಕ್ಷಣಗಳು',
  6392. ss: '%d ಸೆಕೆಂಡುಗಳು',
  6393. m: 'ಒಂದು ನಿಮಿಷ',
  6394. mm: '%d ನಿಮಿಷ',
  6395. h: 'ಒಂದು ಗಂಟೆ',
  6396. hh: '%d ಗಂಟೆ',
  6397. d: 'ಒಂದು ದಿನ',
  6398. dd: '%d ದಿನ',
  6399. M: 'ಒಂದು ತಿಂಗಳು',
  6400. MM: '%d ತಿಂಗಳು',
  6401. y: 'ಒಂದು ವರ್ಷ',
  6402. yy: '%d ವರ್ಷ',
  6403. },
  6404. preparse: function (string) {
  6405. return string.replace(/[೧೨೩೪೫೬೭೮೯೦]/g, function (match) {
  6406. return numberMap$9[match];
  6407. });
  6408. },
  6409. postformat: function (string) {
  6410. return string.replace(/\d/g, function (match) {
  6411. return symbolMap$a[match];
  6412. });
  6413. },
  6414. meridiemParse: /ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,
  6415. meridiemHour: function (hour, meridiem) {
  6416. if (hour === 12) {
  6417. hour = 0;
  6418. }
  6419. if (meridiem === 'ರಾತ್ರಿ') {
  6420. return hour < 4 ? hour : hour + 12;
  6421. } else if (meridiem === 'ಬೆಳಿಗ್ಗೆ') {
  6422. return hour;
  6423. } else if (meridiem === 'ಮಧ್ಯಾಹ್ನ') {
  6424. return hour >= 10 ? hour : hour + 12;
  6425. } else if (meridiem === 'ಸಂಜೆ') {
  6426. return hour + 12;
  6427. }
  6428. },
  6429. meridiem: function (hour, minute, isLower) {
  6430. if (hour < 4) {
  6431. return 'ರಾತ್ರಿ';
  6432. } else if (hour < 10) {
  6433. return 'ಬೆಳಿಗ್ಗೆ';
  6434. } else if (hour < 17) {
  6435. return 'ಮಧ್ಯಾಹ್ನ';
  6436. } else if (hour < 20) {
  6437. return 'ಸಂಜೆ';
  6438. } else {
  6439. return 'ರಾತ್ರಿ';
  6440. }
  6441. },
  6442. dayOfMonthOrdinalParse: /\d{1,2}(ನೇ)/,
  6443. ordinal: function (number) {
  6444. return number + 'ನೇ';
  6445. },
  6446. week: {
  6447. dow: 0, // Sunday is the first day of the week.
  6448. doy: 6, // The week that contains Jan 6th is the first week of the year.
  6449. },
  6450. });
  6451. //! moment.js locale configuration
  6452. moment.defineLocale('ko', {
  6453. months: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
  6454. monthsShort: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split(
  6455. '_'
  6456. ),
  6457. weekdays: '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'),
  6458. weekdaysShort: '일_월_화_수_목_금_토'.split('_'),
  6459. weekdaysMin: '일_월_화_수_목_금_토'.split('_'),
  6460. longDateFormat: {
  6461. LT: 'A h:mm',
  6462. LTS: 'A h:mm:ss',
  6463. L: 'YYYY.MM.DD.',
  6464. LL: 'YYYY년 MMMM D일',
  6465. LLL: 'YYYY년 MMMM D일 A h:mm',
  6466. LLLL: 'YYYY년 MMMM D일 dddd A h:mm',
  6467. l: 'YYYY.MM.DD.',
  6468. ll: 'YYYY년 MMMM D일',
  6469. lll: 'YYYY년 MMMM D일 A h:mm',
  6470. llll: 'YYYY년 MMMM D일 dddd A h:mm',
  6471. },
  6472. calendar: {
  6473. sameDay: '오늘 LT',
  6474. nextDay: '내일 LT',
  6475. nextWeek: 'dddd LT',
  6476. lastDay: '어제 LT',
  6477. lastWeek: '지난주 dddd LT',
  6478. sameElse: 'L',
  6479. },
  6480. relativeTime: {
  6481. future: '%s 후',
  6482. past: '%s 전',
  6483. s: '몇 초',
  6484. ss: '%d초',
  6485. m: '1분',
  6486. mm: '%d분',
  6487. h: '한 시간',
  6488. hh: '%d시간',
  6489. d: '하루',
  6490. dd: '%d일',
  6491. M: '한 달',
  6492. MM: '%d달',
  6493. y: '일 년',
  6494. yy: '%d년',
  6495. },
  6496. dayOfMonthOrdinalParse: /\d{1,2}(일|월|주)/,
  6497. ordinal: function (number, period) {
  6498. switch (period) {
  6499. case 'd':
  6500. case 'D':
  6501. case 'DDD':
  6502. return number + '일';
  6503. case 'M':
  6504. return number + '월';
  6505. case 'w':
  6506. case 'W':
  6507. return number + '주';
  6508. default:
  6509. return number;
  6510. }
  6511. },
  6512. meridiemParse: /오전|오후/,
  6513. isPM: function (token) {
  6514. return token === '오후';
  6515. },
  6516. meridiem: function (hour, minute, isUpper) {
  6517. return hour < 12 ? '오전' : '오후';
  6518. },
  6519. });
  6520. //! moment.js locale configuration
  6521. var symbolMap$b = {
  6522. 1: '١',
  6523. 2: '٢',
  6524. 3: '٣',
  6525. 4: '٤',
  6526. 5: '٥',
  6527. 6: '٦',
  6528. 7: '٧',
  6529. 8: '٨',
  6530. 9: '٩',
  6531. 0: '٠',
  6532. },
  6533. numberMap$a = {
  6534. '١': '1',
  6535. '٢': '2',
  6536. '٣': '3',
  6537. '٤': '4',
  6538. '٥': '5',
  6539. '٦': '6',
  6540. '٧': '7',
  6541. '٨': '8',
  6542. '٩': '9',
  6543. '٠': '0',
  6544. },
  6545. months$7 = [
  6546. 'کانونی دووەم',
  6547. 'شوبات',
  6548. 'ئازار',
  6549. 'نیسان',
  6550. 'ئایار',
  6551. 'حوزەیران',
  6552. 'تەمموز',
  6553. 'ئاب',
  6554. 'ئەیلوول',
  6555. 'تشرینی یەكەم',
  6556. 'تشرینی دووەم',
  6557. 'كانونی یەکەم',
  6558. ];
  6559. moment.defineLocale('ku', {
  6560. months: months$7,
  6561. monthsShort: months$7,
  6562. weekdays: 'یه‌كشه‌ممه‌_دووشه‌ممه‌_سێشه‌ممه‌_چوارشه‌ممه‌_پێنجشه‌ممه‌_هه‌ینی_شه‌ممه‌'.split(
  6563. '_'
  6564. ),
  6565. weekdaysShort: 'یه‌كشه‌م_دووشه‌م_سێشه‌م_چوارشه‌م_پێنجشه‌م_هه‌ینی_شه‌ممه‌'.split(
  6566. '_'
  6567. ),
  6568. weekdaysMin: 'ی_د_س_چ_پ_ه_ش'.split('_'),
  6569. weekdaysParseExact: true,
  6570. longDateFormat: {
  6571. LT: 'HH:mm',
  6572. LTS: 'HH:mm:ss',
  6573. L: 'DD/MM/YYYY',
  6574. LL: 'D MMMM YYYY',
  6575. LLL: 'D MMMM YYYY HH:mm',
  6576. LLLL: 'dddd, D MMMM YYYY HH:mm',
  6577. },
  6578. meridiemParse: /ئێواره‌|به‌یانی/,
  6579. isPM: function (input) {
  6580. return /ئێواره‌/.test(input);
  6581. },
  6582. meridiem: function (hour, minute, isLower) {
  6583. if (hour < 12) {
  6584. return 'به‌یانی';
  6585. } else {
  6586. return 'ئێواره‌';
  6587. }
  6588. },
  6589. calendar: {
  6590. sameDay: '[ئه‌مرۆ كاتژمێر] LT',
  6591. nextDay: '[به‌یانی كاتژمێر] LT',
  6592. nextWeek: 'dddd [كاتژمێر] LT',
  6593. lastDay: '[دوێنێ كاتژمێر] LT',
  6594. lastWeek: 'dddd [كاتژمێر] LT',
  6595. sameElse: 'L',
  6596. },
  6597. relativeTime: {
  6598. future: 'له‌ %s',
  6599. past: '%s',
  6600. s: 'چه‌ند چركه‌یه‌ك',
  6601. ss: 'چركه‌ %d',
  6602. m: 'یه‌ك خوله‌ك',
  6603. mm: '%d خوله‌ك',
  6604. h: 'یه‌ك كاتژمێر',
  6605. hh: '%d كاتژمێر',
  6606. d: 'یه‌ك ڕۆژ',
  6607. dd: '%d ڕۆژ',
  6608. M: 'یه‌ك مانگ',
  6609. MM: '%d مانگ',
  6610. y: 'یه‌ك ساڵ',
  6611. yy: '%d ساڵ',
  6612. },
  6613. preparse: function (string) {
  6614. return string
  6615. .replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
  6616. return numberMap$a[match];
  6617. })
  6618. .replace(/،/g, ',');
  6619. },
  6620. postformat: function (string) {
  6621. return string
  6622. .replace(/\d/g, function (match) {
  6623. return symbolMap$b[match];
  6624. })
  6625. .replace(/,/g, '،');
  6626. },
  6627. week: {
  6628. dow: 6, // Saturday is the first day of the week.
  6629. doy: 12, // The week that contains Jan 12th is the first week of the year.
  6630. },
  6631. });
  6632. //! moment.js locale configuration
  6633. var suffixes$2 = {
  6634. 0: '-чү',
  6635. 1: '-чи',
  6636. 2: '-чи',
  6637. 3: '-чү',
  6638. 4: '-чү',
  6639. 5: '-чи',
  6640. 6: '-чы',
  6641. 7: '-чи',
  6642. 8: '-чи',
  6643. 9: '-чу',
  6644. 10: '-чу',
  6645. 20: '-чы',
  6646. 30: '-чу',
  6647. 40: '-чы',
  6648. 50: '-чү',
  6649. 60: '-чы',
  6650. 70: '-чи',
  6651. 80: '-чи',
  6652. 90: '-чу',
  6653. 100: '-чү',
  6654. };
  6655. moment.defineLocale('ky', {
  6656. months: 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split(
  6657. '_'
  6658. ),
  6659. monthsShort: 'янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек'.split(
  6660. '_'
  6661. ),
  6662. weekdays: 'Жекшемби_Дүйшөмбү_Шейшемби_Шаршемби_Бейшемби_Жума_Ишемби'.split(
  6663. '_'
  6664. ),
  6665. weekdaysShort: 'Жек_Дүй_Шей_Шар_Бей_Жум_Ише'.split('_'),
  6666. weekdaysMin: 'Жк_Дй_Шй_Шр_Бй_Жм_Иш'.split('_'),
  6667. longDateFormat: {
  6668. LT: 'HH:mm',
  6669. LTS: 'HH:mm:ss',
  6670. L: 'DD.MM.YYYY',
  6671. LL: 'D MMMM YYYY',
  6672. LLL: 'D MMMM YYYY HH:mm',
  6673. LLLL: 'dddd, D MMMM YYYY HH:mm',
  6674. },
  6675. calendar: {
  6676. sameDay: '[Бүгүн саат] LT',
  6677. nextDay: '[Эртең саат] LT',
  6678. nextWeek: 'dddd [саат] LT',
  6679. lastDay: '[Кечээ саат] LT',
  6680. lastWeek: '[Өткөн аптанын] dddd [күнү] [саат] LT',
  6681. sameElse: 'L',
  6682. },
  6683. relativeTime: {
  6684. future: '%s ичинде',
  6685. past: '%s мурун',
  6686. s: 'бирнече секунд',
  6687. ss: '%d секунд',
  6688. m: 'бир мүнөт',
  6689. mm: '%d мүнөт',
  6690. h: 'бир саат',
  6691. hh: '%d саат',
  6692. d: 'бир күн',
  6693. dd: '%d күн',
  6694. M: 'бир ай',
  6695. MM: '%d ай',
  6696. y: 'бир жыл',
  6697. yy: '%d жыл',
  6698. },
  6699. dayOfMonthOrdinalParse: /\d{1,2}-(чи|чы|чү|чу)/,
  6700. ordinal: function (number) {
  6701. var a = number % 10,
  6702. b = number >= 100 ? 100 : null;
  6703. return number + (suffixes$2[number] || suffixes$2[a] || suffixes$2[b]);
  6704. },
  6705. week: {
  6706. dow: 1, // Monday is the first day of the week.
  6707. doy: 7, // The week that contains Jan 7th is the first week of the year.
  6708. },
  6709. });
  6710. //! moment.js locale configuration
  6711. function processRelativeTime$6(number, withoutSuffix, key, isFuture) {
  6712. var format = {
  6713. m: ['eng Minutt', 'enger Minutt'],
  6714. h: ['eng Stonn', 'enger Stonn'],
  6715. d: ['een Dag', 'engem Dag'],
  6716. M: ['ee Mount', 'engem Mount'],
  6717. y: ['ee Joer', 'engem Joer'],
  6718. };
  6719. return withoutSuffix ? format[key][0] : format[key][1];
  6720. }
  6721. function processFutureTime(string) {
  6722. var number = string.substr(0, string.indexOf(' '));
  6723. if (eifelerRegelAppliesToNumber(number)) {
  6724. return 'a ' + string;
  6725. }
  6726. return 'an ' + string;
  6727. }
  6728. function processPastTime(string) {
  6729. var number = string.substr(0, string.indexOf(' '));
  6730. if (eifelerRegelAppliesToNumber(number)) {
  6731. return 'viru ' + string;
  6732. }
  6733. return 'virun ' + string;
  6734. }
  6735. /**
  6736. * Returns true if the word before the given number loses the '-n' ending.
  6737. * e.g. 'an 10 Deeg' but 'a 5 Deeg'
  6738. *
  6739. * @param number {integer}
  6740. * @returns {boolean}
  6741. */
  6742. function eifelerRegelAppliesToNumber(number) {
  6743. number = parseInt(number, 10);
  6744. if (isNaN(number)) {
  6745. return false;
  6746. }
  6747. if (number < 0) {
  6748. // Negative Number --> always true
  6749. return true;
  6750. } else if (number < 10) {
  6751. // Only 1 digit
  6752. if (4 <= number && number <= 7) {
  6753. return true;
  6754. }
  6755. return false;
  6756. } else if (number < 100) {
  6757. // 2 digits
  6758. var lastDigit = number % 10,
  6759. firstDigit = number / 10;
  6760. if (lastDigit === 0) {
  6761. return eifelerRegelAppliesToNumber(firstDigit);
  6762. }
  6763. return eifelerRegelAppliesToNumber(lastDigit);
  6764. } else if (number < 10000) {
  6765. // 3 or 4 digits --> recursively check first digit
  6766. while (number >= 10) {
  6767. number = number / 10;
  6768. }
  6769. return eifelerRegelAppliesToNumber(number);
  6770. } else {
  6771. // Anything larger than 4 digits: recursively check first n-3 digits
  6772. number = number / 1000;
  6773. return eifelerRegelAppliesToNumber(number);
  6774. }
  6775. }
  6776. moment.defineLocale('lb', {
  6777. months: 'Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember'.split(
  6778. '_'
  6779. ),
  6780. monthsShort: 'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split(
  6781. '_'
  6782. ),
  6783. monthsParseExact: true,
  6784. weekdays: 'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split(
  6785. '_'
  6786. ),
  6787. weekdaysShort: 'So._Mé._Dë._Më._Do._Fr._Sa.'.split('_'),
  6788. weekdaysMin: 'So_Mé_Dë_Më_Do_Fr_Sa'.split('_'),
  6789. weekdaysParseExact: true,
  6790. longDateFormat: {
  6791. LT: 'H:mm [Auer]',
  6792. LTS: 'H:mm:ss [Auer]',
  6793. L: 'DD.MM.YYYY',
  6794. LL: 'D. MMMM YYYY',
  6795. LLL: 'D. MMMM YYYY H:mm [Auer]',
  6796. LLLL: 'dddd, D. MMMM YYYY H:mm [Auer]',
  6797. },
  6798. calendar: {
  6799. sameDay: '[Haut um] LT',
  6800. sameElse: 'L',
  6801. nextDay: '[Muer um] LT',
  6802. nextWeek: 'dddd [um] LT',
  6803. lastDay: '[Gëschter um] LT',
  6804. lastWeek: function () {
  6805. // Different date string for 'Dënschdeg' (Tuesday) and 'Donneschdeg' (Thursday) due to phonological rule
  6806. switch (this.day()) {
  6807. case 2:
  6808. case 4:
  6809. return '[Leschten] dddd [um] LT';
  6810. default:
  6811. return '[Leschte] dddd [um] LT';
  6812. }
  6813. },
  6814. },
  6815. relativeTime: {
  6816. future: processFutureTime,
  6817. past: processPastTime,
  6818. s: 'e puer Sekonnen',
  6819. ss: '%d Sekonnen',
  6820. m: processRelativeTime$6,
  6821. mm: '%d Minutten',
  6822. h: processRelativeTime$6,
  6823. hh: '%d Stonnen',
  6824. d: processRelativeTime$6,
  6825. dd: '%d Deeg',
  6826. M: processRelativeTime$6,
  6827. MM: '%d Méint',
  6828. y: processRelativeTime$6,
  6829. yy: '%d Joer',
  6830. },
  6831. dayOfMonthOrdinalParse: /\d{1,2}\./,
  6832. ordinal: '%d.',
  6833. week: {
  6834. dow: 1, // Monday is the first day of the week.
  6835. doy: 4, // The week that contains Jan 4th is the first week of the year.
  6836. },
  6837. });
  6838. //! moment.js locale configuration
  6839. moment.defineLocale('lo', {
  6840. months: 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split(
  6841. '_'
  6842. ),
  6843. monthsShort: 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split(
  6844. '_'
  6845. ),
  6846. weekdays: 'ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
  6847. weekdaysShort: 'ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
  6848. weekdaysMin: 'ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ'.split('_'),
  6849. weekdaysParseExact: true,
  6850. longDateFormat: {
  6851. LT: 'HH:mm',
  6852. LTS: 'HH:mm:ss',
  6853. L: 'DD/MM/YYYY',
  6854. LL: 'D MMMM YYYY',
  6855. LLL: 'D MMMM YYYY HH:mm',
  6856. LLLL: 'ວັນdddd D MMMM YYYY HH:mm',
  6857. },
  6858. meridiemParse: /ຕອນເຊົ້າ|ຕອນແລງ/,
  6859. isPM: function (input) {
  6860. return input === 'ຕອນແລງ';
  6861. },
  6862. meridiem: function (hour, minute, isLower) {
  6863. if (hour < 12) {
  6864. return 'ຕອນເຊົ້າ';
  6865. } else {
  6866. return 'ຕອນແລງ';
  6867. }
  6868. },
  6869. calendar: {
  6870. sameDay: '[ມື້ນີ້ເວລາ] LT',
  6871. nextDay: '[ມື້ອື່ນເວລາ] LT',
  6872. nextWeek: '[ວັນ]dddd[ໜ້າເວລາ] LT',
  6873. lastDay: '[ມື້ວານນີ້ເວລາ] LT',
  6874. lastWeek: '[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT',
  6875. sameElse: 'L',
  6876. },
  6877. relativeTime: {
  6878. future: 'ອີກ %s',
  6879. past: '%sຜ່ານມາ',
  6880. s: 'ບໍ່ເທົ່າໃດວິນາທີ',
  6881. ss: '%d ວິນາທີ',
  6882. m: '1 ນາທີ',
  6883. mm: '%d ນາທີ',
  6884. h: '1 ຊົ່ວໂມງ',
  6885. hh: '%d ຊົ່ວໂມງ',
  6886. d: '1 ມື້',
  6887. dd: '%d ມື້',
  6888. M: '1 ເດືອນ',
  6889. MM: '%d ເດືອນ',
  6890. y: '1 ປີ',
  6891. yy: '%d ປີ',
  6892. },
  6893. dayOfMonthOrdinalParse: /(ທີ່)\d{1,2}/,
  6894. ordinal: function (number) {
  6895. return 'ທີ່' + number;
  6896. },
  6897. });
  6898. //! moment.js locale configuration
  6899. var units = {
  6900. ss: 'sekundė_sekundžių_sekundes',
  6901. m: 'minutė_minutės_minutę',
  6902. mm: 'minutės_minučių_minutes',
  6903. h: 'valanda_valandos_valandą',
  6904. hh: 'valandos_valandų_valandas',
  6905. d: 'diena_dienos_dieną',
  6906. dd: 'dienos_dienų_dienas',
  6907. M: 'mėnuo_mėnesio_mėnesį',
  6908. MM: 'mėnesiai_mėnesių_mėnesius',
  6909. y: 'metai_metų_metus',
  6910. yy: 'metai_metų_metus',
  6911. };
  6912. function translateSeconds(number, withoutSuffix, key, isFuture) {
  6913. if (withoutSuffix) {
  6914. return 'kelios sekundės';
  6915. } else {
  6916. return isFuture ? 'kelių sekundžių' : 'kelias sekundes';
  6917. }
  6918. }
  6919. function translateSingular(number, withoutSuffix, key, isFuture) {
  6920. return withoutSuffix
  6921. ? forms(key)[0]
  6922. : isFuture
  6923. ? forms(key)[1]
  6924. : forms(key)[2];
  6925. }
  6926. function special(number) {
  6927. return number % 10 === 0 || (number > 10 && number < 20);
  6928. }
  6929. function forms(key) {
  6930. return units[key].split('_');
  6931. }
  6932. function translate$6(number, withoutSuffix, key, isFuture) {
  6933. var result = number + ' ';
  6934. if (number === 1) {
  6935. return (
  6936. result + translateSingular(number, withoutSuffix, key[0], isFuture)
  6937. );
  6938. } else if (withoutSuffix) {
  6939. return result + (special(number) ? forms(key)[1] : forms(key)[0]);
  6940. } else {
  6941. if (isFuture) {
  6942. return result + forms(key)[1];
  6943. } else {
  6944. return result + (special(number) ? forms(key)[1] : forms(key)[2]);
  6945. }
  6946. }
  6947. }
  6948. moment.defineLocale('lt', {
  6949. months: {
  6950. format: 'sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio'.split(
  6951. '_'
  6952. ),
  6953. standalone: 'sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis'.split(
  6954. '_'
  6955. ),
  6956. isFormat: /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/,
  6957. },
  6958. monthsShort: 'sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd'.split('_'),
  6959. weekdays: {
  6960. format: 'sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį'.split(
  6961. '_'
  6962. ),
  6963. standalone: 'sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis'.split(
  6964. '_'
  6965. ),
  6966. isFormat: /dddd HH:mm/,
  6967. },
  6968. weekdaysShort: 'Sek_Pir_Ant_Tre_Ket_Pen_Šeš'.split('_'),
  6969. weekdaysMin: 'S_P_A_T_K_Pn_Š'.split('_'),
  6970. weekdaysParseExact: true,
  6971. longDateFormat: {
  6972. LT: 'HH:mm',
  6973. LTS: 'HH:mm:ss',
  6974. L: 'YYYY-MM-DD',
  6975. LL: 'YYYY [m.] MMMM D [d.]',
  6976. LLL: 'YYYY [m.] MMMM D [d.], HH:mm [val.]',
  6977. LLLL: 'YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]',
  6978. l: 'YYYY-MM-DD',
  6979. ll: 'YYYY [m.] MMMM D [d.]',
  6980. lll: 'YYYY [m.] MMMM D [d.], HH:mm [val.]',
  6981. llll: 'YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]',
  6982. },
  6983. calendar: {
  6984. sameDay: '[Šiandien] LT',
  6985. nextDay: '[Rytoj] LT',
  6986. nextWeek: 'dddd LT',
  6987. lastDay: '[Vakar] LT',
  6988. lastWeek: '[Praėjusį] dddd LT',
  6989. sameElse: 'L',
  6990. },
  6991. relativeTime: {
  6992. future: 'po %s',
  6993. past: 'prieš %s',
  6994. s: translateSeconds,
  6995. ss: translate$6,
  6996. m: translateSingular,
  6997. mm: translate$6,
  6998. h: translateSingular,
  6999. hh: translate$6,
  7000. d: translateSingular,
  7001. dd: translate$6,
  7002. M: translateSingular,
  7003. MM: translate$6,
  7004. y: translateSingular,
  7005. yy: translate$6,
  7006. },
  7007. dayOfMonthOrdinalParse: /\d{1,2}-oji/,
  7008. ordinal: function (number) {
  7009. return number + '-oji';
  7010. },
  7011. week: {
  7012. dow: 1, // Monday is the first day of the week.
  7013. doy: 4, // The week that contains Jan 4th is the first week of the year.
  7014. },
  7015. });
  7016. //! moment.js locale configuration
  7017. var units$1 = {
  7018. ss: 'sekundes_sekundēm_sekunde_sekundes'.split('_'),
  7019. m: 'minūtes_minūtēm_minūte_minūtes'.split('_'),
  7020. mm: 'minūtes_minūtēm_minūte_minūtes'.split('_'),
  7021. h: 'stundas_stundām_stunda_stundas'.split('_'),
  7022. hh: 'stundas_stundām_stunda_stundas'.split('_'),
  7023. d: 'dienas_dienām_diena_dienas'.split('_'),
  7024. dd: 'dienas_dienām_diena_dienas'.split('_'),
  7025. M: 'mēneša_mēnešiem_mēnesis_mēneši'.split('_'),
  7026. MM: 'mēneša_mēnešiem_mēnesis_mēneši'.split('_'),
  7027. y: 'gada_gadiem_gads_gadi'.split('_'),
  7028. yy: 'gada_gadiem_gads_gadi'.split('_'),
  7029. };
  7030. /**
  7031. * @param withoutSuffix boolean true = a length of time; false = before/after a period of time.
  7032. */
  7033. function format(forms, number, withoutSuffix) {
  7034. if (withoutSuffix) {
  7035. // E.g. "21 minūte", "3 minūtes".
  7036. return number % 10 === 1 && number % 100 !== 11 ? forms[2] : forms[3];
  7037. } else {
  7038. // E.g. "21 minūtes" as in "pēc 21 minūtes".
  7039. // E.g. "3 minūtēm" as in "pēc 3 minūtēm".
  7040. return number % 10 === 1 && number % 100 !== 11 ? forms[0] : forms[1];
  7041. }
  7042. }
  7043. function relativeTimeWithPlural$1(number, withoutSuffix, key) {
  7044. return number + ' ' + format(units$1[key], number, withoutSuffix);
  7045. }
  7046. function relativeTimeWithSingular(number, withoutSuffix, key) {
  7047. return format(units$1[key], number, withoutSuffix);
  7048. }
  7049. function relativeSeconds(number, withoutSuffix) {
  7050. return withoutSuffix ? 'dažas sekundes' : 'dažām sekundēm';
  7051. }
  7052. moment.defineLocale('lv', {
  7053. months: 'janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris'.split(
  7054. '_'
  7055. ),
  7056. monthsShort: 'jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec'.split('_'),
  7057. weekdays: 'svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena'.split(
  7058. '_'
  7059. ),
  7060. weekdaysShort: 'Sv_P_O_T_C_Pk_S'.split('_'),
  7061. weekdaysMin: 'Sv_P_O_T_C_Pk_S'.split('_'),
  7062. weekdaysParseExact: true,
  7063. longDateFormat: {
  7064. LT: 'HH:mm',
  7065. LTS: 'HH:mm:ss',
  7066. L: 'DD.MM.YYYY.',
  7067. LL: 'YYYY. [gada] D. MMMM',
  7068. LLL: 'YYYY. [gada] D. MMMM, HH:mm',
  7069. LLLL: 'YYYY. [gada] D. MMMM, dddd, HH:mm',
  7070. },
  7071. calendar: {
  7072. sameDay: '[Šodien pulksten] LT',
  7073. nextDay: '[Rīt pulksten] LT',
  7074. nextWeek: 'dddd [pulksten] LT',
  7075. lastDay: '[Vakar pulksten] LT',
  7076. lastWeek: '[Pagājušā] dddd [pulksten] LT',
  7077. sameElse: 'L',
  7078. },
  7079. relativeTime: {
  7080. future: 'pēc %s',
  7081. past: 'pirms %s',
  7082. s: relativeSeconds,
  7083. ss: relativeTimeWithPlural$1,
  7084. m: relativeTimeWithSingular,
  7085. mm: relativeTimeWithPlural$1,
  7086. h: relativeTimeWithSingular,
  7087. hh: relativeTimeWithPlural$1,
  7088. d: relativeTimeWithSingular,
  7089. dd: relativeTimeWithPlural$1,
  7090. M: relativeTimeWithSingular,
  7091. MM: relativeTimeWithPlural$1,
  7092. y: relativeTimeWithSingular,
  7093. yy: relativeTimeWithPlural$1,
  7094. },
  7095. dayOfMonthOrdinalParse: /\d{1,2}\./,
  7096. ordinal: '%d.',
  7097. week: {
  7098. dow: 1, // Monday is the first day of the week.
  7099. doy: 4, // The week that contains Jan 4th is the first week of the year.
  7100. },
  7101. });
  7102. //! moment.js locale configuration
  7103. var translator = {
  7104. words: {
  7105. //Different grammatical cases
  7106. ss: ['sekund', 'sekunda', 'sekundi'],
  7107. m: ['jedan minut', 'jednog minuta'],
  7108. mm: ['minut', 'minuta', 'minuta'],
  7109. h: ['jedan sat', 'jednog sata'],
  7110. hh: ['sat', 'sata', 'sati'],
  7111. dd: ['dan', 'dana', 'dana'],
  7112. MM: ['mjesec', 'mjeseca', 'mjeseci'],
  7113. yy: ['godina', 'godine', 'godina'],
  7114. },
  7115. correctGrammaticalCase: function (number, wordKey) {
  7116. return number === 1
  7117. ? wordKey[0]
  7118. : number >= 2 && number <= 4
  7119. ? wordKey[1]
  7120. : wordKey[2];
  7121. },
  7122. translate: function (number, withoutSuffix, key) {
  7123. var wordKey = translator.words[key];
  7124. if (key.length === 1) {
  7125. return withoutSuffix ? wordKey[0] : wordKey[1];
  7126. } else {
  7127. return (
  7128. number +
  7129. ' ' +
  7130. translator.correctGrammaticalCase(number, wordKey)
  7131. );
  7132. }
  7133. },
  7134. };
  7135. moment.defineLocale('me', {
  7136. months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split(
  7137. '_'
  7138. ),
  7139. monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split(
  7140. '_'
  7141. ),
  7142. monthsParseExact: true,
  7143. weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(
  7144. '_'
  7145. ),
  7146. weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),
  7147. weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),
  7148. weekdaysParseExact: true,
  7149. longDateFormat: {
  7150. LT: 'H:mm',
  7151. LTS: 'H:mm:ss',
  7152. L: 'DD.MM.YYYY',
  7153. LL: 'D. MMMM YYYY',
  7154. LLL: 'D. MMMM YYYY H:mm',
  7155. LLLL: 'dddd, D. MMMM YYYY H:mm',
  7156. },
  7157. calendar: {
  7158. sameDay: '[danas u] LT',
  7159. nextDay: '[sjutra u] LT',
  7160. nextWeek: function () {
  7161. switch (this.day()) {
  7162. case 0:
  7163. return '[u] [nedjelju] [u] LT';
  7164. case 3:
  7165. return '[u] [srijedu] [u] LT';
  7166. case 6:
  7167. return '[u] [subotu] [u] LT';
  7168. case 1:
  7169. case 2:
  7170. case 4:
  7171. case 5:
  7172. return '[u] dddd [u] LT';
  7173. }
  7174. },
  7175. lastDay: '[juče u] LT',
  7176. lastWeek: function () {
  7177. var lastWeekDays = [
  7178. '[prošle] [nedjelje] [u] LT',
  7179. '[prošlog] [ponedjeljka] [u] LT',
  7180. '[prošlog] [utorka] [u] LT',
  7181. '[prošle] [srijede] [u] LT',
  7182. '[prošlog] [četvrtka] [u] LT',
  7183. '[prošlog] [petka] [u] LT',
  7184. '[prošle] [subote] [u] LT',
  7185. ];
  7186. return lastWeekDays[this.day()];
  7187. },
  7188. sameElse: 'L',
  7189. },
  7190. relativeTime: {
  7191. future: 'za %s',
  7192. past: 'prije %s',
  7193. s: 'nekoliko sekundi',
  7194. ss: translator.translate,
  7195. m: translator.translate,
  7196. mm: translator.translate,
  7197. h: translator.translate,
  7198. hh: translator.translate,
  7199. d: 'dan',
  7200. dd: translator.translate,
  7201. M: 'mjesec',
  7202. MM: translator.translate,
  7203. y: 'godinu',
  7204. yy: translator.translate,
  7205. },
  7206. dayOfMonthOrdinalParse: /\d{1,2}\./,
  7207. ordinal: '%d.',
  7208. week: {
  7209. dow: 1, // Monday is the first day of the week.
  7210. doy: 7, // The week that contains Jan 7th is the first week of the year.
  7211. },
  7212. });
  7213. //! moment.js locale configuration
  7214. moment.defineLocale('mi', {
  7215. months: 'Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea'.split(
  7216. '_'
  7217. ),
  7218. monthsShort: 'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split(
  7219. '_'
  7220. ),
  7221. monthsRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
  7222. monthsStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
  7223. monthsShortRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
  7224. monthsShortStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,
  7225. weekdays: 'Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei'.split('_'),
  7226. weekdaysShort: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),
  7227. weekdaysMin: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),
  7228. longDateFormat: {
  7229. LT: 'HH:mm',
  7230. LTS: 'HH:mm:ss',
  7231. L: 'DD/MM/YYYY',
  7232. LL: 'D MMMM YYYY',
  7233. LLL: 'D MMMM YYYY [i] HH:mm',
  7234. LLLL: 'dddd, D MMMM YYYY [i] HH:mm',
  7235. },
  7236. calendar: {
  7237. sameDay: '[i teie mahana, i] LT',
  7238. nextDay: '[apopo i] LT',
  7239. nextWeek: 'dddd [i] LT',
  7240. lastDay: '[inanahi i] LT',
  7241. lastWeek: 'dddd [whakamutunga i] LT',
  7242. sameElse: 'L',
  7243. },
  7244. relativeTime: {
  7245. future: 'i roto i %s',
  7246. past: '%s i mua',
  7247. s: 'te hēkona ruarua',
  7248. ss: '%d hēkona',
  7249. m: 'he meneti',
  7250. mm: '%d meneti',
  7251. h: 'te haora',
  7252. hh: '%d haora',
  7253. d: 'he ra',
  7254. dd: '%d ra',
  7255. M: 'he marama',
  7256. MM: '%d marama',
  7257. y: 'he tau',
  7258. yy: '%d tau',
  7259. },
  7260. dayOfMonthOrdinalParse: /\d{1,2}º/,
  7261. ordinal: '%dº',
  7262. week: {
  7263. dow: 1, // Monday is the first day of the week.
  7264. doy: 4, // The week that contains Jan 4th is the first week of the year.
  7265. },
  7266. });
  7267. //! moment.js locale configuration
  7268. moment.defineLocale('mk', {
  7269. months: 'јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември'.split(
  7270. '_'
  7271. ),
  7272. monthsShort: 'јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек'.split('_'),
  7273. weekdays: 'недела_понеделник_вторник_среда_четврток_петок_сабота'.split(
  7274. '_'
  7275. ),
  7276. weekdaysShort: 'нед_пон_вто_сре_чет_пет_саб'.split('_'),
  7277. weekdaysMin: 'нe_пo_вт_ср_че_пе_сa'.split('_'),
  7278. longDateFormat: {
  7279. LT: 'H:mm',
  7280. LTS: 'H:mm:ss',
  7281. L: 'D.MM.YYYY',
  7282. LL: 'D MMMM YYYY',
  7283. LLL: 'D MMMM YYYY H:mm',
  7284. LLLL: 'dddd, D MMMM YYYY H:mm',
  7285. },
  7286. calendar: {
  7287. sameDay: '[Денес во] LT',
  7288. nextDay: '[Утре во] LT',
  7289. nextWeek: '[Во] dddd [во] LT',
  7290. lastDay: '[Вчера во] LT',
  7291. lastWeek: function () {
  7292. switch (this.day()) {
  7293. case 0:
  7294. case 3:
  7295. case 6:
  7296. return '[Изминатата] dddd [во] LT';
  7297. case 1:
  7298. case 2:
  7299. case 4:
  7300. case 5:
  7301. return '[Изминатиот] dddd [во] LT';
  7302. }
  7303. },
  7304. sameElse: 'L',
  7305. },
  7306. relativeTime: {
  7307. future: 'за %s',
  7308. past: 'пред %s',
  7309. s: 'неколку секунди',
  7310. ss: '%d секунди',
  7311. m: 'една минута',
  7312. mm: '%d минути',
  7313. h: 'еден час',
  7314. hh: '%d часа',
  7315. d: 'еден ден',
  7316. dd: '%d дена',
  7317. M: 'еден месец',
  7318. MM: '%d месеци',
  7319. y: 'една година',
  7320. yy: '%d години',
  7321. },
  7322. dayOfMonthOrdinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
  7323. ordinal: function (number) {
  7324. var lastDigit = number % 10,
  7325. last2Digits = number % 100;
  7326. if (number === 0) {
  7327. return number + '-ев';
  7328. } else if (last2Digits === 0) {
  7329. return number + '-ен';
  7330. } else if (last2Digits > 10 && last2Digits < 20) {
  7331. return number + '-ти';
  7332. } else if (lastDigit === 1) {
  7333. return number + '-ви';
  7334. } else if (lastDigit === 2) {
  7335. return number + '-ри';
  7336. } else if (lastDigit === 7 || lastDigit === 8) {
  7337. return number + '-ми';
  7338. } else {
  7339. return number + '-ти';
  7340. }
  7341. },
  7342. week: {
  7343. dow: 1, // Monday is the first day of the week.
  7344. doy: 7, // The week that contains Jan 7th is the first week of the year.
  7345. },
  7346. });
  7347. //! moment.js locale configuration
  7348. moment.defineLocale('ml', {
  7349. months: 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split(
  7350. '_'
  7351. ),
  7352. monthsShort: 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split(
  7353. '_'
  7354. ),
  7355. monthsParseExact: true,
  7356. weekdays: 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split(
  7357. '_'
  7358. ),
  7359. weekdaysShort: 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split('_'),
  7360. weekdaysMin: 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split('_'),
  7361. longDateFormat: {
  7362. LT: 'A h:mm -നു',
  7363. LTS: 'A h:mm:ss -നു',
  7364. L: 'DD/MM/YYYY',
  7365. LL: 'D MMMM YYYY',
  7366. LLL: 'D MMMM YYYY, A h:mm -നു',
  7367. LLLL: 'dddd, D MMMM YYYY, A h:mm -നു',
  7368. },
  7369. calendar: {
  7370. sameDay: '[ഇന്ന്] LT',
  7371. nextDay: '[നാളെ] LT',
  7372. nextWeek: 'dddd, LT',
  7373. lastDay: '[ഇന്നലെ] LT',
  7374. lastWeek: '[കഴിഞ്ഞ] dddd, LT',
  7375. sameElse: 'L',
  7376. },
  7377. relativeTime: {
  7378. future: '%s കഴിഞ്ഞ്',
  7379. past: '%s മുൻപ്',
  7380. s: 'അൽപ നിമിഷങ്ങൾ',
  7381. ss: '%d സെക്കൻഡ്',
  7382. m: 'ഒരു മിനിറ്റ്',
  7383. mm: '%d മിനിറ്റ്',
  7384. h: 'ഒരു മണിക്കൂർ',
  7385. hh: '%d മണിക്കൂർ',
  7386. d: 'ഒരു ദിവസം',
  7387. dd: '%d ദിവസം',
  7388. M: 'ഒരു മാസം',
  7389. MM: '%d മാസം',
  7390. y: 'ഒരു വർഷം',
  7391. yy: '%d വർഷം',
  7392. },
  7393. meridiemParse: /രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,
  7394. meridiemHour: function (hour, meridiem) {
  7395. if (hour === 12) {
  7396. hour = 0;
  7397. }
  7398. if (
  7399. (meridiem === 'രാത്രി' && hour >= 4) ||
  7400. meridiem === 'ഉച്ച കഴിഞ്ഞ്' ||
  7401. meridiem === 'വൈകുന്നേരം'
  7402. ) {
  7403. return hour + 12;
  7404. } else {
  7405. return hour;
  7406. }
  7407. },
  7408. meridiem: function (hour, minute, isLower) {
  7409. if (hour < 4) {
  7410. return 'രാത്രി';
  7411. } else if (hour < 12) {
  7412. return 'രാവിലെ';
  7413. } else if (hour < 17) {
  7414. return 'ഉച്ച കഴിഞ്ഞ്';
  7415. } else if (hour < 20) {
  7416. return 'വൈകുന്നേരം';
  7417. } else {
  7418. return 'രാത്രി';
  7419. }
  7420. },
  7421. });
  7422. //! moment.js locale configuration
  7423. function translate$7(number, withoutSuffix, key, isFuture) {
  7424. switch (key) {
  7425. case 's':
  7426. return withoutSuffix ? 'хэдхэн секунд' : 'хэдхэн секундын';
  7427. case 'ss':
  7428. return number + (withoutSuffix ? ' секунд' : ' секундын');
  7429. case 'm':
  7430. case 'mm':
  7431. return number + (withoutSuffix ? ' минут' : ' минутын');
  7432. case 'h':
  7433. case 'hh':
  7434. return number + (withoutSuffix ? ' цаг' : ' цагийн');
  7435. case 'd':
  7436. case 'dd':
  7437. return number + (withoutSuffix ? ' өдөр' : ' өдрийн');
  7438. case 'M':
  7439. case 'MM':
  7440. return number + (withoutSuffix ? ' сар' : ' сарын');
  7441. case 'y':
  7442. case 'yy':
  7443. return number + (withoutSuffix ? ' жил' : ' жилийн');
  7444. default:
  7445. return number;
  7446. }
  7447. }
  7448. moment.defineLocale('mn', {
  7449. months: 'Нэгдүгээр сар_Хоёрдугаар сар_Гуравдугаар сар_Дөрөвдүгээр сар_Тавдугаар сар_Зургадугаар сар_Долдугаар сар_Наймдугаар сар_Есдүгээр сар_Аравдугаар сар_Арван нэгдүгээр сар_Арван хоёрдугаар сар'.split(
  7450. '_'
  7451. ),
  7452. monthsShort: '1 сар_2 сар_3 сар_4 сар_5 сар_6 сар_7 сар_8 сар_9 сар_10 сар_11 сар_12 сар'.split(
  7453. '_'
  7454. ),
  7455. monthsParseExact: true,
  7456. weekdays: 'Ням_Даваа_Мягмар_Лхагва_Пүрэв_Баасан_Бямба'.split('_'),
  7457. weekdaysShort: 'Ням_Дав_Мяг_Лха_Пүр_Баа_Бям'.split('_'),
  7458. weekdaysMin: 'Ня_Да_Мя_Лх_Пү_Ба_Бя'.split('_'),
  7459. weekdaysParseExact: true,
  7460. longDateFormat: {
  7461. LT: 'HH:mm',
  7462. LTS: 'HH:mm:ss',
  7463. L: 'YYYY-MM-DD',
  7464. LL: 'YYYY оны MMMMын D',
  7465. LLL: 'YYYY оны MMMMын D HH:mm',
  7466. LLLL: 'dddd, YYYY оны MMMMын D HH:mm',
  7467. },
  7468. meridiemParse: /ҮӨ|ҮХ/i,
  7469. isPM: function (input) {
  7470. return input === 'ҮХ';
  7471. },
  7472. meridiem: function (hour, minute, isLower) {
  7473. if (hour < 12) {
  7474. return 'ҮӨ';
  7475. } else {
  7476. return 'ҮХ';
  7477. }
  7478. },
  7479. calendar: {
  7480. sameDay: '[Өнөөдөр] LT',
  7481. nextDay: '[Маргааш] LT',
  7482. nextWeek: '[Ирэх] dddd LT',
  7483. lastDay: '[Өчигдөр] LT',
  7484. lastWeek: '[Өнгөрсөн] dddd LT',
  7485. sameElse: 'L',
  7486. },
  7487. relativeTime: {
  7488. future: '%s дараа',
  7489. past: '%s өмнө',
  7490. s: translate$7,
  7491. ss: translate$7,
  7492. m: translate$7,
  7493. mm: translate$7,
  7494. h: translate$7,
  7495. hh: translate$7,
  7496. d: translate$7,
  7497. dd: translate$7,
  7498. M: translate$7,
  7499. MM: translate$7,
  7500. y: translate$7,
  7501. yy: translate$7,
  7502. },
  7503. dayOfMonthOrdinalParse: /\d{1,2} өдөр/,
  7504. ordinal: function (number, period) {
  7505. switch (period) {
  7506. case 'd':
  7507. case 'D':
  7508. case 'DDD':
  7509. return number + ' өдөр';
  7510. default:
  7511. return number;
  7512. }
  7513. },
  7514. });
  7515. //! moment.js locale configuration
  7516. var symbolMap$c = {
  7517. 1: '१',
  7518. 2: '२',
  7519. 3: '३',
  7520. 4: '४',
  7521. 5: '५',
  7522. 6: '६',
  7523. 7: '७',
  7524. 8: '८',
  7525. 9: '९',
  7526. 0: '०',
  7527. },
  7528. numberMap$b = {
  7529. '१': '1',
  7530. '२': '2',
  7531. '३': '3',
  7532. '४': '4',
  7533. '५': '5',
  7534. '६': '6',
  7535. '७': '7',
  7536. '८': '8',
  7537. '९': '9',
  7538. '०': '0',
  7539. };
  7540. function relativeTimeMr(number, withoutSuffix, string, isFuture) {
  7541. var output = '';
  7542. if (withoutSuffix) {
  7543. switch (string) {
  7544. case 's':
  7545. output = 'काही सेकंद';
  7546. break;
  7547. case 'ss':
  7548. output = '%d सेकंद';
  7549. break;
  7550. case 'm':
  7551. output = 'एक मिनिट';
  7552. break;
  7553. case 'mm':
  7554. output = '%d मिनिटे';
  7555. break;
  7556. case 'h':
  7557. output = 'एक तास';
  7558. break;
  7559. case 'hh':
  7560. output = '%d तास';
  7561. break;
  7562. case 'd':
  7563. output = 'एक दिवस';
  7564. break;
  7565. case 'dd':
  7566. output = '%d दिवस';
  7567. break;
  7568. case 'M':
  7569. output = 'एक महिना';
  7570. break;
  7571. case 'MM':
  7572. output = '%d महिने';
  7573. break;
  7574. case 'y':
  7575. output = 'एक वर्ष';
  7576. break;
  7577. case 'yy':
  7578. output = '%d वर्षे';
  7579. break;
  7580. }
  7581. } else {
  7582. switch (string) {
  7583. case 's':
  7584. output = 'काही सेकंदां';
  7585. break;
  7586. case 'ss':
  7587. output = '%d सेकंदां';
  7588. break;
  7589. case 'm':
  7590. output = 'एका मिनिटा';
  7591. break;
  7592. case 'mm':
  7593. output = '%d मिनिटां';
  7594. break;
  7595. case 'h':
  7596. output = 'एका तासा';
  7597. break;
  7598. case 'hh':
  7599. output = '%d तासां';
  7600. break;
  7601. case 'd':
  7602. output = 'एका दिवसा';
  7603. break;
  7604. case 'dd':
  7605. output = '%d दिवसां';
  7606. break;
  7607. case 'M':
  7608. output = 'एका महिन्या';
  7609. break;
  7610. case 'MM':
  7611. output = '%d महिन्यां';
  7612. break;
  7613. case 'y':
  7614. output = 'एका वर्षा';
  7615. break;
  7616. case 'yy':
  7617. output = '%d वर्षां';
  7618. break;
  7619. }
  7620. }
  7621. return output.replace(/%d/i, number);
  7622. }
  7623. moment.defineLocale('mr', {
  7624. months: 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split(
  7625. '_'
  7626. ),
  7627. monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split(
  7628. '_'
  7629. ),
  7630. monthsParseExact: true,
  7631. weekdays: 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
  7632. weekdaysShort: 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'),
  7633. weekdaysMin: 'र_सो_मं_बु_गु_शु_श'.split('_'),
  7634. longDateFormat: {
  7635. LT: 'A h:mm वाजता',
  7636. LTS: 'A h:mm:ss वाजता',
  7637. L: 'DD/MM/YYYY',
  7638. LL: 'D MMMM YYYY',
  7639. LLL: 'D MMMM YYYY, A h:mm वाजता',
  7640. LLLL: 'dddd, D MMMM YYYY, A h:mm वाजता',
  7641. },
  7642. calendar: {
  7643. sameDay: '[आज] LT',
  7644. nextDay: '[उद्या] LT',
  7645. nextWeek: 'dddd, LT',
  7646. lastDay: '[काल] LT',
  7647. lastWeek: '[मागील] dddd, LT',
  7648. sameElse: 'L',
  7649. },
  7650. relativeTime: {
  7651. future: '%sमध्ये',
  7652. past: '%sपूर्वी',
  7653. s: relativeTimeMr,
  7654. ss: relativeTimeMr,
  7655. m: relativeTimeMr,
  7656. mm: relativeTimeMr,
  7657. h: relativeTimeMr,
  7658. hh: relativeTimeMr,
  7659. d: relativeTimeMr,
  7660. dd: relativeTimeMr,
  7661. M: relativeTimeMr,
  7662. MM: relativeTimeMr,
  7663. y: relativeTimeMr,
  7664. yy: relativeTimeMr,
  7665. },
  7666. preparse: function (string) {
  7667. return string.replace(/[१२३४५६७८९०]/g, function (match) {
  7668. return numberMap$b[match];
  7669. });
  7670. },
  7671. postformat: function (string) {
  7672. return string.replace(/\d/g, function (match) {
  7673. return symbolMap$c[match];
  7674. });
  7675. },
  7676. meridiemParse: /पहाटे|सकाळी|दुपारी|सायंकाळी|रात्री/,
  7677. meridiemHour: function (hour, meridiem) {
  7678. if (hour === 12) {
  7679. hour = 0;
  7680. }
  7681. if (meridiem === 'पहाटे' || meridiem === 'सकाळी') {
  7682. return hour;
  7683. } else if (
  7684. meridiem === 'दुपारी' ||
  7685. meridiem === 'सायंकाळी' ||
  7686. meridiem === 'रात्री'
  7687. ) {
  7688. return hour >= 12 ? hour : hour + 12;
  7689. }
  7690. },
  7691. meridiem: function (hour, minute, isLower) {
  7692. if (hour >= 0 && hour < 6) {
  7693. return 'पहाटे';
  7694. } else if (hour < 12) {
  7695. return 'सकाळी';
  7696. } else if (hour < 17) {
  7697. return 'दुपारी';
  7698. } else if (hour < 20) {
  7699. return 'सायंकाळी';
  7700. } else {
  7701. return 'रात्री';
  7702. }
  7703. },
  7704. week: {
  7705. dow: 0, // Sunday is the first day of the week.
  7706. doy: 6, // The week that contains Jan 6th is the first week of the year.
  7707. },
  7708. });
  7709. //! moment.js locale configuration
  7710. moment.defineLocale('ms-my', {
  7711. months: 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split(
  7712. '_'
  7713. ),
  7714. monthsShort: 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),
  7715. weekdays: 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
  7716. weekdaysShort: 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),
  7717. weekdaysMin: 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),
  7718. longDateFormat: {
  7719. LT: 'HH.mm',
  7720. LTS: 'HH.mm.ss',
  7721. L: 'DD/MM/YYYY',
  7722. LL: 'D MMMM YYYY',
  7723. LLL: 'D MMMM YYYY [pukul] HH.mm',
  7724. LLLL: 'dddd, D MMMM YYYY [pukul] HH.mm',
  7725. },
  7726. meridiemParse: /pagi|tengahari|petang|malam/,
  7727. meridiemHour: function (hour, meridiem) {
  7728. if (hour === 12) {
  7729. hour = 0;
  7730. }
  7731. if (meridiem === 'pagi') {
  7732. return hour;
  7733. } else if (meridiem === 'tengahari') {
  7734. return hour >= 11 ? hour : hour + 12;
  7735. } else if (meridiem === 'petang' || meridiem === 'malam') {
  7736. return hour + 12;
  7737. }
  7738. },
  7739. meridiem: function (hours, minutes, isLower) {
  7740. if (hours < 11) {
  7741. return 'pagi';
  7742. } else if (hours < 15) {
  7743. return 'tengahari';
  7744. } else if (hours < 19) {
  7745. return 'petang';
  7746. } else {
  7747. return 'malam';
  7748. }
  7749. },
  7750. calendar: {
  7751. sameDay: '[Hari ini pukul] LT',
  7752. nextDay: '[Esok pukul] LT',
  7753. nextWeek: 'dddd [pukul] LT',
  7754. lastDay: '[Kelmarin pukul] LT',
  7755. lastWeek: 'dddd [lepas pukul] LT',
  7756. sameElse: 'L',
  7757. },
  7758. relativeTime: {
  7759. future: 'dalam %s',
  7760. past: '%s yang lepas',
  7761. s: 'beberapa saat',
  7762. ss: '%d saat',
  7763. m: 'seminit',
  7764. mm: '%d minit',
  7765. h: 'sejam',
  7766. hh: '%d jam',
  7767. d: 'sehari',
  7768. dd: '%d hari',
  7769. M: 'sebulan',
  7770. MM: '%d bulan',
  7771. y: 'setahun',
  7772. yy: '%d tahun',
  7773. },
  7774. week: {
  7775. dow: 1, // Monday is the first day of the week.
  7776. doy: 7, // The week that contains Jan 7th is the first week of the year.
  7777. },
  7778. });
  7779. //! moment.js locale configuration
  7780. moment.defineLocale('ms', {
  7781. months: 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split(
  7782. '_'
  7783. ),
  7784. monthsShort: 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),
  7785. weekdays: 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
  7786. weekdaysShort: 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),
  7787. weekdaysMin: 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),
  7788. longDateFormat: {
  7789. LT: 'HH.mm',
  7790. LTS: 'HH.mm.ss',
  7791. L: 'DD/MM/YYYY',
  7792. LL: 'D MMMM YYYY',
  7793. LLL: 'D MMMM YYYY [pukul] HH.mm',
  7794. LLLL: 'dddd, D MMMM YYYY [pukul] HH.mm',
  7795. },
  7796. meridiemParse: /pagi|tengahari|petang|malam/,
  7797. meridiemHour: function (hour, meridiem) {
  7798. if (hour === 12) {
  7799. hour = 0;
  7800. }
  7801. if (meridiem === 'pagi') {
  7802. return hour;
  7803. } else if (meridiem === 'tengahari') {
  7804. return hour >= 11 ? hour : hour + 12;
  7805. } else if (meridiem === 'petang' || meridiem === 'malam') {
  7806. return hour + 12;
  7807. }
  7808. },
  7809. meridiem: function (hours, minutes, isLower) {
  7810. if (hours < 11) {
  7811. return 'pagi';
  7812. } else if (hours < 15) {
  7813. return 'tengahari';
  7814. } else if (hours < 19) {
  7815. return 'petang';
  7816. } else {
  7817. return 'malam';
  7818. }
  7819. },
  7820. calendar: {
  7821. sameDay: '[Hari ini pukul] LT',
  7822. nextDay: '[Esok pukul] LT',
  7823. nextWeek: 'dddd [pukul] LT',
  7824. lastDay: '[Kelmarin pukul] LT',
  7825. lastWeek: 'dddd [lepas pukul] LT',
  7826. sameElse: 'L',
  7827. },
  7828. relativeTime: {
  7829. future: 'dalam %s',
  7830. past: '%s yang lepas',
  7831. s: 'beberapa saat',
  7832. ss: '%d saat',
  7833. m: 'seminit',
  7834. mm: '%d minit',
  7835. h: 'sejam',
  7836. hh: '%d jam',
  7837. d: 'sehari',
  7838. dd: '%d hari',
  7839. M: 'sebulan',
  7840. MM: '%d bulan',
  7841. y: 'setahun',
  7842. yy: '%d tahun',
  7843. },
  7844. week: {
  7845. dow: 1, // Monday is the first day of the week.
  7846. doy: 7, // The week that contains Jan 7th is the first week of the year.
  7847. },
  7848. });
  7849. //! moment.js locale configuration
  7850. moment.defineLocale('mt', {
  7851. months: 'Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru'.split(
  7852. '_'
  7853. ),
  7854. monthsShort: 'Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ'.split('_'),
  7855. weekdays: 'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split(
  7856. '_'
  7857. ),
  7858. weekdaysShort: 'Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib'.split('_'),
  7859. weekdaysMin: 'Ħa_Tn_Tl_Er_Ħa_Ġi_Si'.split('_'),
  7860. longDateFormat: {
  7861. LT: 'HH:mm',
  7862. LTS: 'HH:mm:ss',
  7863. L: 'DD/MM/YYYY',
  7864. LL: 'D MMMM YYYY',
  7865. LLL: 'D MMMM YYYY HH:mm',
  7866. LLLL: 'dddd, D MMMM YYYY HH:mm',
  7867. },
  7868. calendar: {
  7869. sameDay: '[Illum fil-]LT',
  7870. nextDay: '[Għada fil-]LT',
  7871. nextWeek: 'dddd [fil-]LT',
  7872. lastDay: '[Il-bieraħ fil-]LT',
  7873. lastWeek: 'dddd [li għadda] [fil-]LT',
  7874. sameElse: 'L',
  7875. },
  7876. relativeTime: {
  7877. future: 'f’ %s',
  7878. past: '%s ilu',
  7879. s: 'ftit sekondi',
  7880. ss: '%d sekondi',
  7881. m: 'minuta',
  7882. mm: '%d minuti',
  7883. h: 'siegħa',
  7884. hh: '%d siegħat',
  7885. d: 'ġurnata',
  7886. dd: '%d ġranet',
  7887. M: 'xahar',
  7888. MM: '%d xhur',
  7889. y: 'sena',
  7890. yy: '%d sni',
  7891. },
  7892. dayOfMonthOrdinalParse: /\d{1,2}º/,
  7893. ordinal: '%dº',
  7894. week: {
  7895. dow: 1, // Monday is the first day of the week.
  7896. doy: 4, // The week that contains Jan 4th is the first week of the year.
  7897. },
  7898. });
  7899. //! moment.js locale configuration
  7900. var symbolMap$d = {
  7901. 1: '၁',
  7902. 2: '၂',
  7903. 3: '၃',
  7904. 4: '၄',
  7905. 5: '၅',
  7906. 6: '၆',
  7907. 7: '၇',
  7908. 8: '၈',
  7909. 9: '၉',
  7910. 0: '၀',
  7911. },
  7912. numberMap$c = {
  7913. '၁': '1',
  7914. '၂': '2',
  7915. '၃': '3',
  7916. '၄': '4',
  7917. '၅': '5',
  7918. '၆': '6',
  7919. '၇': '7',
  7920. '၈': '8',
  7921. '၉': '9',
  7922. '၀': '0',
  7923. };
  7924. moment.defineLocale('my', {
  7925. months: 'ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ'.split(
  7926. '_'
  7927. ),
  7928. monthsShort: 'ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ'.split('_'),
  7929. weekdays: 'တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ'.split(
  7930. '_'
  7931. ),
  7932. weekdaysShort: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),
  7933. weekdaysMin: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),
  7934. longDateFormat: {
  7935. LT: 'HH:mm',
  7936. LTS: 'HH:mm:ss',
  7937. L: 'DD/MM/YYYY',
  7938. LL: 'D MMMM YYYY',
  7939. LLL: 'D MMMM YYYY HH:mm',
  7940. LLLL: 'dddd D MMMM YYYY HH:mm',
  7941. },
  7942. calendar: {
  7943. sameDay: '[ယနေ.] LT [မှာ]',
  7944. nextDay: '[မနက်ဖြန်] LT [မှာ]',
  7945. nextWeek: 'dddd LT [မှာ]',
  7946. lastDay: '[မနေ.က] LT [မှာ]',
  7947. lastWeek: '[ပြီးခဲ့သော] dddd LT [မှာ]',
  7948. sameElse: 'L',
  7949. },
  7950. relativeTime: {
  7951. future: 'လာမည့် %s မှာ',
  7952. past: 'လွန်ခဲ့သော %s က',
  7953. s: 'စက္ကန်.အနည်းငယ်',
  7954. ss: '%d စက္ကန့်',
  7955. m: 'တစ်မိနစ်',
  7956. mm: '%d မိနစ်',
  7957. h: 'တစ်နာရီ',
  7958. hh: '%d နာရီ',
  7959. d: 'တစ်ရက်',
  7960. dd: '%d ရက်',
  7961. M: 'တစ်လ',
  7962. MM: '%d လ',
  7963. y: 'တစ်နှစ်',
  7964. yy: '%d နှစ်',
  7965. },
  7966. preparse: function (string) {
  7967. return string.replace(/[၁၂၃၄၅၆၇၈၉၀]/g, function (match) {
  7968. return numberMap$c[match];
  7969. });
  7970. },
  7971. postformat: function (string) {
  7972. return string.replace(/\d/g, function (match) {
  7973. return symbolMap$d[match];
  7974. });
  7975. },
  7976. week: {
  7977. dow: 1, // Monday is the first day of the week.
  7978. doy: 4, // The week that contains Jan 4th is the first week of the year.
  7979. },
  7980. });
  7981. //! moment.js locale configuration
  7982. moment.defineLocale('nb', {
  7983. months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
  7984. '_'
  7985. ),
  7986. monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split(
  7987. '_'
  7988. ),
  7989. monthsParseExact: true,
  7990. weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
  7991. weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),
  7992. weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),
  7993. weekdaysParseExact: true,
  7994. longDateFormat: {
  7995. LT: 'HH:mm',
  7996. LTS: 'HH:mm:ss',
  7997. L: 'DD.MM.YYYY',
  7998. LL: 'D. MMMM YYYY',
  7999. LLL: 'D. MMMM YYYY [kl.] HH:mm',
  8000. LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',
  8001. },
  8002. calendar: {
  8003. sameDay: '[i dag kl.] LT',
  8004. nextDay: '[i morgen kl.] LT',
  8005. nextWeek: 'dddd [kl.] LT',
  8006. lastDay: '[i går kl.] LT',
  8007. lastWeek: '[forrige] dddd [kl.] LT',
  8008. sameElse: 'L',
  8009. },
  8010. relativeTime: {
  8011. future: 'om %s',
  8012. past: '%s siden',
  8013. s: 'noen sekunder',
  8014. ss: '%d sekunder',
  8015. m: 'ett minutt',
  8016. mm: '%d minutter',
  8017. h: 'en time',
  8018. hh: '%d timer',
  8019. d: 'en dag',
  8020. dd: '%d dager',
  8021. w: 'en uke',
  8022. ww: '%d uker',
  8023. M: 'en måned',
  8024. MM: '%d måneder',
  8025. y: 'ett år',
  8026. yy: '%d år',
  8027. },
  8028. dayOfMonthOrdinalParse: /\d{1,2}\./,
  8029. ordinal: '%d.',
  8030. week: {
  8031. dow: 1, // Monday is the first day of the week.
  8032. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8033. },
  8034. });
  8035. //! moment.js locale configuration
  8036. var symbolMap$e = {
  8037. 1: '१',
  8038. 2: '२',
  8039. 3: '३',
  8040. 4: '४',
  8041. 5: '५',
  8042. 6: '६',
  8043. 7: '७',
  8044. 8: '८',
  8045. 9: '९',
  8046. 0: '०',
  8047. },
  8048. numberMap$d = {
  8049. '१': '1',
  8050. '२': '2',
  8051. '३': '3',
  8052. '४': '4',
  8053. '५': '5',
  8054. '६': '6',
  8055. '७': '7',
  8056. '८': '8',
  8057. '९': '9',
  8058. '०': '0',
  8059. };
  8060. moment.defineLocale('ne', {
  8061. months: 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split(
  8062. '_'
  8063. ),
  8064. monthsShort: 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split(
  8065. '_'
  8066. ),
  8067. monthsParseExact: true,
  8068. weekdays: 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split(
  8069. '_'
  8070. ),
  8071. weekdaysShort: 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'),
  8072. weekdaysMin: 'आ._सो._मं._बु._बि._शु._श.'.split('_'),
  8073. weekdaysParseExact: true,
  8074. longDateFormat: {
  8075. LT: 'Aको h:mm बजे',
  8076. LTS: 'Aको h:mm:ss बजे',
  8077. L: 'DD/MM/YYYY',
  8078. LL: 'D MMMM YYYY',
  8079. LLL: 'D MMMM YYYY, Aको h:mm बजे',
  8080. LLLL: 'dddd, D MMMM YYYY, Aको h:mm बजे',
  8081. },
  8082. preparse: function (string) {
  8083. return string.replace(/[१२३४५६७८९०]/g, function (match) {
  8084. return numberMap$d[match];
  8085. });
  8086. },
  8087. postformat: function (string) {
  8088. return string.replace(/\d/g, function (match) {
  8089. return symbolMap$e[match];
  8090. });
  8091. },
  8092. meridiemParse: /राति|बिहान|दिउँसो|साँझ/,
  8093. meridiemHour: function (hour, meridiem) {
  8094. if (hour === 12) {
  8095. hour = 0;
  8096. }
  8097. if (meridiem === 'राति') {
  8098. return hour < 4 ? hour : hour + 12;
  8099. } else if (meridiem === 'बिहान') {
  8100. return hour;
  8101. } else if (meridiem === 'दिउँसो') {
  8102. return hour >= 10 ? hour : hour + 12;
  8103. } else if (meridiem === 'साँझ') {
  8104. return hour + 12;
  8105. }
  8106. },
  8107. meridiem: function (hour, minute, isLower) {
  8108. if (hour < 3) {
  8109. return 'राति';
  8110. } else if (hour < 12) {
  8111. return 'बिहान';
  8112. } else if (hour < 16) {
  8113. return 'दिउँसो';
  8114. } else if (hour < 20) {
  8115. return 'साँझ';
  8116. } else {
  8117. return 'राति';
  8118. }
  8119. },
  8120. calendar: {
  8121. sameDay: '[आज] LT',
  8122. nextDay: '[भोलि] LT',
  8123. nextWeek: '[आउँदो] dddd[,] LT',
  8124. lastDay: '[हिजो] LT',
  8125. lastWeek: '[गएको] dddd[,] LT',
  8126. sameElse: 'L',
  8127. },
  8128. relativeTime: {
  8129. future: '%sमा',
  8130. past: '%s अगाडि',
  8131. s: 'केही क्षण',
  8132. ss: '%d सेकेण्ड',
  8133. m: 'एक मिनेट',
  8134. mm: '%d मिनेट',
  8135. h: 'एक घण्टा',
  8136. hh: '%d घण्टा',
  8137. d: 'एक दिन',
  8138. dd: '%d दिन',
  8139. M: 'एक महिना',
  8140. MM: '%d महिना',
  8141. y: 'एक बर्ष',
  8142. yy: '%d बर्ष',
  8143. },
  8144. week: {
  8145. dow: 0, // Sunday is the first day of the week.
  8146. doy: 6, // The week that contains Jan 6th is the first week of the year.
  8147. },
  8148. });
  8149. //! moment.js locale configuration
  8150. var monthsShortWithDots$1 = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split(
  8151. '_'
  8152. ),
  8153. monthsShortWithoutDots$1 = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split(
  8154. '_'
  8155. ),
  8156. monthsParse$7 = [
  8157. /^jan/i,
  8158. /^feb/i,
  8159. /^maart|mrt.?$/i,
  8160. /^apr/i,
  8161. /^mei$/i,
  8162. /^jun[i.]?$/i,
  8163. /^jul[i.]?$/i,
  8164. /^aug/i,
  8165. /^sep/i,
  8166. /^okt/i,
  8167. /^nov/i,
  8168. /^dec/i,
  8169. ],
  8170. monthsRegex$7 = /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
  8171. moment.defineLocale('nl-be', {
  8172. months: 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split(
  8173. '_'
  8174. ),
  8175. monthsShort: function (m, format) {
  8176. if (!m) {
  8177. return monthsShortWithDots$1;
  8178. } else if (/-MMM-/.test(format)) {
  8179. return monthsShortWithoutDots$1[m.month()];
  8180. } else {
  8181. return monthsShortWithDots$1[m.month()];
  8182. }
  8183. },
  8184. monthsRegex: monthsRegex$7,
  8185. monthsShortRegex: monthsRegex$7,
  8186. monthsStrictRegex: /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,
  8187. monthsShortStrictRegex: /^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
  8188. monthsParse: monthsParse$7,
  8189. longMonthsParse: monthsParse$7,
  8190. shortMonthsParse: monthsParse$7,
  8191. weekdays: 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split(
  8192. '_'
  8193. ),
  8194. weekdaysShort: 'zo._ma._di._wo._do._vr._za.'.split('_'),
  8195. weekdaysMin: 'zo_ma_di_wo_do_vr_za'.split('_'),
  8196. weekdaysParseExact: true,
  8197. longDateFormat: {
  8198. LT: 'HH:mm',
  8199. LTS: 'HH:mm:ss',
  8200. L: 'DD/MM/YYYY',
  8201. LL: 'D MMMM YYYY',
  8202. LLL: 'D MMMM YYYY HH:mm',
  8203. LLLL: 'dddd D MMMM YYYY HH:mm',
  8204. },
  8205. calendar: {
  8206. sameDay: '[vandaag om] LT',
  8207. nextDay: '[morgen om] LT',
  8208. nextWeek: 'dddd [om] LT',
  8209. lastDay: '[gisteren om] LT',
  8210. lastWeek: '[afgelopen] dddd [om] LT',
  8211. sameElse: 'L',
  8212. },
  8213. relativeTime: {
  8214. future: 'over %s',
  8215. past: '%s geleden',
  8216. s: 'een paar seconden',
  8217. ss: '%d seconden',
  8218. m: 'één minuut',
  8219. mm: '%d minuten',
  8220. h: 'één uur',
  8221. hh: '%d uur',
  8222. d: 'één dag',
  8223. dd: '%d dagen',
  8224. M: 'één maand',
  8225. MM: '%d maanden',
  8226. y: 'één jaar',
  8227. yy: '%d jaar',
  8228. },
  8229. dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
  8230. ordinal: function (number) {
  8231. return (
  8232. number +
  8233. (number === 1 || number === 8 || number >= 20 ? 'ste' : 'de')
  8234. );
  8235. },
  8236. week: {
  8237. dow: 1, // Monday is the first day of the week.
  8238. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8239. },
  8240. });
  8241. //! moment.js locale configuration
  8242. var monthsShortWithDots$2 = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split(
  8243. '_'
  8244. ),
  8245. monthsShortWithoutDots$2 = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split(
  8246. '_'
  8247. ),
  8248. monthsParse$8 = [
  8249. /^jan/i,
  8250. /^feb/i,
  8251. /^maart|mrt.?$/i,
  8252. /^apr/i,
  8253. /^mei$/i,
  8254. /^jun[i.]?$/i,
  8255. /^jul[i.]?$/i,
  8256. /^aug/i,
  8257. /^sep/i,
  8258. /^okt/i,
  8259. /^nov/i,
  8260. /^dec/i,
  8261. ],
  8262. monthsRegex$8 = /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
  8263. moment.defineLocale('nl', {
  8264. months: 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split(
  8265. '_'
  8266. ),
  8267. monthsShort: function (m, format) {
  8268. if (!m) {
  8269. return monthsShortWithDots$2;
  8270. } else if (/-MMM-/.test(format)) {
  8271. return monthsShortWithoutDots$2[m.month()];
  8272. } else {
  8273. return monthsShortWithDots$2[m.month()];
  8274. }
  8275. },
  8276. monthsRegex: monthsRegex$8,
  8277. monthsShortRegex: monthsRegex$8,
  8278. monthsStrictRegex: /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,
  8279. monthsShortStrictRegex: /^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
  8280. monthsParse: monthsParse$8,
  8281. longMonthsParse: monthsParse$8,
  8282. shortMonthsParse: monthsParse$8,
  8283. weekdays: 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split(
  8284. '_'
  8285. ),
  8286. weekdaysShort: 'zo._ma._di._wo._do._vr._za.'.split('_'),
  8287. weekdaysMin: 'zo_ma_di_wo_do_vr_za'.split('_'),
  8288. weekdaysParseExact: true,
  8289. longDateFormat: {
  8290. LT: 'HH:mm',
  8291. LTS: 'HH:mm:ss',
  8292. L: 'DD-MM-YYYY',
  8293. LL: 'D MMMM YYYY',
  8294. LLL: 'D MMMM YYYY HH:mm',
  8295. LLLL: 'dddd D MMMM YYYY HH:mm',
  8296. },
  8297. calendar: {
  8298. sameDay: '[vandaag om] LT',
  8299. nextDay: '[morgen om] LT',
  8300. nextWeek: 'dddd [om] LT',
  8301. lastDay: '[gisteren om] LT',
  8302. lastWeek: '[afgelopen] dddd [om] LT',
  8303. sameElse: 'L',
  8304. },
  8305. relativeTime: {
  8306. future: 'over %s',
  8307. past: '%s geleden',
  8308. s: 'een paar seconden',
  8309. ss: '%d seconden',
  8310. m: 'één minuut',
  8311. mm: '%d minuten',
  8312. h: 'één uur',
  8313. hh: '%d uur',
  8314. d: 'één dag',
  8315. dd: '%d dagen',
  8316. w: 'één week',
  8317. ww: '%d weken',
  8318. M: 'één maand',
  8319. MM: '%d maanden',
  8320. y: 'één jaar',
  8321. yy: '%d jaar',
  8322. },
  8323. dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
  8324. ordinal: function (number) {
  8325. return (
  8326. number +
  8327. (number === 1 || number === 8 || number >= 20 ? 'ste' : 'de')
  8328. );
  8329. },
  8330. week: {
  8331. dow: 1, // Monday is the first day of the week.
  8332. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8333. },
  8334. });
  8335. //! moment.js locale configuration
  8336. moment.defineLocale('nn', {
  8337. months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
  8338. '_'
  8339. ),
  8340. monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split(
  8341. '_'
  8342. ),
  8343. monthsParseExact: true,
  8344. weekdays: 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'),
  8345. weekdaysShort: 'su._må._ty._on._to._fr._lau.'.split('_'),
  8346. weekdaysMin: 'su_må_ty_on_to_fr_la'.split('_'),
  8347. weekdaysParseExact: true,
  8348. longDateFormat: {
  8349. LT: 'HH:mm',
  8350. LTS: 'HH:mm:ss',
  8351. L: 'DD.MM.YYYY',
  8352. LL: 'D. MMMM YYYY',
  8353. LLL: 'D. MMMM YYYY [kl.] H:mm',
  8354. LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',
  8355. },
  8356. calendar: {
  8357. sameDay: '[I dag klokka] LT',
  8358. nextDay: '[I morgon klokka] LT',
  8359. nextWeek: 'dddd [klokka] LT',
  8360. lastDay: '[I går klokka] LT',
  8361. lastWeek: '[Føregåande] dddd [klokka] LT',
  8362. sameElse: 'L',
  8363. },
  8364. relativeTime: {
  8365. future: 'om %s',
  8366. past: '%s sidan',
  8367. s: 'nokre sekund',
  8368. ss: '%d sekund',
  8369. m: 'eit minutt',
  8370. mm: '%d minutt',
  8371. h: 'ein time',
  8372. hh: '%d timar',
  8373. d: 'ein dag',
  8374. dd: '%d dagar',
  8375. w: 'ei veke',
  8376. ww: '%d veker',
  8377. M: 'ein månad',
  8378. MM: '%d månader',
  8379. y: 'eit år',
  8380. yy: '%d år',
  8381. },
  8382. dayOfMonthOrdinalParse: /\d{1,2}\./,
  8383. ordinal: '%d.',
  8384. week: {
  8385. dow: 1, // Monday is the first day of the week.
  8386. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8387. },
  8388. });
  8389. //! moment.js locale configuration
  8390. moment.defineLocale('oc-lnc', {
  8391. months: {
  8392. standalone: 'genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octòbre_novembre_decembre'.split(
  8393. '_'
  8394. ),
  8395. format: "de genièr_de febrièr_de març_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'octòbre_de novembre_de decembre".split(
  8396. '_'
  8397. ),
  8398. isFormat: /D[oD]?(\s)+MMMM/,
  8399. },
  8400. monthsShort: 'gen._febr._març_abr._mai_junh_julh._ago._set._oct._nov._dec.'.split(
  8401. '_'
  8402. ),
  8403. monthsParseExact: true,
  8404. weekdays: 'dimenge_diluns_dimars_dimècres_dijòus_divendres_dissabte'.split(
  8405. '_'
  8406. ),
  8407. weekdaysShort: 'dg._dl._dm._dc._dj._dv._ds.'.split('_'),
  8408. weekdaysMin: 'dg_dl_dm_dc_dj_dv_ds'.split('_'),
  8409. weekdaysParseExact: true,
  8410. longDateFormat: {
  8411. LT: 'H:mm',
  8412. LTS: 'H:mm:ss',
  8413. L: 'DD/MM/YYYY',
  8414. LL: 'D MMMM [de] YYYY',
  8415. ll: 'D MMM YYYY',
  8416. LLL: 'D MMMM [de] YYYY [a] H:mm',
  8417. lll: 'D MMM YYYY, H:mm',
  8418. LLLL: 'dddd D MMMM [de] YYYY [a] H:mm',
  8419. llll: 'ddd D MMM YYYY, H:mm',
  8420. },
  8421. calendar: {
  8422. sameDay: '[uèi a] LT',
  8423. nextDay: '[deman a] LT',
  8424. nextWeek: 'dddd [a] LT',
  8425. lastDay: '[ièr a] LT',
  8426. lastWeek: 'dddd [passat a] LT',
  8427. sameElse: 'L',
  8428. },
  8429. relativeTime: {
  8430. future: "d'aquí %s",
  8431. past: 'fa %s',
  8432. s: 'unas segondas',
  8433. ss: '%d segondas',
  8434. m: 'una minuta',
  8435. mm: '%d minutas',
  8436. h: 'una ora',
  8437. hh: '%d oras',
  8438. d: 'un jorn',
  8439. dd: '%d jorns',
  8440. M: 'un mes',
  8441. MM: '%d meses',
  8442. y: 'un an',
  8443. yy: '%d ans',
  8444. },
  8445. dayOfMonthOrdinalParse: /\d{1,2}(r|n|t|è|a)/,
  8446. ordinal: function (number, period) {
  8447. var output =
  8448. number === 1
  8449. ? 'r'
  8450. : number === 2
  8451. ? 'n'
  8452. : number === 3
  8453. ? 'r'
  8454. : number === 4
  8455. ? 't'
  8456. : 'è';
  8457. if (period === 'w' || period === 'W') {
  8458. output = 'a';
  8459. }
  8460. return number + output;
  8461. },
  8462. week: {
  8463. dow: 1, // Monday is the first day of the week.
  8464. doy: 4,
  8465. },
  8466. });
  8467. //! moment.js locale configuration
  8468. var symbolMap$f = {
  8469. 1: '੧',
  8470. 2: '੨',
  8471. 3: '੩',
  8472. 4: '੪',
  8473. 5: '੫',
  8474. 6: '੬',
  8475. 7: '੭',
  8476. 8: '੮',
  8477. 9: '੯',
  8478. 0: '੦',
  8479. },
  8480. numberMap$e = {
  8481. '੧': '1',
  8482. '੨': '2',
  8483. '੩': '3',
  8484. '੪': '4',
  8485. '੫': '5',
  8486. '੬': '6',
  8487. '੭': '7',
  8488. '੮': '8',
  8489. '੯': '9',
  8490. '੦': '0',
  8491. };
  8492. moment.defineLocale('pa-in', {
  8493. // There are months name as per Nanakshahi Calendar but they are not used as rigidly in modern Punjabi.
  8494. months: 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split(
  8495. '_'
  8496. ),
  8497. monthsShort: 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split(
  8498. '_'
  8499. ),
  8500. weekdays: 'ਐਤਵਾਰ_ਸੋਮਵਾਰ_ਮੰਗਲਵਾਰ_ਬੁਧਵਾਰ_ਵੀਰਵਾਰ_ਸ਼ੁੱਕਰਵਾਰ_ਸ਼ਨੀਚਰਵਾਰ'.split(
  8501. '_'
  8502. ),
  8503. weekdaysShort: 'ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ'.split('_'),
  8504. weekdaysMin: 'ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ'.split('_'),
  8505. longDateFormat: {
  8506. LT: 'A h:mm ਵਜੇ',
  8507. LTS: 'A h:mm:ss ਵਜੇ',
  8508. L: 'DD/MM/YYYY',
  8509. LL: 'D MMMM YYYY',
  8510. LLL: 'D MMMM YYYY, A h:mm ਵਜੇ',
  8511. LLLL: 'dddd, D MMMM YYYY, A h:mm ਵਜੇ',
  8512. },
  8513. calendar: {
  8514. sameDay: '[ਅਜ] LT',
  8515. nextDay: '[ਕਲ] LT',
  8516. nextWeek: '[ਅਗਲਾ] dddd, LT',
  8517. lastDay: '[ਕਲ] LT',
  8518. lastWeek: '[ਪਿਛਲੇ] dddd, LT',
  8519. sameElse: 'L',
  8520. },
  8521. relativeTime: {
  8522. future: '%s ਵਿੱਚ',
  8523. past: '%s ਪਿਛਲੇ',
  8524. s: 'ਕੁਝ ਸਕਿੰਟ',
  8525. ss: '%d ਸਕਿੰਟ',
  8526. m: 'ਇਕ ਮਿੰਟ',
  8527. mm: '%d ਮਿੰਟ',
  8528. h: 'ਇੱਕ ਘੰਟਾ',
  8529. hh: '%d ਘੰਟੇ',
  8530. d: 'ਇੱਕ ਦਿਨ',
  8531. dd: '%d ਦਿਨ',
  8532. M: 'ਇੱਕ ਮਹੀਨਾ',
  8533. MM: '%d ਮਹੀਨੇ',
  8534. y: 'ਇੱਕ ਸਾਲ',
  8535. yy: '%d ਸਾਲ',
  8536. },
  8537. preparse: function (string) {
  8538. return string.replace(/[੧੨੩੪੫੬੭੮੯੦]/g, function (match) {
  8539. return numberMap$e[match];
  8540. });
  8541. },
  8542. postformat: function (string) {
  8543. return string.replace(/\d/g, function (match) {
  8544. return symbolMap$f[match];
  8545. });
  8546. },
  8547. // Punjabi notation for meridiems are quite fuzzy in practice. While there exists
  8548. // a rigid notion of a 'Pahar' it is not used as rigidly in modern Punjabi.
  8549. meridiemParse: /ਰਾਤ|ਸਵੇਰ|ਦੁਪਹਿਰ|ਸ਼ਾਮ/,
  8550. meridiemHour: function (hour, meridiem) {
  8551. if (hour === 12) {
  8552. hour = 0;
  8553. }
  8554. if (meridiem === 'ਰਾਤ') {
  8555. return hour < 4 ? hour : hour + 12;
  8556. } else if (meridiem === 'ਸਵੇਰ') {
  8557. return hour;
  8558. } else if (meridiem === 'ਦੁਪਹਿਰ') {
  8559. return hour >= 10 ? hour : hour + 12;
  8560. } else if (meridiem === 'ਸ਼ਾਮ') {
  8561. return hour + 12;
  8562. }
  8563. },
  8564. meridiem: function (hour, minute, isLower) {
  8565. if (hour < 4) {
  8566. return 'ਰਾਤ';
  8567. } else if (hour < 10) {
  8568. return 'ਸਵੇਰ';
  8569. } else if (hour < 17) {
  8570. return 'ਦੁਪਹਿਰ';
  8571. } else if (hour < 20) {
  8572. return 'ਸ਼ਾਮ';
  8573. } else {
  8574. return 'ਰਾਤ';
  8575. }
  8576. },
  8577. week: {
  8578. dow: 0, // Sunday is the first day of the week.
  8579. doy: 6, // The week that contains Jan 6th is the first week of the year.
  8580. },
  8581. });
  8582. //! moment.js locale configuration
  8583. var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split(
  8584. '_'
  8585. ),
  8586. monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split(
  8587. '_'
  8588. ),
  8589. monthsParse$9 = [
  8590. /^sty/i,
  8591. /^lut/i,
  8592. /^mar/i,
  8593. /^kwi/i,
  8594. /^maj/i,
  8595. /^cze/i,
  8596. /^lip/i,
  8597. /^sie/i,
  8598. /^wrz/i,
  8599. /^paź/i,
  8600. /^lis/i,
  8601. /^gru/i,
  8602. ];
  8603. function plural$3(n) {
  8604. return n % 10 < 5 && n % 10 > 1 && ~~(n / 10) % 10 !== 1;
  8605. }
  8606. function translate$8(number, withoutSuffix, key) {
  8607. var result = number + ' ';
  8608. switch (key) {
  8609. case 'ss':
  8610. return result + (plural$3(number) ? 'sekundy' : 'sekund');
  8611. case 'm':
  8612. return withoutSuffix ? 'minuta' : 'minutę';
  8613. case 'mm':
  8614. return result + (plural$3(number) ? 'minuty' : 'minut');
  8615. case 'h':
  8616. return withoutSuffix ? 'godzina' : 'godzinę';
  8617. case 'hh':
  8618. return result + (plural$3(number) ? 'godziny' : 'godzin');
  8619. case 'ww':
  8620. return result + (plural$3(number) ? 'tygodnie' : 'tygodni');
  8621. case 'MM':
  8622. return result + (plural$3(number) ? 'miesiące' : 'miesięcy');
  8623. case 'yy':
  8624. return result + (plural$3(number) ? 'lata' : 'lat');
  8625. }
  8626. }
  8627. moment.defineLocale('pl', {
  8628. months: function (momentToFormat, format) {
  8629. if (!momentToFormat) {
  8630. return monthsNominative;
  8631. } else if (/D MMMM/.test(format)) {
  8632. return monthsSubjective[momentToFormat.month()];
  8633. } else {
  8634. return monthsNominative[momentToFormat.month()];
  8635. }
  8636. },
  8637. monthsShort: 'sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru'.split('_'),
  8638. monthsParse: monthsParse$9,
  8639. longMonthsParse: monthsParse$9,
  8640. shortMonthsParse: monthsParse$9,
  8641. weekdays: 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split(
  8642. '_'
  8643. ),
  8644. weekdaysShort: 'ndz_pon_wt_śr_czw_pt_sob'.split('_'),
  8645. weekdaysMin: 'Nd_Pn_Wt_Śr_Cz_Pt_So'.split('_'),
  8646. longDateFormat: {
  8647. LT: 'HH:mm',
  8648. LTS: 'HH:mm:ss',
  8649. L: 'DD.MM.YYYY',
  8650. LL: 'D MMMM YYYY',
  8651. LLL: 'D MMMM YYYY HH:mm',
  8652. LLLL: 'dddd, D MMMM YYYY HH:mm',
  8653. },
  8654. calendar: {
  8655. sameDay: '[Dziś o] LT',
  8656. nextDay: '[Jutro o] LT',
  8657. nextWeek: function () {
  8658. switch (this.day()) {
  8659. case 0:
  8660. return '[W niedzielę o] LT';
  8661. case 2:
  8662. return '[We wtorek o] LT';
  8663. case 3:
  8664. return '[W środę o] LT';
  8665. case 6:
  8666. return '[W sobotę o] LT';
  8667. default:
  8668. return '[W] dddd [o] LT';
  8669. }
  8670. },
  8671. lastDay: '[Wczoraj o] LT',
  8672. lastWeek: function () {
  8673. switch (this.day()) {
  8674. case 0:
  8675. return '[W zeszłą niedzielę o] LT';
  8676. case 3:
  8677. return '[W zeszłą środę o] LT';
  8678. case 6:
  8679. return '[W zeszłą sobotę o] LT';
  8680. default:
  8681. return '[W zeszły] dddd [o] LT';
  8682. }
  8683. },
  8684. sameElse: 'L',
  8685. },
  8686. relativeTime: {
  8687. future: 'za %s',
  8688. past: '%s temu',
  8689. s: 'kilka sekund',
  8690. ss: translate$8,
  8691. m: translate$8,
  8692. mm: translate$8,
  8693. h: translate$8,
  8694. hh: translate$8,
  8695. d: '1 dzień',
  8696. dd: '%d dni',
  8697. w: 'tydzień',
  8698. ww: translate$8,
  8699. M: 'miesiąc',
  8700. MM: translate$8,
  8701. y: 'rok',
  8702. yy: translate$8,
  8703. },
  8704. dayOfMonthOrdinalParse: /\d{1,2}\./,
  8705. ordinal: '%d.',
  8706. week: {
  8707. dow: 1, // Monday is the first day of the week.
  8708. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8709. },
  8710. });
  8711. //! moment.js locale configuration
  8712. moment.defineLocale('pt-br', {
  8713. months: 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split(
  8714. '_'
  8715. ),
  8716. monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
  8717. weekdays: 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split(
  8718. '_'
  8719. ),
  8720. weekdaysShort: 'dom_seg_ter_qua_qui_sex_sáb'.split('_'),
  8721. weekdaysMin: 'do_2ª_3ª_4ª_5ª_6ª_sá'.split('_'),
  8722. weekdaysParseExact: true,
  8723. longDateFormat: {
  8724. LT: 'HH:mm',
  8725. LTS: 'HH:mm:ss',
  8726. L: 'DD/MM/YYYY',
  8727. LL: 'D [de] MMMM [de] YYYY',
  8728. LLL: 'D [de] MMMM [de] YYYY [às] HH:mm',
  8729. LLLL: 'dddd, D [de] MMMM [de] YYYY [às] HH:mm',
  8730. },
  8731. calendar: {
  8732. sameDay: '[Hoje às] LT',
  8733. nextDay: '[Amanhã às] LT',
  8734. nextWeek: 'dddd [às] LT',
  8735. lastDay: '[Ontem às] LT',
  8736. lastWeek: function () {
  8737. return this.day() === 0 || this.day() === 6
  8738. ? '[Último] dddd [às] LT' // Saturday + Sunday
  8739. : '[Última] dddd [às] LT'; // Monday - Friday
  8740. },
  8741. sameElse: 'L',
  8742. },
  8743. relativeTime: {
  8744. future: 'em %s',
  8745. past: 'há %s',
  8746. s: 'poucos segundos',
  8747. ss: '%d segundos',
  8748. m: 'um minuto',
  8749. mm: '%d minutos',
  8750. h: 'uma hora',
  8751. hh: '%d horas',
  8752. d: 'um dia',
  8753. dd: '%d dias',
  8754. M: 'um mês',
  8755. MM: '%d meses',
  8756. y: 'um ano',
  8757. yy: '%d anos',
  8758. },
  8759. dayOfMonthOrdinalParse: /\d{1,2}º/,
  8760. ordinal: '%dº',
  8761. invalidDate: 'Data inválida',
  8762. });
  8763. //! moment.js locale configuration
  8764. moment.defineLocale('pt', {
  8765. months: 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split(
  8766. '_'
  8767. ),
  8768. monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
  8769. weekdays: 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split(
  8770. '_'
  8771. ),
  8772. weekdaysShort: 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
  8773. weekdaysMin: 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),
  8774. weekdaysParseExact: true,
  8775. longDateFormat: {
  8776. LT: 'HH:mm',
  8777. LTS: 'HH:mm:ss',
  8778. L: 'DD/MM/YYYY',
  8779. LL: 'D [de] MMMM [de] YYYY',
  8780. LLL: 'D [de] MMMM [de] YYYY HH:mm',
  8781. LLLL: 'dddd, D [de] MMMM [de] YYYY HH:mm',
  8782. },
  8783. calendar: {
  8784. sameDay: '[Hoje às] LT',
  8785. nextDay: '[Amanhã às] LT',
  8786. nextWeek: 'dddd [às] LT',
  8787. lastDay: '[Ontem às] LT',
  8788. lastWeek: function () {
  8789. return this.day() === 0 || this.day() === 6
  8790. ? '[Último] dddd [às] LT' // Saturday + Sunday
  8791. : '[Última] dddd [às] LT'; // Monday - Friday
  8792. },
  8793. sameElse: 'L',
  8794. },
  8795. relativeTime: {
  8796. future: 'em %s',
  8797. past: 'há %s',
  8798. s: 'segundos',
  8799. ss: '%d segundos',
  8800. m: 'um minuto',
  8801. mm: '%d minutos',
  8802. h: 'uma hora',
  8803. hh: '%d horas',
  8804. d: 'um dia',
  8805. dd: '%d dias',
  8806. w: 'uma semana',
  8807. ww: '%d semanas',
  8808. M: 'um mês',
  8809. MM: '%d meses',
  8810. y: 'um ano',
  8811. yy: '%d anos',
  8812. },
  8813. dayOfMonthOrdinalParse: /\d{1,2}º/,
  8814. ordinal: '%dº',
  8815. week: {
  8816. dow: 1, // Monday is the first day of the week.
  8817. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8818. },
  8819. });
  8820. //! moment.js locale configuration
  8821. function relativeTimeWithPlural$2(number, withoutSuffix, key) {
  8822. var format = {
  8823. ss: 'secunde',
  8824. mm: 'minute',
  8825. hh: 'ore',
  8826. dd: 'zile',
  8827. ww: 'săptămâni',
  8828. MM: 'luni',
  8829. yy: 'ani',
  8830. },
  8831. separator = ' ';
  8832. if (number % 100 >= 20 || (number >= 100 && number % 100 === 0)) {
  8833. separator = ' de ';
  8834. }
  8835. return number + separator + format[key];
  8836. }
  8837. moment.defineLocale('ro', {
  8838. months: 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split(
  8839. '_'
  8840. ),
  8841. monthsShort: 'ian._feb._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split(
  8842. '_'
  8843. ),
  8844. monthsParseExact: true,
  8845. weekdays: 'duminică_luni_marți_miercuri_joi_vineri_sâmbătă'.split('_'),
  8846. weekdaysShort: 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'),
  8847. weekdaysMin: 'Du_Lu_Ma_Mi_Jo_Vi_Sâ'.split('_'),
  8848. longDateFormat: {
  8849. LT: 'H:mm',
  8850. LTS: 'H:mm:ss',
  8851. L: 'DD.MM.YYYY',
  8852. LL: 'D MMMM YYYY',
  8853. LLL: 'D MMMM YYYY H:mm',
  8854. LLLL: 'dddd, D MMMM YYYY H:mm',
  8855. },
  8856. calendar: {
  8857. sameDay: '[azi la] LT',
  8858. nextDay: '[mâine la] LT',
  8859. nextWeek: 'dddd [la] LT',
  8860. lastDay: '[ieri la] LT',
  8861. lastWeek: '[fosta] dddd [la] LT',
  8862. sameElse: 'L',
  8863. },
  8864. relativeTime: {
  8865. future: 'peste %s',
  8866. past: '%s în urmă',
  8867. s: 'câteva secunde',
  8868. ss: relativeTimeWithPlural$2,
  8869. m: 'un minut',
  8870. mm: relativeTimeWithPlural$2,
  8871. h: 'o oră',
  8872. hh: relativeTimeWithPlural$2,
  8873. d: 'o zi',
  8874. dd: relativeTimeWithPlural$2,
  8875. w: 'o săptămână',
  8876. ww: relativeTimeWithPlural$2,
  8877. M: 'o lună',
  8878. MM: relativeTimeWithPlural$2,
  8879. y: 'un an',
  8880. yy: relativeTimeWithPlural$2,
  8881. },
  8882. week: {
  8883. dow: 1, // Monday is the first day of the week.
  8884. doy: 7, // The week that contains Jan 7th is the first week of the year.
  8885. },
  8886. });
  8887. //! moment.js locale configuration
  8888. function plural$4(word, num) {
  8889. var forms = word.split('_');
  8890. return num % 10 === 1 && num % 100 !== 11
  8891. ? forms[0]
  8892. : num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)
  8893. ? forms[1]
  8894. : forms[2];
  8895. }
  8896. function relativeTimeWithPlural$3(number, withoutSuffix, key) {
  8897. var format = {
  8898. ss: withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',
  8899. mm: withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',
  8900. hh: 'час_часа_часов',
  8901. dd: 'день_дня_дней',
  8902. ww: 'неделя_недели_недель',
  8903. MM: 'месяц_месяца_месяцев',
  8904. yy: 'год_года_лет',
  8905. };
  8906. if (key === 'm') {
  8907. return withoutSuffix ? 'минута' : 'минуту';
  8908. } else {
  8909. return number + ' ' + plural$4(format[key], +number);
  8910. }
  8911. }
  8912. var monthsParse$a = [
  8913. /^янв/i,
  8914. /^фев/i,
  8915. /^мар/i,
  8916. /^апр/i,
  8917. /^ма[йя]/i,
  8918. /^июн/i,
  8919. /^июл/i,
  8920. /^авг/i,
  8921. /^сен/i,
  8922. /^окт/i,
  8923. /^ноя/i,
  8924. /^дек/i,
  8925. ];
  8926. // http://new.gramota.ru/spravka/rules/139-prop : § 103
  8927. // Сокращения месяцев: http://new.gramota.ru/spravka/buro/search-answer?s=242637
  8928. // CLDR data: http://www.unicode.org/cldr/charts/28/summary/ru.html#1753
  8929. moment.defineLocale('ru', {
  8930. months: {
  8931. format: 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split(
  8932. '_'
  8933. ),
  8934. standalone: 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split(
  8935. '_'
  8936. ),
  8937. },
  8938. monthsShort: {
  8939. // по CLDR именно "июл." и "июн.", но какой смысл менять букву на точку?
  8940. format: 'янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.'.split(
  8941. '_'
  8942. ),
  8943. standalone: 'янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.'.split(
  8944. '_'
  8945. ),
  8946. },
  8947. weekdays: {
  8948. standalone: 'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split(
  8949. '_'
  8950. ),
  8951. format: 'воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу'.split(
  8952. '_'
  8953. ),
  8954. isFormat: /\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?] ?dddd/,
  8955. },
  8956. weekdaysShort: 'вс_пн_вт_ср_чт_пт_сб'.split('_'),
  8957. weekdaysMin: 'вс_пн_вт_ср_чт_пт_сб'.split('_'),
  8958. monthsParse: monthsParse$a,
  8959. longMonthsParse: monthsParse$a,
  8960. shortMonthsParse: monthsParse$a,
  8961. // полные названия с падежами, по три буквы, для некоторых, по 4 буквы, сокращения с точкой и без точки
  8962. monthsRegex: /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
  8963. // копия предыдущего
  8964. monthsShortRegex: /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
  8965. // полные названия с падежами
  8966. monthsStrictRegex: /^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,
  8967. // Выражение, которое соответствует только сокращённым формам
  8968. monthsShortStrictRegex: /^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,
  8969. longDateFormat: {
  8970. LT: 'H:mm',
  8971. LTS: 'H:mm:ss',
  8972. L: 'DD.MM.YYYY',
  8973. LL: 'D MMMM YYYY г.',
  8974. LLL: 'D MMMM YYYY г., H:mm',
  8975. LLLL: 'dddd, D MMMM YYYY г., H:mm',
  8976. },
  8977. calendar: {
  8978. sameDay: '[Сегодня, в] LT',
  8979. nextDay: '[Завтра, в] LT',
  8980. lastDay: '[Вчера, в] LT',
  8981. nextWeek: function (now) {
  8982. if (now.week() !== this.week()) {
  8983. switch (this.day()) {
  8984. case 0:
  8985. return '[В следующее] dddd, [в] LT';
  8986. case 1:
  8987. case 2:
  8988. case 4:
  8989. return '[В следующий] dddd, [в] LT';
  8990. case 3:
  8991. case 5:
  8992. case 6:
  8993. return '[В следующую] dddd, [в] LT';
  8994. }
  8995. } else {
  8996. if (this.day() === 2) {
  8997. return '[Во] dddd, [в] LT';
  8998. } else {
  8999. return '[В] dddd, [в] LT';
  9000. }
  9001. }
  9002. },
  9003. lastWeek: function (now) {
  9004. if (now.week() !== this.week()) {
  9005. switch (this.day()) {
  9006. case 0:
  9007. return '[В прошлое] dddd, [в] LT';
  9008. case 1:
  9009. case 2:
  9010. case 4:
  9011. return '[В прошлый] dddd, [в] LT';
  9012. case 3:
  9013. case 5:
  9014. case 6:
  9015. return '[В прошлую] dddd, [в] LT';
  9016. }
  9017. } else {
  9018. if (this.day() === 2) {
  9019. return '[Во] dddd, [в] LT';
  9020. } else {
  9021. return '[В] dddd, [в] LT';
  9022. }
  9023. }
  9024. },
  9025. sameElse: 'L',
  9026. },
  9027. relativeTime: {
  9028. future: 'через %s',
  9029. past: '%s назад',
  9030. s: 'несколько секунд',
  9031. ss: relativeTimeWithPlural$3,
  9032. m: relativeTimeWithPlural$3,
  9033. mm: relativeTimeWithPlural$3,
  9034. h: 'час',
  9035. hh: relativeTimeWithPlural$3,
  9036. d: 'день',
  9037. dd: relativeTimeWithPlural$3,
  9038. w: 'неделя',
  9039. ww: relativeTimeWithPlural$3,
  9040. M: 'месяц',
  9041. MM: relativeTimeWithPlural$3,
  9042. y: 'год',
  9043. yy: relativeTimeWithPlural$3,
  9044. },
  9045. meridiemParse: /ночи|утра|дня|вечера/i,
  9046. isPM: function (input) {
  9047. return /^(дня|вечера)$/.test(input);
  9048. },
  9049. meridiem: function (hour, minute, isLower) {
  9050. if (hour < 4) {
  9051. return 'ночи';
  9052. } else if (hour < 12) {
  9053. return 'утра';
  9054. } else if (hour < 17) {
  9055. return 'дня';
  9056. } else {
  9057. return 'вечера';
  9058. }
  9059. },
  9060. dayOfMonthOrdinalParse: /\d{1,2}-(й|го|я)/,
  9061. ordinal: function (number, period) {
  9062. switch (period) {
  9063. case 'M':
  9064. case 'd':
  9065. case 'DDD':
  9066. return number + '-й';
  9067. case 'D':
  9068. return number + '-го';
  9069. case 'w':
  9070. case 'W':
  9071. return number + '-я';
  9072. default:
  9073. return number;
  9074. }
  9075. },
  9076. week: {
  9077. dow: 1, // Monday is the first day of the week.
  9078. doy: 4, // The week that contains Jan 4th is the first week of the year.
  9079. },
  9080. });
  9081. //! moment.js locale configuration
  9082. var months$8 = [
  9083. 'جنوري',
  9084. 'فيبروري',
  9085. 'مارچ',
  9086. 'اپريل',
  9087. 'مئي',
  9088. 'جون',
  9089. 'جولاءِ',
  9090. 'آگسٽ',
  9091. 'سيپٽمبر',
  9092. 'آڪٽوبر',
  9093. 'نومبر',
  9094. 'ڊسمبر',
  9095. ],
  9096. days = ['آچر', 'سومر', 'اڱارو', 'اربع', 'خميس', 'جمع', 'ڇنڇر'];
  9097. moment.defineLocale('sd', {
  9098. months: months$8,
  9099. monthsShort: months$8,
  9100. weekdays: days,
  9101. weekdaysShort: days,
  9102. weekdaysMin: days,
  9103. longDateFormat: {
  9104. LT: 'HH:mm',
  9105. LTS: 'HH:mm:ss',
  9106. L: 'DD/MM/YYYY',
  9107. LL: 'D MMMM YYYY',
  9108. LLL: 'D MMMM YYYY HH:mm',
  9109. LLLL: 'dddd، D MMMM YYYY HH:mm',
  9110. },
  9111. meridiemParse: /صبح|شام/,
  9112. isPM: function (input) {
  9113. return 'شام' === input;
  9114. },
  9115. meridiem: function (hour, minute, isLower) {
  9116. if (hour < 12) {
  9117. return 'صبح';
  9118. }
  9119. return 'شام';
  9120. },
  9121. calendar: {
  9122. sameDay: '[اڄ] LT',
  9123. nextDay: '[سڀاڻي] LT',
  9124. nextWeek: 'dddd [اڳين هفتي تي] LT',
  9125. lastDay: '[ڪالهه] LT',
  9126. lastWeek: '[گزريل هفتي] dddd [تي] LT',
  9127. sameElse: 'L',
  9128. },
  9129. relativeTime: {
  9130. future: '%s پوء',
  9131. past: '%s اڳ',
  9132. s: 'چند سيڪنڊ',
  9133. ss: '%d سيڪنڊ',
  9134. m: 'هڪ منٽ',
  9135. mm: '%d منٽ',
  9136. h: 'هڪ ڪلاڪ',
  9137. hh: '%d ڪلاڪ',
  9138. d: 'هڪ ڏينهن',
  9139. dd: '%d ڏينهن',
  9140. M: 'هڪ مهينو',
  9141. MM: '%d مهينا',
  9142. y: 'هڪ سال',
  9143. yy: '%d سال',
  9144. },
  9145. preparse: function (string) {
  9146. return string.replace(/،/g, ',');
  9147. },
  9148. postformat: function (string) {
  9149. return string.replace(/,/g, '،');
  9150. },
  9151. week: {
  9152. dow: 1, // Monday is the first day of the week.
  9153. doy: 4, // The week that contains Jan 4th is the first week of the year.
  9154. },
  9155. });
  9156. //! moment.js locale configuration
  9157. moment.defineLocale('se', {
  9158. months: 'ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu'.split(
  9159. '_'
  9160. ),
  9161. monthsShort: 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split(
  9162. '_'
  9163. ),
  9164. weekdays: 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split(
  9165. '_'
  9166. ),
  9167. weekdaysShort: 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'),
  9168. weekdaysMin: 's_v_m_g_d_b_L'.split('_'),
  9169. longDateFormat: {
  9170. LT: 'HH:mm',
  9171. LTS: 'HH:mm:ss',
  9172. L: 'DD.MM.YYYY',
  9173. LL: 'MMMM D. [b.] YYYY',
  9174. LLL: 'MMMM D. [b.] YYYY [ti.] HH:mm',
  9175. LLLL: 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm',
  9176. },
  9177. calendar: {
  9178. sameDay: '[otne ti] LT',
  9179. nextDay: '[ihttin ti] LT',
  9180. nextWeek: 'dddd [ti] LT',
  9181. lastDay: '[ikte ti] LT',
  9182. lastWeek: '[ovddit] dddd [ti] LT',
  9183. sameElse: 'L',
  9184. },
  9185. relativeTime: {
  9186. future: '%s geažes',
  9187. past: 'maŋit %s',
  9188. s: 'moadde sekunddat',
  9189. ss: '%d sekunddat',
  9190. m: 'okta minuhta',
  9191. mm: '%d minuhtat',
  9192. h: 'okta diimmu',
  9193. hh: '%d diimmut',
  9194. d: 'okta beaivi',
  9195. dd: '%d beaivvit',
  9196. M: 'okta mánnu',
  9197. MM: '%d mánut',
  9198. y: 'okta jahki',
  9199. yy: '%d jagit',
  9200. },
  9201. dayOfMonthOrdinalParse: /\d{1,2}\./,
  9202. ordinal: '%d.',
  9203. week: {
  9204. dow: 1, // Monday is the first day of the week.
  9205. doy: 4, // The week that contains Jan 4th is the first week of the year.
  9206. },
  9207. });
  9208. //! moment.js locale configuration
  9209. /*jshint -W100*/
  9210. moment.defineLocale('si', {
  9211. months: 'ජනවාරි_පෙබරවාරි_මාර්තු_අප්‍රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්බර්_දෙසැම්බර්'.split(
  9212. '_'
  9213. ),
  9214. monthsShort: 'ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ'.split(
  9215. '_'
  9216. ),
  9217. weekdays: 'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්‍රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split(
  9218. '_'
  9219. ),
  9220. weekdaysShort: 'ඉරි_සඳු_අඟ_බදා_බ්‍රහ_සිකු_සෙන'.split('_'),
  9221. weekdaysMin: 'ඉ_ස_අ_බ_බ්‍ර_සි_සෙ'.split('_'),
  9222. weekdaysParseExact: true,
  9223. longDateFormat: {
  9224. LT: 'a h:mm',
  9225. LTS: 'a h:mm:ss',
  9226. L: 'YYYY/MM/DD',
  9227. LL: 'YYYY MMMM D',
  9228. LLL: 'YYYY MMMM D, a h:mm',
  9229. LLLL: 'YYYY MMMM D [වැනි] dddd, a h:mm:ss',
  9230. },
  9231. calendar: {
  9232. sameDay: '[අද] LT[ට]',
  9233. nextDay: '[හෙට] LT[ට]',
  9234. nextWeek: 'dddd LT[ට]',
  9235. lastDay: '[ඊයේ] LT[ට]',
  9236. lastWeek: '[පසුගිය] dddd LT[ට]',
  9237. sameElse: 'L',
  9238. },
  9239. relativeTime: {
  9240. future: '%sකින්',
  9241. past: '%sකට පෙර',
  9242. s: 'තත්පර කිහිපය',
  9243. ss: 'තත්පර %d',
  9244. m: 'මිනිත්තුව',
  9245. mm: 'මිනිත්තු %d',
  9246. h: 'පැය',
  9247. hh: 'පැය %d',
  9248. d: 'දිනය',
  9249. dd: 'දින %d',
  9250. M: 'මාසය',
  9251. MM: 'මාස %d',
  9252. y: 'වසර',
  9253. yy: 'වසර %d',
  9254. },
  9255. dayOfMonthOrdinalParse: /\d{1,2} වැනි/,
  9256. ordinal: function (number) {
  9257. return number + ' වැනි';
  9258. },
  9259. meridiemParse: /පෙර වරු|පස් වරු|පෙ.ව|ප.ව./,
  9260. isPM: function (input) {
  9261. return input === 'ප.ව.' || input === 'පස් වරු';
  9262. },
  9263. meridiem: function (hours, minutes, isLower) {
  9264. if (hours > 11) {
  9265. return isLower ? 'ප.ව.' : 'පස් වරු';
  9266. } else {
  9267. return isLower ? 'පෙ.ව.' : 'පෙර වරු';
  9268. }
  9269. },
  9270. });
  9271. //! moment.js locale configuration
  9272. var months$9 = 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split(
  9273. '_'
  9274. ),
  9275. monthsShort$7 = 'jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec'.split('_');
  9276. function plural$5(n) {
  9277. return n > 1 && n < 5;
  9278. }
  9279. function translate$9(number, withoutSuffix, key, isFuture) {
  9280. var result = number + ' ';
  9281. switch (key) {
  9282. case 's': // a few seconds / in a few seconds / a few seconds ago
  9283. return withoutSuffix || isFuture ? 'pár sekúnd' : 'pár sekundami';
  9284. case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago
  9285. if (withoutSuffix || isFuture) {
  9286. return result + (plural$5(number) ? 'sekundy' : 'sekúnd');
  9287. } else {
  9288. return result + 'sekundami';
  9289. }
  9290. case 'm': // a minute / in a minute / a minute ago
  9291. return withoutSuffix ? 'minúta' : isFuture ? 'minútu' : 'minútou';
  9292. case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
  9293. if (withoutSuffix || isFuture) {
  9294. return result + (plural$5(number) ? 'minúty' : 'minút');
  9295. } else {
  9296. return result + 'minútami';
  9297. }
  9298. case 'h': // an hour / in an hour / an hour ago
  9299. return withoutSuffix ? 'hodina' : isFuture ? 'hodinu' : 'hodinou';
  9300. case 'hh': // 9 hours / in 9 hours / 9 hours ago
  9301. if (withoutSuffix || isFuture) {
  9302. return result + (plural$5(number) ? 'hodiny' : 'hodín');
  9303. } else {
  9304. return result + 'hodinami';
  9305. }
  9306. case 'd': // a day / in a day / a day ago
  9307. return withoutSuffix || isFuture ? 'deň' : 'dňom';
  9308. case 'dd': // 9 days / in 9 days / 9 days ago
  9309. if (withoutSuffix || isFuture) {
  9310. return result + (plural$5(number) ? 'dni' : 'dní');
  9311. } else {
  9312. return result + 'dňami';
  9313. }
  9314. case 'M': // a month / in a month / a month ago
  9315. return withoutSuffix || isFuture ? 'mesiac' : 'mesiacom';
  9316. case 'MM': // 9 months / in 9 months / 9 months ago
  9317. if (withoutSuffix || isFuture) {
  9318. return result + (plural$5(number) ? 'mesiace' : 'mesiacov');
  9319. } else {
  9320. return result + 'mesiacmi';
  9321. }
  9322. case 'y': // a year / in a year / a year ago
  9323. return withoutSuffix || isFuture ? 'rok' : 'rokom';
  9324. case 'yy': // 9 years / in 9 years / 9 years ago
  9325. if (withoutSuffix || isFuture) {
  9326. return result + (plural$5(number) ? 'roky' : 'rokov');
  9327. } else {
  9328. return result + 'rokmi';
  9329. }
  9330. }
  9331. }
  9332. moment.defineLocale('sk', {
  9333. months: months$9,
  9334. monthsShort: monthsShort$7,
  9335. weekdays: 'nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota'.split('_'),
  9336. weekdaysShort: 'ne_po_ut_st_št_pi_so'.split('_'),
  9337. weekdaysMin: 'ne_po_ut_st_št_pi_so'.split('_'),
  9338. longDateFormat: {
  9339. LT: 'H:mm',
  9340. LTS: 'H:mm:ss',
  9341. L: 'DD.MM.YYYY',
  9342. LL: 'D. MMMM YYYY',
  9343. LLL: 'D. MMMM YYYY H:mm',
  9344. LLLL: 'dddd D. MMMM YYYY H:mm',
  9345. },
  9346. calendar: {
  9347. sameDay: '[dnes o] LT',
  9348. nextDay: '[zajtra o] LT',
  9349. nextWeek: function () {
  9350. switch (this.day()) {
  9351. case 0:
  9352. return '[v nedeľu o] LT';
  9353. case 1:
  9354. case 2:
  9355. return '[v] dddd [o] LT';
  9356. case 3:
  9357. return '[v stredu o] LT';
  9358. case 4:
  9359. return '[vo štvrtok o] LT';
  9360. case 5:
  9361. return '[v piatok o] LT';
  9362. case 6:
  9363. return '[v sobotu o] LT';
  9364. }
  9365. },
  9366. lastDay: '[včera o] LT',
  9367. lastWeek: function () {
  9368. switch (this.day()) {
  9369. case 0:
  9370. return '[minulú nedeľu o] LT';
  9371. case 1:
  9372. case 2:
  9373. return '[minulý] dddd [o] LT';
  9374. case 3:
  9375. return '[minulú stredu o] LT';
  9376. case 4:
  9377. case 5:
  9378. return '[minulý] dddd [o] LT';
  9379. case 6:
  9380. return '[minulú sobotu o] LT';
  9381. }
  9382. },
  9383. sameElse: 'L',
  9384. },
  9385. relativeTime: {
  9386. future: 'za %s',
  9387. past: 'pred %s',
  9388. s: translate$9,
  9389. ss: translate$9,
  9390. m: translate$9,
  9391. mm: translate$9,
  9392. h: translate$9,
  9393. hh: translate$9,
  9394. d: translate$9,
  9395. dd: translate$9,
  9396. M: translate$9,
  9397. MM: translate$9,
  9398. y: translate$9,
  9399. yy: translate$9,
  9400. },
  9401. dayOfMonthOrdinalParse: /\d{1,2}\./,
  9402. ordinal: '%d.',
  9403. week: {
  9404. dow: 1, // Monday is the first day of the week.
  9405. doy: 4, // The week that contains Jan 4th is the first week of the year.
  9406. },
  9407. });
  9408. //! moment.js locale configuration
  9409. function processRelativeTime$7(number, withoutSuffix, key, isFuture) {
  9410. var result = number + ' ';
  9411. switch (key) {
  9412. case 's':
  9413. return withoutSuffix || isFuture
  9414. ? 'nekaj sekund'
  9415. : 'nekaj sekundami';
  9416. case 'ss':
  9417. if (number === 1) {
  9418. result += withoutSuffix ? 'sekundo' : 'sekundi';
  9419. } else if (number === 2) {
  9420. result += withoutSuffix || isFuture ? 'sekundi' : 'sekundah';
  9421. } else if (number < 5) {
  9422. result += withoutSuffix || isFuture ? 'sekunde' : 'sekundah';
  9423. } else {
  9424. result += 'sekund';
  9425. }
  9426. return result;
  9427. case 'm':
  9428. return withoutSuffix ? 'ena minuta' : 'eno minuto';
  9429. case 'mm':
  9430. if (number === 1) {
  9431. result += withoutSuffix ? 'minuta' : 'minuto';
  9432. } else if (number === 2) {
  9433. result += withoutSuffix || isFuture ? 'minuti' : 'minutama';
  9434. } else if (number < 5) {
  9435. result += withoutSuffix || isFuture ? 'minute' : 'minutami';
  9436. } else {
  9437. result += withoutSuffix || isFuture ? 'minut' : 'minutami';
  9438. }
  9439. return result;
  9440. case 'h':
  9441. return withoutSuffix ? 'ena ura' : 'eno uro';
  9442. case 'hh':
  9443. if (number === 1) {
  9444. result += withoutSuffix ? 'ura' : 'uro';
  9445. } else if (number === 2) {
  9446. result += withoutSuffix || isFuture ? 'uri' : 'urama';
  9447. } else if (number < 5) {
  9448. result += withoutSuffix || isFuture ? 'ure' : 'urami';
  9449. } else {
  9450. result += withoutSuffix || isFuture ? 'ur' : 'urami';
  9451. }
  9452. return result;
  9453. case 'd':
  9454. return withoutSuffix || isFuture ? 'en dan' : 'enim dnem';
  9455. case 'dd':
  9456. if (number === 1) {
  9457. result += withoutSuffix || isFuture ? 'dan' : 'dnem';
  9458. } else if (number === 2) {
  9459. result += withoutSuffix || isFuture ? 'dni' : 'dnevoma';
  9460. } else {
  9461. result += withoutSuffix || isFuture ? 'dni' : 'dnevi';
  9462. }
  9463. return result;
  9464. case 'M':
  9465. return withoutSuffix || isFuture ? 'en mesec' : 'enim mesecem';
  9466. case 'MM':
  9467. if (number === 1) {
  9468. result += withoutSuffix || isFuture ? 'mesec' : 'mesecem';
  9469. } else if (number === 2) {
  9470. result += withoutSuffix || isFuture ? 'meseca' : 'mesecema';
  9471. } else if (number < 5) {
  9472. result += withoutSuffix || isFuture ? 'mesece' : 'meseci';
  9473. } else {
  9474. result += withoutSuffix || isFuture ? 'mesecev' : 'meseci';
  9475. }
  9476. return result;
  9477. case 'y':
  9478. return withoutSuffix || isFuture ? 'eno leto' : 'enim letom';
  9479. case 'yy':
  9480. if (number === 1) {
  9481. result += withoutSuffix || isFuture ? 'leto' : 'letom';
  9482. } else if (number === 2) {
  9483. result += withoutSuffix || isFuture ? 'leti' : 'letoma';
  9484. } else if (number < 5) {
  9485. result += withoutSuffix || isFuture ? 'leta' : 'leti';
  9486. } else {
  9487. result += withoutSuffix || isFuture ? 'let' : 'leti';
  9488. }
  9489. return result;
  9490. }
  9491. }
  9492. moment.defineLocale('sl', {
  9493. months: 'januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december'.split(
  9494. '_'
  9495. ),
  9496. monthsShort: 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split(
  9497. '_'
  9498. ),
  9499. monthsParseExact: true,
  9500. weekdays: 'nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota'.split('_'),
  9501. weekdaysShort: 'ned._pon._tor._sre._čet._pet._sob.'.split('_'),
  9502. weekdaysMin: 'ne_po_to_sr_če_pe_so'.split('_'),
  9503. weekdaysParseExact: true,
  9504. longDateFormat: {
  9505. LT: 'H:mm',
  9506. LTS: 'H:mm:ss',
  9507. L: 'DD. MM. YYYY',
  9508. LL: 'D. MMMM YYYY',
  9509. LLL: 'D. MMMM YYYY H:mm',
  9510. LLLL: 'dddd, D. MMMM YYYY H:mm',
  9511. },
  9512. calendar: {
  9513. sameDay: '[danes ob] LT',
  9514. nextDay: '[jutri ob] LT',
  9515. nextWeek: function () {
  9516. switch (this.day()) {
  9517. case 0:
  9518. return '[v] [nedeljo] [ob] LT';
  9519. case 3:
  9520. return '[v] [sredo] [ob] LT';
  9521. case 6:
  9522. return '[v] [soboto] [ob] LT';
  9523. case 1:
  9524. case 2:
  9525. case 4:
  9526. case 5:
  9527. return '[v] dddd [ob] LT';
  9528. }
  9529. },
  9530. lastDay: '[včeraj ob] LT',
  9531. lastWeek: function () {
  9532. switch (this.day()) {
  9533. case 0:
  9534. return '[prejšnjo] [nedeljo] [ob] LT';
  9535. case 3:
  9536. return '[prejšnjo] [sredo] [ob] LT';
  9537. case 6:
  9538. return '[prejšnjo] [soboto] [ob] LT';
  9539. case 1:
  9540. case 2:
  9541. case 4:
  9542. case 5:
  9543. return '[prejšnji] dddd [ob] LT';
  9544. }
  9545. },
  9546. sameElse: 'L',
  9547. },
  9548. relativeTime: {
  9549. future: 'čez %s',
  9550. past: 'pred %s',
  9551. s: processRelativeTime$7,
  9552. ss: processRelativeTime$7,
  9553. m: processRelativeTime$7,
  9554. mm: processRelativeTime$7,
  9555. h: processRelativeTime$7,
  9556. hh: processRelativeTime$7,
  9557. d: processRelativeTime$7,
  9558. dd: processRelativeTime$7,
  9559. M: processRelativeTime$7,
  9560. MM: processRelativeTime$7,
  9561. y: processRelativeTime$7,
  9562. yy: processRelativeTime$7,
  9563. },
  9564. dayOfMonthOrdinalParse: /\d{1,2}\./,
  9565. ordinal: '%d.',
  9566. week: {
  9567. dow: 1, // Monday is the first day of the week.
  9568. doy: 7, // The week that contains Jan 7th is the first week of the year.
  9569. },
  9570. });
  9571. //! moment.js locale configuration
  9572. moment.defineLocale('sq', {
  9573. months: 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split(
  9574. '_'
  9575. ),
  9576. monthsShort: 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'),
  9577. weekdays: 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split(
  9578. '_'
  9579. ),
  9580. weekdaysShort: 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'),
  9581. weekdaysMin: 'D_H_Ma_Më_E_P_Sh'.split('_'),
  9582. weekdaysParseExact: true,
  9583. meridiemParse: /PD|MD/,
  9584. isPM: function (input) {
  9585. return input.charAt(0) === 'M';
  9586. },
  9587. meridiem: function (hours, minutes, isLower) {
  9588. return hours < 12 ? 'PD' : 'MD';
  9589. },
  9590. longDateFormat: {
  9591. LT: 'HH:mm',
  9592. LTS: 'HH:mm:ss',
  9593. L: 'DD/MM/YYYY',
  9594. LL: 'D MMMM YYYY',
  9595. LLL: 'D MMMM YYYY HH:mm',
  9596. LLLL: 'dddd, D MMMM YYYY HH:mm',
  9597. },
  9598. calendar: {
  9599. sameDay: '[Sot në] LT',
  9600. nextDay: '[Nesër në] LT',
  9601. nextWeek: 'dddd [në] LT',
  9602. lastDay: '[Dje në] LT',
  9603. lastWeek: 'dddd [e kaluar në] LT',
  9604. sameElse: 'L',
  9605. },
  9606. relativeTime: {
  9607. future: 'në %s',
  9608. past: '%s më parë',
  9609. s: 'disa sekonda',
  9610. ss: '%d sekonda',
  9611. m: 'një minutë',
  9612. mm: '%d minuta',
  9613. h: 'një orë',
  9614. hh: '%d orë',
  9615. d: 'një ditë',
  9616. dd: '%d ditë',
  9617. M: 'një muaj',
  9618. MM: '%d muaj',
  9619. y: 'një vit',
  9620. yy: '%d vite',
  9621. },
  9622. dayOfMonthOrdinalParse: /\d{1,2}\./,
  9623. ordinal: '%d.',
  9624. week: {
  9625. dow: 1, // Monday is the first day of the week.
  9626. doy: 4, // The week that contains Jan 4th is the first week of the year.
  9627. },
  9628. });
  9629. //! moment.js locale configuration
  9630. var translator$1 = {
  9631. words: {
  9632. //Different grammatical cases
  9633. ss: ['секунда', 'секунде', 'секунди'],
  9634. m: ['један минут', 'једне минуте'],
  9635. mm: ['минут', 'минуте', 'минута'],
  9636. h: ['један сат', 'једног сата'],
  9637. hh: ['сат', 'сата', 'сати'],
  9638. dd: ['дан', 'дана', 'дана'],
  9639. MM: ['месец', 'месеца', 'месеци'],
  9640. yy: ['година', 'године', 'година'],
  9641. },
  9642. correctGrammaticalCase: function (number, wordKey) {
  9643. return number === 1
  9644. ? wordKey[0]
  9645. : number >= 2 && number <= 4
  9646. ? wordKey[1]
  9647. : wordKey[2];
  9648. },
  9649. translate: function (number, withoutSuffix, key) {
  9650. var wordKey = translator$1.words[key];
  9651. if (key.length === 1) {
  9652. return withoutSuffix ? wordKey[0] : wordKey[1];
  9653. } else {
  9654. return (
  9655. number +
  9656. ' ' +
  9657. translator$1.correctGrammaticalCase(number, wordKey)
  9658. );
  9659. }
  9660. },
  9661. };
  9662. moment.defineLocale('sr-cyrl', {
  9663. months: 'јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар'.split(
  9664. '_'
  9665. ),
  9666. monthsShort: 'јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.'.split(
  9667. '_'
  9668. ),
  9669. monthsParseExact: true,
  9670. weekdays: 'недеља_понедељак_уторак_среда_четвртак_петак_субота'.split('_'),
  9671. weekdaysShort: 'нед._пон._уто._сре._чет._пет._суб.'.split('_'),
  9672. weekdaysMin: 'не_по_ут_ср_че_пе_су'.split('_'),
  9673. weekdaysParseExact: true,
  9674. longDateFormat: {
  9675. LT: 'H:mm',
  9676. LTS: 'H:mm:ss',
  9677. L: 'D. M. YYYY.',
  9678. LL: 'D. MMMM YYYY.',
  9679. LLL: 'D. MMMM YYYY. H:mm',
  9680. LLLL: 'dddd, D. MMMM YYYY. H:mm',
  9681. },
  9682. calendar: {
  9683. sameDay: '[данас у] LT',
  9684. nextDay: '[сутра у] LT',
  9685. nextWeek: function () {
  9686. switch (this.day()) {
  9687. case 0:
  9688. return '[у] [недељу] [у] LT';
  9689. case 3:
  9690. return '[у] [среду] [у] LT';
  9691. case 6:
  9692. return '[у] [суботу] [у] LT';
  9693. case 1:
  9694. case 2:
  9695. case 4:
  9696. case 5:
  9697. return '[у] dddd [у] LT';
  9698. }
  9699. },
  9700. lastDay: '[јуче у] LT',
  9701. lastWeek: function () {
  9702. var lastWeekDays = [
  9703. '[прошле] [недеље] [у] LT',
  9704. '[прошлог] [понедељка] [у] LT',
  9705. '[прошлог] [уторка] [у] LT',
  9706. '[прошле] [среде] [у] LT',
  9707. '[прошлог] [четвртка] [у] LT',
  9708. '[прошлог] [петка] [у] LT',
  9709. '[прошле] [суботе] [у] LT',
  9710. ];
  9711. return lastWeekDays[this.day()];
  9712. },
  9713. sameElse: 'L',
  9714. },
  9715. relativeTime: {
  9716. future: 'за %s',
  9717. past: 'пре %s',
  9718. s: 'неколико секунди',
  9719. ss: translator$1.translate,
  9720. m: translator$1.translate,
  9721. mm: translator$1.translate,
  9722. h: translator$1.translate,
  9723. hh: translator$1.translate,
  9724. d: 'дан',
  9725. dd: translator$1.translate,
  9726. M: 'месец',
  9727. MM: translator$1.translate,
  9728. y: 'годину',
  9729. yy: translator$1.translate,
  9730. },
  9731. dayOfMonthOrdinalParse: /\d{1,2}\./,
  9732. ordinal: '%d.',
  9733. week: {
  9734. dow: 1, // Monday is the first day of the week.
  9735. doy: 7, // The week that contains Jan 1st is the first week of the year.
  9736. },
  9737. });
  9738. //! moment.js locale configuration
  9739. var translator$2 = {
  9740. words: {
  9741. //Different grammatical cases
  9742. ss: ['sekunda', 'sekunde', 'sekundi'],
  9743. m: ['jedan minut', 'jedne minute'],
  9744. mm: ['minut', 'minute', 'minuta'],
  9745. h: ['jedan sat', 'jednog sata'],
  9746. hh: ['sat', 'sata', 'sati'],
  9747. dd: ['dan', 'dana', 'dana'],
  9748. MM: ['mesec', 'meseca', 'meseci'],
  9749. yy: ['godina', 'godine', 'godina'],
  9750. },
  9751. correctGrammaticalCase: function (number, wordKey) {
  9752. return number === 1
  9753. ? wordKey[0]
  9754. : number >= 2 && number <= 4
  9755. ? wordKey[1]
  9756. : wordKey[2];
  9757. },
  9758. translate: function (number, withoutSuffix, key) {
  9759. var wordKey = translator$2.words[key];
  9760. if (key.length === 1) {
  9761. return withoutSuffix ? wordKey[0] : wordKey[1];
  9762. } else {
  9763. return (
  9764. number +
  9765. ' ' +
  9766. translator$2.correctGrammaticalCase(number, wordKey)
  9767. );
  9768. }
  9769. },
  9770. };
  9771. moment.defineLocale('sr', {
  9772. months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split(
  9773. '_'
  9774. ),
  9775. monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split(
  9776. '_'
  9777. ),
  9778. monthsParseExact: true,
  9779. weekdays: 'nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota'.split(
  9780. '_'
  9781. ),
  9782. weekdaysShort: 'ned._pon._uto._sre._čet._pet._sub.'.split('_'),
  9783. weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),
  9784. weekdaysParseExact: true,
  9785. longDateFormat: {
  9786. LT: 'H:mm',
  9787. LTS: 'H:mm:ss',
  9788. L: 'D. M. YYYY.',
  9789. LL: 'D. MMMM YYYY.',
  9790. LLL: 'D. MMMM YYYY. H:mm',
  9791. LLLL: 'dddd, D. MMMM YYYY. H:mm',
  9792. },
  9793. calendar: {
  9794. sameDay: '[danas u] LT',
  9795. nextDay: '[sutra u] LT',
  9796. nextWeek: function () {
  9797. switch (this.day()) {
  9798. case 0:
  9799. return '[u] [nedelju] [u] LT';
  9800. case 3:
  9801. return '[u] [sredu] [u] LT';
  9802. case 6:
  9803. return '[u] [subotu] [u] LT';
  9804. case 1:
  9805. case 2:
  9806. case 4:
  9807. case 5:
  9808. return '[u] dddd [u] LT';
  9809. }
  9810. },
  9811. lastDay: '[juče u] LT',
  9812. lastWeek: function () {
  9813. var lastWeekDays = [
  9814. '[prošle] [nedelje] [u] LT',
  9815. '[prošlog] [ponedeljka] [u] LT',
  9816. '[prošlog] [utorka] [u] LT',
  9817. '[prošle] [srede] [u] LT',
  9818. '[prošlog] [četvrtka] [u] LT',
  9819. '[prošlog] [petka] [u] LT',
  9820. '[prošle] [subote] [u] LT',
  9821. ];
  9822. return lastWeekDays[this.day()];
  9823. },
  9824. sameElse: 'L',
  9825. },
  9826. relativeTime: {
  9827. future: 'za %s',
  9828. past: 'pre %s',
  9829. s: 'nekoliko sekundi',
  9830. ss: translator$2.translate,
  9831. m: translator$2.translate,
  9832. mm: translator$2.translate,
  9833. h: translator$2.translate,
  9834. hh: translator$2.translate,
  9835. d: 'dan',
  9836. dd: translator$2.translate,
  9837. M: 'mesec',
  9838. MM: translator$2.translate,
  9839. y: 'godinu',
  9840. yy: translator$2.translate,
  9841. },
  9842. dayOfMonthOrdinalParse: /\d{1,2}\./,
  9843. ordinal: '%d.',
  9844. week: {
  9845. dow: 1, // Monday is the first day of the week.
  9846. doy: 7, // The week that contains Jan 7th is the first week of the year.
  9847. },
  9848. });
  9849. //! moment.js locale configuration
  9850. moment.defineLocale('ss', {
  9851. months: "Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split(
  9852. '_'
  9853. ),
  9854. monthsShort: 'Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo'.split('_'),
  9855. weekdays: 'Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo'.split(
  9856. '_'
  9857. ),
  9858. weekdaysShort: 'Lis_Umb_Lsb_Les_Lsi_Lsh_Umg'.split('_'),
  9859. weekdaysMin: 'Li_Us_Lb_Lt_Ls_Lh_Ug'.split('_'),
  9860. weekdaysParseExact: true,
  9861. longDateFormat: {
  9862. LT: 'h:mm A',
  9863. LTS: 'h:mm:ss A',
  9864. L: 'DD/MM/YYYY',
  9865. LL: 'D MMMM YYYY',
  9866. LLL: 'D MMMM YYYY h:mm A',
  9867. LLLL: 'dddd, D MMMM YYYY h:mm A',
  9868. },
  9869. calendar: {
  9870. sameDay: '[Namuhla nga] LT',
  9871. nextDay: '[Kusasa nga] LT',
  9872. nextWeek: 'dddd [nga] LT',
  9873. lastDay: '[Itolo nga] LT',
  9874. lastWeek: 'dddd [leliphelile] [nga] LT',
  9875. sameElse: 'L',
  9876. },
  9877. relativeTime: {
  9878. future: 'nga %s',
  9879. past: 'wenteka nga %s',
  9880. s: 'emizuzwana lomcane',
  9881. ss: '%d mzuzwana',
  9882. m: 'umzuzu',
  9883. mm: '%d emizuzu',
  9884. h: 'lihora',
  9885. hh: '%d emahora',
  9886. d: 'lilanga',
  9887. dd: '%d emalanga',
  9888. M: 'inyanga',
  9889. MM: '%d tinyanga',
  9890. y: 'umnyaka',
  9891. yy: '%d iminyaka',
  9892. },
  9893. meridiemParse: /ekuseni|emini|entsambama|ebusuku/,
  9894. meridiem: function (hours, minutes, isLower) {
  9895. if (hours < 11) {
  9896. return 'ekuseni';
  9897. } else if (hours < 15) {
  9898. return 'emini';
  9899. } else if (hours < 19) {
  9900. return 'entsambama';
  9901. } else {
  9902. return 'ebusuku';
  9903. }
  9904. },
  9905. meridiemHour: function (hour, meridiem) {
  9906. if (hour === 12) {
  9907. hour = 0;
  9908. }
  9909. if (meridiem === 'ekuseni') {
  9910. return hour;
  9911. } else if (meridiem === 'emini') {
  9912. return hour >= 11 ? hour : hour + 12;
  9913. } else if (meridiem === 'entsambama' || meridiem === 'ebusuku') {
  9914. if (hour === 0) {
  9915. return 0;
  9916. }
  9917. return hour + 12;
  9918. }
  9919. },
  9920. dayOfMonthOrdinalParse: /\d{1,2}/,
  9921. ordinal: '%d',
  9922. week: {
  9923. dow: 1, // Monday is the first day of the week.
  9924. doy: 4, // The week that contains Jan 4th is the first week of the year.
  9925. },
  9926. });
  9927. //! moment.js locale configuration
  9928. moment.defineLocale('sv', {
  9929. months: 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split(
  9930. '_'
  9931. ),
  9932. monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
  9933. weekdays: 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'),
  9934. weekdaysShort: 'sön_mån_tis_ons_tor_fre_lör'.split('_'),
  9935. weekdaysMin: 'sö_må_ti_on_to_fr_lö'.split('_'),
  9936. longDateFormat: {
  9937. LT: 'HH:mm',
  9938. LTS: 'HH:mm:ss',
  9939. L: 'YYYY-MM-DD',
  9940. LL: 'D MMMM YYYY',
  9941. LLL: 'D MMMM YYYY [kl.] HH:mm',
  9942. LLLL: 'dddd D MMMM YYYY [kl.] HH:mm',
  9943. lll: 'D MMM YYYY HH:mm',
  9944. llll: 'ddd D MMM YYYY HH:mm',
  9945. },
  9946. calendar: {
  9947. sameDay: '[Idag] LT',
  9948. nextDay: '[Imorgon] LT',
  9949. lastDay: '[Igår] LT',
  9950. nextWeek: '[På] dddd LT',
  9951. lastWeek: '[I] dddd[s] LT',
  9952. sameElse: 'L',
  9953. },
  9954. relativeTime: {
  9955. future: 'om %s',
  9956. past: 'för %s sedan',
  9957. s: 'några sekunder',
  9958. ss: '%d sekunder',
  9959. m: 'en minut',
  9960. mm: '%d minuter',
  9961. h: 'en timme',
  9962. hh: '%d timmar',
  9963. d: 'en dag',
  9964. dd: '%d dagar',
  9965. M: 'en månad',
  9966. MM: '%d månader',
  9967. y: 'ett år',
  9968. yy: '%d år',
  9969. },
  9970. dayOfMonthOrdinalParse: /\d{1,2}(\:e|\:a)/,
  9971. ordinal: function (number) {
  9972. var b = number % 10,
  9973. output =
  9974. ~~((number % 100) / 10) === 1
  9975. ? ':e'
  9976. : b === 1
  9977. ? ':a'
  9978. : b === 2
  9979. ? ':a'
  9980. : b === 3
  9981. ? ':e'
  9982. : ':e';
  9983. return number + output;
  9984. },
  9985. week: {
  9986. dow: 1, // Monday is the first day of the week.
  9987. doy: 4, // The week that contains Jan 4th is the first week of the year.
  9988. },
  9989. });
  9990. //! moment.js locale configuration
  9991. moment.defineLocale('sw', {
  9992. months: 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split(
  9993. '_'
  9994. ),
  9995. monthsShort: 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'),
  9996. weekdays: 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split(
  9997. '_'
  9998. ),
  9999. weekdaysShort: 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'),
  10000. weekdaysMin: 'J2_J3_J4_J5_Al_Ij_J1'.split('_'),
  10001. weekdaysParseExact: true,
  10002. longDateFormat: {
  10003. LT: 'hh:mm A',
  10004. LTS: 'HH:mm:ss',
  10005. L: 'DD.MM.YYYY',
  10006. LL: 'D MMMM YYYY',
  10007. LLL: 'D MMMM YYYY HH:mm',
  10008. LLLL: 'dddd, D MMMM YYYY HH:mm',
  10009. },
  10010. calendar: {
  10011. sameDay: '[leo saa] LT',
  10012. nextDay: '[kesho saa] LT',
  10013. nextWeek: '[wiki ijayo] dddd [saat] LT',
  10014. lastDay: '[jana] LT',
  10015. lastWeek: '[wiki iliyopita] dddd [saat] LT',
  10016. sameElse: 'L',
  10017. },
  10018. relativeTime: {
  10019. future: '%s baadaye',
  10020. past: 'tokea %s',
  10021. s: 'hivi punde',
  10022. ss: 'sekunde %d',
  10023. m: 'dakika moja',
  10024. mm: 'dakika %d',
  10025. h: 'saa limoja',
  10026. hh: 'masaa %d',
  10027. d: 'siku moja',
  10028. dd: 'siku %d',
  10029. M: 'mwezi mmoja',
  10030. MM: 'miezi %d',
  10031. y: 'mwaka mmoja',
  10032. yy: 'miaka %d',
  10033. },
  10034. week: {
  10035. dow: 1, // Monday is the first day of the week.
  10036. doy: 7, // The week that contains Jan 7th is the first week of the year.
  10037. },
  10038. });
  10039. //! moment.js locale configuration
  10040. var symbolMap$g = {
  10041. 1: '௧',
  10042. 2: '௨',
  10043. 3: '௩',
  10044. 4: '௪',
  10045. 5: '௫',
  10046. 6: '௬',
  10047. 7: '௭',
  10048. 8: '௮',
  10049. 9: '௯',
  10050. 0: '௦',
  10051. },
  10052. numberMap$f = {
  10053. '௧': '1',
  10054. '௨': '2',
  10055. '௩': '3',
  10056. '௪': '4',
  10057. '௫': '5',
  10058. '௬': '6',
  10059. '௭': '7',
  10060. '௮': '8',
  10061. '௯': '9',
  10062. '௦': '0',
  10063. };
  10064. moment.defineLocale('ta', {
  10065. months: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split(
  10066. '_'
  10067. ),
  10068. monthsShort: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split(
  10069. '_'
  10070. ),
  10071. weekdays: 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split(
  10072. '_'
  10073. ),
  10074. weekdaysShort: 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split(
  10075. '_'
  10076. ),
  10077. weekdaysMin: 'ஞா_தி_செ_பு_வி_வெ_ச'.split('_'),
  10078. longDateFormat: {
  10079. LT: 'HH:mm',
  10080. LTS: 'HH:mm:ss',
  10081. L: 'DD/MM/YYYY',
  10082. LL: 'D MMMM YYYY',
  10083. LLL: 'D MMMM YYYY, HH:mm',
  10084. LLLL: 'dddd, D MMMM YYYY, HH:mm',
  10085. },
  10086. calendar: {
  10087. sameDay: '[இன்று] LT',
  10088. nextDay: '[நாளை] LT',
  10089. nextWeek: 'dddd, LT',
  10090. lastDay: '[நேற்று] LT',
  10091. lastWeek: '[கடந்த வாரம்] dddd, LT',
  10092. sameElse: 'L',
  10093. },
  10094. relativeTime: {
  10095. future: '%s இல்',
  10096. past: '%s முன்',
  10097. s: 'ஒரு சில விநாடிகள்',
  10098. ss: '%d விநாடிகள்',
  10099. m: 'ஒரு நிமிடம்',
  10100. mm: '%d நிமிடங்கள்',
  10101. h: 'ஒரு மணி நேரம்',
  10102. hh: '%d மணி நேரம்',
  10103. d: 'ஒரு நாள்',
  10104. dd: '%d நாட்கள்',
  10105. M: 'ஒரு மாதம்',
  10106. MM: '%d மாதங்கள்',
  10107. y: 'ஒரு வருடம்',
  10108. yy: '%d ஆண்டுகள்',
  10109. },
  10110. dayOfMonthOrdinalParse: /\d{1,2}வது/,
  10111. ordinal: function (number) {
  10112. return number + 'வது';
  10113. },
  10114. preparse: function (string) {
  10115. return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) {
  10116. return numberMap$f[match];
  10117. });
  10118. },
  10119. postformat: function (string) {
  10120. return string.replace(/\d/g, function (match) {
  10121. return symbolMap$g[match];
  10122. });
  10123. },
  10124. // refer http://ta.wikipedia.org/s/1er1
  10125. meridiemParse: /யாமம்|வைகறை|காலை|நண்பகல்|எற்பாடு|மாலை/,
  10126. meridiem: function (hour, minute, isLower) {
  10127. if (hour < 2) {
  10128. return ' யாமம்';
  10129. } else if (hour < 6) {
  10130. return ' வைகறை'; // வைகறை
  10131. } else if (hour < 10) {
  10132. return ' காலை'; // காலை
  10133. } else if (hour < 14) {
  10134. return ' நண்பகல்'; // நண்பகல்
  10135. } else if (hour < 18) {
  10136. return ' எற்பாடு'; // எற்பாடு
  10137. } else if (hour < 22) {
  10138. return ' மாலை'; // மாலை
  10139. } else {
  10140. return ' யாமம்';
  10141. }
  10142. },
  10143. meridiemHour: function (hour, meridiem) {
  10144. if (hour === 12) {
  10145. hour = 0;
  10146. }
  10147. if (meridiem === 'யாமம்') {
  10148. return hour < 2 ? hour : hour + 12;
  10149. } else if (meridiem === 'வைகறை' || meridiem === 'காலை') {
  10150. return hour;
  10151. } else if (meridiem === 'நண்பகல்') {
  10152. return hour >= 10 ? hour : hour + 12;
  10153. } else {
  10154. return hour + 12;
  10155. }
  10156. },
  10157. week: {
  10158. dow: 0, // Sunday is the first day of the week.
  10159. doy: 6, // The week that contains Jan 6th is the first week of the year.
  10160. },
  10161. });
  10162. //! moment.js locale configuration
  10163. moment.defineLocale('te', {
  10164. months: 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split(
  10165. '_'
  10166. ),
  10167. monthsShort: 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split(
  10168. '_'
  10169. ),
  10170. monthsParseExact: true,
  10171. weekdays: 'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split(
  10172. '_'
  10173. ),
  10174. weekdaysShort: 'ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని'.split('_'),
  10175. weekdaysMin: 'ఆ_సో_మం_బు_గు_శు_శ'.split('_'),
  10176. longDateFormat: {
  10177. LT: 'A h:mm',
  10178. LTS: 'A h:mm:ss',
  10179. L: 'DD/MM/YYYY',
  10180. LL: 'D MMMM YYYY',
  10181. LLL: 'D MMMM YYYY, A h:mm',
  10182. LLLL: 'dddd, D MMMM YYYY, A h:mm',
  10183. },
  10184. calendar: {
  10185. sameDay: '[నేడు] LT',
  10186. nextDay: '[రేపు] LT',
  10187. nextWeek: 'dddd, LT',
  10188. lastDay: '[నిన్న] LT',
  10189. lastWeek: '[గత] dddd, LT',
  10190. sameElse: 'L',
  10191. },
  10192. relativeTime: {
  10193. future: '%s లో',
  10194. past: '%s క్రితం',
  10195. s: 'కొన్ని క్షణాలు',
  10196. ss: '%d సెకన్లు',
  10197. m: 'ఒక నిమిషం',
  10198. mm: '%d నిమిషాలు',
  10199. h: 'ఒక గంట',
  10200. hh: '%d గంటలు',
  10201. d: 'ఒక రోజు',
  10202. dd: '%d రోజులు',
  10203. M: 'ఒక నెల',
  10204. MM: '%d నెలలు',
  10205. y: 'ఒక సంవత్సరం',
  10206. yy: '%d సంవత్సరాలు',
  10207. },
  10208. dayOfMonthOrdinalParse: /\d{1,2}వ/,
  10209. ordinal: '%dవ',
  10210. meridiemParse: /రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,
  10211. meridiemHour: function (hour, meridiem) {
  10212. if (hour === 12) {
  10213. hour = 0;
  10214. }
  10215. if (meridiem === 'రాత్రి') {
  10216. return hour < 4 ? hour : hour + 12;
  10217. } else if (meridiem === 'ఉదయం') {
  10218. return hour;
  10219. } else if (meridiem === 'మధ్యాహ్నం') {
  10220. return hour >= 10 ? hour : hour + 12;
  10221. } else if (meridiem === 'సాయంత్రం') {
  10222. return hour + 12;
  10223. }
  10224. },
  10225. meridiem: function (hour, minute, isLower) {
  10226. if (hour < 4) {
  10227. return 'రాత్రి';
  10228. } else if (hour < 10) {
  10229. return 'ఉదయం';
  10230. } else if (hour < 17) {
  10231. return 'మధ్యాహ్నం';
  10232. } else if (hour < 20) {
  10233. return 'సాయంత్రం';
  10234. } else {
  10235. return 'రాత్రి';
  10236. }
  10237. },
  10238. week: {
  10239. dow: 0, // Sunday is the first day of the week.
  10240. doy: 6, // The week that contains Jan 6th is the first week of the year.
  10241. },
  10242. });
  10243. //! moment.js locale configuration
  10244. moment.defineLocale('tet', {
  10245. months: 'Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru'.split(
  10246. '_'
  10247. ),
  10248. monthsShort: 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),
  10249. weekdays: 'Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu'.split('_'),
  10250. weekdaysShort: 'Dom_Seg_Ters_Kua_Kint_Sest_Sab'.split('_'),
  10251. weekdaysMin: 'Do_Seg_Te_Ku_Ki_Ses_Sa'.split('_'),
  10252. longDateFormat: {
  10253. LT: 'HH:mm',
  10254. LTS: 'HH:mm:ss',
  10255. L: 'DD/MM/YYYY',
  10256. LL: 'D MMMM YYYY',
  10257. LLL: 'D MMMM YYYY HH:mm',
  10258. LLLL: 'dddd, D MMMM YYYY HH:mm',
  10259. },
  10260. calendar: {
  10261. sameDay: '[Ohin iha] LT',
  10262. nextDay: '[Aban iha] LT',
  10263. nextWeek: 'dddd [iha] LT',
  10264. lastDay: '[Horiseik iha] LT',
  10265. lastWeek: 'dddd [semana kotuk] [iha] LT',
  10266. sameElse: 'L',
  10267. },
  10268. relativeTime: {
  10269. future: 'iha %s',
  10270. past: '%s liuba',
  10271. s: 'segundu balun',
  10272. ss: 'segundu %d',
  10273. m: 'minutu ida',
  10274. mm: 'minutu %d',
  10275. h: 'oras ida',
  10276. hh: 'oras %d',
  10277. d: 'loron ida',
  10278. dd: 'loron %d',
  10279. M: 'fulan ida',
  10280. MM: 'fulan %d',
  10281. y: 'tinan ida',
  10282. yy: 'tinan %d',
  10283. },
  10284. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  10285. ordinal: function (number) {
  10286. var b = number % 10,
  10287. output =
  10288. ~~((number % 100) / 10) === 1
  10289. ? 'th'
  10290. : b === 1
  10291. ? 'st'
  10292. : b === 2
  10293. ? 'nd'
  10294. : b === 3
  10295. ? 'rd'
  10296. : 'th';
  10297. return number + output;
  10298. },
  10299. week: {
  10300. dow: 1, // Monday is the first day of the week.
  10301. doy: 4, // The week that contains Jan 4th is the first week of the year.
  10302. },
  10303. });
  10304. //! moment.js locale configuration
  10305. var suffixes$3 = {
  10306. 0: '-ум',
  10307. 1: '-ум',
  10308. 2: '-юм',
  10309. 3: '-юм',
  10310. 4: '-ум',
  10311. 5: '-ум',
  10312. 6: '-ум',
  10313. 7: '-ум',
  10314. 8: '-ум',
  10315. 9: '-ум',
  10316. 10: '-ум',
  10317. 12: '-ум',
  10318. 13: '-ум',
  10319. 20: '-ум',
  10320. 30: '-юм',
  10321. 40: '-ум',
  10322. 50: '-ум',
  10323. 60: '-ум',
  10324. 70: '-ум',
  10325. 80: '-ум',
  10326. 90: '-ум',
  10327. 100: '-ум',
  10328. };
  10329. moment.defineLocale('tg', {
  10330. months: {
  10331. format: 'январи_феврали_марти_апрели_майи_июни_июли_августи_сентябри_октябри_ноябри_декабри'.split(
  10332. '_'
  10333. ),
  10334. standalone: 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split(
  10335. '_'
  10336. ),
  10337. },
  10338. monthsShort: 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'),
  10339. weekdays: 'якшанбе_душанбе_сешанбе_чоршанбе_панҷшанбе_ҷумъа_шанбе'.split(
  10340. '_'
  10341. ),
  10342. weekdaysShort: 'яшб_дшб_сшб_чшб_пшб_ҷум_шнб'.split('_'),
  10343. weekdaysMin: 'яш_дш_сш_чш_пш_ҷм_шб'.split('_'),
  10344. longDateFormat: {
  10345. LT: 'HH:mm',
  10346. LTS: 'HH:mm:ss',
  10347. L: 'DD.MM.YYYY',
  10348. LL: 'D MMMM YYYY',
  10349. LLL: 'D MMMM YYYY HH:mm',
  10350. LLLL: 'dddd, D MMMM YYYY HH:mm',
  10351. },
  10352. calendar: {
  10353. sameDay: '[Имрӯз соати] LT',
  10354. nextDay: '[Фардо соати] LT',
  10355. lastDay: '[Дирӯз соати] LT',
  10356. nextWeek: 'dddd[и] [ҳафтаи оянда соати] LT',
  10357. lastWeek: 'dddd[и] [ҳафтаи гузашта соати] LT',
  10358. sameElse: 'L',
  10359. },
  10360. relativeTime: {
  10361. future: 'баъди %s',
  10362. past: '%s пеш',
  10363. s: 'якчанд сония',
  10364. m: 'як дақиқа',
  10365. mm: '%d дақиқа',
  10366. h: 'як соат',
  10367. hh: '%d соат',
  10368. d: 'як рӯз',
  10369. dd: '%d рӯз',
  10370. M: 'як моҳ',
  10371. MM: '%d моҳ',
  10372. y: 'як сол',
  10373. yy: '%d сол',
  10374. },
  10375. meridiemParse: /шаб|субҳ|рӯз|бегоҳ/,
  10376. meridiemHour: function (hour, meridiem) {
  10377. if (hour === 12) {
  10378. hour = 0;
  10379. }
  10380. if (meridiem === 'шаб') {
  10381. return hour < 4 ? hour : hour + 12;
  10382. } else if (meridiem === 'субҳ') {
  10383. return hour;
  10384. } else if (meridiem === 'рӯз') {
  10385. return hour >= 11 ? hour : hour + 12;
  10386. } else if (meridiem === 'бегоҳ') {
  10387. return hour + 12;
  10388. }
  10389. },
  10390. meridiem: function (hour, minute, isLower) {
  10391. if (hour < 4) {
  10392. return 'шаб';
  10393. } else if (hour < 11) {
  10394. return 'субҳ';
  10395. } else if (hour < 16) {
  10396. return 'рӯз';
  10397. } else if (hour < 19) {
  10398. return 'бегоҳ';
  10399. } else {
  10400. return 'шаб';
  10401. }
  10402. },
  10403. dayOfMonthOrdinalParse: /\d{1,2}-(ум|юм)/,
  10404. ordinal: function (number) {
  10405. var a = number % 10,
  10406. b = number >= 100 ? 100 : null;
  10407. return number + (suffixes$3[number] || suffixes$3[a] || suffixes$3[b]);
  10408. },
  10409. week: {
  10410. dow: 1, // Monday is the first day of the week.
  10411. doy: 7, // The week that contains Jan 1th is the first week of the year.
  10412. },
  10413. });
  10414. //! moment.js locale configuration
  10415. moment.defineLocale('th', {
  10416. months: 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split(
  10417. '_'
  10418. ),
  10419. monthsShort: 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split(
  10420. '_'
  10421. ),
  10422. monthsParseExact: true,
  10423. weekdays: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),
  10424. weekdaysShort: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference
  10425. weekdaysMin: 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'),
  10426. weekdaysParseExact: true,
  10427. longDateFormat: {
  10428. LT: 'H:mm',
  10429. LTS: 'H:mm:ss',
  10430. L: 'DD/MM/YYYY',
  10431. LL: 'D MMMM YYYY',
  10432. LLL: 'D MMMM YYYY เวลา H:mm',
  10433. LLLL: 'วันddddที่ D MMMM YYYY เวลา H:mm',
  10434. },
  10435. meridiemParse: /ก่อนเที่ยง|หลังเที่ยง/,
  10436. isPM: function (input) {
  10437. return input === 'หลังเที่ยง';
  10438. },
  10439. meridiem: function (hour, minute, isLower) {
  10440. if (hour < 12) {
  10441. return 'ก่อนเที่ยง';
  10442. } else {
  10443. return 'หลังเที่ยง';
  10444. }
  10445. },
  10446. calendar: {
  10447. sameDay: '[วันนี้ เวลา] LT',
  10448. nextDay: '[พรุ่งนี้ เวลา] LT',
  10449. nextWeek: 'dddd[หน้า เวลา] LT',
  10450. lastDay: '[เมื่อวานนี้ เวลา] LT',
  10451. lastWeek: '[วัน]dddd[ที่แล้ว เวลา] LT',
  10452. sameElse: 'L',
  10453. },
  10454. relativeTime: {
  10455. future: 'อีก %s',
  10456. past: '%sที่แล้ว',
  10457. s: 'ไม่กี่วินาที',
  10458. ss: '%d วินาที',
  10459. m: '1 นาที',
  10460. mm: '%d นาที',
  10461. h: '1 ชั่วโมง',
  10462. hh: '%d ชั่วโมง',
  10463. d: '1 วัน',
  10464. dd: '%d วัน',
  10465. w: '1 สัปดาห์',
  10466. ww: '%d สัปดาห์',
  10467. M: '1 เดือน',
  10468. MM: '%d เดือน',
  10469. y: '1 ปี',
  10470. yy: '%d ปี',
  10471. },
  10472. });
  10473. //! moment.js locale configuration
  10474. var suffixes$4 = {
  10475. 1: "'inji",
  10476. 5: "'inji",
  10477. 8: "'inji",
  10478. 70: "'inji",
  10479. 80: "'inji",
  10480. 2: "'nji",
  10481. 7: "'nji",
  10482. 20: "'nji",
  10483. 50: "'nji",
  10484. 3: "'ünji",
  10485. 4: "'ünji",
  10486. 100: "'ünji",
  10487. 6: "'njy",
  10488. 9: "'unjy",
  10489. 10: "'unjy",
  10490. 30: "'unjy",
  10491. 60: "'ynjy",
  10492. 90: "'ynjy",
  10493. };
  10494. moment.defineLocale('tk', {
  10495. months: 'Ýanwar_Fewral_Mart_Aprel_Maý_Iýun_Iýul_Awgust_Sentýabr_Oktýabr_Noýabr_Dekabr'.split(
  10496. '_'
  10497. ),
  10498. monthsShort: 'Ýan_Few_Mar_Apr_Maý_Iýn_Iýl_Awg_Sen_Okt_Noý_Dek'.split('_'),
  10499. weekdays: 'Ýekşenbe_Duşenbe_Sişenbe_Çarşenbe_Penşenbe_Anna_Şenbe'.split(
  10500. '_'
  10501. ),
  10502. weekdaysShort: 'Ýek_Duş_Siş_Çar_Pen_Ann_Şen'.split('_'),
  10503. weekdaysMin: 'Ýk_Dş_Sş_Çr_Pn_An_Şn'.split('_'),
  10504. longDateFormat: {
  10505. LT: 'HH:mm',
  10506. LTS: 'HH:mm:ss',
  10507. L: 'DD.MM.YYYY',
  10508. LL: 'D MMMM YYYY',
  10509. LLL: 'D MMMM YYYY HH:mm',
  10510. LLLL: 'dddd, D MMMM YYYY HH:mm',
  10511. },
  10512. calendar: {
  10513. sameDay: '[bugün sagat] LT',
  10514. nextDay: '[ertir sagat] LT',
  10515. nextWeek: '[indiki] dddd [sagat] LT',
  10516. lastDay: '[düýn] LT',
  10517. lastWeek: '[geçen] dddd [sagat] LT',
  10518. sameElse: 'L',
  10519. },
  10520. relativeTime: {
  10521. future: '%s soň',
  10522. past: '%s öň',
  10523. s: 'birnäçe sekunt',
  10524. m: 'bir minut',
  10525. mm: '%d minut',
  10526. h: 'bir sagat',
  10527. hh: '%d sagat',
  10528. d: 'bir gün',
  10529. dd: '%d gün',
  10530. M: 'bir aý',
  10531. MM: '%d aý',
  10532. y: 'bir ýyl',
  10533. yy: '%d ýyl',
  10534. },
  10535. ordinal: function (number, period) {
  10536. switch (period) {
  10537. case 'd':
  10538. case 'D':
  10539. case 'Do':
  10540. case 'DD':
  10541. return number;
  10542. default:
  10543. if (number === 0) {
  10544. // special case for zero
  10545. return number + "'unjy";
  10546. }
  10547. var a = number % 10,
  10548. b = (number % 100) - a,
  10549. c = number >= 100 ? 100 : null;
  10550. return number + (suffixes$4[a] || suffixes$4[b] || suffixes$4[c]);
  10551. }
  10552. },
  10553. week: {
  10554. dow: 1, // Monday is the first day of the week.
  10555. doy: 7, // The week that contains Jan 7th is the first week of the year.
  10556. },
  10557. });
  10558. //! moment.js locale configuration
  10559. moment.defineLocale('tl-ph', {
  10560. months: 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split(
  10561. '_'
  10562. ),
  10563. monthsShort: 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),
  10564. weekdays: 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split(
  10565. '_'
  10566. ),
  10567. weekdaysShort: 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'),
  10568. weekdaysMin: 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'),
  10569. longDateFormat: {
  10570. LT: 'HH:mm',
  10571. LTS: 'HH:mm:ss',
  10572. L: 'MM/D/YYYY',
  10573. LL: 'MMMM D, YYYY',
  10574. LLL: 'MMMM D, YYYY HH:mm',
  10575. LLLL: 'dddd, MMMM DD, YYYY HH:mm',
  10576. },
  10577. calendar: {
  10578. sameDay: 'LT [ngayong araw]',
  10579. nextDay: '[Bukas ng] LT',
  10580. nextWeek: 'LT [sa susunod na] dddd',
  10581. lastDay: 'LT [kahapon]',
  10582. lastWeek: 'LT [noong nakaraang] dddd',
  10583. sameElse: 'L',
  10584. },
  10585. relativeTime: {
  10586. future: 'sa loob ng %s',
  10587. past: '%s ang nakalipas',
  10588. s: 'ilang segundo',
  10589. ss: '%d segundo',
  10590. m: 'isang minuto',
  10591. mm: '%d minuto',
  10592. h: 'isang oras',
  10593. hh: '%d oras',
  10594. d: 'isang araw',
  10595. dd: '%d araw',
  10596. M: 'isang buwan',
  10597. MM: '%d buwan',
  10598. y: 'isang taon',
  10599. yy: '%d taon',
  10600. },
  10601. dayOfMonthOrdinalParse: /\d{1,2}/,
  10602. ordinal: function (number) {
  10603. return number;
  10604. },
  10605. week: {
  10606. dow: 1, // Monday is the first day of the week.
  10607. doy: 4, // The week that contains Jan 4th is the first week of the year.
  10608. },
  10609. });
  10610. //! moment.js locale configuration
  10611. var numbersNouns = 'pagh_wa’_cha’_wej_loS_vagh_jav_Soch_chorgh_Hut'.split('_');
  10612. function translateFuture(output) {
  10613. var time = output;
  10614. time =
  10615. output.indexOf('jaj') !== -1
  10616. ? time.slice(0, -3) + 'leS'
  10617. : output.indexOf('jar') !== -1
  10618. ? time.slice(0, -3) + 'waQ'
  10619. : output.indexOf('DIS') !== -1
  10620. ? time.slice(0, -3) + 'nem'
  10621. : time + ' pIq';
  10622. return time;
  10623. }
  10624. function translatePast(output) {
  10625. var time = output;
  10626. time =
  10627. output.indexOf('jaj') !== -1
  10628. ? time.slice(0, -3) + 'Hu’'
  10629. : output.indexOf('jar') !== -1
  10630. ? time.slice(0, -3) + 'wen'
  10631. : output.indexOf('DIS') !== -1
  10632. ? time.slice(0, -3) + 'ben'
  10633. : time + ' ret';
  10634. return time;
  10635. }
  10636. function translate$a(number, withoutSuffix, string, isFuture) {
  10637. var numberNoun = numberAsNoun(number);
  10638. switch (string) {
  10639. case 'ss':
  10640. return numberNoun + ' lup';
  10641. case 'mm':
  10642. return numberNoun + ' tup';
  10643. case 'hh':
  10644. return numberNoun + ' rep';
  10645. case 'dd':
  10646. return numberNoun + ' jaj';
  10647. case 'MM':
  10648. return numberNoun + ' jar';
  10649. case 'yy':
  10650. return numberNoun + ' DIS';
  10651. }
  10652. }
  10653. function numberAsNoun(number) {
  10654. var hundred = Math.floor((number % 1000) / 100),
  10655. ten = Math.floor((number % 100) / 10),
  10656. one = number % 10,
  10657. word = '';
  10658. if (hundred > 0) {
  10659. word += numbersNouns[hundred] + 'vatlh';
  10660. }
  10661. if (ten > 0) {
  10662. word += (word !== '' ? ' ' : '') + numbersNouns[ten] + 'maH';
  10663. }
  10664. if (one > 0) {
  10665. word += (word !== '' ? ' ' : '') + numbersNouns[one];
  10666. }
  10667. return word === '' ? 'pagh' : word;
  10668. }
  10669. moment.defineLocale('tlh', {
  10670. months: 'tera’ jar wa’_tera’ jar cha’_tera’ jar wej_tera’ jar loS_tera’ jar vagh_tera’ jar jav_tera’ jar Soch_tera’ jar chorgh_tera’ jar Hut_tera’ jar wa’maH_tera’ jar wa’maH wa’_tera’ jar wa’maH cha’'.split(
  10671. '_'
  10672. ),
  10673. monthsShort: 'jar wa’_jar cha’_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa’maH_jar wa’maH wa’_jar wa’maH cha’'.split(
  10674. '_'
  10675. ),
  10676. monthsParseExact: true,
  10677. weekdays: 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split(
  10678. '_'
  10679. ),
  10680. weekdaysShort: 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split(
  10681. '_'
  10682. ),
  10683. weekdaysMin: 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split(
  10684. '_'
  10685. ),
  10686. longDateFormat: {
  10687. LT: 'HH:mm',
  10688. LTS: 'HH:mm:ss',
  10689. L: 'DD.MM.YYYY',
  10690. LL: 'D MMMM YYYY',
  10691. LLL: 'D MMMM YYYY HH:mm',
  10692. LLLL: 'dddd, D MMMM YYYY HH:mm',
  10693. },
  10694. calendar: {
  10695. sameDay: '[DaHjaj] LT',
  10696. nextDay: '[wa’leS] LT',
  10697. nextWeek: 'LLL',
  10698. lastDay: '[wa’Hu’] LT',
  10699. lastWeek: 'LLL',
  10700. sameElse: 'L',
  10701. },
  10702. relativeTime: {
  10703. future: translateFuture,
  10704. past: translatePast,
  10705. s: 'puS lup',
  10706. ss: translate$a,
  10707. m: 'wa’ tup',
  10708. mm: translate$a,
  10709. h: 'wa’ rep',
  10710. hh: translate$a,
  10711. d: 'wa’ jaj',
  10712. dd: translate$a,
  10713. M: 'wa’ jar',
  10714. MM: translate$a,
  10715. y: 'wa’ DIS',
  10716. yy: translate$a,
  10717. },
  10718. dayOfMonthOrdinalParse: /\d{1,2}\./,
  10719. ordinal: '%d.',
  10720. week: {
  10721. dow: 1, // Monday is the first day of the week.
  10722. doy: 4, // The week that contains Jan 4th is the first week of the year.
  10723. },
  10724. });
  10725. //! moment.js locale configuration
  10726. var suffixes$5 = {
  10727. 1: "'inci",
  10728. 5: "'inci",
  10729. 8: "'inci",
  10730. 70: "'inci",
  10731. 80: "'inci",
  10732. 2: "'nci",
  10733. 7: "'nci",
  10734. 20: "'nci",
  10735. 50: "'nci",
  10736. 3: "'üncü",
  10737. 4: "'üncü",
  10738. 100: "'üncü",
  10739. 6: "'ncı",
  10740. 9: "'uncu",
  10741. 10: "'uncu",
  10742. 30: "'uncu",
  10743. 60: "'ıncı",
  10744. 90: "'ıncı",
  10745. };
  10746. moment.defineLocale('tr', {
  10747. months: 'Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık'.split(
  10748. '_'
  10749. ),
  10750. monthsShort: 'Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara'.split('_'),
  10751. weekdays: 'Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi'.split(
  10752. '_'
  10753. ),
  10754. weekdaysShort: 'Paz_Pts_Sal_Çar_Per_Cum_Cts'.split('_'),
  10755. weekdaysMin: 'Pz_Pt_Sa_Ça_Pe_Cu_Ct'.split('_'),
  10756. meridiem: function (hours, minutes, isLower) {
  10757. if (hours < 12) {
  10758. return isLower ? 'öö' : 'ÖÖ';
  10759. } else {
  10760. return isLower ? 'ös' : 'ÖS';
  10761. }
  10762. },
  10763. meridiemParse: /öö|ÖÖ|ös|ÖS/,
  10764. isPM: function (input) {
  10765. return input === 'ös' || input === 'ÖS';
  10766. },
  10767. longDateFormat: {
  10768. LT: 'HH:mm',
  10769. LTS: 'HH:mm:ss',
  10770. L: 'DD.MM.YYYY',
  10771. LL: 'D MMMM YYYY',
  10772. LLL: 'D MMMM YYYY HH:mm',
  10773. LLLL: 'dddd, D MMMM YYYY HH:mm',
  10774. },
  10775. calendar: {
  10776. sameDay: '[bugün saat] LT',
  10777. nextDay: '[yarın saat] LT',
  10778. nextWeek: '[gelecek] dddd [saat] LT',
  10779. lastDay: '[dün] LT',
  10780. lastWeek: '[geçen] dddd [saat] LT',
  10781. sameElse: 'L',
  10782. },
  10783. relativeTime: {
  10784. future: '%s sonra',
  10785. past: '%s önce',
  10786. s: 'birkaç saniye',
  10787. ss: '%d saniye',
  10788. m: 'bir dakika',
  10789. mm: '%d dakika',
  10790. h: 'bir saat',
  10791. hh: '%d saat',
  10792. d: 'bir gün',
  10793. dd: '%d gün',
  10794. w: 'bir hafta',
  10795. ww: '%d hafta',
  10796. M: 'bir ay',
  10797. MM: '%d ay',
  10798. y: 'bir yıl',
  10799. yy: '%d yıl',
  10800. },
  10801. ordinal: function (number, period) {
  10802. switch (period) {
  10803. case 'd':
  10804. case 'D':
  10805. case 'Do':
  10806. case 'DD':
  10807. return number;
  10808. default:
  10809. if (number === 0) {
  10810. // special case for zero
  10811. return number + "'ıncı";
  10812. }
  10813. var a = number % 10,
  10814. b = (number % 100) - a,
  10815. c = number >= 100 ? 100 : null;
  10816. return number + (suffixes$5[a] || suffixes$5[b] || suffixes$5[c]);
  10817. }
  10818. },
  10819. week: {
  10820. dow: 1, // Monday is the first day of the week.
  10821. doy: 7, // The week that contains Jan 7th is the first week of the year.
  10822. },
  10823. });
  10824. //! moment.js locale configuration
  10825. // After the year there should be a slash and the amount of years since December 26, 1979 in Roman numerals.
  10826. // This is currently too difficult (maybe even impossible) to add.
  10827. moment.defineLocale('tzl', {
  10828. months: 'Januar_Fevraglh_Març_Avrïu_Mai_Gün_Julia_Guscht_Setemvar_Listopäts_Noemvar_Zecemvar'.split(
  10829. '_'
  10830. ),
  10831. monthsShort: 'Jan_Fev_Mar_Avr_Mai_Gün_Jul_Gus_Set_Lis_Noe_Zec'.split('_'),
  10832. weekdays: 'Súladi_Lúneçi_Maitzi_Márcuri_Xhúadi_Viénerçi_Sáturi'.split('_'),
  10833. weekdaysShort: 'Súl_Lún_Mai_Már_Xhú_Vié_Sát'.split('_'),
  10834. weekdaysMin: 'Sú_Lú_Ma_Má_Xh_Vi_Sá'.split('_'),
  10835. longDateFormat: {
  10836. LT: 'HH.mm',
  10837. LTS: 'HH.mm.ss',
  10838. L: 'DD.MM.YYYY',
  10839. LL: 'D. MMMM [dallas] YYYY',
  10840. LLL: 'D. MMMM [dallas] YYYY HH.mm',
  10841. LLLL: 'dddd, [li] D. MMMM [dallas] YYYY HH.mm',
  10842. },
  10843. meridiemParse: /d\'o|d\'a/i,
  10844. isPM: function (input) {
  10845. return "d'o" === input.toLowerCase();
  10846. },
  10847. meridiem: function (hours, minutes, isLower) {
  10848. if (hours > 11) {
  10849. return isLower ? "d'o" : "D'O";
  10850. } else {
  10851. return isLower ? "d'a" : "D'A";
  10852. }
  10853. },
  10854. calendar: {
  10855. sameDay: '[oxhi à] LT',
  10856. nextDay: '[demà à] LT',
  10857. nextWeek: 'dddd [à] LT',
  10858. lastDay: '[ieiri à] LT',
  10859. lastWeek: '[sür el] dddd [lasteu à] LT',
  10860. sameElse: 'L',
  10861. },
  10862. relativeTime: {
  10863. future: 'osprei %s',
  10864. past: 'ja%s',
  10865. s: processRelativeTime$8,
  10866. ss: processRelativeTime$8,
  10867. m: processRelativeTime$8,
  10868. mm: processRelativeTime$8,
  10869. h: processRelativeTime$8,
  10870. hh: processRelativeTime$8,
  10871. d: processRelativeTime$8,
  10872. dd: processRelativeTime$8,
  10873. M: processRelativeTime$8,
  10874. MM: processRelativeTime$8,
  10875. y: processRelativeTime$8,
  10876. yy: processRelativeTime$8,
  10877. },
  10878. dayOfMonthOrdinalParse: /\d{1,2}\./,
  10879. ordinal: '%d.',
  10880. week: {
  10881. dow: 1, // Monday is the first day of the week.
  10882. doy: 4, // The week that contains Jan 4th is the first week of the year.
  10883. },
  10884. });
  10885. function processRelativeTime$8(number, withoutSuffix, key, isFuture) {
  10886. var format = {
  10887. s: ['viensas secunds', "'iensas secunds"],
  10888. ss: [number + ' secunds', '' + number + ' secunds'],
  10889. m: ["'n míut", "'iens míut"],
  10890. mm: [number + ' míuts', '' + number + ' míuts'],
  10891. h: ["'n þora", "'iensa þora"],
  10892. hh: [number + ' þoras', '' + number + ' þoras'],
  10893. d: ["'n ziua", "'iensa ziua"],
  10894. dd: [number + ' ziuas', '' + number + ' ziuas'],
  10895. M: ["'n mes", "'iens mes"],
  10896. MM: [number + ' mesen', '' + number + ' mesen'],
  10897. y: ["'n ar", "'iens ar"],
  10898. yy: [number + ' ars', '' + number + ' ars'],
  10899. };
  10900. return isFuture
  10901. ? format[key][0]
  10902. : withoutSuffix
  10903. ? format[key][0]
  10904. : format[key][1];
  10905. }
  10906. //! moment.js locale configuration
  10907. moment.defineLocale('tzm-latn', {
  10908. months: 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split(
  10909. '_'
  10910. ),
  10911. monthsShort: 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split(
  10912. '_'
  10913. ),
  10914. weekdays: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
  10915. weekdaysShort: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
  10916. weekdaysMin: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
  10917. longDateFormat: {
  10918. LT: 'HH:mm',
  10919. LTS: 'HH:mm:ss',
  10920. L: 'DD/MM/YYYY',
  10921. LL: 'D MMMM YYYY',
  10922. LLL: 'D MMMM YYYY HH:mm',
  10923. LLLL: 'dddd D MMMM YYYY HH:mm',
  10924. },
  10925. calendar: {
  10926. sameDay: '[asdkh g] LT',
  10927. nextDay: '[aska g] LT',
  10928. nextWeek: 'dddd [g] LT',
  10929. lastDay: '[assant g] LT',
  10930. lastWeek: 'dddd [g] LT',
  10931. sameElse: 'L',
  10932. },
  10933. relativeTime: {
  10934. future: 'dadkh s yan %s',
  10935. past: 'yan %s',
  10936. s: 'imik',
  10937. ss: '%d imik',
  10938. m: 'minuḍ',
  10939. mm: '%d minuḍ',
  10940. h: 'saɛa',
  10941. hh: '%d tassaɛin',
  10942. d: 'ass',
  10943. dd: '%d ossan',
  10944. M: 'ayowr',
  10945. MM: '%d iyyirn',
  10946. y: 'asgas',
  10947. yy: '%d isgasn',
  10948. },
  10949. week: {
  10950. dow: 6, // Saturday is the first day of the week.
  10951. doy: 12, // The week that contains Jan 12th is the first week of the year.
  10952. },
  10953. });
  10954. //! moment.js locale configuration
  10955. moment.defineLocale('tzm', {
  10956. months: 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split(
  10957. '_'
  10958. ),
  10959. monthsShort: 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split(
  10960. '_'
  10961. ),
  10962. weekdays: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
  10963. weekdaysShort: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
  10964. weekdaysMin: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
  10965. longDateFormat: {
  10966. LT: 'HH:mm',
  10967. LTS: 'HH:mm:ss',
  10968. L: 'DD/MM/YYYY',
  10969. LL: 'D MMMM YYYY',
  10970. LLL: 'D MMMM YYYY HH:mm',
  10971. LLLL: 'dddd D MMMM YYYY HH:mm',
  10972. },
  10973. calendar: {
  10974. sameDay: '[ⴰⵙⴷⵅ ⴴ] LT',
  10975. nextDay: '[ⴰⵙⴽⴰ ⴴ] LT',
  10976. nextWeek: 'dddd [ⴴ] LT',
  10977. lastDay: '[ⴰⵚⴰⵏⵜ ⴴ] LT',
  10978. lastWeek: 'dddd [ⴴ] LT',
  10979. sameElse: 'L',
  10980. },
  10981. relativeTime: {
  10982. future: 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s',
  10983. past: 'ⵢⴰⵏ %s',
  10984. s: 'ⵉⵎⵉⴽ',
  10985. ss: '%d ⵉⵎⵉⴽ',
  10986. m: 'ⵎⵉⵏⵓⴺ',
  10987. mm: '%d ⵎⵉⵏⵓⴺ',
  10988. h: 'ⵙⴰⵄⴰ',
  10989. hh: '%d ⵜⴰⵙⵙⴰⵄⵉⵏ',
  10990. d: 'ⴰⵙⵙ',
  10991. dd: '%d oⵙⵙⴰⵏ',
  10992. M: 'ⴰⵢoⵓⵔ',
  10993. MM: '%d ⵉⵢⵢⵉⵔⵏ',
  10994. y: 'ⴰⵙⴳⴰⵙ',
  10995. yy: '%d ⵉⵙⴳⴰⵙⵏ',
  10996. },
  10997. week: {
  10998. dow: 6, // Saturday is the first day of the week.
  10999. doy: 12, // The week that contains Jan 12th is the first week of the year.
  11000. },
  11001. });
  11002. //! moment.js locale configuration
  11003. moment.defineLocale('ug-cn', {
  11004. months: 'يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر'.split(
  11005. '_'
  11006. ),
  11007. monthsShort: 'يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر'.split(
  11008. '_'
  11009. ),
  11010. weekdays: 'يەكشەنبە_دۈشەنبە_سەيشەنبە_چارشەنبە_پەيشەنبە_جۈمە_شەنبە'.split(
  11011. '_'
  11012. ),
  11013. weekdaysShort: 'يە_دۈ_سە_چا_پە_جۈ_شە'.split('_'),
  11014. weekdaysMin: 'يە_دۈ_سە_چا_پە_جۈ_شە'.split('_'),
  11015. longDateFormat: {
  11016. LT: 'HH:mm',
  11017. LTS: 'HH:mm:ss',
  11018. L: 'YYYY-MM-DD',
  11019. LL: 'YYYY-يىلىM-ئاينىڭD-كۈنى',
  11020. LLL: 'YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm',
  11021. LLLL: 'dddd، YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm',
  11022. },
  11023. meridiemParse: /يېرىم كېچە|سەھەر|چۈشتىن بۇرۇن|چۈش|چۈشتىن كېيىن|كەچ/,
  11024. meridiemHour: function (hour, meridiem) {
  11025. if (hour === 12) {
  11026. hour = 0;
  11027. }
  11028. if (
  11029. meridiem === 'يېرىم كېچە' ||
  11030. meridiem === 'سەھەر' ||
  11031. meridiem === 'چۈشتىن بۇرۇن'
  11032. ) {
  11033. return hour;
  11034. } else if (meridiem === 'چۈشتىن كېيىن' || meridiem === 'كەچ') {
  11035. return hour + 12;
  11036. } else {
  11037. return hour >= 11 ? hour : hour + 12;
  11038. }
  11039. },
  11040. meridiem: function (hour, minute, isLower) {
  11041. var hm = hour * 100 + minute;
  11042. if (hm < 600) {
  11043. return 'يېرىم كېچە';
  11044. } else if (hm < 900) {
  11045. return 'سەھەر';
  11046. } else if (hm < 1130) {
  11047. return 'چۈشتىن بۇرۇن';
  11048. } else if (hm < 1230) {
  11049. return 'چۈش';
  11050. } else if (hm < 1800) {
  11051. return 'چۈشتىن كېيىن';
  11052. } else {
  11053. return 'كەچ';
  11054. }
  11055. },
  11056. calendar: {
  11057. sameDay: '[بۈگۈن سائەت] LT',
  11058. nextDay: '[ئەتە سائەت] LT',
  11059. nextWeek: '[كېلەركى] dddd [سائەت] LT',
  11060. lastDay: '[تۆنۈگۈن] LT',
  11061. lastWeek: '[ئالدىنقى] dddd [سائەت] LT',
  11062. sameElse: 'L',
  11063. },
  11064. relativeTime: {
  11065. future: '%s كېيىن',
  11066. past: '%s بۇرۇن',
  11067. s: 'نەچچە سېكونت',
  11068. ss: '%d سېكونت',
  11069. m: 'بىر مىنۇت',
  11070. mm: '%d مىنۇت',
  11071. h: 'بىر سائەت',
  11072. hh: '%d سائەت',
  11073. d: 'بىر كۈن',
  11074. dd: '%d كۈن',
  11075. M: 'بىر ئاي',
  11076. MM: '%d ئاي',
  11077. y: 'بىر يىل',
  11078. yy: '%d يىل',
  11079. },
  11080. dayOfMonthOrdinalParse: /\d{1,2}(-كۈنى|-ئاي|-ھەپتە)/,
  11081. ordinal: function (number, period) {
  11082. switch (period) {
  11083. case 'd':
  11084. case 'D':
  11085. case 'DDD':
  11086. return number + '-كۈنى';
  11087. case 'w':
  11088. case 'W':
  11089. return number + '-ھەپتە';
  11090. default:
  11091. return number;
  11092. }
  11093. },
  11094. preparse: function (string) {
  11095. return string.replace(/،/g, ',');
  11096. },
  11097. postformat: function (string) {
  11098. return string.replace(/,/g, '،');
  11099. },
  11100. week: {
  11101. // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
  11102. dow: 1, // Monday is the first day of the week.
  11103. doy: 7, // The week that contains Jan 1st is the first week of the year.
  11104. },
  11105. });
  11106. //! moment.js locale configuration
  11107. function plural$6(word, num) {
  11108. var forms = word.split('_');
  11109. return num % 10 === 1 && num % 100 !== 11
  11110. ? forms[0]
  11111. : num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)
  11112. ? forms[1]
  11113. : forms[2];
  11114. }
  11115. function relativeTimeWithPlural$4(number, withoutSuffix, key) {
  11116. var format = {
  11117. ss: withoutSuffix ? 'секунда_секунди_секунд' : 'секунду_секунди_секунд',
  11118. mm: withoutSuffix ? 'хвилина_хвилини_хвилин' : 'хвилину_хвилини_хвилин',
  11119. hh: withoutSuffix ? 'година_години_годин' : 'годину_години_годин',
  11120. dd: 'день_дні_днів',
  11121. MM: 'місяць_місяці_місяців',
  11122. yy: 'рік_роки_років',
  11123. };
  11124. if (key === 'm') {
  11125. return withoutSuffix ? 'хвилина' : 'хвилину';
  11126. } else if (key === 'h') {
  11127. return withoutSuffix ? 'година' : 'годину';
  11128. } else {
  11129. return number + ' ' + plural$6(format[key], +number);
  11130. }
  11131. }
  11132. function weekdaysCaseReplace(m, format) {
  11133. var weekdays = {
  11134. nominative: 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split(
  11135. '_'
  11136. ),
  11137. accusative: 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split(
  11138. '_'
  11139. ),
  11140. genitive: 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split(
  11141. '_'
  11142. ),
  11143. },
  11144. nounCase;
  11145. if (m === true) {
  11146. return weekdays['nominative']
  11147. .slice(1, 7)
  11148. .concat(weekdays['nominative'].slice(0, 1));
  11149. }
  11150. if (!m) {
  11151. return weekdays['nominative'];
  11152. }
  11153. nounCase = /(\[[ВвУу]\]) ?dddd/.test(format)
  11154. ? 'accusative'
  11155. : /\[?(?:минулої|наступної)? ?\] ?dddd/.test(format)
  11156. ? 'genitive'
  11157. : 'nominative';
  11158. return weekdays[nounCase][m.day()];
  11159. }
  11160. function processHoursFunction(str) {
  11161. return function () {
  11162. return str + 'о' + (this.hours() === 11 ? 'б' : '') + '] LT';
  11163. };
  11164. }
  11165. moment.defineLocale('uk', {
  11166. months: {
  11167. format: 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split(
  11168. '_'
  11169. ),
  11170. standalone: 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split(
  11171. '_'
  11172. ),
  11173. },
  11174. monthsShort: 'січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд'.split(
  11175. '_'
  11176. ),
  11177. weekdays: weekdaysCaseReplace,
  11178. weekdaysShort: 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
  11179. weekdaysMin: 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
  11180. longDateFormat: {
  11181. LT: 'HH:mm',
  11182. LTS: 'HH:mm:ss',
  11183. L: 'DD.MM.YYYY',
  11184. LL: 'D MMMM YYYY р.',
  11185. LLL: 'D MMMM YYYY р., HH:mm',
  11186. LLLL: 'dddd, D MMMM YYYY р., HH:mm',
  11187. },
  11188. calendar: {
  11189. sameDay: processHoursFunction('[Сьогодні '),
  11190. nextDay: processHoursFunction('[Завтра '),
  11191. lastDay: processHoursFunction('[Вчора '),
  11192. nextWeek: processHoursFunction('[У] dddd ['),
  11193. lastWeek: function () {
  11194. switch (this.day()) {
  11195. case 0:
  11196. case 3:
  11197. case 5:
  11198. case 6:
  11199. return processHoursFunction('[Минулої] dddd [').call(this);
  11200. case 1:
  11201. case 2:
  11202. case 4:
  11203. return processHoursFunction('[Минулого] dddd [').call(this);
  11204. }
  11205. },
  11206. sameElse: 'L',
  11207. },
  11208. relativeTime: {
  11209. future: 'за %s',
  11210. past: '%s тому',
  11211. s: 'декілька секунд',
  11212. ss: relativeTimeWithPlural$4,
  11213. m: relativeTimeWithPlural$4,
  11214. mm: relativeTimeWithPlural$4,
  11215. h: 'годину',
  11216. hh: relativeTimeWithPlural$4,
  11217. d: 'день',
  11218. dd: relativeTimeWithPlural$4,
  11219. M: 'місяць',
  11220. MM: relativeTimeWithPlural$4,
  11221. y: 'рік',
  11222. yy: relativeTimeWithPlural$4,
  11223. },
  11224. // M. E.: those two are virtually unused but a user might want to implement them for his/her website for some reason
  11225. meridiemParse: /ночі|ранку|дня|вечора/,
  11226. isPM: function (input) {
  11227. return /^(дня|вечора)$/.test(input);
  11228. },
  11229. meridiem: function (hour, minute, isLower) {
  11230. if (hour < 4) {
  11231. return 'ночі';
  11232. } else if (hour < 12) {
  11233. return 'ранку';
  11234. } else if (hour < 17) {
  11235. return 'дня';
  11236. } else {
  11237. return 'вечора';
  11238. }
  11239. },
  11240. dayOfMonthOrdinalParse: /\d{1,2}-(й|го)/,
  11241. ordinal: function (number, period) {
  11242. switch (period) {
  11243. case 'M':
  11244. case 'd':
  11245. case 'DDD':
  11246. case 'w':
  11247. case 'W':
  11248. return number + '-й';
  11249. case 'D':
  11250. return number + '-го';
  11251. default:
  11252. return number;
  11253. }
  11254. },
  11255. week: {
  11256. dow: 1, // Monday is the first day of the week.
  11257. doy: 7, // The week that contains Jan 7th is the first week of the year.
  11258. },
  11259. });
  11260. //! moment.js locale configuration
  11261. var months$a = [
  11262. 'جنوری',
  11263. 'فروری',
  11264. 'مارچ',
  11265. 'اپریل',
  11266. 'مئی',
  11267. 'جون',
  11268. 'جولائی',
  11269. 'اگست',
  11270. 'ستمبر',
  11271. 'اکتوبر',
  11272. 'نومبر',
  11273. 'دسمبر',
  11274. ],
  11275. days$1 = ['اتوار', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'ہفتہ'];
  11276. moment.defineLocale('ur', {
  11277. months: months$a,
  11278. monthsShort: months$a,
  11279. weekdays: days$1,
  11280. weekdaysShort: days$1,
  11281. weekdaysMin: days$1,
  11282. longDateFormat: {
  11283. LT: 'HH:mm',
  11284. LTS: 'HH:mm:ss',
  11285. L: 'DD/MM/YYYY',
  11286. LL: 'D MMMM YYYY',
  11287. LLL: 'D MMMM YYYY HH:mm',
  11288. LLLL: 'dddd، D MMMM YYYY HH:mm',
  11289. },
  11290. meridiemParse: /صبح|شام/,
  11291. isPM: function (input) {
  11292. return 'شام' === input;
  11293. },
  11294. meridiem: function (hour, minute, isLower) {
  11295. if (hour < 12) {
  11296. return 'صبح';
  11297. }
  11298. return 'شام';
  11299. },
  11300. calendar: {
  11301. sameDay: '[آج بوقت] LT',
  11302. nextDay: '[کل بوقت] LT',
  11303. nextWeek: 'dddd [بوقت] LT',
  11304. lastDay: '[گذشتہ روز بوقت] LT',
  11305. lastWeek: '[گذشتہ] dddd [بوقت] LT',
  11306. sameElse: 'L',
  11307. },
  11308. relativeTime: {
  11309. future: '%s بعد',
  11310. past: '%s قبل',
  11311. s: 'چند سیکنڈ',
  11312. ss: '%d سیکنڈ',
  11313. m: 'ایک منٹ',
  11314. mm: '%d منٹ',
  11315. h: 'ایک گھنٹہ',
  11316. hh: '%d گھنٹے',
  11317. d: 'ایک دن',
  11318. dd: '%d دن',
  11319. M: 'ایک ماہ',
  11320. MM: '%d ماہ',
  11321. y: 'ایک سال',
  11322. yy: '%d سال',
  11323. },
  11324. preparse: function (string) {
  11325. return string.replace(/،/g, ',');
  11326. },
  11327. postformat: function (string) {
  11328. return string.replace(/,/g, '،');
  11329. },
  11330. week: {
  11331. dow: 1, // Monday is the first day of the week.
  11332. doy: 4, // The week that contains Jan 4th is the first week of the year.
  11333. },
  11334. });
  11335. //! moment.js locale configuration
  11336. moment.defineLocale('uz-latn', {
  11337. months: 'Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr'.split(
  11338. '_'
  11339. ),
  11340. monthsShort: 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'),
  11341. weekdays: 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split(
  11342. '_'
  11343. ),
  11344. weekdaysShort: 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'),
  11345. weekdaysMin: 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'),
  11346. longDateFormat: {
  11347. LT: 'HH:mm',
  11348. LTS: 'HH:mm:ss',
  11349. L: 'DD/MM/YYYY',
  11350. LL: 'D MMMM YYYY',
  11351. LLL: 'D MMMM YYYY HH:mm',
  11352. LLLL: 'D MMMM YYYY, dddd HH:mm',
  11353. },
  11354. calendar: {
  11355. sameDay: '[Bugun soat] LT [da]',
  11356. nextDay: '[Ertaga] LT [da]',
  11357. nextWeek: 'dddd [kuni soat] LT [da]',
  11358. lastDay: '[Kecha soat] LT [da]',
  11359. lastWeek: "[O'tgan] dddd [kuni soat] LT [da]",
  11360. sameElse: 'L',
  11361. },
  11362. relativeTime: {
  11363. future: 'Yaqin %s ichida',
  11364. past: 'Bir necha %s oldin',
  11365. s: 'soniya',
  11366. ss: '%d soniya',
  11367. m: 'bir daqiqa',
  11368. mm: '%d daqiqa',
  11369. h: 'bir soat',
  11370. hh: '%d soat',
  11371. d: 'bir kun',
  11372. dd: '%d kun',
  11373. M: 'bir oy',
  11374. MM: '%d oy',
  11375. y: 'bir yil',
  11376. yy: '%d yil',
  11377. },
  11378. week: {
  11379. dow: 1, // Monday is the first day of the week.
  11380. doy: 7, // The week that contains Jan 7th is the first week of the year.
  11381. },
  11382. });
  11383. //! moment.js locale configuration
  11384. moment.defineLocale('uz', {
  11385. months: 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split(
  11386. '_'
  11387. ),
  11388. monthsShort: 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'),
  11389. weekdays: 'Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба'.split('_'),
  11390. weekdaysShort: 'Якш_Душ_Сеш_Чор_Пай_Жум_Шан'.split('_'),
  11391. weekdaysMin: 'Як_Ду_Се_Чо_Па_Жу_Ша'.split('_'),
  11392. longDateFormat: {
  11393. LT: 'HH:mm',
  11394. LTS: 'HH:mm:ss',
  11395. L: 'DD/MM/YYYY',
  11396. LL: 'D MMMM YYYY',
  11397. LLL: 'D MMMM YYYY HH:mm',
  11398. LLLL: 'D MMMM YYYY, dddd HH:mm',
  11399. },
  11400. calendar: {
  11401. sameDay: '[Бугун соат] LT [да]',
  11402. nextDay: '[Эртага] LT [да]',
  11403. nextWeek: 'dddd [куни соат] LT [да]',
  11404. lastDay: '[Кеча соат] LT [да]',
  11405. lastWeek: '[Утган] dddd [куни соат] LT [да]',
  11406. sameElse: 'L',
  11407. },
  11408. relativeTime: {
  11409. future: 'Якин %s ичида',
  11410. past: 'Бир неча %s олдин',
  11411. s: 'фурсат',
  11412. ss: '%d фурсат',
  11413. m: 'бир дакика',
  11414. mm: '%d дакика',
  11415. h: 'бир соат',
  11416. hh: '%d соат',
  11417. d: 'бир кун',
  11418. dd: '%d кун',
  11419. M: 'бир ой',
  11420. MM: '%d ой',
  11421. y: 'бир йил',
  11422. yy: '%d йил',
  11423. },
  11424. week: {
  11425. dow: 1, // Monday is the first day of the week.
  11426. doy: 7, // The week that contains Jan 4th is the first week of the year.
  11427. },
  11428. });
  11429. //! moment.js locale configuration
  11430. moment.defineLocale('vi', {
  11431. months: 'tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12'.split(
  11432. '_'
  11433. ),
  11434. monthsShort: 'Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12'.split(
  11435. '_'
  11436. ),
  11437. monthsParseExact: true,
  11438. weekdays: 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split(
  11439. '_'
  11440. ),
  11441. weekdaysShort: 'CN_T2_T3_T4_T5_T6_T7'.split('_'),
  11442. weekdaysMin: 'CN_T2_T3_T4_T5_T6_T7'.split('_'),
  11443. weekdaysParseExact: true,
  11444. meridiemParse: /sa|ch/i,
  11445. isPM: function (input) {
  11446. return /^ch$/i.test(input);
  11447. },
  11448. meridiem: function (hours, minutes, isLower) {
  11449. if (hours < 12) {
  11450. return isLower ? 'sa' : 'SA';
  11451. } else {
  11452. return isLower ? 'ch' : 'CH';
  11453. }
  11454. },
  11455. longDateFormat: {
  11456. LT: 'HH:mm',
  11457. LTS: 'HH:mm:ss',
  11458. L: 'DD/MM/YYYY',
  11459. LL: 'D MMMM [năm] YYYY',
  11460. LLL: 'D MMMM [năm] YYYY HH:mm',
  11461. LLLL: 'dddd, D MMMM [năm] YYYY HH:mm',
  11462. l: 'DD/M/YYYY',
  11463. ll: 'D MMM YYYY',
  11464. lll: 'D MMM YYYY HH:mm',
  11465. llll: 'ddd, D MMM YYYY HH:mm',
  11466. },
  11467. calendar: {
  11468. sameDay: '[Hôm nay lúc] LT',
  11469. nextDay: '[Ngày mai lúc] LT',
  11470. nextWeek: 'dddd [tuần tới lúc] LT',
  11471. lastDay: '[Hôm qua lúc] LT',
  11472. lastWeek: 'dddd [tuần trước lúc] LT',
  11473. sameElse: 'L',
  11474. },
  11475. relativeTime: {
  11476. future: '%s tới',
  11477. past: '%s trước',
  11478. s: 'vài giây',
  11479. ss: '%d giây',
  11480. m: 'một phút',
  11481. mm: '%d phút',
  11482. h: 'một giờ',
  11483. hh: '%d giờ',
  11484. d: 'một ngày',
  11485. dd: '%d ngày',
  11486. w: 'một tuần',
  11487. ww: '%d tuần',
  11488. M: 'một tháng',
  11489. MM: '%d tháng',
  11490. y: 'một năm',
  11491. yy: '%d năm',
  11492. },
  11493. dayOfMonthOrdinalParse: /\d{1,2}/,
  11494. ordinal: function (number) {
  11495. return number;
  11496. },
  11497. week: {
  11498. dow: 1, // Monday is the first day of the week.
  11499. doy: 4, // The week that contains Jan 4th is the first week of the year.
  11500. },
  11501. });
  11502. //! moment.js locale configuration
  11503. moment.defineLocale('x-pseudo', {
  11504. months: 'J~áñúá~rý_F~ébrú~árý_~Márc~h_Áp~ríl_~Máý_~Júñé~_Júl~ý_Áú~gúst~_Sép~témb~ér_Ó~ctób~ér_Ñ~óvém~bér_~Décé~mbér'.split(
  11505. '_'
  11506. ),
  11507. monthsShort: 'J~áñ_~Féb_~Már_~Ápr_~Máý_~Júñ_~Júl_~Áúg_~Sép_~Óct_~Ñóv_~Déc'.split(
  11508. '_'
  11509. ),
  11510. monthsParseExact: true,
  11511. weekdays: 'S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~Fríd~áý_S~átúr~dáý'.split(
  11512. '_'
  11513. ),
  11514. weekdaysShort: 'S~úñ_~Móñ_~Túé_~Wéd_~Thú_~Frí_~Sát'.split('_'),
  11515. weekdaysMin: 'S~ú_Mó~_Tú_~Wé_T~h_Fr~_Sá'.split('_'),
  11516. weekdaysParseExact: true,
  11517. longDateFormat: {
  11518. LT: 'HH:mm',
  11519. L: 'DD/MM/YYYY',
  11520. LL: 'D MMMM YYYY',
  11521. LLL: 'D MMMM YYYY HH:mm',
  11522. LLLL: 'dddd, D MMMM YYYY HH:mm',
  11523. },
  11524. calendar: {
  11525. sameDay: '[T~ódá~ý át] LT',
  11526. nextDay: '[T~ómó~rró~w át] LT',
  11527. nextWeek: 'dddd [át] LT',
  11528. lastDay: '[Ý~ést~érdá~ý át] LT',
  11529. lastWeek: '[L~ást] dddd [át] LT',
  11530. sameElse: 'L',
  11531. },
  11532. relativeTime: {
  11533. future: 'í~ñ %s',
  11534. past: '%s á~gó',
  11535. s: 'á ~féw ~sécó~ñds',
  11536. ss: '%d s~écóñ~ds',
  11537. m: 'á ~míñ~úté',
  11538. mm: '%d m~íñú~tés',
  11539. h: 'á~ñ hó~úr',
  11540. hh: '%d h~óúrs',
  11541. d: 'á ~dáý',
  11542. dd: '%d d~áýs',
  11543. M: 'á ~móñ~th',
  11544. MM: '%d m~óñt~hs',
  11545. y: 'á ~ýéár',
  11546. yy: '%d ý~éárs',
  11547. },
  11548. dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/,
  11549. ordinal: function (number) {
  11550. var b = number % 10,
  11551. output =
  11552. ~~((number % 100) / 10) === 1
  11553. ? 'th'
  11554. : b === 1
  11555. ? 'st'
  11556. : b === 2
  11557. ? 'nd'
  11558. : b === 3
  11559. ? 'rd'
  11560. : 'th';
  11561. return number + output;
  11562. },
  11563. week: {
  11564. dow: 1, // Monday is the first day of the week.
  11565. doy: 4, // The week that contains Jan 4th is the first week of the year.
  11566. },
  11567. });
  11568. //! moment.js locale configuration
  11569. moment.defineLocale('yo', {
  11570. months: 'Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀'.split(
  11571. '_'
  11572. ),
  11573. monthsShort: 'Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀'.split('_'),
  11574. weekdays: 'Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta'.split('_'),
  11575. weekdaysShort: 'Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá'.split('_'),
  11576. weekdaysMin: 'Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb'.split('_'),
  11577. longDateFormat: {
  11578. LT: 'h:mm A',
  11579. LTS: 'h:mm:ss A',
  11580. L: 'DD/MM/YYYY',
  11581. LL: 'D MMMM YYYY',
  11582. LLL: 'D MMMM YYYY h:mm A',
  11583. LLLL: 'dddd, D MMMM YYYY h:mm A',
  11584. },
  11585. calendar: {
  11586. sameDay: '[Ònì ni] LT',
  11587. nextDay: '[Ọ̀la ni] LT',
  11588. nextWeek: "dddd [Ọsẹ̀ tón'bọ] [ni] LT",
  11589. lastDay: '[Àna ni] LT',
  11590. lastWeek: 'dddd [Ọsẹ̀ tólọ́] [ni] LT',
  11591. sameElse: 'L',
  11592. },
  11593. relativeTime: {
  11594. future: 'ní %s',
  11595. past: '%s kọjá',
  11596. s: 'ìsẹjú aayá die',
  11597. ss: 'aayá %d',
  11598. m: 'ìsẹjú kan',
  11599. mm: 'ìsẹjú %d',
  11600. h: 'wákati kan',
  11601. hh: 'wákati %d',
  11602. d: 'ọjọ́ kan',
  11603. dd: 'ọjọ́ %d',
  11604. M: 'osù kan',
  11605. MM: 'osù %d',
  11606. y: 'ọdún kan',
  11607. yy: 'ọdún %d',
  11608. },
  11609. dayOfMonthOrdinalParse: /ọjọ́\s\d{1,2}/,
  11610. ordinal: 'ọjọ́ %d',
  11611. week: {
  11612. dow: 1, // Monday is the first day of the week.
  11613. doy: 4, // The week that contains Jan 4th is the first week of the year.
  11614. },
  11615. });
  11616. //! moment.js locale configuration
  11617. moment.defineLocale('zh-cn', {
  11618. months: '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split(
  11619. '_'
  11620. ),
  11621. monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split(
  11622. '_'
  11623. ),
  11624. weekdays: '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
  11625. weekdaysShort: '周日_周一_周二_周三_周四_周五_周六'.split('_'),
  11626. weekdaysMin: '日_一_二_三_四_五_六'.split('_'),
  11627. longDateFormat: {
  11628. LT: 'HH:mm',
  11629. LTS: 'HH:mm:ss',
  11630. L: 'YYYY/MM/DD',
  11631. LL: 'YYYY年M月D日',
  11632. LLL: 'YYYY年M月D日Ah点mm分',
  11633. LLLL: 'YYYY年M月D日ddddAh点mm分',
  11634. l: 'YYYY/M/D',
  11635. ll: 'YYYY年M月D日',
  11636. lll: 'YYYY年M月D日 HH:mm',
  11637. llll: 'YYYY年M月D日dddd HH:mm',
  11638. },
  11639. meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
  11640. meridiemHour: function (hour, meridiem) {
  11641. if (hour === 12) {
  11642. hour = 0;
  11643. }
  11644. if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {
  11645. return hour;
  11646. } else if (meridiem === '下午' || meridiem === '晚上') {
  11647. return hour + 12;
  11648. } else {
  11649. // '中午'
  11650. return hour >= 11 ? hour : hour + 12;
  11651. }
  11652. },
  11653. meridiem: function (hour, minute, isLower) {
  11654. var hm = hour * 100 + minute;
  11655. if (hm < 600) {
  11656. return '凌晨';
  11657. } else if (hm < 900) {
  11658. return '早上';
  11659. } else if (hm < 1130) {
  11660. return '上午';
  11661. } else if (hm < 1230) {
  11662. return '中午';
  11663. } else if (hm < 1800) {
  11664. return '下午';
  11665. } else {
  11666. return '晚上';
  11667. }
  11668. },
  11669. calendar: {
  11670. sameDay: '[今天]LT',
  11671. nextDay: '[明天]LT',
  11672. nextWeek: function (now) {
  11673. if (now.week() !== this.week()) {
  11674. return '[下]dddLT';
  11675. } else {
  11676. return '[本]dddLT';
  11677. }
  11678. },
  11679. lastDay: '[昨天]LT',
  11680. lastWeek: function (now) {
  11681. if (this.week() !== now.week()) {
  11682. return '[上]dddLT';
  11683. } else {
  11684. return '[本]dddLT';
  11685. }
  11686. },
  11687. sameElse: 'L',
  11688. },
  11689. dayOfMonthOrdinalParse: /\d{1,2}(日|月|周)/,
  11690. ordinal: function (number, period) {
  11691. switch (period) {
  11692. case 'd':
  11693. case 'D':
  11694. case 'DDD':
  11695. return number + '日';
  11696. case 'M':
  11697. return number + '月';
  11698. case 'w':
  11699. case 'W':
  11700. return number + '周';
  11701. default:
  11702. return number;
  11703. }
  11704. },
  11705. relativeTime: {
  11706. future: '%s后',
  11707. past: '%s前',
  11708. s: '几秒',
  11709. ss: '%d 秒',
  11710. m: '1 分钟',
  11711. mm: '%d 分钟',
  11712. h: '1 小时',
  11713. hh: '%d 小时',
  11714. d: '1 天',
  11715. dd: '%d 天',
  11716. w: '1 周',
  11717. ww: '%d 周',
  11718. M: '1 个月',
  11719. MM: '%d 个月',
  11720. y: '1 年',
  11721. yy: '%d 年',
  11722. },
  11723. week: {
  11724. // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
  11725. dow: 1, // Monday is the first day of the week.
  11726. doy: 4, // The week that contains Jan 4th is the first week of the year.
  11727. },
  11728. });
  11729. //! moment.js locale configuration
  11730. moment.defineLocale('zh-hk', {
  11731. months: '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split(
  11732. '_'
  11733. ),
  11734. monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split(
  11735. '_'
  11736. ),
  11737. weekdays: '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
  11738. weekdaysShort: '週日_週一_週二_週三_週四_週五_週六'.split('_'),
  11739. weekdaysMin: '日_一_二_三_四_五_六'.split('_'),
  11740. longDateFormat: {
  11741. LT: 'HH:mm',
  11742. LTS: 'HH:mm:ss',
  11743. L: 'YYYY/MM/DD',
  11744. LL: 'YYYY年M月D日',
  11745. LLL: 'YYYY年M月D日 HH:mm',
  11746. LLLL: 'YYYY年M月D日dddd HH:mm',
  11747. l: 'YYYY/M/D',
  11748. ll: 'YYYY年M月D日',
  11749. lll: 'YYYY年M月D日 HH:mm',
  11750. llll: 'YYYY年M月D日dddd HH:mm',
  11751. },
  11752. meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
  11753. meridiemHour: function (hour, meridiem) {
  11754. if (hour === 12) {
  11755. hour = 0;
  11756. }
  11757. if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {
  11758. return hour;
  11759. } else if (meridiem === '中午') {
  11760. return hour >= 11 ? hour : hour + 12;
  11761. } else if (meridiem === '下午' || meridiem === '晚上') {
  11762. return hour + 12;
  11763. }
  11764. },
  11765. meridiem: function (hour, minute, isLower) {
  11766. var hm = hour * 100 + minute;
  11767. if (hm < 600) {
  11768. return '凌晨';
  11769. } else if (hm < 900) {
  11770. return '早上';
  11771. } else if (hm < 1200) {
  11772. return '上午';
  11773. } else if (hm === 1200) {
  11774. return '中午';
  11775. } else if (hm < 1800) {
  11776. return '下午';
  11777. } else {
  11778. return '晚上';
  11779. }
  11780. },
  11781. calendar: {
  11782. sameDay: '[今天]LT',
  11783. nextDay: '[明天]LT',
  11784. nextWeek: '[下]ddddLT',
  11785. lastDay: '[昨天]LT',
  11786. lastWeek: '[上]ddddLT',
  11787. sameElse: 'L',
  11788. },
  11789. dayOfMonthOrdinalParse: /\d{1,2}(日|月|週)/,
  11790. ordinal: function (number, period) {
  11791. switch (period) {
  11792. case 'd':
  11793. case 'D':
  11794. case 'DDD':
  11795. return number + '日';
  11796. case 'M':
  11797. return number + '月';
  11798. case 'w':
  11799. case 'W':
  11800. return number + '週';
  11801. default:
  11802. return number;
  11803. }
  11804. },
  11805. relativeTime: {
  11806. future: '%s後',
  11807. past: '%s前',
  11808. s: '幾秒',
  11809. ss: '%d 秒',
  11810. m: '1 分鐘',
  11811. mm: '%d 分鐘',
  11812. h: '1 小時',
  11813. hh: '%d 小時',
  11814. d: '1 天',
  11815. dd: '%d 天',
  11816. M: '1 個月',
  11817. MM: '%d 個月',
  11818. y: '1 年',
  11819. yy: '%d 年',
  11820. },
  11821. });
  11822. //! moment.js locale configuration
  11823. moment.defineLocale('zh-mo', {
  11824. months: '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split(
  11825. '_'
  11826. ),
  11827. monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split(
  11828. '_'
  11829. ),
  11830. weekdays: '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
  11831. weekdaysShort: '週日_週一_週二_週三_週四_週五_週六'.split('_'),
  11832. weekdaysMin: '日_一_二_三_四_五_六'.split('_'),
  11833. longDateFormat: {
  11834. LT: 'HH:mm',
  11835. LTS: 'HH:mm:ss',
  11836. L: 'DD/MM/YYYY',
  11837. LL: 'YYYY年M月D日',
  11838. LLL: 'YYYY年M月D日 HH:mm',
  11839. LLLL: 'YYYY年M月D日dddd HH:mm',
  11840. l: 'D/M/YYYY',
  11841. ll: 'YYYY年M月D日',
  11842. lll: 'YYYY年M月D日 HH:mm',
  11843. llll: 'YYYY年M月D日dddd HH:mm',
  11844. },
  11845. meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
  11846. meridiemHour: function (hour, meridiem) {
  11847. if (hour === 12) {
  11848. hour = 0;
  11849. }
  11850. if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {
  11851. return hour;
  11852. } else if (meridiem === '中午') {
  11853. return hour >= 11 ? hour : hour + 12;
  11854. } else if (meridiem === '下午' || meridiem === '晚上') {
  11855. return hour + 12;
  11856. }
  11857. },
  11858. meridiem: function (hour, minute, isLower) {
  11859. var hm = hour * 100 + minute;
  11860. if (hm < 600) {
  11861. return '凌晨';
  11862. } else if (hm < 900) {
  11863. return '早上';
  11864. } else if (hm < 1130) {
  11865. return '上午';
  11866. } else if (hm < 1230) {
  11867. return '中午';
  11868. } else if (hm < 1800) {
  11869. return '下午';
  11870. } else {
  11871. return '晚上';
  11872. }
  11873. },
  11874. calendar: {
  11875. sameDay: '[今天] LT',
  11876. nextDay: '[明天] LT',
  11877. nextWeek: '[下]dddd LT',
  11878. lastDay: '[昨天] LT',
  11879. lastWeek: '[上]dddd LT',
  11880. sameElse: 'L',
  11881. },
  11882. dayOfMonthOrdinalParse: /\d{1,2}(日|月|週)/,
  11883. ordinal: function (number, period) {
  11884. switch (period) {
  11885. case 'd':
  11886. case 'D':
  11887. case 'DDD':
  11888. return number + '日';
  11889. case 'M':
  11890. return number + '月';
  11891. case 'w':
  11892. case 'W':
  11893. return number + '週';
  11894. default:
  11895. return number;
  11896. }
  11897. },
  11898. relativeTime: {
  11899. future: '%s內',
  11900. past: '%s前',
  11901. s: '幾秒',
  11902. ss: '%d 秒',
  11903. m: '1 分鐘',
  11904. mm: '%d 分鐘',
  11905. h: '1 小時',
  11906. hh: '%d 小時',
  11907. d: '1 天',
  11908. dd: '%d 天',
  11909. M: '1 個月',
  11910. MM: '%d 個月',
  11911. y: '1 年',
  11912. yy: '%d 年',
  11913. },
  11914. });
  11915. //! moment.js locale configuration
  11916. moment.defineLocale('zh-tw', {
  11917. months: '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split(
  11918. '_'
  11919. ),
  11920. monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split(
  11921. '_'
  11922. ),
  11923. weekdays: '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
  11924. weekdaysShort: '週日_週一_週二_週三_週四_週五_週六'.split('_'),
  11925. weekdaysMin: '日_一_二_三_四_五_六'.split('_'),
  11926. longDateFormat: {
  11927. LT: 'HH:mm',
  11928. LTS: 'HH:mm:ss',
  11929. L: 'YYYY/MM/DD',
  11930. LL: 'YYYY年M月D日',
  11931. LLL: 'YYYY年M月D日 HH:mm',
  11932. LLLL: 'YYYY年M月D日dddd HH:mm',
  11933. l: 'YYYY/M/D',
  11934. ll: 'YYYY年M月D日',
  11935. lll: 'YYYY年M月D日 HH:mm',
  11936. llll: 'YYYY年M月D日dddd HH:mm',
  11937. },
  11938. meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
  11939. meridiemHour: function (hour, meridiem) {
  11940. if (hour === 12) {
  11941. hour = 0;
  11942. }
  11943. if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {
  11944. return hour;
  11945. } else if (meridiem === '中午') {
  11946. return hour >= 11 ? hour : hour + 12;
  11947. } else if (meridiem === '下午' || meridiem === '晚上') {
  11948. return hour + 12;
  11949. }
  11950. },
  11951. meridiem: function (hour, minute, isLower) {
  11952. var hm = hour * 100 + minute;
  11953. if (hm < 600) {
  11954. return '凌晨';
  11955. } else if (hm < 900) {
  11956. return '早上';
  11957. } else if (hm < 1130) {
  11958. return '上午';
  11959. } else if (hm < 1230) {
  11960. return '中午';
  11961. } else if (hm < 1800) {
  11962. return '下午';
  11963. } else {
  11964. return '晚上';
  11965. }
  11966. },
  11967. calendar: {
  11968. sameDay: '[今天] LT',
  11969. nextDay: '[明天] LT',
  11970. nextWeek: '[下]dddd LT',
  11971. lastDay: '[昨天] LT',
  11972. lastWeek: '[上]dddd LT',
  11973. sameElse: 'L',
  11974. },
  11975. dayOfMonthOrdinalParse: /\d{1,2}(日|月|週)/,
  11976. ordinal: function (number, period) {
  11977. switch (period) {
  11978. case 'd':
  11979. case 'D':
  11980. case 'DDD':
  11981. return number + '日';
  11982. case 'M':
  11983. return number + '月';
  11984. case 'w':
  11985. case 'W':
  11986. return number + '週';
  11987. default:
  11988. return number;
  11989. }
  11990. },
  11991. relativeTime: {
  11992. future: '%s後',
  11993. past: '%s前',
  11994. s: '幾秒',
  11995. ss: '%d 秒',
  11996. m: '1 分鐘',
  11997. mm: '%d 分鐘',
  11998. h: '1 小時',
  11999. hh: '%d 小時',
  12000. d: '1 天',
  12001. dd: '%d 天',
  12002. M: '1 個月',
  12003. MM: '%d 個月',
  12004. y: '1 年',
  12005. yy: '%d 年',
  12006. },
  12007. });
  12008. moment.locale('en');
  12009. return moment;
  12010. })));