locales.js 371 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889
  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. monthsShort : 'Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'),
  11. weekdays : 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split('_'),
  12. weekdaysShort : 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'),
  13. weekdaysMin : 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'),
  14. meridiemParse: /vm|nm/i,
  15. isPM : function (input) {
  16. return /^nm$/i.test(input);
  17. },
  18. meridiem : function (hours, minutes, isLower) {
  19. if (hours < 12) {
  20. return isLower ? 'vm' : 'VM';
  21. } else {
  22. return isLower ? 'nm' : 'NM';
  23. }
  24. },
  25. longDateFormat : {
  26. LT : 'HH:mm',
  27. LTS : 'HH:mm:ss',
  28. L : 'DD/MM/YYYY',
  29. LL : 'D MMMM YYYY',
  30. LLL : 'D MMMM YYYY HH:mm',
  31. LLLL : 'dddd, D MMMM YYYY HH:mm'
  32. },
  33. calendar : {
  34. sameDay : '[Vandag om] LT',
  35. nextDay : '[Môre om] LT',
  36. nextWeek : 'dddd [om] LT',
  37. lastDay : '[Gister om] LT',
  38. lastWeek : '[Laas] dddd [om] LT',
  39. sameElse : 'L'
  40. },
  41. relativeTime : {
  42. future : 'oor %s',
  43. past : '%s gelede',
  44. s : '\'n paar sekondes',
  45. ss : '%d sekondes',
  46. m : '\'n minuut',
  47. mm : '%d minute',
  48. h : '\'n uur',
  49. hh : '%d ure',
  50. d : '\'n dag',
  51. dd : '%d dae',
  52. M : '\'n maand',
  53. MM : '%d maande',
  54. y : '\'n jaar',
  55. yy : '%d jaar'
  56. },
  57. dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
  58. ordinal : function (number) {
  59. return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de'); // Thanks to Joris Röling : https://github.com/jjupiter
  60. },
  61. week : {
  62. dow : 1, // Maandag is die eerste dag van die week.
  63. doy : 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
  64. }
  65. });
  66. //! moment.js locale configuration
  67. moment.defineLocale('ar-dz', {
  68. months : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
  69. monthsShort : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
  70. weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  71. weekdaysShort : 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
  72. weekdaysMin : 'أح_إث_ثلا_أر_خم_جم_سب'.split('_'),
  73. weekdaysParseExact : true,
  74. longDateFormat : {
  75. LT : 'HH:mm',
  76. LTS : 'HH:mm:ss',
  77. L : 'DD/MM/YYYY',
  78. LL : 'D MMMM YYYY',
  79. LLL : 'D MMMM YYYY HH:mm',
  80. LLLL : 'dddd D MMMM YYYY HH:mm'
  81. },
  82. calendar : {
  83. sameDay: '[اليوم على الساعة] LT',
  84. nextDay: '[غدا على الساعة] LT',
  85. nextWeek: 'dddd [على الساعة] LT',
  86. lastDay: '[أمس على الساعة] LT',
  87. lastWeek: 'dddd [على الساعة] LT',
  88. sameElse: 'L'
  89. },
  90. relativeTime : {
  91. future : 'في %s',
  92. past : 'منذ %s',
  93. s : 'ثوان',
  94. ss : '%d ثانية',
  95. m : 'دقيقة',
  96. mm : '%d دقائق',
  97. h : 'ساعة',
  98. hh : '%d ساعات',
  99. d : 'يوم',
  100. dd : '%d أيام',
  101. M : 'شهر',
  102. MM : '%d أشهر',
  103. y : 'سنة',
  104. yy : '%d سنوات'
  105. },
  106. week : {
  107. dow : 0, // Sunday is the first day of the week.
  108. doy : 4 // The week that contains Jan 1st is the first week of the year.
  109. }
  110. });
  111. //! moment.js locale configuration
  112. moment.defineLocale('ar-kw', {
  113. months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),
  114. monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),
  115. weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  116. weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
  117. weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  118. weekdaysParseExact : true,
  119. longDateFormat : {
  120. LT : 'HH:mm',
  121. LTS : 'HH:mm:ss',
  122. L : 'DD/MM/YYYY',
  123. LL : 'D MMMM YYYY',
  124. LLL : 'D MMMM YYYY HH:mm',
  125. LLLL : 'dddd D MMMM YYYY HH:mm'
  126. },
  127. calendar : {
  128. sameDay: '[اليوم على الساعة] LT',
  129. nextDay: '[غدا على الساعة] LT',
  130. nextWeek: 'dddd [على الساعة] LT',
  131. lastDay: '[أمس على الساعة] LT',
  132. lastWeek: 'dddd [على الساعة] LT',
  133. sameElse: 'L'
  134. },
  135. relativeTime : {
  136. future : 'في %s',
  137. past : 'منذ %s',
  138. s : 'ثوان',
  139. ss : '%d ثانية',
  140. m : 'دقيقة',
  141. mm : '%d دقائق',
  142. h : 'ساعة',
  143. hh : '%d ساعات',
  144. d : 'يوم',
  145. dd : '%d أيام',
  146. M : 'شهر',
  147. MM : '%d أشهر',
  148. y : 'سنة',
  149. yy : '%d سنوات'
  150. },
  151. week : {
  152. dow : 0, // Sunday is the first day of the week.
  153. doy : 12 // The week that contains Jan 1st is the first week of the year.
  154. }
  155. });
  156. //! moment.js locale configuration
  157. var symbolMap = {
  158. '1': '1',
  159. '2': '2',
  160. '3': '3',
  161. '4': '4',
  162. '5': '5',
  163. '6': '6',
  164. '7': '7',
  165. '8': '8',
  166. '9': '9',
  167. '0': '0'
  168. }, pluralForm = function (n) {
  169. return n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5;
  170. }, plurals = {
  171. s : ['أقل من ثانية', 'ثانية واحدة', ['ثانيتان', 'ثانيتين'], '%d ثوان', '%d ثانية', '%d ثانية'],
  172. m : ['أقل من دقيقة', 'دقيقة واحدة', ['دقيقتان', 'دقيقتين'], '%d دقائق', '%d دقيقة', '%d دقيقة'],
  173. h : ['أقل من ساعة', 'ساعة واحدة', ['ساعتان', 'ساعتين'], '%d ساعات', '%d ساعة', '%d ساعة'],
  174. d : ['أقل من يوم', 'يوم واحد', ['يومان', 'يومين'], '%d أيام', '%d يومًا', '%d يوم'],
  175. M : ['أقل من شهر', 'شهر واحد', ['شهران', 'شهرين'], '%d أشهر', '%d شهرا', '%d شهر'],
  176. y : ['أقل من عام', 'عام واحد', ['عامان', 'عامين'], '%d أعوام', '%d عامًا', '%d عام']
  177. }, pluralize = function (u) {
  178. return function (number, withoutSuffix, string, isFuture) {
  179. var f = pluralForm(number),
  180. str = plurals[u][pluralForm(number)];
  181. if (f === 2) {
  182. str = str[withoutSuffix ? 0 : 1];
  183. }
  184. return str.replace(/%d/i, number);
  185. };
  186. }, months = [
  187. 'يناير',
  188. 'فبراير',
  189. 'مارس',
  190. 'أبريل',
  191. 'مايو',
  192. 'يونيو',
  193. 'يوليو',
  194. 'أغسطس',
  195. 'سبتمبر',
  196. 'أكتوبر',
  197. 'نوفمبر',
  198. 'ديسمبر'
  199. ];
  200. moment.defineLocale('ar-ly', {
  201. months : months,
  202. monthsShort : months,
  203. weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  204. weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
  205. weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  206. weekdaysParseExact : true,
  207. longDateFormat : {
  208. LT : 'HH:mm',
  209. LTS : 'HH:mm:ss',
  210. L : 'D/\u200FM/\u200FYYYY',
  211. LL : 'D MMMM YYYY',
  212. LLL : 'D MMMM YYYY HH:mm',
  213. LLLL : 'dddd D MMMM YYYY HH:mm'
  214. },
  215. meridiemParse: /ص|م/,
  216. isPM : function (input) {
  217. return 'م' === input;
  218. },
  219. meridiem : function (hour, minute, isLower) {
  220. if (hour < 12) {
  221. return 'ص';
  222. } else {
  223. return 'م';
  224. }
  225. },
  226. calendar : {
  227. sameDay: '[اليوم عند الساعة] LT',
  228. nextDay: '[غدًا عند الساعة] LT',
  229. nextWeek: 'dddd [عند الساعة] LT',
  230. lastDay: '[أمس عند الساعة] LT',
  231. lastWeek: 'dddd [عند الساعة] LT',
  232. sameElse: 'L'
  233. },
  234. relativeTime : {
  235. future : 'بعد %s',
  236. past : 'منذ %s',
  237. s : pluralize('s'),
  238. ss : pluralize('s'),
  239. m : pluralize('m'),
  240. mm : pluralize('m'),
  241. h : pluralize('h'),
  242. hh : pluralize('h'),
  243. d : pluralize('d'),
  244. dd : pluralize('d'),
  245. M : pluralize('M'),
  246. MM : pluralize('M'),
  247. y : pluralize('y'),
  248. yy : pluralize('y')
  249. },
  250. preparse: function (string) {
  251. return string.replace(/،/g, ',');
  252. },
  253. postformat: function (string) {
  254. return string.replace(/\d/g, function (match) {
  255. return symbolMap[match];
  256. }).replace(/,/g, '،');
  257. },
  258. week : {
  259. dow : 6, // Saturday is the first day of the week.
  260. doy : 12 // The week that contains Jan 1st is the first week of the year.
  261. }
  262. });
  263. //! moment.js locale configuration
  264. moment.defineLocale('ar-ma', {
  265. months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),
  266. monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),
  267. weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  268. weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
  269. weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  270. weekdaysParseExact : true,
  271. longDateFormat : {
  272. LT : 'HH:mm',
  273. LTS : 'HH:mm:ss',
  274. L : 'DD/MM/YYYY',
  275. LL : 'D MMMM YYYY',
  276. LLL : 'D MMMM YYYY HH:mm',
  277. LLLL : 'dddd D MMMM YYYY HH:mm'
  278. },
  279. calendar : {
  280. sameDay: '[اليوم على الساعة] LT',
  281. nextDay: '[غدا على الساعة] LT',
  282. nextWeek: 'dddd [على الساعة] LT',
  283. lastDay: '[أمس على الساعة] LT',
  284. lastWeek: 'dddd [على الساعة] LT',
  285. sameElse: 'L'
  286. },
  287. relativeTime : {
  288. future : 'في %s',
  289. past : 'منذ %s',
  290. s : 'ثوان',
  291. ss : '%d ثانية',
  292. m : 'دقيقة',
  293. mm : '%d دقائق',
  294. h : 'ساعة',
  295. hh : '%d ساعات',
  296. d : 'يوم',
  297. dd : '%d أيام',
  298. M : 'شهر',
  299. MM : '%d أشهر',
  300. y : 'سنة',
  301. yy : '%d سنوات'
  302. },
  303. week : {
  304. dow : 6, // Saturday is the first day of the week.
  305. doy : 12 // The week that contains Jan 1st is the first week of the year.
  306. }
  307. });
  308. //! moment.js locale configuration
  309. var symbolMap$1 = {
  310. '1': '١',
  311. '2': '٢',
  312. '3': '٣',
  313. '4': '٤',
  314. '5': '٥',
  315. '6': '٦',
  316. '7': '٧',
  317. '8': '٨',
  318. '9': '٩',
  319. '0': '٠'
  320. }, numberMap = {
  321. '١': '1',
  322. '٢': '2',
  323. '٣': '3',
  324. '٤': '4',
  325. '٥': '5',
  326. '٦': '6',
  327. '٧': '7',
  328. '٨': '8',
  329. '٩': '9',
  330. '٠': '0'
  331. };
  332. moment.defineLocale('ar-sa', {
  333. months : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
  334. monthsShort : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
  335. weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  336. weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
  337. weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  338. weekdaysParseExact : true,
  339. longDateFormat : {
  340. LT : 'HH:mm',
  341. LTS : 'HH:mm:ss',
  342. L : 'DD/MM/YYYY',
  343. LL : 'D MMMM YYYY',
  344. LLL : 'D MMMM YYYY HH:mm',
  345. LLLL : 'dddd D MMMM YYYY HH:mm'
  346. },
  347. meridiemParse: /ص|م/,
  348. isPM : function (input) {
  349. return 'م' === input;
  350. },
  351. meridiem : function (hour, minute, isLower) {
  352. if (hour < 12) {
  353. return 'ص';
  354. } else {
  355. return 'م';
  356. }
  357. },
  358. calendar : {
  359. sameDay: '[اليوم على الساعة] LT',
  360. nextDay: '[غدا على الساعة] LT',
  361. nextWeek: 'dddd [على الساعة] LT',
  362. lastDay: '[أمس على الساعة] LT',
  363. lastWeek: 'dddd [على الساعة] LT',
  364. sameElse: 'L'
  365. },
  366. relativeTime : {
  367. future : 'في %s',
  368. past : 'منذ %s',
  369. s : 'ثوان',
  370. ss : '%d ثانية',
  371. m : 'دقيقة',
  372. mm : '%d دقائق',
  373. h : 'ساعة',
  374. hh : '%d ساعات',
  375. d : 'يوم',
  376. dd : '%d أيام',
  377. M : 'شهر',
  378. MM : '%d أشهر',
  379. y : 'سنة',
  380. yy : '%d سنوات'
  381. },
  382. preparse: function (string) {
  383. return string.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
  384. return numberMap[match];
  385. }).replace(/،/g, ',');
  386. },
  387. postformat: function (string) {
  388. return string.replace(/\d/g, function (match) {
  389. return symbolMap$1[match];
  390. }).replace(/,/g, '،');
  391. },
  392. week : {
  393. dow : 0, // Sunday is the first day of the week.
  394. doy : 6 // The week that contains Jan 1st is the first week of the year.
  395. }
  396. });
  397. //! moment.js locale configuration
  398. moment.defineLocale('ar-tn', {
  399. months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
  400. monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
  401. weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  402. weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
  403. weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  404. weekdaysParseExact : true,
  405. longDateFormat: {
  406. LT: 'HH:mm',
  407. LTS: 'HH:mm:ss',
  408. L: 'DD/MM/YYYY',
  409. LL: 'D MMMM YYYY',
  410. LLL: 'D MMMM YYYY HH:mm',
  411. LLLL: 'dddd D MMMM YYYY HH:mm'
  412. },
  413. calendar: {
  414. sameDay: '[اليوم على الساعة] LT',
  415. nextDay: '[غدا على الساعة] LT',
  416. nextWeek: 'dddd [على الساعة] LT',
  417. lastDay: '[أمس على الساعة] LT',
  418. lastWeek: 'dddd [على الساعة] LT',
  419. sameElse: 'L'
  420. },
  421. relativeTime: {
  422. future: 'في %s',
  423. past: 'منذ %s',
  424. s: 'ثوان',
  425. ss : '%d ثانية',
  426. m: 'دقيقة',
  427. mm: '%d دقائق',
  428. h: 'ساعة',
  429. hh: '%d ساعات',
  430. d: 'يوم',
  431. dd: '%d أيام',
  432. M: 'شهر',
  433. MM: '%d أشهر',
  434. y: 'سنة',
  435. yy: '%d سنوات'
  436. },
  437. week: {
  438. dow: 1, // Monday is the first day of the week.
  439. doy: 4 // The week that contains Jan 4th is the first week of the year.
  440. }
  441. });
  442. //! moment.js locale configuration
  443. var symbolMap$2 = {
  444. '1': '١',
  445. '2': '٢',
  446. '3': '٣',
  447. '4': '٤',
  448. '5': '٥',
  449. '6': '٦',
  450. '7': '٧',
  451. '8': '٨',
  452. '9': '٩',
  453. '0': '٠'
  454. }, numberMap$1 = {
  455. '١': '1',
  456. '٢': '2',
  457. '٣': '3',
  458. '٤': '4',
  459. '٥': '5',
  460. '٦': '6',
  461. '٧': '7',
  462. '٨': '8',
  463. '٩': '9',
  464. '٠': '0'
  465. }, pluralForm$1 = function (n) {
  466. return n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5;
  467. }, plurals$1 = {
  468. s : ['أقل من ثانية', 'ثانية واحدة', ['ثانيتان', 'ثانيتين'], '%d ثوان', '%d ثانية', '%d ثانية'],
  469. m : ['أقل من دقيقة', 'دقيقة واحدة', ['دقيقتان', 'دقيقتين'], '%d دقائق', '%d دقيقة', '%d دقيقة'],
  470. h : ['أقل من ساعة', 'ساعة واحدة', ['ساعتان', 'ساعتين'], '%d ساعات', '%d ساعة', '%d ساعة'],
  471. d : ['أقل من يوم', 'يوم واحد', ['يومان', 'يومين'], '%d أيام', '%d يومًا', '%d يوم'],
  472. M : ['أقل من شهر', 'شهر واحد', ['شهران', 'شهرين'], '%d أشهر', '%d شهرا', '%d شهر'],
  473. y : ['أقل من عام', 'عام واحد', ['عامان', 'عامين'], '%d أعوام', '%d عامًا', '%d عام']
  474. }, pluralize$1 = function (u) {
  475. return function (number, withoutSuffix, string, isFuture) {
  476. var f = pluralForm$1(number),
  477. str = plurals$1[u][pluralForm$1(number)];
  478. if (f === 2) {
  479. str = str[withoutSuffix ? 0 : 1];
  480. }
  481. return str.replace(/%d/i, number);
  482. };
  483. }, months$1 = [
  484. 'يناير',
  485. 'فبراير',
  486. 'مارس',
  487. 'أبريل',
  488. 'مايو',
  489. 'يونيو',
  490. 'يوليو',
  491. 'أغسطس',
  492. 'سبتمبر',
  493. 'أكتوبر',
  494. 'نوفمبر',
  495. 'ديسمبر'
  496. ];
  497. moment.defineLocale('ar', {
  498. months : months$1,
  499. monthsShort : months$1,
  500. weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  501. weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
  502. weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  503. weekdaysParseExact : true,
  504. longDateFormat : {
  505. LT : 'HH:mm',
  506. LTS : 'HH:mm:ss',
  507. L : 'D/\u200FM/\u200FYYYY',
  508. LL : 'D MMMM YYYY',
  509. LLL : 'D MMMM YYYY HH:mm',
  510. LLLL : 'dddd D MMMM YYYY HH:mm'
  511. },
  512. meridiemParse: /ص|م/,
  513. isPM : function (input) {
  514. return 'م' === input;
  515. },
  516. meridiem : function (hour, minute, isLower) {
  517. if (hour < 12) {
  518. return 'ص';
  519. } else {
  520. return 'م';
  521. }
  522. },
  523. calendar : {
  524. sameDay: '[اليوم عند الساعة] LT',
  525. nextDay: '[غدًا عند الساعة] LT',
  526. nextWeek: 'dddd [عند الساعة] LT',
  527. lastDay: '[أمس عند الساعة] LT',
  528. lastWeek: 'dddd [عند الساعة] LT',
  529. sameElse: 'L'
  530. },
  531. relativeTime : {
  532. future : 'بعد %s',
  533. past : 'منذ %s',
  534. s : pluralize$1('s'),
  535. ss : pluralize$1('s'),
  536. m : pluralize$1('m'),
  537. mm : pluralize$1('m'),
  538. h : pluralize$1('h'),
  539. hh : pluralize$1('h'),
  540. d : pluralize$1('d'),
  541. dd : pluralize$1('d'),
  542. M : pluralize$1('M'),
  543. MM : pluralize$1('M'),
  544. y : pluralize$1('y'),
  545. yy : pluralize$1('y')
  546. },
  547. preparse: function (string) {
  548. return string.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
  549. return numberMap$1[match];
  550. }).replace(/،/g, ',');
  551. },
  552. postformat: function (string) {
  553. return string.replace(/\d/g, function (match) {
  554. return symbolMap$2[match];
  555. }).replace(/,/g, '،');
  556. },
  557. week : {
  558. dow : 6, // Saturday is the first day of the week.
  559. doy : 12 // The week that contains Jan 1st is the first week of the year.
  560. }
  561. });
  562. //! moment.js locale configuration
  563. var suffixes = {
  564. 1: '-inci',
  565. 5: '-inci',
  566. 8: '-inci',
  567. 70: '-inci',
  568. 80: '-inci',
  569. 2: '-nci',
  570. 7: '-nci',
  571. 20: '-nci',
  572. 50: '-nci',
  573. 3: '-üncü',
  574. 4: '-üncü',
  575. 100: '-üncü',
  576. 6: '-ncı',
  577. 9: '-uncu',
  578. 10: '-uncu',
  579. 30: '-uncu',
  580. 60: '-ıncı',
  581. 90: '-ıncı'
  582. };
  583. moment.defineLocale('az', {
  584. months : 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split('_'),
  585. monthsShort : 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),
  586. weekdays : 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split('_'),
  587. weekdaysShort : 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'),
  588. weekdaysMin : 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),
  589. weekdaysParseExact : true,
  590. longDateFormat : {
  591. LT : 'HH:mm',
  592. LTS : 'HH:mm:ss',
  593. L : 'DD.MM.YYYY',
  594. LL : 'D MMMM YYYY',
  595. LLL : 'D MMMM YYYY HH:mm',
  596. LLLL : 'dddd, D MMMM YYYY HH:mm'
  597. },
  598. calendar : {
  599. sameDay : '[bugün saat] LT',
  600. nextDay : '[sabah saat] LT',
  601. nextWeek : '[gələn həftə] dddd [saat] LT',
  602. lastDay : '[dünən] LT',
  603. lastWeek : '[keçən həftə] dddd [saat] LT',
  604. sameElse : 'L'
  605. },
  606. relativeTime : {
  607. future : '%s sonra',
  608. past : '%s əvvəl',
  609. s : 'birneçə saniyə',
  610. ss : '%d saniyə',
  611. m : 'bir dəqiqə',
  612. mm : '%d dəqiqə',
  613. h : 'bir saat',
  614. hh : '%d saat',
  615. d : 'bir gün',
  616. dd : '%d gün',
  617. M : 'bir ay',
  618. MM : '%d ay',
  619. y : 'bir il',
  620. yy : '%d il'
  621. },
  622. meridiemParse: /gecə|səhər|gündüz|axşam/,
  623. isPM : function (input) {
  624. return /^(gündüz|axşam)$/.test(input);
  625. },
  626. meridiem : function (hour, minute, isLower) {
  627. if (hour < 4) {
  628. return 'gecə';
  629. } else if (hour < 12) {
  630. return 'səhər';
  631. } else if (hour < 17) {
  632. return 'gündüz';
  633. } else {
  634. return 'axşam';
  635. }
  636. },
  637. dayOfMonthOrdinalParse: /\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,
  638. ordinal : function (number) {
  639. if (number === 0) { // special case for zero
  640. return number + '-ıncı';
  641. }
  642. var a = number % 10,
  643. b = number % 100 - a,
  644. c = number >= 100 ? 100 : null;
  645. return number + (suffixes[a] || suffixes[b] || suffixes[c]);
  646. },
  647. week : {
  648. dow : 1, // Monday is the first day of the week.
  649. doy : 7 // The week that contains Jan 1st is the first week of the year.
  650. }
  651. });
  652. //! moment.js locale configuration
  653. function plural(word, num) {
  654. var forms = word.split('_');
  655. return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]);
  656. }
  657. function relativeTimeWithPlural(number, withoutSuffix, key) {
  658. var format = {
  659. 'ss': withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',
  660. 'mm': withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',
  661. 'hh': withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',
  662. 'dd': 'дзень_дні_дзён',
  663. 'MM': 'месяц_месяцы_месяцаў',
  664. 'yy': 'год_гады_гадоў'
  665. };
  666. if (key === 'm') {
  667. return withoutSuffix ? 'хвіліна' : 'хвіліну';
  668. }
  669. else if (key === 'h') {
  670. return withoutSuffix ? 'гадзіна' : 'гадзіну';
  671. }
  672. else {
  673. return number + ' ' + plural(format[key], +number);
  674. }
  675. }
  676. moment.defineLocale('be', {
  677. months : {
  678. format: 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split('_'),
  679. standalone: 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split('_')
  680. },
  681. monthsShort : 'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split('_'),
  682. weekdays : {
  683. format: 'нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу'.split('_'),
  684. standalone: 'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split('_'),
  685. isFormat: /\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/
  686. },
  687. weekdaysShort : 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
  688. weekdaysMin : 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
  689. longDateFormat : {
  690. LT : 'HH:mm',
  691. LTS : 'HH:mm:ss',
  692. L : 'DD.MM.YYYY',
  693. LL : 'D MMMM YYYY г.',
  694. LLL : 'D MMMM YYYY г., HH:mm',
  695. LLLL : 'dddd, D MMMM YYYY г., HH:mm'
  696. },
  697. calendar : {
  698. sameDay: '[Сёння ў] LT',
  699. nextDay: '[Заўтра ў] LT',
  700. lastDay: '[Учора ў] LT',
  701. nextWeek: function () {
  702. return '[У] dddd [ў] LT';
  703. },
  704. lastWeek: function () {
  705. switch (this.day()) {
  706. case 0:
  707. case 3:
  708. case 5:
  709. case 6:
  710. return '[У мінулую] dddd [ў] LT';
  711. case 1:
  712. case 2:
  713. case 4:
  714. return '[У мінулы] dddd [ў] LT';
  715. }
  716. },
  717. sameElse: 'L'
  718. },
  719. relativeTime : {
  720. future : 'праз %s',
  721. past : '%s таму',
  722. s : 'некалькі секунд',
  723. m : relativeTimeWithPlural,
  724. mm : relativeTimeWithPlural,
  725. h : relativeTimeWithPlural,
  726. hh : relativeTimeWithPlural,
  727. d : 'дзень',
  728. dd : relativeTimeWithPlural,
  729. M : 'месяц',
  730. MM : relativeTimeWithPlural,
  731. y : 'год',
  732. yy : relativeTimeWithPlural
  733. },
  734. meridiemParse: /ночы|раніцы|дня|вечара/,
  735. isPM : function (input) {
  736. return /^(дня|вечара)$/.test(input);
  737. },
  738. meridiem : function (hour, minute, isLower) {
  739. if (hour < 4) {
  740. return 'ночы';
  741. } else if (hour < 12) {
  742. return 'раніцы';
  743. } else if (hour < 17) {
  744. return 'дня';
  745. } else {
  746. return 'вечара';
  747. }
  748. },
  749. dayOfMonthOrdinalParse: /\d{1,2}-(і|ы|га)/,
  750. ordinal: function (number, period) {
  751. switch (period) {
  752. case 'M':
  753. case 'd':
  754. case 'DDD':
  755. case 'w':
  756. case 'W':
  757. return (number % 10 === 2 || number % 10 === 3) && (number % 100 !== 12 && number % 100 !== 13) ? number + '-і' : number + '-ы';
  758. case 'D':
  759. return number + '-га';
  760. default:
  761. return number;
  762. }
  763. },
  764. week : {
  765. dow : 1, // Monday is the first day of the week.
  766. doy : 7 // The week that contains Jan 1st is the first week of the year.
  767. }
  768. });
  769. //! moment.js locale configuration
  770. moment.defineLocale('bg', {
  771. months : 'януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември'.split('_'),
  772. monthsShort : 'янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек'.split('_'),
  773. weekdays : 'неделя_понеделник_вторник_сряда_четвъртък_петък_събота'.split('_'),
  774. weekdaysShort : 'нед_пон_вто_сря_чет_пет_съб'.split('_'),
  775. weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
  776. longDateFormat : {
  777. LT : 'H:mm',
  778. LTS : 'H:mm:ss',
  779. L : 'D.MM.YYYY',
  780. LL : 'D MMMM YYYY',
  781. LLL : 'D MMMM YYYY H:mm',
  782. LLLL : 'dddd, D MMMM YYYY H:mm'
  783. },
  784. calendar : {
  785. sameDay : '[Днес в] LT',
  786. nextDay : '[Утре в] LT',
  787. nextWeek : 'dddd [в] LT',
  788. lastDay : '[Вчера в] LT',
  789. lastWeek : function () {
  790. switch (this.day()) {
  791. case 0:
  792. case 3:
  793. case 6:
  794. return '[В изминалата] dddd [в] LT';
  795. case 1:
  796. case 2:
  797. case 4:
  798. case 5:
  799. return '[В изминалия] dddd [в] LT';
  800. }
  801. },
  802. sameElse : 'L'
  803. },
  804. relativeTime : {
  805. future : 'след %s',
  806. past : 'преди %s',
  807. s : 'няколко секунди',
  808. ss : '%d секунди',
  809. m : 'минута',
  810. mm : '%d минути',
  811. h : 'час',
  812. hh : '%d часа',
  813. d : 'ден',
  814. dd : '%d дни',
  815. M : 'месец',
  816. MM : '%d месеца',
  817. y : 'година',
  818. yy : '%d години'
  819. },
  820. dayOfMonthOrdinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
  821. ordinal : function (number) {
  822. var lastDigit = number % 10,
  823. last2Digits = number % 100;
  824. if (number === 0) {
  825. return number + '-ев';
  826. } else if (last2Digits === 0) {
  827. return number + '-ен';
  828. } else if (last2Digits > 10 && last2Digits < 20) {
  829. return number + '-ти';
  830. } else if (lastDigit === 1) {
  831. return number + '-ви';
  832. } else if (lastDigit === 2) {
  833. return number + '-ри';
  834. } else if (lastDigit === 7 || lastDigit === 8) {
  835. return number + '-ми';
  836. } else {
  837. return number + '-ти';
  838. }
  839. },
  840. week : {
  841. dow : 1, // Monday is the first day of the week.
  842. doy : 7 // The week that contains Jan 1st is the first week of the year.
  843. }
  844. });
  845. //! moment.js locale configuration
  846. moment.defineLocale('bm', {
  847. months : 'Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo'.split('_'),
  848. monthsShort : 'Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des'.split('_'),
  849. weekdays : 'Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri'.split('_'),
  850. weekdaysShort : 'Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib'.split('_'),
  851. weekdaysMin : 'Ka_Nt_Ta_Ar_Al_Ju_Si'.split('_'),
  852. longDateFormat : {
  853. LT : 'HH:mm',
  854. LTS : 'HH:mm:ss',
  855. L : 'DD/MM/YYYY',
  856. LL : 'MMMM [tile] D [san] YYYY',
  857. LLL : 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',
  858. LLLL : 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm'
  859. },
  860. calendar : {
  861. sameDay : '[Bi lɛrɛ] LT',
  862. nextDay : '[Sini lɛrɛ] LT',
  863. nextWeek : 'dddd [don lɛrɛ] LT',
  864. lastDay : '[Kunu lɛrɛ] LT',
  865. lastWeek : 'dddd [tɛmɛnen lɛrɛ] LT',
  866. sameElse : 'L'
  867. },
  868. relativeTime : {
  869. future : '%s kɔnɔ',
  870. past : 'a bɛ %s bɔ',
  871. s : 'sanga dama dama',
  872. ss : 'sekondi %d',
  873. m : 'miniti kelen',
  874. mm : 'miniti %d',
  875. h : 'lɛrɛ kelen',
  876. hh : 'lɛrɛ %d',
  877. d : 'tile kelen',
  878. dd : 'tile %d',
  879. M : 'kalo kelen',
  880. MM : 'kalo %d',
  881. y : 'san kelen',
  882. yy : 'san %d'
  883. },
  884. week : {
  885. dow : 1, // Monday is the first day of the week.
  886. doy : 4 // The week that contains Jan 4th is the first week of the year.
  887. }
  888. });
  889. //! moment.js locale configuration
  890. var symbolMap$3 = {
  891. '1': '১',
  892. '2': '২',
  893. '3': '৩',
  894. '4': '৪',
  895. '5': '৫',
  896. '6': '৬',
  897. '7': '৭',
  898. '8': '৮',
  899. '9': '৯',
  900. '0': '০'
  901. },
  902. numberMap$2 = {
  903. '১': '1',
  904. '২': '2',
  905. '৩': '3',
  906. '৪': '4',
  907. '৫': '5',
  908. '৬': '6',
  909. '৭': '7',
  910. '৮': '8',
  911. '৯': '9',
  912. '০': '0'
  913. };
  914. moment.defineLocale('bn', {
  915. months : 'জানুয়ারী_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split('_'),
  916. monthsShort : 'জানু_ফেব_মার্চ_এপ্র_মে_জুন_জুল_আগ_সেপ্ট_অক্টো_নভে_ডিসে'.split('_'),
  917. weekdays : 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split('_'),
  918. weekdaysShort : 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),
  919. weekdaysMin : 'রবি_সোম_মঙ্গ_বুধ_বৃহঃ_শুক্র_শনি'.split('_'),
  920. longDateFormat : {
  921. LT : 'A h:mm সময়',
  922. LTS : 'A h:mm:ss সময়',
  923. L : 'DD/MM/YYYY',
  924. LL : 'D MMMM YYYY',
  925. LLL : 'D MMMM YYYY, A h:mm সময়',
  926. LLLL : 'dddd, D MMMM YYYY, A h:mm সময়'
  927. },
  928. calendar : {
  929. sameDay : '[আজ] LT',
  930. nextDay : '[আগামীকাল] LT',
  931. nextWeek : 'dddd, LT',
  932. lastDay : '[গতকাল] LT',
  933. lastWeek : '[গত] dddd, LT',
  934. sameElse : 'L'
  935. },
  936. relativeTime : {
  937. future : '%s পরে',
  938. past : '%s আগে',
  939. s : 'কয়েক সেকেন্ড',
  940. ss : '%d সেকেন্ড',
  941. m : 'এক মিনিট',
  942. mm : '%d মিনিট',
  943. h : 'এক ঘন্টা',
  944. hh : '%d ঘন্টা',
  945. d : 'এক দিন',
  946. dd : '%d দিন',
  947. M : 'এক মাস',
  948. MM : '%d মাস',
  949. y : 'এক বছর',
  950. yy : '%d বছর'
  951. },
  952. preparse: function (string) {
  953. return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {
  954. return numberMap$2[match];
  955. });
  956. },
  957. postformat: function (string) {
  958. return string.replace(/\d/g, function (match) {
  959. return symbolMap$3[match];
  960. });
  961. },
  962. meridiemParse: /রাত|সকাল|দুপুর|বিকাল|রাত/,
  963. meridiemHour : function (hour, meridiem) {
  964. if (hour === 12) {
  965. hour = 0;
  966. }
  967. if ((meridiem === 'রাত' && hour >= 4) ||
  968. (meridiem === 'দুপুর' && hour < 5) ||
  969. meridiem === 'বিকাল') {
  970. return hour + 12;
  971. } else {
  972. return hour;
  973. }
  974. },
  975. meridiem : function (hour, minute, isLower) {
  976. if (hour < 4) {
  977. return 'রাত';
  978. } else if (hour < 10) {
  979. return 'সকাল';
  980. } else if (hour < 17) {
  981. return 'দুপুর';
  982. } else if (hour < 20) {
  983. return 'বিকাল';
  984. } else {
  985. return 'রাত';
  986. }
  987. },
  988. week : {
  989. dow : 0, // Sunday is the first day of the week.
  990. doy : 6 // The week that contains Jan 1st is the first week of the year.
  991. }
  992. });
  993. //! moment.js locale configuration
  994. var symbolMap$4 = {
  995. '1': '༡',
  996. '2': '༢',
  997. '3': '༣',
  998. '4': '༤',
  999. '5': '༥',
  1000. '6': '༦',
  1001. '7': '༧',
  1002. '8': '༨',
  1003. '9': '༩',
  1004. '0': '༠'
  1005. },
  1006. numberMap$3 = {
  1007. '༡': '1',
  1008. '༢': '2',
  1009. '༣': '3',
  1010. '༤': '4',
  1011. '༥': '5',
  1012. '༦': '6',
  1013. '༧': '7',
  1014. '༨': '8',
  1015. '༩': '9',
  1016. '༠': '0'
  1017. };
  1018. moment.defineLocale('bo', {
  1019. months : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
  1020. monthsShort : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
  1021. weekdays : 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split('_'),
  1022. weekdaysShort : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),
  1023. weekdaysMin : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),
  1024. longDateFormat : {
  1025. LT : 'A h:mm',
  1026. LTS : 'A h:mm:ss',
  1027. L : 'DD/MM/YYYY',
  1028. LL : 'D MMMM YYYY',
  1029. LLL : 'D MMMM YYYY, A h:mm',
  1030. LLLL : 'dddd, D MMMM YYYY, A h:mm'
  1031. },
  1032. calendar : {
  1033. sameDay : '[དི་རིང] LT',
  1034. nextDay : '[སང་ཉིན] LT',
  1035. nextWeek : '[བདུན་ཕྲག་རྗེས་མ], LT',
  1036. lastDay : '[ཁ་སང] LT',
  1037. lastWeek : '[བདུན་ཕྲག་མཐའ་མ] dddd, LT',
  1038. sameElse : 'L'
  1039. },
  1040. relativeTime : {
  1041. future : '%s ལ་',
  1042. past : '%s སྔན་ལ',
  1043. s : 'ལམ་སང',
  1044. ss : '%d སྐར་ཆ།',
  1045. m : 'སྐར་མ་གཅིག',
  1046. mm : '%d སྐར་མ',
  1047. h : 'ཆུ་ཚོད་གཅིག',
  1048. hh : '%d ཆུ་ཚོད',
  1049. d : 'ཉིན་གཅིག',
  1050. dd : '%d ཉིན་',
  1051. M : 'ཟླ་བ་གཅིག',
  1052. MM : '%d ཟླ་བ',
  1053. y : 'ལོ་གཅིག',
  1054. yy : '%d ལོ'
  1055. },
  1056. preparse: function (string) {
  1057. return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) {
  1058. return numberMap$3[match];
  1059. });
  1060. },
  1061. postformat: function (string) {
  1062. return string.replace(/\d/g, function (match) {
  1063. return symbolMap$4[match];
  1064. });
  1065. },
  1066. meridiemParse: /མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,
  1067. meridiemHour : function (hour, meridiem) {
  1068. if (hour === 12) {
  1069. hour = 0;
  1070. }
  1071. if ((meridiem === 'མཚན་མོ' && hour >= 4) ||
  1072. (meridiem === 'ཉིན་གུང' && hour < 5) ||
  1073. meridiem === 'དགོང་དག') {
  1074. return hour + 12;
  1075. } else {
  1076. return hour;
  1077. }
  1078. },
  1079. meridiem : function (hour, minute, isLower) {
  1080. if (hour < 4) {
  1081. return 'མཚན་མོ';
  1082. } else if (hour < 10) {
  1083. return 'ཞོགས་ཀས';
  1084. } else if (hour < 17) {
  1085. return 'ཉིན་གུང';
  1086. } else if (hour < 20) {
  1087. return 'དགོང་དག';
  1088. } else {
  1089. return 'མཚན་མོ';
  1090. }
  1091. },
  1092. week : {
  1093. dow : 0, // Sunday is the first day of the week.
  1094. doy : 6 // The week that contains Jan 1st is the first week of the year.
  1095. }
  1096. });
  1097. //! moment.js locale configuration
  1098. function relativeTimeWithMutation(number, withoutSuffix, key) {
  1099. var format = {
  1100. 'mm': 'munutenn',
  1101. 'MM': 'miz',
  1102. 'dd': 'devezh'
  1103. };
  1104. return number + ' ' + mutation(format[key], number);
  1105. }
  1106. function specialMutationForYears(number) {
  1107. switch (lastNumber(number)) {
  1108. case 1:
  1109. case 3:
  1110. case 4:
  1111. case 5:
  1112. case 9:
  1113. return number + ' bloaz';
  1114. default:
  1115. return number + ' vloaz';
  1116. }
  1117. }
  1118. function lastNumber(number) {
  1119. if (number > 9) {
  1120. return lastNumber(number % 10);
  1121. }
  1122. return number;
  1123. }
  1124. function mutation(text, number) {
  1125. if (number === 2) {
  1126. return softMutation(text);
  1127. }
  1128. return text;
  1129. }
  1130. function softMutation(text) {
  1131. var mutationTable = {
  1132. 'm': 'v',
  1133. 'b': 'v',
  1134. 'd': 'z'
  1135. };
  1136. if (mutationTable[text.charAt(0)] === undefined) {
  1137. return text;
  1138. }
  1139. return mutationTable[text.charAt(0)] + text.substring(1);
  1140. }
  1141. moment.defineLocale('br', {
  1142. months : 'Genver_C\'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu'.split('_'),
  1143. monthsShort : 'Gen_C\'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker'.split('_'),
  1144. weekdays : 'Sul_Lun_Meurzh_Merc\'her_Yaou_Gwener_Sadorn'.split('_'),
  1145. weekdaysShort : 'Sul_Lun_Meu_Mer_Yao_Gwe_Sad'.split('_'),
  1146. weekdaysMin : 'Su_Lu_Me_Mer_Ya_Gw_Sa'.split('_'),
  1147. weekdaysParseExact : true,
  1148. longDateFormat : {
  1149. LT : 'h[e]mm A',
  1150. LTS : 'h[e]mm:ss A',
  1151. L : 'DD/MM/YYYY',
  1152. LL : 'D [a viz] MMMM YYYY',
  1153. LLL : 'D [a viz] MMMM YYYY h[e]mm A',
  1154. LLLL : 'dddd, D [a viz] MMMM YYYY h[e]mm A'
  1155. },
  1156. calendar : {
  1157. sameDay : '[Hiziv da] LT',
  1158. nextDay : '[Warc\'hoazh da] LT',
  1159. nextWeek : 'dddd [da] LT',
  1160. lastDay : '[Dec\'h da] LT',
  1161. lastWeek : 'dddd [paset da] LT',
  1162. sameElse : 'L'
  1163. },
  1164. relativeTime : {
  1165. future : 'a-benn %s',
  1166. past : '%s \'zo',
  1167. s : 'un nebeud segondennoù',
  1168. ss : '%d eilenn',
  1169. m : 'ur vunutenn',
  1170. mm : relativeTimeWithMutation,
  1171. h : 'un eur',
  1172. hh : '%d eur',
  1173. d : 'un devezh',
  1174. dd : relativeTimeWithMutation,
  1175. M : 'ur miz',
  1176. MM : relativeTimeWithMutation,
  1177. y : 'ur bloaz',
  1178. yy : specialMutationForYears
  1179. },
  1180. dayOfMonthOrdinalParse: /\d{1,2}(añ|vet)/,
  1181. ordinal : function (number) {
  1182. var output = (number === 1) ? 'añ' : 'vet';
  1183. return number + output;
  1184. },
  1185. week : {
  1186. dow : 1, // Monday is the first day of the week.
  1187. doy : 4 // The week that contains Jan 4th is the first week of the year.
  1188. }
  1189. });
  1190. //! moment.js locale configuration
  1191. function translate(number, withoutSuffix, key) {
  1192. var result = number + ' ';
  1193. switch (key) {
  1194. case 'ss':
  1195. if (number === 1) {
  1196. result += 'sekunda';
  1197. } else if (number === 2 || number === 3 || number === 4) {
  1198. result += 'sekunde';
  1199. } else {
  1200. result += 'sekundi';
  1201. }
  1202. return result;
  1203. case 'm':
  1204. return withoutSuffix ? 'jedna minuta' : 'jedne minute';
  1205. case 'mm':
  1206. if (number === 1) {
  1207. result += 'minuta';
  1208. } else if (number === 2 || number === 3 || number === 4) {
  1209. result += 'minute';
  1210. } else {
  1211. result += 'minuta';
  1212. }
  1213. return result;
  1214. case 'h':
  1215. return withoutSuffix ? 'jedan sat' : 'jednog sata';
  1216. case 'hh':
  1217. if (number === 1) {
  1218. result += 'sat';
  1219. } else if (number === 2 || number === 3 || number === 4) {
  1220. result += 'sata';
  1221. } else {
  1222. result += 'sati';
  1223. }
  1224. return result;
  1225. case 'dd':
  1226. if (number === 1) {
  1227. result += 'dan';
  1228. } else {
  1229. result += 'dana';
  1230. }
  1231. return result;
  1232. case 'MM':
  1233. if (number === 1) {
  1234. result += 'mjesec';
  1235. } else if (number === 2 || number === 3 || number === 4) {
  1236. result += 'mjeseca';
  1237. } else {
  1238. result += 'mjeseci';
  1239. }
  1240. return result;
  1241. case 'yy':
  1242. if (number === 1) {
  1243. result += 'godina';
  1244. } else if (number === 2 || number === 3 || number === 4) {
  1245. result += 'godine';
  1246. } else {
  1247. result += 'godina';
  1248. }
  1249. return result;
  1250. }
  1251. }
  1252. moment.defineLocale('bs', {
  1253. months : 'januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar'.split('_'),
  1254. monthsShort : 'jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.'.split('_'),
  1255. monthsParseExact: true,
  1256. weekdays : 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'),
  1257. weekdaysShort : 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),
  1258. weekdaysMin : 'ne_po_ut_sr_če_pe_su'.split('_'),
  1259. weekdaysParseExact : true,
  1260. longDateFormat : {
  1261. LT : 'H:mm',
  1262. LTS : 'H:mm:ss',
  1263. L : 'DD.MM.YYYY',
  1264. LL : 'D. MMMM YYYY',
  1265. LLL : 'D. MMMM YYYY H:mm',
  1266. LLLL : 'dddd, D. MMMM YYYY H:mm'
  1267. },
  1268. calendar : {
  1269. sameDay : '[danas u] LT',
  1270. nextDay : '[sutra u] LT',
  1271. nextWeek : function () {
  1272. switch (this.day()) {
  1273. case 0:
  1274. return '[u] [nedjelju] [u] LT';
  1275. case 3:
  1276. return '[u] [srijedu] [u] LT';
  1277. case 6:
  1278. return '[u] [subotu] [u] LT';
  1279. case 1:
  1280. case 2:
  1281. case 4:
  1282. case 5:
  1283. return '[u] dddd [u] LT';
  1284. }
  1285. },
  1286. lastDay : '[jučer u] LT',
  1287. lastWeek : function () {
  1288. switch (this.day()) {
  1289. case 0:
  1290. case 3:
  1291. return '[prošlu] dddd [u] LT';
  1292. case 6:
  1293. return '[prošle] [subote] [u] LT';
  1294. case 1:
  1295. case 2:
  1296. case 4:
  1297. case 5:
  1298. return '[prošli] dddd [u] LT';
  1299. }
  1300. },
  1301. sameElse : 'L'
  1302. },
  1303. relativeTime : {
  1304. future : 'za %s',
  1305. past : 'prije %s',
  1306. s : 'par sekundi',
  1307. ss : translate,
  1308. m : translate,
  1309. mm : translate,
  1310. h : translate,
  1311. hh : translate,
  1312. d : 'dan',
  1313. dd : translate,
  1314. M : 'mjesec',
  1315. MM : translate,
  1316. y : 'godinu',
  1317. yy : translate
  1318. },
  1319. dayOfMonthOrdinalParse: /\d{1,2}\./,
  1320. ordinal : '%d.',
  1321. week : {
  1322. dow : 1, // Monday is the first day of the week.
  1323. doy : 7 // The week that contains Jan 1st is the first week of the year.
  1324. }
  1325. });
  1326. //! moment.js locale configuration
  1327. moment.defineLocale('ca', {
  1328. months : {
  1329. standalone: 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split('_'),
  1330. 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('_'),
  1331. isFormat: /D[oD]?(\s)+MMMM/
  1332. },
  1333. monthsShort : 'gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.'.split('_'),
  1334. monthsParseExact : true,
  1335. weekdays : 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split('_'),
  1336. weekdaysShort : 'dg._dl._dt._dc._dj._dv._ds.'.split('_'),
  1337. weekdaysMin : 'dg_dl_dt_dc_dj_dv_ds'.split('_'),
  1338. weekdaysParseExact : true,
  1339. longDateFormat : {
  1340. LT : 'H:mm',
  1341. LTS : 'H:mm:ss',
  1342. L : 'DD/MM/YYYY',
  1343. LL : 'D MMMM [de] YYYY',
  1344. ll : 'D MMM YYYY',
  1345. LLL : 'D MMMM [de] YYYY [a les] H:mm',
  1346. lll : 'D MMM YYYY, H:mm',
  1347. LLLL : 'dddd D MMMM [de] YYYY [a les] H:mm',
  1348. llll : 'ddd D MMM YYYY, H:mm'
  1349. },
  1350. calendar : {
  1351. sameDay : function () {
  1352. return '[avui a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
  1353. },
  1354. nextDay : function () {
  1355. return '[demà a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
  1356. },
  1357. nextWeek : function () {
  1358. return 'dddd [a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
  1359. },
  1360. lastDay : function () {
  1361. return '[ahir a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
  1362. },
  1363. lastWeek : function () {
  1364. return '[el] dddd [passat a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
  1365. },
  1366. sameElse : 'L'
  1367. },
  1368. relativeTime : {
  1369. future : 'd\'aquí %s',
  1370. past : 'fa %s',
  1371. s : 'uns segons',
  1372. ss : '%d segons',
  1373. m : 'un minut',
  1374. mm : '%d minuts',
  1375. h : 'una hora',
  1376. hh : '%d hores',
  1377. d : 'un dia',
  1378. dd : '%d dies',
  1379. M : 'un mes',
  1380. MM : '%d mesos',
  1381. y : 'un any',
  1382. yy : '%d anys'
  1383. },
  1384. dayOfMonthOrdinalParse: /\d{1,2}(r|n|t|è|a)/,
  1385. ordinal : function (number, period) {
  1386. var output = (number === 1) ? 'r' :
  1387. (number === 2) ? 'n' :
  1388. (number === 3) ? 'r' :
  1389. (number === 4) ? 't' : 'è';
  1390. if (period === 'w' || period === 'W') {
  1391. output = 'a';
  1392. }
  1393. return number + output;
  1394. },
  1395. week : {
  1396. dow : 1, // Monday is the first day of the week.
  1397. doy : 4 // The week that contains Jan 4th is the first week of the year.
  1398. }
  1399. });
  1400. //! moment.js locale configuration
  1401. var months$2 = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split('_'),
  1402. monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_');
  1403. function plural$1(n) {
  1404. return (n > 1) && (n < 5) && (~~(n / 10) !== 1);
  1405. }
  1406. function translate$1(number, withoutSuffix, key, isFuture) {
  1407. var result = number + ' ';
  1408. switch (key) {
  1409. case 's': // a few seconds / in a few seconds / a few seconds ago
  1410. return (withoutSuffix || isFuture) ? 'pár sekund' : 'pár sekundami';
  1411. case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago
  1412. if (withoutSuffix || isFuture) {
  1413. return result + (plural$1(number) ? 'sekundy' : 'sekund');
  1414. } else {
  1415. return result + 'sekundami';
  1416. }
  1417. break;
  1418. case 'm': // a minute / in a minute / a minute ago
  1419. return withoutSuffix ? 'minuta' : (isFuture ? 'minutu' : 'minutou');
  1420. case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
  1421. if (withoutSuffix || isFuture) {
  1422. return result + (plural$1(number) ? 'minuty' : 'minut');
  1423. } else {
  1424. return result + 'minutami';
  1425. }
  1426. break;
  1427. case 'h': // an hour / in an hour / an hour ago
  1428. return withoutSuffix ? 'hodina' : (isFuture ? 'hodinu' : 'hodinou');
  1429. case 'hh': // 9 hours / in 9 hours / 9 hours ago
  1430. if (withoutSuffix || isFuture) {
  1431. return result + (plural$1(number) ? 'hodiny' : 'hodin');
  1432. } else {
  1433. return result + 'hodinami';
  1434. }
  1435. break;
  1436. case 'd': // a day / in a day / a day ago
  1437. return (withoutSuffix || isFuture) ? 'den' : 'dnem';
  1438. case 'dd': // 9 days / in 9 days / 9 days ago
  1439. if (withoutSuffix || isFuture) {
  1440. return result + (plural$1(number) ? 'dny' : 'dní');
  1441. } else {
  1442. return result + 'dny';
  1443. }
  1444. break;
  1445. case 'M': // a month / in a month / a month ago
  1446. return (withoutSuffix || isFuture) ? 'měsíc' : 'měsícem';
  1447. case 'MM': // 9 months / in 9 months / 9 months ago
  1448. if (withoutSuffix || isFuture) {
  1449. return result + (plural$1(number) ? 'měsíce' : 'měsíců');
  1450. } else {
  1451. return result + 'měsíci';
  1452. }
  1453. break;
  1454. case 'y': // a year / in a year / a year ago
  1455. return (withoutSuffix || isFuture) ? 'rok' : 'rokem';
  1456. case 'yy': // 9 years / in 9 years / 9 years ago
  1457. if (withoutSuffix || isFuture) {
  1458. return result + (plural$1(number) ? 'roky' : 'let');
  1459. } else {
  1460. return result + 'lety';
  1461. }
  1462. break;
  1463. }
  1464. }
  1465. moment.defineLocale('cs', {
  1466. months : months$2,
  1467. monthsShort : monthsShort,
  1468. monthsParse : (function (months, monthsShort) {
  1469. var i, _monthsParse = [];
  1470. for (i = 0; i < 12; i++) {
  1471. // use custom parser to solve problem with July (červenec)
  1472. _monthsParse[i] = new RegExp('^' + months[i] + '$|^' + monthsShort[i] + '$', 'i');
  1473. }
  1474. return _monthsParse;
  1475. }(months$2, monthsShort)),
  1476. shortMonthsParse : (function (monthsShort) {
  1477. var i, _shortMonthsParse = [];
  1478. for (i = 0; i < 12; i++) {
  1479. _shortMonthsParse[i] = new RegExp('^' + monthsShort[i] + '$', 'i');
  1480. }
  1481. return _shortMonthsParse;
  1482. }(monthsShort)),
  1483. longMonthsParse : (function (months) {
  1484. var i, _longMonthsParse = [];
  1485. for (i = 0; i < 12; i++) {
  1486. _longMonthsParse[i] = new RegExp('^' + months[i] + '$', 'i');
  1487. }
  1488. return _longMonthsParse;
  1489. }(months$2)),
  1490. weekdays : 'neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota'.split('_'),
  1491. weekdaysShort : 'ne_po_út_st_čt_pá_so'.split('_'),
  1492. weekdaysMin : 'ne_po_út_st_čt_pá_so'.split('_'),
  1493. longDateFormat : {
  1494. LT: 'H:mm',
  1495. LTS : 'H:mm:ss',
  1496. L : 'DD.MM.YYYY',
  1497. LL : 'D. MMMM YYYY',
  1498. LLL : 'D. MMMM YYYY H:mm',
  1499. LLLL : 'dddd D. MMMM YYYY H:mm',
  1500. l : 'D. M. YYYY'
  1501. },
  1502. calendar : {
  1503. sameDay: '[dnes v] LT',
  1504. nextDay: '[zítra v] LT',
  1505. nextWeek: function () {
  1506. switch (this.day()) {
  1507. case 0:
  1508. return '[v neděli v] LT';
  1509. case 1:
  1510. case 2:
  1511. return '[v] dddd [v] LT';
  1512. case 3:
  1513. return '[ve středu v] LT';
  1514. case 4:
  1515. return '[ve čtvrtek v] LT';
  1516. case 5:
  1517. return '[v pátek v] LT';
  1518. case 6:
  1519. return '[v sobotu v] LT';
  1520. }
  1521. },
  1522. lastDay: '[včera v] LT',
  1523. lastWeek: function () {
  1524. switch (this.day()) {
  1525. case 0:
  1526. return '[minulou neděli v] LT';
  1527. case 1:
  1528. case 2:
  1529. return '[minulé] dddd [v] LT';
  1530. case 3:
  1531. return '[minulou středu v] LT';
  1532. case 4:
  1533. case 5:
  1534. return '[minulý] dddd [v] LT';
  1535. case 6:
  1536. return '[minulou sobotu v] LT';
  1537. }
  1538. },
  1539. sameElse: 'L'
  1540. },
  1541. relativeTime : {
  1542. future : 'za %s',
  1543. past : 'před %s',
  1544. s : translate$1,
  1545. ss : translate$1,
  1546. m : translate$1,
  1547. mm : translate$1,
  1548. h : translate$1,
  1549. hh : translate$1,
  1550. d : translate$1,
  1551. dd : translate$1,
  1552. M : translate$1,
  1553. MM : translate$1,
  1554. y : translate$1,
  1555. yy : translate$1
  1556. },
  1557. dayOfMonthOrdinalParse : /\d{1,2}\./,
  1558. ordinal : '%d.',
  1559. week : {
  1560. dow : 1, // Monday is the first day of the week.
  1561. doy : 4 // The week that contains Jan 4th is the first week of the year.
  1562. }
  1563. });
  1564. //! moment.js locale configuration
  1565. moment.defineLocale('cv', {
  1566. months : 'кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав'.split('_'),
  1567. monthsShort : 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'),
  1568. weekdays : 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split('_'),
  1569. weekdaysShort : 'выр_тун_ытл_юн_кӗҫ_эрн_шӑм'.split('_'),
  1570. weekdaysMin : 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'),
  1571. longDateFormat : {
  1572. LT : 'HH:mm',
  1573. LTS : 'HH:mm:ss',
  1574. L : 'DD-MM-YYYY',
  1575. LL : 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]',
  1576. LLL : 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',
  1577. LLLL : 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm'
  1578. },
  1579. calendar : {
  1580. sameDay: '[Паян] LT [сехетре]',
  1581. nextDay: '[Ыран] LT [сехетре]',
  1582. lastDay: '[Ӗнер] LT [сехетре]',
  1583. nextWeek: '[Ҫитес] dddd LT [сехетре]',
  1584. lastWeek: '[Иртнӗ] dddd LT [сехетре]',
  1585. sameElse: 'L'
  1586. },
  1587. relativeTime : {
  1588. future : function (output) {
  1589. var affix = /сехет$/i.exec(output) ? 'рен' : /ҫул$/i.exec(output) ? 'тан' : 'ран';
  1590. return output + affix;
  1591. },
  1592. past : '%s каялла',
  1593. s : 'пӗр-ик ҫеккунт',
  1594. ss : '%d ҫеккунт',
  1595. m : 'пӗр минут',
  1596. mm : '%d минут',
  1597. h : 'пӗр сехет',
  1598. hh : '%d сехет',
  1599. d : 'пӗр кун',
  1600. dd : '%d кун',
  1601. M : 'пӗр уйӑх',
  1602. MM : '%d уйӑх',
  1603. y : 'пӗр ҫул',
  1604. yy : '%d ҫул'
  1605. },
  1606. dayOfMonthOrdinalParse: /\d{1,2}-мӗш/,
  1607. ordinal : '%d-мӗш',
  1608. week : {
  1609. dow : 1, // Monday is the first day of the week.
  1610. doy : 7 // The week that contains Jan 1st is the first week of the year.
  1611. }
  1612. });
  1613. //! moment.js locale configuration
  1614. moment.defineLocale('cy', {
  1615. months: 'Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr'.split('_'),
  1616. monthsShort: 'Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag'.split('_'),
  1617. weekdays: 'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split('_'),
  1618. weekdaysShort: 'Sul_Llun_Maw_Mer_Iau_Gwe_Sad'.split('_'),
  1619. weekdaysMin: 'Su_Ll_Ma_Me_Ia_Gw_Sa'.split('_'),
  1620. weekdaysParseExact : true,
  1621. // time formats are the same as en-gb
  1622. longDateFormat: {
  1623. LT: 'HH:mm',
  1624. LTS : 'HH:mm:ss',
  1625. L: 'DD/MM/YYYY',
  1626. LL: 'D MMMM YYYY',
  1627. LLL: 'D MMMM YYYY HH:mm',
  1628. LLLL: 'dddd, D MMMM YYYY HH:mm'
  1629. },
  1630. calendar: {
  1631. sameDay: '[Heddiw am] LT',
  1632. nextDay: '[Yfory am] LT',
  1633. nextWeek: 'dddd [am] LT',
  1634. lastDay: '[Ddoe am] LT',
  1635. lastWeek: 'dddd [diwethaf am] LT',
  1636. sameElse: 'L'
  1637. },
  1638. relativeTime: {
  1639. future: 'mewn %s',
  1640. past: '%s yn ôl',
  1641. s: 'ychydig eiliadau',
  1642. ss: '%d eiliad',
  1643. m: 'munud',
  1644. mm: '%d munud',
  1645. h: 'awr',
  1646. hh: '%d awr',
  1647. d: 'diwrnod',
  1648. dd: '%d diwrnod',
  1649. M: 'mis',
  1650. MM: '%d mis',
  1651. y: 'blwyddyn',
  1652. yy: '%d flynedd'
  1653. },
  1654. dayOfMonthOrdinalParse: /\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,
  1655. // traditional ordinal numbers above 31 are not commonly used in colloquial Welsh
  1656. ordinal: function (number) {
  1657. var b = number,
  1658. output = '',
  1659. lookup = [
  1660. '', 'af', 'il', 'ydd', 'ydd', 'ed', 'ed', 'ed', 'fed', 'fed', 'fed', // 1af to 10fed
  1661. 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'fed' // 11eg to 20fed
  1662. ];
  1663. if (b > 20) {
  1664. if (b === 40 || b === 50 || b === 60 || b === 80 || b === 100) {
  1665. output = 'fed'; // not 30ain, 70ain or 90ain
  1666. } else {
  1667. output = 'ain';
  1668. }
  1669. } else if (b > 0) {
  1670. output = lookup[b];
  1671. }
  1672. return number + output;
  1673. },
  1674. week : {
  1675. dow : 1, // Monday is the first day of the week.
  1676. doy : 4 // The week that contains Jan 4th is the first week of the year.
  1677. }
  1678. });
  1679. //! moment.js locale configuration
  1680. moment.defineLocale('da', {
  1681. months : 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split('_'),
  1682. monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
  1683. weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
  1684. weekdaysShort : 'søn_man_tir_ons_tor_fre_lør'.split('_'),
  1685. weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'),
  1686. longDateFormat : {
  1687. LT : 'HH:mm',
  1688. LTS : 'HH:mm:ss',
  1689. L : 'DD.MM.YYYY',
  1690. LL : 'D. MMMM YYYY',
  1691. LLL : 'D. MMMM YYYY HH:mm',
  1692. LLLL : 'dddd [d.] D. MMMM YYYY [kl.] HH:mm'
  1693. },
  1694. calendar : {
  1695. sameDay : '[i dag kl.] LT',
  1696. nextDay : '[i morgen kl.] LT',
  1697. nextWeek : 'på dddd [kl.] LT',
  1698. lastDay : '[i går kl.] LT',
  1699. lastWeek : '[i] dddd[s kl.] LT',
  1700. sameElse : 'L'
  1701. },
  1702. relativeTime : {
  1703. future : 'om %s',
  1704. past : '%s siden',
  1705. s : 'få sekunder',
  1706. ss : '%d sekunder',
  1707. m : 'et minut',
  1708. mm : '%d minutter',
  1709. h : 'en time',
  1710. hh : '%d timer',
  1711. d : 'en dag',
  1712. dd : '%d dage',
  1713. M : 'en måned',
  1714. MM : '%d måneder',
  1715. y : 'et år',
  1716. yy : '%d år'
  1717. },
  1718. dayOfMonthOrdinalParse: /\d{1,2}\./,
  1719. ordinal : '%d.',
  1720. week : {
  1721. dow : 1, // Monday is the first day of the week.
  1722. doy : 4 // The week that contains Jan 4th is the first week of the year.
  1723. }
  1724. });
  1725. //! moment.js locale configuration
  1726. function processRelativeTime(number, withoutSuffix, key, isFuture) {
  1727. var format = {
  1728. 'm': ['eine Minute', 'einer Minute'],
  1729. 'h': ['eine Stunde', 'einer Stunde'],
  1730. 'd': ['ein Tag', 'einem Tag'],
  1731. 'dd': [number + ' Tage', number + ' Tagen'],
  1732. 'M': ['ein Monat', 'einem Monat'],
  1733. 'MM': [number + ' Monate', number + ' Monaten'],
  1734. 'y': ['ein Jahr', 'einem Jahr'],
  1735. 'yy': [number + ' Jahre', number + ' Jahren']
  1736. };
  1737. return withoutSuffix ? format[key][0] : format[key][1];
  1738. }
  1739. moment.defineLocale('de-at', {
  1740. months : 'Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
  1741. monthsShort : 'Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'),
  1742. monthsParseExact : true,
  1743. weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'),
  1744. weekdaysShort : 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
  1745. weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
  1746. weekdaysParseExact : true,
  1747. longDateFormat : {
  1748. LT: 'HH:mm',
  1749. LTS: 'HH:mm:ss',
  1750. L : 'DD.MM.YYYY',
  1751. LL : 'D. MMMM YYYY',
  1752. LLL : 'D. MMMM YYYY HH:mm',
  1753. LLLL : 'dddd, D. MMMM YYYY HH:mm'
  1754. },
  1755. calendar : {
  1756. sameDay: '[heute um] LT [Uhr]',
  1757. sameElse: 'L',
  1758. nextDay: '[morgen um] LT [Uhr]',
  1759. nextWeek: 'dddd [um] LT [Uhr]',
  1760. lastDay: '[gestern um] LT [Uhr]',
  1761. lastWeek: '[letzten] dddd [um] LT [Uhr]'
  1762. },
  1763. relativeTime : {
  1764. future : 'in %s',
  1765. past : 'vor %s',
  1766. s : 'ein paar Sekunden',
  1767. ss : '%d Sekunden',
  1768. m : processRelativeTime,
  1769. mm : '%d Minuten',
  1770. h : processRelativeTime,
  1771. hh : '%d Stunden',
  1772. d : processRelativeTime,
  1773. dd : processRelativeTime,
  1774. M : processRelativeTime,
  1775. MM : processRelativeTime,
  1776. y : processRelativeTime,
  1777. yy : processRelativeTime
  1778. },
  1779. dayOfMonthOrdinalParse: /\d{1,2}\./,
  1780. ordinal : '%d.',
  1781. week : {
  1782. dow : 1, // Monday is the first day of the week.
  1783. doy : 4 // The week that contains Jan 4th is the first week of the year.
  1784. }
  1785. });
  1786. //! moment.js locale configuration
  1787. function processRelativeTime$1(number, withoutSuffix, key, isFuture) {
  1788. var format = {
  1789. 'm': ['eine Minute', 'einer Minute'],
  1790. 'h': ['eine Stunde', 'einer Stunde'],
  1791. 'd': ['ein Tag', 'einem Tag'],
  1792. 'dd': [number + ' Tage', number + ' Tagen'],
  1793. 'M': ['ein Monat', 'einem Monat'],
  1794. 'MM': [number + ' Monate', number + ' Monaten'],
  1795. 'y': ['ein Jahr', 'einem Jahr'],
  1796. 'yy': [number + ' Jahre', number + ' Jahren']
  1797. };
  1798. return withoutSuffix ? format[key][0] : format[key][1];
  1799. }
  1800. moment.defineLocale('de-ch', {
  1801. months : 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
  1802. monthsShort : 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'),
  1803. monthsParseExact : true,
  1804. weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'),
  1805. weekdaysShort : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
  1806. weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
  1807. weekdaysParseExact : true,
  1808. longDateFormat : {
  1809. LT: 'HH:mm',
  1810. LTS: 'HH:mm:ss',
  1811. L : 'DD.MM.YYYY',
  1812. LL : 'D. MMMM YYYY',
  1813. LLL : 'D. MMMM YYYY HH:mm',
  1814. LLLL : 'dddd, D. MMMM YYYY HH:mm'
  1815. },
  1816. calendar : {
  1817. sameDay: '[heute um] LT [Uhr]',
  1818. sameElse: 'L',
  1819. nextDay: '[morgen um] LT [Uhr]',
  1820. nextWeek: 'dddd [um] LT [Uhr]',
  1821. lastDay: '[gestern um] LT [Uhr]',
  1822. lastWeek: '[letzten] dddd [um] LT [Uhr]'
  1823. },
  1824. relativeTime : {
  1825. future : 'in %s',
  1826. past : 'vor %s',
  1827. s : 'ein paar Sekunden',
  1828. ss : '%d Sekunden',
  1829. m : processRelativeTime$1,
  1830. mm : '%d Minuten',
  1831. h : processRelativeTime$1,
  1832. hh : '%d Stunden',
  1833. d : processRelativeTime$1,
  1834. dd : processRelativeTime$1,
  1835. M : processRelativeTime$1,
  1836. MM : processRelativeTime$1,
  1837. y : processRelativeTime$1,
  1838. yy : processRelativeTime$1
  1839. },
  1840. dayOfMonthOrdinalParse: /\d{1,2}\./,
  1841. ordinal : '%d.',
  1842. week : {
  1843. dow : 1, // Monday is the first day of the week.
  1844. doy : 4 // The week that contains Jan 4th is the first week of the year.
  1845. }
  1846. });
  1847. //! moment.js locale configuration
  1848. function processRelativeTime$2(number, withoutSuffix, key, isFuture) {
  1849. var format = {
  1850. 'm': ['eine Minute', 'einer Minute'],
  1851. 'h': ['eine Stunde', 'einer Stunde'],
  1852. 'd': ['ein Tag', 'einem Tag'],
  1853. 'dd': [number + ' Tage', number + ' Tagen'],
  1854. 'M': ['ein Monat', 'einem Monat'],
  1855. 'MM': [number + ' Monate', number + ' Monaten'],
  1856. 'y': ['ein Jahr', 'einem Jahr'],
  1857. 'yy': [number + ' Jahre', number + ' Jahren']
  1858. };
  1859. return withoutSuffix ? format[key][0] : format[key][1];
  1860. }
  1861. moment.defineLocale('de', {
  1862. months : 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
  1863. monthsShort : 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'),
  1864. monthsParseExact : true,
  1865. weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'),
  1866. weekdaysShort : 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
  1867. weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
  1868. weekdaysParseExact : true,
  1869. longDateFormat : {
  1870. LT: 'HH:mm',
  1871. LTS: 'HH:mm:ss',
  1872. L : 'DD.MM.YYYY',
  1873. LL : 'D. MMMM YYYY',
  1874. LLL : 'D. MMMM YYYY HH:mm',
  1875. LLLL : 'dddd, D. MMMM YYYY HH:mm'
  1876. },
  1877. calendar : {
  1878. sameDay: '[heute um] LT [Uhr]',
  1879. sameElse: 'L',
  1880. nextDay: '[morgen um] LT [Uhr]',
  1881. nextWeek: 'dddd [um] LT [Uhr]',
  1882. lastDay: '[gestern um] LT [Uhr]',
  1883. lastWeek: '[letzten] dddd [um] LT [Uhr]'
  1884. },
  1885. relativeTime : {
  1886. future : 'in %s',
  1887. past : 'vor %s',
  1888. s : 'ein paar Sekunden',
  1889. ss : '%d Sekunden',
  1890. m : processRelativeTime$2,
  1891. mm : '%d Minuten',
  1892. h : processRelativeTime$2,
  1893. hh : '%d Stunden',
  1894. d : processRelativeTime$2,
  1895. dd : processRelativeTime$2,
  1896. M : processRelativeTime$2,
  1897. MM : processRelativeTime$2,
  1898. y : processRelativeTime$2,
  1899. yy : processRelativeTime$2
  1900. },
  1901. dayOfMonthOrdinalParse: /\d{1,2}\./,
  1902. ordinal : '%d.',
  1903. week : {
  1904. dow : 1, // Monday is the first day of the week.
  1905. doy : 4 // The week that contains Jan 4th is the first week of the year.
  1906. }
  1907. });
  1908. //! moment.js locale configuration
  1909. var months$3 = [
  1910. 'ޖެނުއަރީ',
  1911. 'ފެބްރުއަރީ',
  1912. 'މާރިޗު',
  1913. 'އޭޕްރީލު',
  1914. 'މޭ',
  1915. 'ޖޫން',
  1916. 'ޖުލައި',
  1917. 'އޯގަސްޓު',
  1918. 'ސެޕްޓެމްބަރު',
  1919. 'އޮކްޓޯބަރު',
  1920. 'ނޮވެމްބަރު',
  1921. 'ޑިސެމްބަރު'
  1922. ], weekdays = [
  1923. 'އާދިއްތަ',
  1924. 'ހޯމަ',
  1925. 'އަންގާރަ',
  1926. 'ބުދަ',
  1927. 'ބުރާސްފަތި',
  1928. 'ހުކުރު',
  1929. 'ހޮނިހިރު'
  1930. ];
  1931. moment.defineLocale('dv', {
  1932. months : months$3,
  1933. monthsShort : months$3,
  1934. weekdays : weekdays,
  1935. weekdaysShort : weekdays,
  1936. weekdaysMin : 'އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި'.split('_'),
  1937. longDateFormat : {
  1938. LT : 'HH:mm',
  1939. LTS : 'HH:mm:ss',
  1940. L : 'D/M/YYYY',
  1941. LL : 'D MMMM YYYY',
  1942. LLL : 'D MMMM YYYY HH:mm',
  1943. LLLL : 'dddd D MMMM YYYY HH:mm'
  1944. },
  1945. meridiemParse: /މކ|މފ/,
  1946. isPM : function (input) {
  1947. return 'މފ' === input;
  1948. },
  1949. meridiem : function (hour, minute, isLower) {
  1950. if (hour < 12) {
  1951. return 'މކ';
  1952. } else {
  1953. return 'މފ';
  1954. }
  1955. },
  1956. calendar : {
  1957. sameDay : '[މިއަދު] LT',
  1958. nextDay : '[މާދަމާ] LT',
  1959. nextWeek : 'dddd LT',
  1960. lastDay : '[އިއްޔެ] LT',
  1961. lastWeek : '[ފާއިތުވި] dddd LT',
  1962. sameElse : 'L'
  1963. },
  1964. relativeTime : {
  1965. future : 'ތެރޭގައި %s',
  1966. past : 'ކުރިން %s',
  1967. s : 'ސިކުންތުކޮޅެއް',
  1968. ss : 'd% ސިކުންތު',
  1969. m : 'މިނިޓެއް',
  1970. mm : 'މިނިޓު %d',
  1971. h : 'ގަޑިއިރެއް',
  1972. hh : 'ގަޑިއިރު %d',
  1973. d : 'ދުވަހެއް',
  1974. dd : 'ދުވަސް %d',
  1975. M : 'މަހެއް',
  1976. MM : 'މަސް %d',
  1977. y : 'އަހަރެއް',
  1978. yy : 'އަހަރު %d'
  1979. },
  1980. preparse: function (string) {
  1981. return string.replace(/،/g, ',');
  1982. },
  1983. postformat: function (string) {
  1984. return string.replace(/,/g, '،');
  1985. },
  1986. week : {
  1987. dow : 7, // Sunday is the first day of the week.
  1988. doy : 12 // The week that contains Jan 1st is the first week of the year.
  1989. }
  1990. });
  1991. function isFunction(input) {
  1992. return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';
  1993. }
  1994. //! moment.js locale configuration
  1995. moment.defineLocale('el', {
  1996. monthsNominativeEl : 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split('_'),
  1997. monthsGenitiveEl : 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split('_'),
  1998. months : function (momentToFormat, format) {
  1999. if (!momentToFormat) {
  2000. return this._monthsNominativeEl;
  2001. } else if (typeof format === 'string' && /D/.test(format.substring(0, format.indexOf('MMMM')))) { // if there is a day number before 'MMMM'
  2002. return this._monthsGenitiveEl[momentToFormat.month()];
  2003. } else {
  2004. return this._monthsNominativeEl[momentToFormat.month()];
  2005. }
  2006. },
  2007. monthsShort : 'Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ'.split('_'),
  2008. weekdays : 'Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο'.split('_'),
  2009. weekdaysShort : 'Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ'.split('_'),
  2010. weekdaysMin : 'Κυ_Δε_Τρ_Τε_Πε_Πα_Σα'.split('_'),
  2011. meridiem : function (hours, minutes, isLower) {
  2012. if (hours > 11) {
  2013. return isLower ? 'μμ' : 'ΜΜ';
  2014. } else {
  2015. return isLower ? 'πμ' : 'ΠΜ';
  2016. }
  2017. },
  2018. isPM : function (input) {
  2019. return ((input + '').toLowerCase()[0] === 'μ');
  2020. },
  2021. meridiemParse : /[ΠΜ]\.?Μ?\.?/i,
  2022. longDateFormat : {
  2023. LT : 'h:mm A',
  2024. LTS : 'h:mm:ss A',
  2025. L : 'DD/MM/YYYY',
  2026. LL : 'D MMMM YYYY',
  2027. LLL : 'D MMMM YYYY h:mm A',
  2028. LLLL : 'dddd, D MMMM YYYY h:mm A'
  2029. },
  2030. calendarEl : {
  2031. sameDay : '[Σήμερα {}] LT',
  2032. nextDay : '[Αύριο {}] LT',
  2033. nextWeek : 'dddd [{}] LT',
  2034. lastDay : '[Χθες {}] LT',
  2035. lastWeek : function () {
  2036. switch (this.day()) {
  2037. case 6:
  2038. return '[το προηγούμενο] dddd [{}] LT';
  2039. default:
  2040. return '[την προηγούμενη] dddd [{}] LT';
  2041. }
  2042. },
  2043. sameElse : 'L'
  2044. },
  2045. calendar : function (key, mom) {
  2046. var output = this._calendarEl[key],
  2047. hours = mom && mom.hours();
  2048. if (isFunction(output)) {
  2049. output = output.apply(mom);
  2050. }
  2051. return output.replace('{}', (hours % 12 === 1 ? 'στη' : 'στις'));
  2052. },
  2053. relativeTime : {
  2054. future : 'σε %s',
  2055. past : '%s πριν',
  2056. s : 'λίγα δευτερόλεπτα',
  2057. ss : '%d δευτερόλεπτα',
  2058. m : 'ένα λεπτό',
  2059. mm : '%d λεπτά',
  2060. h : 'μία ώρα',
  2061. hh : '%d ώρες',
  2062. d : 'μία μέρα',
  2063. dd : '%d μέρες',
  2064. M : 'ένας μήνας',
  2065. MM : '%d μήνες',
  2066. y : 'ένας χρόνος',
  2067. yy : '%d χρόνια'
  2068. },
  2069. dayOfMonthOrdinalParse: /\d{1,2}η/,
  2070. ordinal: '%dη',
  2071. week : {
  2072. dow : 1, // Monday is the first day of the week.
  2073. doy : 4 // The week that contains Jan 4st is the first week of the year.
  2074. }
  2075. });
  2076. //! moment.js locale configuration
  2077. moment.defineLocale('en-au', {
  2078. months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
  2079. monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2080. weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
  2081. weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2082. weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2083. longDateFormat : {
  2084. LT : 'h:mm A',
  2085. LTS : 'h:mm:ss A',
  2086. L : 'DD/MM/YYYY',
  2087. LL : 'D MMMM YYYY',
  2088. LLL : 'D MMMM YYYY h:mm A',
  2089. LLLL : 'dddd, D MMMM YYYY h:mm A'
  2090. },
  2091. calendar : {
  2092. sameDay : '[Today at] LT',
  2093. nextDay : '[Tomorrow at] LT',
  2094. nextWeek : 'dddd [at] LT',
  2095. lastDay : '[Yesterday at] LT',
  2096. lastWeek : '[Last] dddd [at] LT',
  2097. sameElse : 'L'
  2098. },
  2099. relativeTime : {
  2100. future : 'in %s',
  2101. past : '%s ago',
  2102. s : 'a few seconds',
  2103. ss : '%d seconds',
  2104. m : 'a minute',
  2105. mm : '%d minutes',
  2106. h : 'an hour',
  2107. hh : '%d hours',
  2108. d : 'a day',
  2109. dd : '%d days',
  2110. M : 'a month',
  2111. MM : '%d months',
  2112. y : 'a year',
  2113. yy : '%d years'
  2114. },
  2115. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  2116. ordinal : function (number) {
  2117. var b = number % 10,
  2118. output = (~~(number % 100 / 10) === 1) ? 'th' :
  2119. (b === 1) ? 'st' :
  2120. (b === 2) ? 'nd' :
  2121. (b === 3) ? 'rd' : 'th';
  2122. return number + output;
  2123. },
  2124. week : {
  2125. dow : 1, // Monday is the first day of the week.
  2126. doy : 4 // The week that contains Jan 4th is the first week of the year.
  2127. }
  2128. });
  2129. //! moment.js locale configuration
  2130. moment.defineLocale('en-ca', {
  2131. months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
  2132. monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2133. weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
  2134. weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2135. weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2136. longDateFormat : {
  2137. LT : 'h:mm A',
  2138. LTS : 'h:mm:ss A',
  2139. L : 'YYYY-MM-DD',
  2140. LL : 'MMMM D, YYYY',
  2141. LLL : 'MMMM D, YYYY h:mm A',
  2142. LLLL : 'dddd, MMMM D, YYYY h:mm A'
  2143. },
  2144. calendar : {
  2145. sameDay : '[Today at] LT',
  2146. nextDay : '[Tomorrow at] LT',
  2147. nextWeek : 'dddd [at] LT',
  2148. lastDay : '[Yesterday at] LT',
  2149. lastWeek : '[Last] dddd [at] LT',
  2150. sameElse : 'L'
  2151. },
  2152. relativeTime : {
  2153. future : 'in %s',
  2154. past : '%s ago',
  2155. s : 'a few seconds',
  2156. ss : '%d seconds',
  2157. m : 'a minute',
  2158. mm : '%d minutes',
  2159. h : 'an hour',
  2160. hh : '%d hours',
  2161. d : 'a day',
  2162. dd : '%d days',
  2163. M : 'a month',
  2164. MM : '%d months',
  2165. y : 'a year',
  2166. yy : '%d years'
  2167. },
  2168. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  2169. ordinal : function (number) {
  2170. var b = number % 10,
  2171. output = (~~(number % 100 / 10) === 1) ? 'th' :
  2172. (b === 1) ? 'st' :
  2173. (b === 2) ? 'nd' :
  2174. (b === 3) ? 'rd' : 'th';
  2175. return number + output;
  2176. }
  2177. });
  2178. //! moment.js locale configuration
  2179. moment.defineLocale('en-gb', {
  2180. months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
  2181. monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2182. weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
  2183. weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2184. weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2185. longDateFormat : {
  2186. LT : 'HH:mm',
  2187. LTS : 'HH:mm:ss',
  2188. L : 'DD/MM/YYYY',
  2189. LL : 'D MMMM YYYY',
  2190. LLL : 'D MMMM YYYY HH:mm',
  2191. LLLL : 'dddd, D MMMM YYYY HH:mm'
  2192. },
  2193. calendar : {
  2194. sameDay : '[Today at] LT',
  2195. nextDay : '[Tomorrow at] LT',
  2196. nextWeek : 'dddd [at] LT',
  2197. lastDay : '[Yesterday at] LT',
  2198. lastWeek : '[Last] dddd [at] LT',
  2199. sameElse : 'L'
  2200. },
  2201. relativeTime : {
  2202. future : 'in %s',
  2203. past : '%s ago',
  2204. s : 'a few seconds',
  2205. ss : '%d seconds',
  2206. m : 'a minute',
  2207. mm : '%d minutes',
  2208. h : 'an hour',
  2209. hh : '%d hours',
  2210. d : 'a day',
  2211. dd : '%d days',
  2212. M : 'a month',
  2213. MM : '%d months',
  2214. y : 'a year',
  2215. yy : '%d years'
  2216. },
  2217. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  2218. ordinal : function (number) {
  2219. var b = number % 10,
  2220. output = (~~(number % 100 / 10) === 1) ? 'th' :
  2221. (b === 1) ? 'st' :
  2222. (b === 2) ? 'nd' :
  2223. (b === 3) ? 'rd' : 'th';
  2224. return number + output;
  2225. },
  2226. week : {
  2227. dow : 1, // Monday is the first day of the week.
  2228. doy : 4 // The week that contains Jan 4th is the first week of the year.
  2229. }
  2230. });
  2231. //! moment.js locale configuration
  2232. moment.defineLocale('en-ie', {
  2233. months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
  2234. monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2235. weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
  2236. weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2237. weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2238. longDateFormat : {
  2239. LT : 'HH:mm',
  2240. LTS : 'HH:mm:ss',
  2241. L : 'DD-MM-YYYY',
  2242. LL : 'D MMMM YYYY',
  2243. LLL : 'D MMMM YYYY HH:mm',
  2244. LLLL : 'dddd D MMMM YYYY HH:mm'
  2245. },
  2246. calendar : {
  2247. sameDay : '[Today at] LT',
  2248. nextDay : '[Tomorrow at] LT',
  2249. nextWeek : 'dddd [at] LT',
  2250. lastDay : '[Yesterday at] LT',
  2251. lastWeek : '[Last] dddd [at] LT',
  2252. sameElse : 'L'
  2253. },
  2254. relativeTime : {
  2255. future : 'in %s',
  2256. past : '%s ago',
  2257. s : 'a few seconds',
  2258. ss : '%d seconds',
  2259. m : 'a minute',
  2260. mm : '%d minutes',
  2261. h : 'an hour',
  2262. hh : '%d hours',
  2263. d : 'a day',
  2264. dd : '%d days',
  2265. M : 'a month',
  2266. MM : '%d months',
  2267. y : 'a year',
  2268. yy : '%d years'
  2269. },
  2270. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  2271. ordinal : function (number) {
  2272. var b = number % 10,
  2273. output = (~~(number % 100 / 10) === 1) ? 'th' :
  2274. (b === 1) ? 'st' :
  2275. (b === 2) ? 'nd' :
  2276. (b === 3) ? 'rd' : 'th';
  2277. return number + output;
  2278. },
  2279. week : {
  2280. dow : 1, // Monday is the first day of the week.
  2281. doy : 4 // The week that contains Jan 4th is the first week of the year.
  2282. }
  2283. });
  2284. //! moment.js locale configuration
  2285. moment.defineLocale('en-il', {
  2286. months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
  2287. monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2288. weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
  2289. weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2290. weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2291. longDateFormat : {
  2292. LT : 'HH:mm',
  2293. LTS : 'HH:mm:ss',
  2294. L : 'DD/MM/YYYY',
  2295. LL : 'D MMMM YYYY',
  2296. LLL : 'D MMMM YYYY HH:mm',
  2297. LLLL : 'dddd, D MMMM YYYY HH:mm'
  2298. },
  2299. calendar : {
  2300. sameDay : '[Today at] LT',
  2301. nextDay : '[Tomorrow at] LT',
  2302. nextWeek : 'dddd [at] LT',
  2303. lastDay : '[Yesterday at] LT',
  2304. lastWeek : '[Last] dddd [at] LT',
  2305. sameElse : 'L'
  2306. },
  2307. relativeTime : {
  2308. future : 'in %s',
  2309. past : '%s ago',
  2310. s : 'a few seconds',
  2311. m : 'a minute',
  2312. mm : '%d minutes',
  2313. h : 'an hour',
  2314. hh : '%d hours',
  2315. d : 'a day',
  2316. dd : '%d days',
  2317. M : 'a month',
  2318. MM : '%d months',
  2319. y : 'a year',
  2320. yy : '%d years'
  2321. },
  2322. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  2323. ordinal : function (number) {
  2324. var b = number % 10,
  2325. output = (~~(number % 100 / 10) === 1) ? 'th' :
  2326. (b === 1) ? 'st' :
  2327. (b === 2) ? 'nd' :
  2328. (b === 3) ? 'rd' : 'th';
  2329. return number + output;
  2330. }
  2331. });
  2332. //! moment.js locale configuration
  2333. moment.defineLocale('en-nz', {
  2334. months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
  2335. monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
  2336. weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
  2337. weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
  2338. weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
  2339. longDateFormat : {
  2340. LT : 'h:mm A',
  2341. LTS : 'h:mm:ss A',
  2342. L : 'DD/MM/YYYY',
  2343. LL : 'D MMMM YYYY',
  2344. LLL : 'D MMMM YYYY h:mm A',
  2345. LLLL : 'dddd, D MMMM YYYY h:mm A'
  2346. },
  2347. calendar : {
  2348. sameDay : '[Today at] LT',
  2349. nextDay : '[Tomorrow at] LT',
  2350. nextWeek : 'dddd [at] LT',
  2351. lastDay : '[Yesterday at] LT',
  2352. lastWeek : '[Last] dddd [at] LT',
  2353. sameElse : 'L'
  2354. },
  2355. relativeTime : {
  2356. future : 'in %s',
  2357. past : '%s ago',
  2358. s : 'a few seconds',
  2359. ss : '%d seconds',
  2360. m : 'a minute',
  2361. mm : '%d minutes',
  2362. h : 'an hour',
  2363. hh : '%d hours',
  2364. d : 'a day',
  2365. dd : '%d days',
  2366. M : 'a month',
  2367. MM : '%d months',
  2368. y : 'a year',
  2369. yy : '%d years'
  2370. },
  2371. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  2372. ordinal : function (number) {
  2373. var b = number % 10,
  2374. output = (~~(number % 100 / 10) === 1) ? 'th' :
  2375. (b === 1) ? 'st' :
  2376. (b === 2) ? 'nd' :
  2377. (b === 3) ? 'rd' : 'th';
  2378. return number + output;
  2379. },
  2380. week : {
  2381. dow : 1, // Monday is the first day of the week.
  2382. doy : 4 // The week that contains Jan 4th is the first week of the year.
  2383. }
  2384. });
  2385. //! moment.js locale configuration
  2386. moment.defineLocale('eo', {
  2387. months : 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split('_'),
  2388. monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aŭg_sep_okt_nov_dec'.split('_'),
  2389. weekdays : 'dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato'.split('_'),
  2390. weekdaysShort : 'dim_lun_mard_merk_ĵaŭ_ven_sab'.split('_'),
  2391. weekdaysMin : 'di_lu_ma_me_ĵa_ve_sa'.split('_'),
  2392. longDateFormat : {
  2393. LT : 'HH:mm',
  2394. LTS : 'HH:mm:ss',
  2395. L : 'YYYY-MM-DD',
  2396. LL : 'D[-a de] MMMM, YYYY',
  2397. LLL : 'D[-a de] MMMM, YYYY HH:mm',
  2398. LLLL : 'dddd, [la] D[-a de] MMMM, YYYY HH:mm'
  2399. },
  2400. meridiemParse: /[ap]\.t\.m/i,
  2401. isPM: function (input) {
  2402. return input.charAt(0).toLowerCase() === 'p';
  2403. },
  2404. meridiem : function (hours, minutes, isLower) {
  2405. if (hours > 11) {
  2406. return isLower ? 'p.t.m.' : 'P.T.M.';
  2407. } else {
  2408. return isLower ? 'a.t.m.' : 'A.T.M.';
  2409. }
  2410. },
  2411. calendar : {
  2412. sameDay : '[Hodiaŭ je] LT',
  2413. nextDay : '[Morgaŭ je] LT',
  2414. nextWeek : 'dddd [je] LT',
  2415. lastDay : '[Hieraŭ je] LT',
  2416. lastWeek : '[pasinta] dddd [je] LT',
  2417. sameElse : 'L'
  2418. },
  2419. relativeTime : {
  2420. future : 'post %s',
  2421. past : 'antaŭ %s',
  2422. s : 'sekundoj',
  2423. ss : '%d sekundoj',
  2424. m : 'minuto',
  2425. mm : '%d minutoj',
  2426. h : 'horo',
  2427. hh : '%d horoj',
  2428. d : 'tago',//ne 'diurno', ĉar estas uzita por proksimumo
  2429. dd : '%d tagoj',
  2430. M : 'monato',
  2431. MM : '%d monatoj',
  2432. y : 'jaro',
  2433. yy : '%d jaroj'
  2434. },
  2435. dayOfMonthOrdinalParse: /\d{1,2}a/,
  2436. ordinal : '%da',
  2437. week : {
  2438. dow : 1, // Monday is the first day of the week.
  2439. doy : 7 // The week that contains Jan 1st is the first week of the year.
  2440. }
  2441. });
  2442. //! moment.js locale configuration
  2443. var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'),
  2444. monthsShort$1 = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');
  2445. var monthsParse = [/^ene/i, /^feb/i, /^mar/i, /^abr/i, /^may/i, /^jun/i, /^jul/i, /^ago/i, /^sep/i, /^oct/i, /^nov/i, /^dic/i];
  2446. var monthsRegex = /^(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;
  2447. moment.defineLocale('es-do', {
  2448. months : 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
  2449. monthsShort : function (m, format) {
  2450. if (!m) {
  2451. return monthsShortDot;
  2452. } else if (/-MMM-/.test(format)) {
  2453. return monthsShort$1[m.month()];
  2454. } else {
  2455. return monthsShortDot[m.month()];
  2456. }
  2457. },
  2458. monthsRegex: monthsRegex,
  2459. monthsShortRegex: monthsRegex,
  2460. monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
  2461. monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
  2462. monthsParse: monthsParse,
  2463. longMonthsParse: monthsParse,
  2464. shortMonthsParse: monthsParse,
  2465. weekdays : 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
  2466. weekdaysShort : 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
  2467. weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),
  2468. weekdaysParseExact : true,
  2469. longDateFormat : {
  2470. LT : 'h:mm A',
  2471. LTS : 'h:mm:ss A',
  2472. L : 'DD/MM/YYYY',
  2473. LL : 'D [de] MMMM [de] YYYY',
  2474. LLL : 'D [de] MMMM [de] YYYY h:mm A',
  2475. LLLL : 'dddd, D [de] MMMM [de] YYYY h:mm A'
  2476. },
  2477. calendar : {
  2478. sameDay : function () {
  2479. return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2480. },
  2481. nextDay : function () {
  2482. return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2483. },
  2484. nextWeek : function () {
  2485. return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2486. },
  2487. lastDay : function () {
  2488. return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2489. },
  2490. lastWeek : function () {
  2491. return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2492. },
  2493. sameElse : 'L'
  2494. },
  2495. relativeTime : {
  2496. future : 'en %s',
  2497. past : 'hace %s',
  2498. s : 'unos segundos',
  2499. ss : '%d segundos',
  2500. m : 'un minuto',
  2501. mm : '%d minutos',
  2502. h : 'una hora',
  2503. hh : '%d horas',
  2504. d : 'un día',
  2505. dd : '%d días',
  2506. M : 'un mes',
  2507. MM : '%d meses',
  2508. y : 'un año',
  2509. yy : '%d años'
  2510. },
  2511. dayOfMonthOrdinalParse : /\d{1,2}º/,
  2512. ordinal : '%dº',
  2513. week : {
  2514. dow : 1, // Monday is the first day of the week.
  2515. doy : 4 // The week that contains Jan 4th is the first week of the year.
  2516. }
  2517. });
  2518. //! moment.js locale configuration
  2519. var monthsShortDot$1 = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'),
  2520. monthsShort$2 = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');
  2521. moment.defineLocale('es-us', {
  2522. months : 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
  2523. monthsShort : function (m, format) {
  2524. if (!m) {
  2525. return monthsShortDot$1;
  2526. } else if (/-MMM-/.test(format)) {
  2527. return monthsShort$2[m.month()];
  2528. } else {
  2529. return monthsShortDot$1[m.month()];
  2530. }
  2531. },
  2532. monthsParseExact : true,
  2533. weekdays : 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
  2534. weekdaysShort : 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
  2535. weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),
  2536. weekdaysParseExact : true,
  2537. longDateFormat : {
  2538. LT : 'h:mm A',
  2539. LTS : 'h:mm:ss A',
  2540. L : 'MM/DD/YYYY',
  2541. LL : 'MMMM [de] D [de] YYYY',
  2542. LLL : 'MMMM [de] D [de] YYYY h:mm A',
  2543. LLLL : 'dddd, MMMM [de] D [de] YYYY h:mm A'
  2544. },
  2545. calendar : {
  2546. sameDay : function () {
  2547. return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2548. },
  2549. nextDay : function () {
  2550. return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2551. },
  2552. nextWeek : function () {
  2553. return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2554. },
  2555. lastDay : function () {
  2556. return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2557. },
  2558. lastWeek : function () {
  2559. return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2560. },
  2561. sameElse : 'L'
  2562. },
  2563. relativeTime : {
  2564. future : 'en %s',
  2565. past : 'hace %s',
  2566. s : 'unos segundos',
  2567. ss : '%d segundos',
  2568. m : 'un minuto',
  2569. mm : '%d minutos',
  2570. h : 'una hora',
  2571. hh : '%d horas',
  2572. d : 'un día',
  2573. dd : '%d días',
  2574. M : 'un mes',
  2575. MM : '%d meses',
  2576. y : 'un año',
  2577. yy : '%d años'
  2578. },
  2579. dayOfMonthOrdinalParse : /\d{1,2}º/,
  2580. ordinal : '%dº',
  2581. week : {
  2582. dow : 0, // Sunday is the first day of the week.
  2583. doy : 6 // The week that contains Jan 1st is the first week of the year.
  2584. }
  2585. });
  2586. //! moment.js locale configuration
  2587. var monthsShortDot$2 = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'),
  2588. monthsShort$3 = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');
  2589. var monthsParse$1 = [/^ene/i, /^feb/i, /^mar/i, /^abr/i, /^may/i, /^jun/i, /^jul/i, /^ago/i, /^sep/i, /^oct/i, /^nov/i, /^dic/i];
  2590. var monthsRegex$1 = /^(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;
  2591. moment.defineLocale('es', {
  2592. months : 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
  2593. monthsShort : function (m, format) {
  2594. if (!m) {
  2595. return monthsShortDot$2;
  2596. } else if (/-MMM-/.test(format)) {
  2597. return monthsShort$3[m.month()];
  2598. } else {
  2599. return monthsShortDot$2[m.month()];
  2600. }
  2601. },
  2602. monthsRegex : monthsRegex$1,
  2603. monthsShortRegex : monthsRegex$1,
  2604. monthsStrictRegex : /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
  2605. monthsShortStrictRegex : /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
  2606. monthsParse : monthsParse$1,
  2607. longMonthsParse : monthsParse$1,
  2608. shortMonthsParse : monthsParse$1,
  2609. weekdays : 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
  2610. weekdaysShort : 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
  2611. weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),
  2612. weekdaysParseExact : true,
  2613. longDateFormat : {
  2614. LT : 'H:mm',
  2615. LTS : 'H:mm:ss',
  2616. L : 'DD/MM/YYYY',
  2617. LL : 'D [de] MMMM [de] YYYY',
  2618. LLL : 'D [de] MMMM [de] YYYY H:mm',
  2619. LLLL : 'dddd, D [de] MMMM [de] YYYY H:mm'
  2620. },
  2621. calendar : {
  2622. sameDay : function () {
  2623. return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2624. },
  2625. nextDay : function () {
  2626. return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2627. },
  2628. nextWeek : function () {
  2629. return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2630. },
  2631. lastDay : function () {
  2632. return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2633. },
  2634. lastWeek : function () {
  2635. return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
  2636. },
  2637. sameElse : 'L'
  2638. },
  2639. relativeTime : {
  2640. future : 'en %s',
  2641. past : 'hace %s',
  2642. s : 'unos segundos',
  2643. ss : '%d segundos',
  2644. m : 'un minuto',
  2645. mm : '%d minutos',
  2646. h : 'una hora',
  2647. hh : '%d horas',
  2648. d : 'un día',
  2649. dd : '%d días',
  2650. M : 'un mes',
  2651. MM : '%d meses',
  2652. y : 'un año',
  2653. yy : '%d años'
  2654. },
  2655. dayOfMonthOrdinalParse : /\d{1,2}º/,
  2656. ordinal : '%dº',
  2657. week : {
  2658. dow : 1, // Monday is the first day of the week.
  2659. doy : 4 // The week that contains Jan 4th is the first week of the year.
  2660. }
  2661. });
  2662. //! moment.js locale configuration
  2663. function processRelativeTime$3(number, withoutSuffix, key, isFuture) {
  2664. var format = {
  2665. 's' : ['mõne sekundi', 'mõni sekund', 'paar sekundit'],
  2666. 'ss': [number + 'sekundi', number + 'sekundit'],
  2667. 'm' : ['ühe minuti', 'üks minut'],
  2668. 'mm': [number + ' minuti', number + ' minutit'],
  2669. 'h' : ['ühe tunni', 'tund aega', 'üks tund'],
  2670. 'hh': [number + ' tunni', number + ' tundi'],
  2671. 'd' : ['ühe päeva', 'üks päev'],
  2672. 'M' : ['kuu aja', 'kuu aega', 'üks kuu'],
  2673. 'MM': [number + ' kuu', number + ' kuud'],
  2674. 'y' : ['ühe aasta', 'aasta', 'üks aasta'],
  2675. 'yy': [number + ' aasta', number + ' aastat']
  2676. };
  2677. if (withoutSuffix) {
  2678. return format[key][2] ? format[key][2] : format[key][1];
  2679. }
  2680. return isFuture ? format[key][0] : format[key][1];
  2681. }
  2682. moment.defineLocale('et', {
  2683. months : 'jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember'.split('_'),
  2684. monthsShort : 'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets'.split('_'),
  2685. weekdays : 'pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev'.split('_'),
  2686. weekdaysShort : 'P_E_T_K_N_R_L'.split('_'),
  2687. weekdaysMin : 'P_E_T_K_N_R_L'.split('_'),
  2688. longDateFormat : {
  2689. LT : 'H:mm',
  2690. LTS : 'H:mm:ss',
  2691. L : 'DD.MM.YYYY',
  2692. LL : 'D. MMMM YYYY',
  2693. LLL : 'D. MMMM YYYY H:mm',
  2694. LLLL : 'dddd, D. MMMM YYYY H:mm'
  2695. },
  2696. calendar : {
  2697. sameDay : '[Täna,] LT',
  2698. nextDay : '[Homme,] LT',
  2699. nextWeek : '[Järgmine] dddd LT',
  2700. lastDay : '[Eile,] LT',
  2701. lastWeek : '[Eelmine] dddd LT',
  2702. sameElse : 'L'
  2703. },
  2704. relativeTime : {
  2705. future : '%s pärast',
  2706. past : '%s tagasi',
  2707. s : processRelativeTime$3,
  2708. ss : processRelativeTime$3,
  2709. m : processRelativeTime$3,
  2710. mm : processRelativeTime$3,
  2711. h : processRelativeTime$3,
  2712. hh : processRelativeTime$3,
  2713. d : processRelativeTime$3,
  2714. dd : '%d päeva',
  2715. M : processRelativeTime$3,
  2716. MM : processRelativeTime$3,
  2717. y : processRelativeTime$3,
  2718. yy : processRelativeTime$3
  2719. },
  2720. dayOfMonthOrdinalParse: /\d{1,2}\./,
  2721. ordinal : '%d.',
  2722. week : {
  2723. dow : 1, // Monday is the first day of the week.
  2724. doy : 4 // The week that contains Jan 4th is the first week of the year.
  2725. }
  2726. });
  2727. //! moment.js locale configuration
  2728. moment.defineLocale('eu', {
  2729. months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),
  2730. monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),
  2731. monthsParseExact : true,
  2732. weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'),
  2733. weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'),
  2734. weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'),
  2735. weekdaysParseExact : true,
  2736. longDateFormat : {
  2737. LT : 'HH:mm',
  2738. LTS : 'HH:mm:ss',
  2739. L : 'YYYY-MM-DD',
  2740. LL : 'YYYY[ko] MMMM[ren] D[a]',
  2741. LLL : 'YYYY[ko] MMMM[ren] D[a] HH:mm',
  2742. LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',
  2743. l : 'YYYY-M-D',
  2744. ll : 'YYYY[ko] MMM D[a]',
  2745. lll : 'YYYY[ko] MMM D[a] HH:mm',
  2746. llll : 'ddd, YYYY[ko] MMM D[a] HH:mm'
  2747. },
  2748. calendar : {
  2749. sameDay : '[gaur] LT[etan]',
  2750. nextDay : '[bihar] LT[etan]',
  2751. nextWeek : 'dddd LT[etan]',
  2752. lastDay : '[atzo] LT[etan]',
  2753. lastWeek : '[aurreko] dddd LT[etan]',
  2754. sameElse : 'L'
  2755. },
  2756. relativeTime : {
  2757. future : '%s barru',
  2758. past : 'duela %s',
  2759. s : 'segundo batzuk',
  2760. ss : '%d segundo',
  2761. m : 'minutu bat',
  2762. mm : '%d minutu',
  2763. h : 'ordu bat',
  2764. hh : '%d ordu',
  2765. d : 'egun bat',
  2766. dd : '%d egun',
  2767. M : 'hilabete bat',
  2768. MM : '%d hilabete',
  2769. y : 'urte bat',
  2770. yy : '%d urte'
  2771. },
  2772. dayOfMonthOrdinalParse: /\d{1,2}\./,
  2773. ordinal : '%d.',
  2774. week : {
  2775. dow : 1, // Monday is the first day of the week.
  2776. doy : 7 // The week that contains Jan 1st is the first week of the year.
  2777. }
  2778. });
  2779. //! moment.js locale configuration
  2780. var symbolMap$5 = {
  2781. '1': '۱',
  2782. '2': '۲',
  2783. '3': '۳',
  2784. '4': '۴',
  2785. '5': '۵',
  2786. '6': '۶',
  2787. '7': '۷',
  2788. '8': '۸',
  2789. '9': '۹',
  2790. '0': '۰'
  2791. }, numberMap$4 = {
  2792. '۱': '1',
  2793. '۲': '2',
  2794. '۳': '3',
  2795. '۴': '4',
  2796. '۵': '5',
  2797. '۶': '6',
  2798. '۷': '7',
  2799. '۸': '8',
  2800. '۹': '9',
  2801. '۰': '0'
  2802. };
  2803. moment.defineLocale('fa', {
  2804. months : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),
  2805. monthsShort : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),
  2806. weekdays : 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split('_'),
  2807. weekdaysShort : 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split('_'),
  2808. weekdaysMin : 'ی_د_س_چ_پ_ج_ش'.split('_'),
  2809. weekdaysParseExact : true,
  2810. longDateFormat : {
  2811. LT : 'HH:mm',
  2812. LTS : 'HH:mm:ss',
  2813. L : 'DD/MM/YYYY',
  2814. LL : 'D MMMM YYYY',
  2815. LLL : 'D MMMM YYYY HH:mm',
  2816. LLLL : 'dddd, D MMMM YYYY HH:mm'
  2817. },
  2818. meridiemParse: /قبل از ظهر|بعد از ظهر/,
  2819. isPM: function (input) {
  2820. return /بعد از ظهر/.test(input);
  2821. },
  2822. meridiem : function (hour, minute, isLower) {
  2823. if (hour < 12) {
  2824. return 'قبل از ظهر';
  2825. } else {
  2826. return 'بعد از ظهر';
  2827. }
  2828. },
  2829. calendar : {
  2830. sameDay : '[امروز ساعت] LT',
  2831. nextDay : '[فردا ساعت] LT',
  2832. nextWeek : 'dddd [ساعت] LT',
  2833. lastDay : '[دیروز ساعت] LT',
  2834. lastWeek : 'dddd [پیش] [ساعت] LT',
  2835. sameElse : 'L'
  2836. },
  2837. relativeTime : {
  2838. future : 'در %s',
  2839. past : '%s پیش',
  2840. s : 'چند ثانیه',
  2841. ss : 'ثانیه d%',
  2842. m : 'یک دقیقه',
  2843. mm : '%d دقیقه',
  2844. h : 'یک ساعت',
  2845. hh : '%d ساعت',
  2846. d : 'یک روز',
  2847. dd : '%d روز',
  2848. M : 'یک ماه',
  2849. MM : '%d ماه',
  2850. y : 'یک سال',
  2851. yy : '%d سال'
  2852. },
  2853. preparse: function (string) {
  2854. return string.replace(/[۰-۹]/g, function (match) {
  2855. return numberMap$4[match];
  2856. }).replace(/،/g, ',');
  2857. },
  2858. postformat: function (string) {
  2859. return string.replace(/\d/g, function (match) {
  2860. return symbolMap$5[match];
  2861. }).replace(/,/g, '،');
  2862. },
  2863. dayOfMonthOrdinalParse: /\d{1,2}م/,
  2864. ordinal : '%dم',
  2865. week : {
  2866. dow : 6, // Saturday is the first day of the week.
  2867. doy : 12 // The week that contains Jan 1st is the first week of the year.
  2868. }
  2869. });
  2870. //! moment.js locale configuration
  2871. var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(' '),
  2872. numbersFuture = [
  2873. 'nolla', 'yhden', 'kahden', 'kolmen', 'neljän', 'viiden', 'kuuden',
  2874. numbersPast[7], numbersPast[8], numbersPast[9]
  2875. ];
  2876. function translate$2(number, withoutSuffix, key, isFuture) {
  2877. var result = '';
  2878. switch (key) {
  2879. case 's':
  2880. return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';
  2881. case 'ss':
  2882. return isFuture ? 'sekunnin' : 'sekuntia';
  2883. case 'm':
  2884. return isFuture ? 'minuutin' : 'minuutti';
  2885. case 'mm':
  2886. result = isFuture ? 'minuutin' : 'minuuttia';
  2887. break;
  2888. case 'h':
  2889. return isFuture ? 'tunnin' : 'tunti';
  2890. case 'hh':
  2891. result = isFuture ? 'tunnin' : 'tuntia';
  2892. break;
  2893. case 'd':
  2894. return isFuture ? 'päivän' : 'päivä';
  2895. case 'dd':
  2896. result = isFuture ? 'päivän' : 'päivää';
  2897. break;
  2898. case 'M':
  2899. return isFuture ? 'kuukauden' : 'kuukausi';
  2900. case 'MM':
  2901. result = isFuture ? 'kuukauden' : 'kuukautta';
  2902. break;
  2903. case 'y':
  2904. return isFuture ? 'vuoden' : 'vuosi';
  2905. case 'yy':
  2906. result = isFuture ? 'vuoden' : 'vuotta';
  2907. break;
  2908. }
  2909. result = verbalNumber(number, isFuture) + ' ' + result;
  2910. return result;
  2911. }
  2912. function verbalNumber(number, isFuture) {
  2913. return number < 10 ? (isFuture ? numbersFuture[number] : numbersPast[number]) : number;
  2914. }
  2915. moment.defineLocale('fi', {
  2916. months : 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu'.split('_'),
  2917. monthsShort : 'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split('_'),
  2918. weekdays : 'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split('_'),
  2919. weekdaysShort : 'su_ma_ti_ke_to_pe_la'.split('_'),
  2920. weekdaysMin : 'su_ma_ti_ke_to_pe_la'.split('_'),
  2921. longDateFormat : {
  2922. LT : 'HH.mm',
  2923. LTS : 'HH.mm.ss',
  2924. L : 'DD.MM.YYYY',
  2925. LL : 'Do MMMM[ta] YYYY',
  2926. LLL : 'Do MMMM[ta] YYYY, [klo] HH.mm',
  2927. LLLL : 'dddd, Do MMMM[ta] YYYY, [klo] HH.mm',
  2928. l : 'D.M.YYYY',
  2929. ll : 'Do MMM YYYY',
  2930. lll : 'Do MMM YYYY, [klo] HH.mm',
  2931. llll : 'ddd, Do MMM YYYY, [klo] HH.mm'
  2932. },
  2933. calendar : {
  2934. sameDay : '[tänään] [klo] LT',
  2935. nextDay : '[huomenna] [klo] LT',
  2936. nextWeek : 'dddd [klo] LT',
  2937. lastDay : '[eilen] [klo] LT',
  2938. lastWeek : '[viime] dddd[na] [klo] LT',
  2939. sameElse : 'L'
  2940. },
  2941. relativeTime : {
  2942. future : '%s päästä',
  2943. past : '%s sitten',
  2944. s : translate$2,
  2945. ss : translate$2,
  2946. m : translate$2,
  2947. mm : translate$2,
  2948. h : translate$2,
  2949. hh : translate$2,
  2950. d : translate$2,
  2951. dd : translate$2,
  2952. M : translate$2,
  2953. MM : translate$2,
  2954. y : translate$2,
  2955. yy : translate$2
  2956. },
  2957. dayOfMonthOrdinalParse: /\d{1,2}\./,
  2958. ordinal : '%d.',
  2959. week : {
  2960. dow : 1, // Monday is the first day of the week.
  2961. doy : 4 // The week that contains Jan 4th is the first week of the year.
  2962. }
  2963. });
  2964. //! moment.js locale configuration
  2965. moment.defineLocale('fo', {
  2966. months : 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
  2967. monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
  2968. weekdays : 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'),
  2969. weekdaysShort : 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
  2970. weekdaysMin : 'su_má_tý_mi_hó_fr_le'.split('_'),
  2971. longDateFormat : {
  2972. LT : 'HH:mm',
  2973. LTS : 'HH:mm:ss',
  2974. L : 'DD/MM/YYYY',
  2975. LL : 'D MMMM YYYY',
  2976. LLL : 'D MMMM YYYY HH:mm',
  2977. LLLL : 'dddd D. MMMM, YYYY HH:mm'
  2978. },
  2979. calendar : {
  2980. sameDay : '[Í dag kl.] LT',
  2981. nextDay : '[Í morgin kl.] LT',
  2982. nextWeek : 'dddd [kl.] LT',
  2983. lastDay : '[Í gjár kl.] LT',
  2984. lastWeek : '[síðstu] dddd [kl] LT',
  2985. sameElse : 'L'
  2986. },
  2987. relativeTime : {
  2988. future : 'um %s',
  2989. past : '%s síðani',
  2990. s : 'fá sekund',
  2991. ss : '%d sekundir',
  2992. m : 'ein minutt',
  2993. mm : '%d minuttir',
  2994. h : 'ein tími',
  2995. hh : '%d tímar',
  2996. d : 'ein dagur',
  2997. dd : '%d dagar',
  2998. M : 'ein mánaði',
  2999. MM : '%d mánaðir',
  3000. y : 'eitt ár',
  3001. yy : '%d ár'
  3002. },
  3003. dayOfMonthOrdinalParse: /\d{1,2}\./,
  3004. ordinal : '%d.',
  3005. week : {
  3006. dow : 1, // Monday is the first day of the week.
  3007. doy : 4 // The week that contains Jan 4th is the first week of the year.
  3008. }
  3009. });
  3010. //! moment.js locale configuration
  3011. moment.defineLocale('fr-ca', {
  3012. months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
  3013. monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),
  3014. monthsParseExact : true,
  3015. weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
  3016. weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
  3017. weekdaysMin : 'di_lu_ma_me_je_ve_sa'.split('_'),
  3018. weekdaysParseExact : true,
  3019. longDateFormat : {
  3020. LT : 'HH:mm',
  3021. LTS : 'HH:mm:ss',
  3022. L : 'YYYY-MM-DD',
  3023. LL : 'D MMMM YYYY',
  3024. LLL : 'D MMMM YYYY HH:mm',
  3025. LLLL : 'dddd D MMMM YYYY HH:mm'
  3026. },
  3027. calendar : {
  3028. sameDay : '[Aujourd’hui à] LT',
  3029. nextDay : '[Demain à] LT',
  3030. nextWeek : 'dddd [à] LT',
  3031. lastDay : '[Hier à] LT',
  3032. lastWeek : 'dddd [dernier à] LT',
  3033. sameElse : 'L'
  3034. },
  3035. relativeTime : {
  3036. future : 'dans %s',
  3037. past : 'il y a %s',
  3038. s : 'quelques secondes',
  3039. ss : '%d secondes',
  3040. m : 'une minute',
  3041. mm : '%d minutes',
  3042. h : 'une heure',
  3043. hh : '%d heures',
  3044. d : 'un jour',
  3045. dd : '%d jours',
  3046. M : 'un mois',
  3047. MM : '%d mois',
  3048. y : 'un an',
  3049. yy : '%d ans'
  3050. },
  3051. dayOfMonthOrdinalParse: /\d{1,2}(er|e)/,
  3052. ordinal : function (number, period) {
  3053. switch (period) {
  3054. // Words with masculine grammatical gender: mois, trimestre, jour
  3055. default:
  3056. case 'M':
  3057. case 'Q':
  3058. case 'D':
  3059. case 'DDD':
  3060. case 'd':
  3061. return number + (number === 1 ? 'er' : 'e');
  3062. // Words with feminine grammatical gender: semaine
  3063. case 'w':
  3064. case 'W':
  3065. return number + (number === 1 ? 're' : 'e');
  3066. }
  3067. }
  3068. });
  3069. //! moment.js locale configuration
  3070. moment.defineLocale('fr-ch', {
  3071. months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
  3072. monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),
  3073. monthsParseExact : true,
  3074. weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
  3075. weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
  3076. weekdaysMin : 'di_lu_ma_me_je_ve_sa'.split('_'),
  3077. weekdaysParseExact : true,
  3078. longDateFormat : {
  3079. LT : 'HH:mm',
  3080. LTS : 'HH:mm:ss',
  3081. L : 'DD.MM.YYYY',
  3082. LL : 'D MMMM YYYY',
  3083. LLL : 'D MMMM YYYY HH:mm',
  3084. LLLL : 'dddd D MMMM YYYY HH:mm'
  3085. },
  3086. calendar : {
  3087. sameDay : '[Aujourd’hui à] LT',
  3088. nextDay : '[Demain à] LT',
  3089. nextWeek : 'dddd [à] LT',
  3090. lastDay : '[Hier à] LT',
  3091. lastWeek : 'dddd [dernier à] LT',
  3092. sameElse : 'L'
  3093. },
  3094. relativeTime : {
  3095. future : 'dans %s',
  3096. past : 'il y a %s',
  3097. s : 'quelques secondes',
  3098. ss : '%d secondes',
  3099. m : 'une minute',
  3100. mm : '%d minutes',
  3101. h : 'une heure',
  3102. hh : '%d heures',
  3103. d : 'un jour',
  3104. dd : '%d jours',
  3105. M : 'un mois',
  3106. MM : '%d mois',
  3107. y : 'un an',
  3108. yy : '%d ans'
  3109. },
  3110. dayOfMonthOrdinalParse: /\d{1,2}(er|e)/,
  3111. ordinal : function (number, period) {
  3112. switch (period) {
  3113. // Words with masculine grammatical gender: mois, trimestre, jour
  3114. default:
  3115. case 'M':
  3116. case 'Q':
  3117. case 'D':
  3118. case 'DDD':
  3119. case 'd':
  3120. return number + (number === 1 ? 'er' : 'e');
  3121. // Words with feminine grammatical gender: semaine
  3122. case 'w':
  3123. case 'W':
  3124. return number + (number === 1 ? 're' : 'e');
  3125. }
  3126. },
  3127. week : {
  3128. dow : 1, // Monday is the first day of the week.
  3129. doy : 4 // The week that contains Jan 4th is the first week of the year.
  3130. }
  3131. });
  3132. //! moment.js locale configuration
  3133. moment.defineLocale('fr', {
  3134. months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
  3135. monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),
  3136. monthsParseExact : true,
  3137. weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
  3138. weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
  3139. weekdaysMin : 'di_lu_ma_me_je_ve_sa'.split('_'),
  3140. weekdaysParseExact : true,
  3141. longDateFormat : {
  3142. LT : 'HH:mm',
  3143. LTS : 'HH:mm:ss',
  3144. L : 'DD/MM/YYYY',
  3145. LL : 'D MMMM YYYY',
  3146. LLL : 'D MMMM YYYY HH:mm',
  3147. LLLL : 'dddd D MMMM YYYY HH:mm'
  3148. },
  3149. calendar : {
  3150. sameDay : '[Aujourd’hui à] LT',
  3151. nextDay : '[Demain à] LT',
  3152. nextWeek : 'dddd [à] LT',
  3153. lastDay : '[Hier à] LT',
  3154. lastWeek : 'dddd [dernier à] LT',
  3155. sameElse : 'L'
  3156. },
  3157. relativeTime : {
  3158. future : 'dans %s',
  3159. past : 'il y a %s',
  3160. s : 'quelques secondes',
  3161. ss : '%d secondes',
  3162. m : 'une minute',
  3163. mm : '%d minutes',
  3164. h : 'une heure',
  3165. hh : '%d heures',
  3166. d : 'un jour',
  3167. dd : '%d jours',
  3168. M : 'un mois',
  3169. MM : '%d mois',
  3170. y : 'un an',
  3171. yy : '%d ans'
  3172. },
  3173. dayOfMonthOrdinalParse: /\d{1,2}(er|)/,
  3174. ordinal : function (number, period) {
  3175. switch (period) {
  3176. // TODO: Return 'e' when day of month > 1. Move this case inside
  3177. // block for masculine words below.
  3178. // See https://github.com/moment/moment/issues/3375
  3179. case 'D':
  3180. return number + (number === 1 ? 'er' : '');
  3181. // Words with masculine grammatical gender: mois, trimestre, jour
  3182. default:
  3183. case 'M':
  3184. case 'Q':
  3185. case 'DDD':
  3186. case 'd':
  3187. return number + (number === 1 ? 'er' : 'e');
  3188. // Words with feminine grammatical gender: semaine
  3189. case 'w':
  3190. case 'W':
  3191. return number + (number === 1 ? 're' : 'e');
  3192. }
  3193. },
  3194. week : {
  3195. dow : 1, // Monday is the first day of the week.
  3196. doy : 4 // The week that contains Jan 4th is the first week of the year.
  3197. }
  3198. });
  3199. //! moment.js locale configuration
  3200. var monthsShortWithDots = 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split('_'),
  3201. monthsShortWithoutDots = 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_');
  3202. moment.defineLocale('fy', {
  3203. months : 'jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber'.split('_'),
  3204. monthsShort : function (m, format) {
  3205. if (!m) {
  3206. return monthsShortWithDots;
  3207. } else if (/-MMM-/.test(format)) {
  3208. return monthsShortWithoutDots[m.month()];
  3209. } else {
  3210. return monthsShortWithDots[m.month()];
  3211. }
  3212. },
  3213. monthsParseExact : true,
  3214. weekdays : 'snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon'.split('_'),
  3215. weekdaysShort : 'si._mo._ti._wo._to._fr._so.'.split('_'),
  3216. weekdaysMin : 'Si_Mo_Ti_Wo_To_Fr_So'.split('_'),
  3217. weekdaysParseExact : true,
  3218. longDateFormat : {
  3219. LT : 'HH:mm',
  3220. LTS : 'HH:mm:ss',
  3221. L : 'DD-MM-YYYY',
  3222. LL : 'D MMMM YYYY',
  3223. LLL : 'D MMMM YYYY HH:mm',
  3224. LLLL : 'dddd D MMMM YYYY HH:mm'
  3225. },
  3226. calendar : {
  3227. sameDay: '[hjoed om] LT',
  3228. nextDay: '[moarn om] LT',
  3229. nextWeek: 'dddd [om] LT',
  3230. lastDay: '[juster om] LT',
  3231. lastWeek: '[ôfrûne] dddd [om] LT',
  3232. sameElse: 'L'
  3233. },
  3234. relativeTime : {
  3235. future : 'oer %s',
  3236. past : '%s lyn',
  3237. s : 'in pear sekonden',
  3238. ss : '%d sekonden',
  3239. m : 'ien minút',
  3240. mm : '%d minuten',
  3241. h : 'ien oere',
  3242. hh : '%d oeren',
  3243. d : 'ien dei',
  3244. dd : '%d dagen',
  3245. M : 'ien moanne',
  3246. MM : '%d moannen',
  3247. y : 'ien jier',
  3248. yy : '%d jierren'
  3249. },
  3250. dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
  3251. ordinal : function (number) {
  3252. return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');
  3253. },
  3254. week : {
  3255. dow : 1, // Monday is the first day of the week.
  3256. doy : 4 // The week that contains Jan 4th is the first week of the year.
  3257. }
  3258. });
  3259. //! moment.js locale configuration
  3260. var months$4 = [
  3261. 'Am Faoilleach', 'An Gearran', 'Am Màrt', 'An Giblean', 'An Cèitean', 'An t-Ògmhios', 'An t-Iuchar', 'An Lùnastal', 'An t-Sultain', 'An Dàmhair', 'An t-Samhain', 'An Dùbhlachd'
  3262. ];
  3263. var monthsShort$4 = ['Faoi', 'Gear', 'Màrt', 'Gibl', 'Cèit', 'Ògmh', 'Iuch', 'Lùn', 'Sult', 'Dàmh', 'Samh', 'Dùbh'];
  3264. var weekdays$1 = ['Didòmhnaich', 'Diluain', 'Dimàirt', 'Diciadain', 'Diardaoin', 'Dihaoine', 'Disathairne'];
  3265. var weekdaysShort = ['Did', 'Dil', 'Dim', 'Dic', 'Dia', 'Dih', 'Dis'];
  3266. var weekdaysMin = ['Dò', 'Lu', 'Mà', 'Ci', 'Ar', 'Ha', 'Sa'];
  3267. moment.defineLocale('gd', {
  3268. months : months$4,
  3269. monthsShort : monthsShort$4,
  3270. monthsParseExact : true,
  3271. weekdays : weekdays$1,
  3272. weekdaysShort : weekdaysShort,
  3273. weekdaysMin : weekdaysMin,
  3274. longDateFormat : {
  3275. LT : 'HH:mm',
  3276. LTS : 'HH:mm:ss',
  3277. L : 'DD/MM/YYYY',
  3278. LL : 'D MMMM YYYY',
  3279. LLL : 'D MMMM YYYY HH:mm',
  3280. LLLL : 'dddd, D MMMM YYYY HH:mm'
  3281. },
  3282. calendar : {
  3283. sameDay : '[An-diugh aig] LT',
  3284. nextDay : '[A-màireach aig] LT',
  3285. nextWeek : 'dddd [aig] LT',
  3286. lastDay : '[An-dè aig] LT',
  3287. lastWeek : 'dddd [seo chaidh] [aig] LT',
  3288. sameElse : 'L'
  3289. },
  3290. relativeTime : {
  3291. future : 'ann an %s',
  3292. past : 'bho chionn %s',
  3293. s : 'beagan diogan',
  3294. ss : '%d diogan',
  3295. m : 'mionaid',
  3296. mm : '%d mionaidean',
  3297. h : 'uair',
  3298. hh : '%d uairean',
  3299. d : 'latha',
  3300. dd : '%d latha',
  3301. M : 'mìos',
  3302. MM : '%d mìosan',
  3303. y : 'bliadhna',
  3304. yy : '%d bliadhna'
  3305. },
  3306. dayOfMonthOrdinalParse : /\d{1,2}(d|na|mh)/,
  3307. ordinal : function (number) {
  3308. var output = number === 1 ? 'd' : number % 10 === 2 ? 'na' : 'mh';
  3309. return number + output;
  3310. },
  3311. week : {
  3312. dow : 1, // Monday is the first day of the week.
  3313. doy : 4 // The week that contains Jan 4th is the first week of the year.
  3314. }
  3315. });
  3316. //! moment.js locale configuration
  3317. moment.defineLocale('gl', {
  3318. months : 'xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro'.split('_'),
  3319. monthsShort : 'xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.'.split('_'),
  3320. monthsParseExact: true,
  3321. weekdays : 'domingo_luns_martes_mércores_xoves_venres_sábado'.split('_'),
  3322. weekdaysShort : 'dom._lun._mar._mér._xov._ven._sáb.'.split('_'),
  3323. weekdaysMin : 'do_lu_ma_mé_xo_ve_sá'.split('_'),
  3324. weekdaysParseExact : true,
  3325. longDateFormat : {
  3326. LT : 'H:mm',
  3327. LTS : 'H:mm:ss',
  3328. L : 'DD/MM/YYYY',
  3329. LL : 'D [de] MMMM [de] YYYY',
  3330. LLL : 'D [de] MMMM [de] YYYY H:mm',
  3331. LLLL : 'dddd, D [de] MMMM [de] YYYY H:mm'
  3332. },
  3333. calendar : {
  3334. sameDay : function () {
  3335. return '[hoxe ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT';
  3336. },
  3337. nextDay : function () {
  3338. return '[mañá ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT';
  3339. },
  3340. nextWeek : function () {
  3341. return 'dddd [' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT';
  3342. },
  3343. lastDay : function () {
  3344. return '[onte ' + ((this.hours() !== 1) ? 'á' : 'a') + '] LT';
  3345. },
  3346. lastWeek : function () {
  3347. return '[o] dddd [pasado ' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT';
  3348. },
  3349. sameElse : 'L'
  3350. },
  3351. relativeTime : {
  3352. future : function (str) {
  3353. if (str.indexOf('un') === 0) {
  3354. return 'n' + str;
  3355. }
  3356. return 'en ' + str;
  3357. },
  3358. past : 'hai %s',
  3359. s : 'uns segundos',
  3360. ss : '%d segundos',
  3361. m : 'un minuto',
  3362. mm : '%d minutos',
  3363. h : 'unha hora',
  3364. hh : '%d horas',
  3365. d : 'un día',
  3366. dd : '%d días',
  3367. M : 'un mes',
  3368. MM : '%d meses',
  3369. y : 'un ano',
  3370. yy : '%d anos'
  3371. },
  3372. dayOfMonthOrdinalParse : /\d{1,2}º/,
  3373. ordinal : '%dº',
  3374. week : {
  3375. dow : 1, // Monday is the first day of the week.
  3376. doy : 4 // The week that contains Jan 4th is the first week of the year.
  3377. }
  3378. });
  3379. //! moment.js locale configuration
  3380. function processRelativeTime$4(number, withoutSuffix, key, isFuture) {
  3381. var format = {
  3382. 's': ['thodde secondanim', 'thodde second'],
  3383. 'ss': [number + ' secondanim', number + ' second'],
  3384. 'm': ['eka mintan', 'ek minute'],
  3385. 'mm': [number + ' mintanim', number + ' mintam'],
  3386. 'h': ['eka horan', 'ek hor'],
  3387. 'hh': [number + ' horanim', number + ' horam'],
  3388. 'd': ['eka disan', 'ek dis'],
  3389. 'dd': [number + ' disanim', number + ' dis'],
  3390. 'M': ['eka mhoinean', 'ek mhoino'],
  3391. 'MM': [number + ' mhoineanim', number + ' mhoine'],
  3392. 'y': ['eka vorsan', 'ek voros'],
  3393. 'yy': [number + ' vorsanim', number + ' vorsam']
  3394. };
  3395. return withoutSuffix ? format[key][0] : format[key][1];
  3396. }
  3397. moment.defineLocale('gom-latn', {
  3398. months : 'Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr'.split('_'),
  3399. monthsShort : 'Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.'.split('_'),
  3400. monthsParseExact : true,
  3401. weekdays : 'Aitar_Somar_Mongllar_Budvar_Brestar_Sukrar_Son\'var'.split('_'),
  3402. weekdaysShort : 'Ait._Som._Mon._Bud._Bre._Suk._Son.'.split('_'),
  3403. weekdaysMin : 'Ai_Sm_Mo_Bu_Br_Su_Sn'.split('_'),
  3404. weekdaysParseExact : true,
  3405. longDateFormat : {
  3406. LT : 'A h:mm [vazta]',
  3407. LTS : 'A h:mm:ss [vazta]',
  3408. L : 'DD-MM-YYYY',
  3409. LL : 'D MMMM YYYY',
  3410. LLL : 'D MMMM YYYY A h:mm [vazta]',
  3411. LLLL : 'dddd, MMMM[achea] Do, YYYY, A h:mm [vazta]',
  3412. llll: 'ddd, D MMM YYYY, A h:mm [vazta]'
  3413. },
  3414. calendar : {
  3415. sameDay: '[Aiz] LT',
  3416. nextDay: '[Faleam] LT',
  3417. nextWeek: '[Ieta to] dddd[,] LT',
  3418. lastDay: '[Kal] LT',
  3419. lastWeek: '[Fatlo] dddd[,] LT',
  3420. sameElse: 'L'
  3421. },
  3422. relativeTime : {
  3423. future : '%s',
  3424. past : '%s adim',
  3425. s : processRelativeTime$4,
  3426. ss : processRelativeTime$4,
  3427. m : processRelativeTime$4,
  3428. mm : processRelativeTime$4,
  3429. h : processRelativeTime$4,
  3430. hh : processRelativeTime$4,
  3431. d : processRelativeTime$4,
  3432. dd : processRelativeTime$4,
  3433. M : processRelativeTime$4,
  3434. MM : processRelativeTime$4,
  3435. y : processRelativeTime$4,
  3436. yy : processRelativeTime$4
  3437. },
  3438. dayOfMonthOrdinalParse : /\d{1,2}(er)/,
  3439. ordinal : function (number, period) {
  3440. switch (period) {
  3441. // the ordinal 'er' only applies to day of the month
  3442. case 'D':
  3443. return number + 'er';
  3444. default:
  3445. case 'M':
  3446. case 'Q':
  3447. case 'DDD':
  3448. case 'd':
  3449. case 'w':
  3450. case 'W':
  3451. return number;
  3452. }
  3453. },
  3454. week : {
  3455. dow : 1, // Monday is the first day of the week.
  3456. doy : 4 // The week that contains Jan 4th is the first week of the year.
  3457. },
  3458. meridiemParse: /rati|sokalli|donparam|sanje/,
  3459. meridiemHour : function (hour, meridiem) {
  3460. if (hour === 12) {
  3461. hour = 0;
  3462. }
  3463. if (meridiem === 'rati') {
  3464. return hour < 4 ? hour : hour + 12;
  3465. } else if (meridiem === 'sokalli') {
  3466. return hour;
  3467. } else if (meridiem === 'donparam') {
  3468. return hour > 12 ? hour : hour + 12;
  3469. } else if (meridiem === 'sanje') {
  3470. return hour + 12;
  3471. }
  3472. },
  3473. meridiem : function (hour, minute, isLower) {
  3474. if (hour < 4) {
  3475. return 'rati';
  3476. } else if (hour < 12) {
  3477. return 'sokalli';
  3478. } else if (hour < 16) {
  3479. return 'donparam';
  3480. } else if (hour < 20) {
  3481. return 'sanje';
  3482. } else {
  3483. return 'rati';
  3484. }
  3485. }
  3486. });
  3487. //! moment.js locale configuration
  3488. var symbolMap$6 = {
  3489. '1': '૧',
  3490. '2': '૨',
  3491. '3': '૩',
  3492. '4': '૪',
  3493. '5': '૫',
  3494. '6': '૬',
  3495. '7': '૭',
  3496. '8': '૮',
  3497. '9': '૯',
  3498. '0': '૦'
  3499. },
  3500. numberMap$5 = {
  3501. '૧': '1',
  3502. '૨': '2',
  3503. '૩': '3',
  3504. '૪': '4',
  3505. '૫': '5',
  3506. '૬': '6',
  3507. '૭': '7',
  3508. '૮': '8',
  3509. '૯': '9',
  3510. '૦': '0'
  3511. };
  3512. moment.defineLocale('gu', {
  3513. months: 'જાન્યુઆરી_ફેબ્રુઆરી_માર્ચ_એપ્રિલ_મે_જૂન_જુલાઈ_ઑગસ્ટ_સપ્ટેમ્બર_ઑક્ટ્બર_નવેમ્બર_ડિસેમ્બર'.split('_'),
  3514. monthsShort: 'જાન્યુ._ફેબ્રુ._માર્ચ_એપ્રિ._મે_જૂન_જુલા._ઑગ._સપ્ટે._ઑક્ટ્._નવે._ડિસે.'.split('_'),
  3515. monthsParseExact: true,
  3516. weekdays: 'રવિવાર_સોમવાર_મંગળવાર_બુધ્વાર_ગુરુવાર_શુક્રવાર_શનિવાર'.split('_'),
  3517. weekdaysShort: 'રવિ_સોમ_મંગળ_બુધ્_ગુરુ_શુક્ર_શનિ'.split('_'),
  3518. weekdaysMin: 'ર_સો_મં_બુ_ગુ_શુ_શ'.split('_'),
  3519. longDateFormat: {
  3520. LT: 'A h:mm વાગ્યે',
  3521. LTS: 'A h:mm:ss વાગ્યે',
  3522. L: 'DD/MM/YYYY',
  3523. LL: 'D MMMM YYYY',
  3524. LLL: 'D MMMM YYYY, A h:mm વાગ્યે',
  3525. LLLL: 'dddd, D MMMM YYYY, A h:mm વાગ્યે'
  3526. },
  3527. calendar: {
  3528. sameDay: '[આજ] LT',
  3529. nextDay: '[કાલે] LT',
  3530. nextWeek: 'dddd, LT',
  3531. lastDay: '[ગઇકાલે] LT',
  3532. lastWeek: '[પાછલા] dddd, LT',
  3533. sameElse: 'L'
  3534. },
  3535. relativeTime: {
  3536. future: '%s મા',
  3537. past: '%s પેહલા',
  3538. s: 'અમુક પળો',
  3539. ss: '%d સેકંડ',
  3540. m: 'એક મિનિટ',
  3541. mm: '%d મિનિટ',
  3542. h: 'એક કલાક',
  3543. hh: '%d કલાક',
  3544. d: 'એક દિવસ',
  3545. dd: '%d દિવસ',
  3546. M: 'એક મહિનો',
  3547. MM: '%d મહિનો',
  3548. y: 'એક વર્ષ',
  3549. yy: '%d વર્ષ'
  3550. },
  3551. preparse: function (string) {
  3552. return string.replace(/[૧૨૩૪૫૬૭૮૯૦]/g, function (match) {
  3553. return numberMap$5[match];
  3554. });
  3555. },
  3556. postformat: function (string) {
  3557. return string.replace(/\d/g, function (match) {
  3558. return symbolMap$6[match];
  3559. });
  3560. },
  3561. // Gujarati notation for meridiems are quite fuzzy in practice. While there exists
  3562. // a rigid notion of a 'Pahar' it is not used as rigidly in modern Gujarati.
  3563. meridiemParse: /રાત|બપોર|સવાર|સાંજ/,
  3564. meridiemHour: function (hour, meridiem) {
  3565. if (hour === 12) {
  3566. hour = 0;
  3567. }
  3568. if (meridiem === 'રાત') {
  3569. return hour < 4 ? hour : hour + 12;
  3570. } else if (meridiem === 'સવાર') {
  3571. return hour;
  3572. } else if (meridiem === 'બપોર') {
  3573. return hour >= 10 ? hour : hour + 12;
  3574. } else if (meridiem === 'સાંજ') {
  3575. return hour + 12;
  3576. }
  3577. },
  3578. meridiem: function (hour, minute, isLower) {
  3579. if (hour < 4) {
  3580. return 'રાત';
  3581. } else if (hour < 10) {
  3582. return 'સવાર';
  3583. } else if (hour < 17) {
  3584. return 'બપોર';
  3585. } else if (hour < 20) {
  3586. return 'સાંજ';
  3587. } else {
  3588. return 'રાત';
  3589. }
  3590. },
  3591. week: {
  3592. dow: 0, // Sunday is the first day of the week.
  3593. doy: 6 // The week that contains Jan 1st is the first week of the year.
  3594. }
  3595. });
  3596. //! moment.js locale configuration
  3597. moment.defineLocale('he', {
  3598. months : 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split('_'),
  3599. monthsShort : 'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split('_'),
  3600. weekdays : 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'),
  3601. weekdaysShort : 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'),
  3602. weekdaysMin : 'א_ב_ג_ד_ה_ו_ש'.split('_'),
  3603. longDateFormat : {
  3604. LT : 'HH:mm',
  3605. LTS : 'HH:mm:ss',
  3606. L : 'DD/MM/YYYY',
  3607. LL : 'D [ב]MMMM YYYY',
  3608. LLL : 'D [ב]MMMM YYYY HH:mm',
  3609. LLLL : 'dddd, D [ב]MMMM YYYY HH:mm',
  3610. l : 'D/M/YYYY',
  3611. ll : 'D MMM YYYY',
  3612. lll : 'D MMM YYYY HH:mm',
  3613. llll : 'ddd, D MMM YYYY HH:mm'
  3614. },
  3615. calendar : {
  3616. sameDay : '[היום ב־]LT',
  3617. nextDay : '[מחר ב־]LT',
  3618. nextWeek : 'dddd [בשעה] LT',
  3619. lastDay : '[אתמול ב־]LT',
  3620. lastWeek : '[ביום] dddd [האחרון בשעה] LT',
  3621. sameElse : 'L'
  3622. },
  3623. relativeTime : {
  3624. future : 'בעוד %s',
  3625. past : 'לפני %s',
  3626. s : 'מספר שניות',
  3627. ss : '%d שניות',
  3628. m : 'דקה',
  3629. mm : '%d דקות',
  3630. h : 'שעה',
  3631. hh : function (number) {
  3632. if (number === 2) {
  3633. return 'שעתיים';
  3634. }
  3635. return number + ' שעות';
  3636. },
  3637. d : 'יום',
  3638. dd : function (number) {
  3639. if (number === 2) {
  3640. return 'יומיים';
  3641. }
  3642. return number + ' ימים';
  3643. },
  3644. M : 'חודש',
  3645. MM : function (number) {
  3646. if (number === 2) {
  3647. return 'חודשיים';
  3648. }
  3649. return number + ' חודשים';
  3650. },
  3651. y : 'שנה',
  3652. yy : function (number) {
  3653. if (number === 2) {
  3654. return 'שנתיים';
  3655. } else if (number % 10 === 0 && number !== 10) {
  3656. return number + ' שנה';
  3657. }
  3658. return number + ' שנים';
  3659. }
  3660. },
  3661. meridiemParse: /אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,
  3662. isPM : function (input) {
  3663. return /^(אחה"צ|אחרי הצהריים|בערב)$/.test(input);
  3664. },
  3665. meridiem : function (hour, minute, isLower) {
  3666. if (hour < 5) {
  3667. return 'לפנות בוקר';
  3668. } else if (hour < 10) {
  3669. return 'בבוקר';
  3670. } else if (hour < 12) {
  3671. return isLower ? 'לפנה"צ' : 'לפני הצהריים';
  3672. } else if (hour < 18) {
  3673. return isLower ? 'אחה"צ' : 'אחרי הצהריים';
  3674. } else {
  3675. return 'בערב';
  3676. }
  3677. }
  3678. });
  3679. //! moment.js locale configuration
  3680. var symbolMap$7 = {
  3681. '1': '१',
  3682. '2': '२',
  3683. '3': '३',
  3684. '4': '४',
  3685. '5': '५',
  3686. '6': '६',
  3687. '7': '७',
  3688. '8': '८',
  3689. '9': '९',
  3690. '0': '०'
  3691. },
  3692. numberMap$6 = {
  3693. '१': '1',
  3694. '२': '2',
  3695. '३': '3',
  3696. '४': '4',
  3697. '५': '5',
  3698. '६': '6',
  3699. '७': '7',
  3700. '८': '8',
  3701. '९': '9',
  3702. '०': '0'
  3703. };
  3704. moment.defineLocale('hi', {
  3705. months : 'जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर'.split('_'),
  3706. monthsShort : 'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split('_'),
  3707. monthsParseExact: true,
  3708. weekdays : 'रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
  3709. weekdaysShort : 'रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि'.split('_'),
  3710. weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'),
  3711. longDateFormat : {
  3712. LT : 'A h:mm बजे',
  3713. LTS : 'A h:mm:ss बजे',
  3714. L : 'DD/MM/YYYY',
  3715. LL : 'D MMMM YYYY',
  3716. LLL : 'D MMMM YYYY, A h:mm बजे',
  3717. LLLL : 'dddd, D MMMM YYYY, A h:mm बजे'
  3718. },
  3719. calendar : {
  3720. sameDay : '[आज] LT',
  3721. nextDay : '[कल] LT',
  3722. nextWeek : 'dddd, LT',
  3723. lastDay : '[कल] LT',
  3724. lastWeek : '[पिछले] dddd, LT',
  3725. sameElse : 'L'
  3726. },
  3727. relativeTime : {
  3728. future : '%s में',
  3729. past : '%s पहले',
  3730. s : 'कुछ ही क्षण',
  3731. ss : '%d सेकंड',
  3732. m : 'एक मिनट',
  3733. mm : '%d मिनट',
  3734. h : 'एक घंटा',
  3735. hh : '%d घंटे',
  3736. d : 'एक दिन',
  3737. dd : '%d दिन',
  3738. M : 'एक महीने',
  3739. MM : '%d महीने',
  3740. y : 'एक वर्ष',
  3741. yy : '%d वर्ष'
  3742. },
  3743. preparse: function (string) {
  3744. return string.replace(/[१२३४५६७८९०]/g, function (match) {
  3745. return numberMap$6[match];
  3746. });
  3747. },
  3748. postformat: function (string) {
  3749. return string.replace(/\d/g, function (match) {
  3750. return symbolMap$7[match];
  3751. });
  3752. },
  3753. // Hindi notation for meridiems are quite fuzzy in practice. While there exists
  3754. // a rigid notion of a 'Pahar' it is not used as rigidly in modern Hindi.
  3755. meridiemParse: /रात|सुबह|दोपहर|शाम/,
  3756. meridiemHour : function (hour, meridiem) {
  3757. if (hour === 12) {
  3758. hour = 0;
  3759. }
  3760. if (meridiem === 'रात') {
  3761. return hour < 4 ? hour : hour + 12;
  3762. } else if (meridiem === 'सुबह') {
  3763. return hour;
  3764. } else if (meridiem === 'दोपहर') {
  3765. return hour >= 10 ? hour : hour + 12;
  3766. } else if (meridiem === 'शाम') {
  3767. return hour + 12;
  3768. }
  3769. },
  3770. meridiem : function (hour, minute, isLower) {
  3771. if (hour < 4) {
  3772. return 'रात';
  3773. } else if (hour < 10) {
  3774. return 'सुबह';
  3775. } else if (hour < 17) {
  3776. return 'दोपहर';
  3777. } else if (hour < 20) {
  3778. return 'शाम';
  3779. } else {
  3780. return 'रात';
  3781. }
  3782. },
  3783. week : {
  3784. dow : 0, // Sunday is the first day of the week.
  3785. doy : 6 // The week that contains Jan 1st is the first week of the year.
  3786. }
  3787. });
  3788. //! moment.js locale configuration
  3789. function translate$3(number, withoutSuffix, key) {
  3790. var result = number + ' ';
  3791. switch (key) {
  3792. case 'ss':
  3793. if (number === 1) {
  3794. result += 'sekunda';
  3795. } else if (number === 2 || number === 3 || number === 4) {
  3796. result += 'sekunde';
  3797. } else {
  3798. result += 'sekundi';
  3799. }
  3800. return result;
  3801. case 'm':
  3802. return withoutSuffix ? 'jedna minuta' : 'jedne minute';
  3803. case 'mm':
  3804. if (number === 1) {
  3805. result += 'minuta';
  3806. } else if (number === 2 || number === 3 || number === 4) {
  3807. result += 'minute';
  3808. } else {
  3809. result += 'minuta';
  3810. }
  3811. return result;
  3812. case 'h':
  3813. return withoutSuffix ? 'jedan sat' : 'jednog sata';
  3814. case 'hh':
  3815. if (number === 1) {
  3816. result += 'sat';
  3817. } else if (number === 2 || number === 3 || number === 4) {
  3818. result += 'sata';
  3819. } else {
  3820. result += 'sati';
  3821. }
  3822. return result;
  3823. case 'dd':
  3824. if (number === 1) {
  3825. result += 'dan';
  3826. } else {
  3827. result += 'dana';
  3828. }
  3829. return result;
  3830. case 'MM':
  3831. if (number === 1) {
  3832. result += 'mjesec';
  3833. } else if (number === 2 || number === 3 || number === 4) {
  3834. result += 'mjeseca';
  3835. } else {
  3836. result += 'mjeseci';
  3837. }
  3838. return result;
  3839. case 'yy':
  3840. if (number === 1) {
  3841. result += 'godina';
  3842. } else if (number === 2 || number === 3 || number === 4) {
  3843. result += 'godine';
  3844. } else {
  3845. result += 'godina';
  3846. }
  3847. return result;
  3848. }
  3849. }
  3850. moment.defineLocale('hr', {
  3851. months : {
  3852. format: 'siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca'.split('_'),
  3853. standalone: 'siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac'.split('_')
  3854. },
  3855. monthsShort : 'sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.'.split('_'),
  3856. monthsParseExact: true,
  3857. weekdays : 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'),
  3858. weekdaysShort : 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),
  3859. weekdaysMin : 'ne_po_ut_sr_če_pe_su'.split('_'),
  3860. weekdaysParseExact : true,
  3861. longDateFormat : {
  3862. LT : 'H:mm',
  3863. LTS : 'H:mm:ss',
  3864. L : 'DD.MM.YYYY',
  3865. LL : 'D. MMMM YYYY',
  3866. LLL : 'D. MMMM YYYY H:mm',
  3867. LLLL : 'dddd, D. MMMM YYYY H:mm'
  3868. },
  3869. calendar : {
  3870. sameDay : '[danas u] LT',
  3871. nextDay : '[sutra u] LT',
  3872. nextWeek : function () {
  3873. switch (this.day()) {
  3874. case 0:
  3875. return '[u] [nedjelju] [u] LT';
  3876. case 3:
  3877. return '[u] [srijedu] [u] LT';
  3878. case 6:
  3879. return '[u] [subotu] [u] LT';
  3880. case 1:
  3881. case 2:
  3882. case 4:
  3883. case 5:
  3884. return '[u] dddd [u] LT';
  3885. }
  3886. },
  3887. lastDay : '[jučer u] LT',
  3888. lastWeek : function () {
  3889. switch (this.day()) {
  3890. case 0:
  3891. case 3:
  3892. return '[prošlu] dddd [u] LT';
  3893. case 6:
  3894. return '[prošle] [subote] [u] LT';
  3895. case 1:
  3896. case 2:
  3897. case 4:
  3898. case 5:
  3899. return '[prošli] dddd [u] LT';
  3900. }
  3901. },
  3902. sameElse : 'L'
  3903. },
  3904. relativeTime : {
  3905. future : 'za %s',
  3906. past : 'prije %s',
  3907. s : 'par sekundi',
  3908. ss : translate$3,
  3909. m : translate$3,
  3910. mm : translate$3,
  3911. h : translate$3,
  3912. hh : translate$3,
  3913. d : 'dan',
  3914. dd : translate$3,
  3915. M : 'mjesec',
  3916. MM : translate$3,
  3917. y : 'godinu',
  3918. yy : translate$3
  3919. },
  3920. dayOfMonthOrdinalParse: /\d{1,2}\./,
  3921. ordinal : '%d.',
  3922. week : {
  3923. dow : 1, // Monday is the first day of the week.
  3924. doy : 7 // The week that contains Jan 1st is the first week of the year.
  3925. }
  3926. });
  3927. //! moment.js locale configuration
  3928. var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' ');
  3929. function translate$4(number, withoutSuffix, key, isFuture) {
  3930. var num = number;
  3931. switch (key) {
  3932. case 's':
  3933. return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce';
  3934. case 'ss':
  3935. return num + (isFuture || withoutSuffix) ? ' másodperc' : ' másodperce';
  3936. case 'm':
  3937. return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');
  3938. case 'mm':
  3939. return num + (isFuture || withoutSuffix ? ' perc' : ' perce');
  3940. case 'h':
  3941. return 'egy' + (isFuture || withoutSuffix ? ' óra' : ' órája');
  3942. case 'hh':
  3943. return num + (isFuture || withoutSuffix ? ' óra' : ' órája');
  3944. case 'd':
  3945. return 'egy' + (isFuture || withoutSuffix ? ' nap' : ' napja');
  3946. case 'dd':
  3947. return num + (isFuture || withoutSuffix ? ' nap' : ' napja');
  3948. case 'M':
  3949. return 'egy' + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
  3950. case 'MM':
  3951. return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
  3952. case 'y':
  3953. return 'egy' + (isFuture || withoutSuffix ? ' év' : ' éve');
  3954. case 'yy':
  3955. return num + (isFuture || withoutSuffix ? ' év' : ' éve');
  3956. }
  3957. return '';
  3958. }
  3959. function week(isFuture) {
  3960. return (isFuture ? '' : '[múlt] ') + '[' + weekEndings[this.day()] + '] LT[-kor]';
  3961. }
  3962. moment.defineLocale('hu', {
  3963. months : 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split('_'),
  3964. monthsShort : 'jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec'.split('_'),
  3965. weekdays : 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),
  3966. weekdaysShort : 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'),
  3967. weekdaysMin : 'v_h_k_sze_cs_p_szo'.split('_'),
  3968. longDateFormat : {
  3969. LT : 'H:mm',
  3970. LTS : 'H:mm:ss',
  3971. L : 'YYYY.MM.DD.',
  3972. LL : 'YYYY. MMMM D.',
  3973. LLL : 'YYYY. MMMM D. H:mm',
  3974. LLLL : 'YYYY. MMMM D., dddd H:mm'
  3975. },
  3976. meridiemParse: /de|du/i,
  3977. isPM: function (input) {
  3978. return input.charAt(1).toLowerCase() === 'u';
  3979. },
  3980. meridiem : function (hours, minutes, isLower) {
  3981. if (hours < 12) {
  3982. return isLower === true ? 'de' : 'DE';
  3983. } else {
  3984. return isLower === true ? 'du' : 'DU';
  3985. }
  3986. },
  3987. calendar : {
  3988. sameDay : '[ma] LT[-kor]',
  3989. nextDay : '[holnap] LT[-kor]',
  3990. nextWeek : function () {
  3991. return week.call(this, true);
  3992. },
  3993. lastDay : '[tegnap] LT[-kor]',
  3994. lastWeek : function () {
  3995. return week.call(this, false);
  3996. },
  3997. sameElse : 'L'
  3998. },
  3999. relativeTime : {
  4000. future : '%s múlva',
  4001. past : '%s',
  4002. s : translate$4,
  4003. ss : translate$4,
  4004. m : translate$4,
  4005. mm : translate$4,
  4006. h : translate$4,
  4007. hh : translate$4,
  4008. d : translate$4,
  4009. dd : translate$4,
  4010. M : translate$4,
  4011. MM : translate$4,
  4012. y : translate$4,
  4013. yy : translate$4
  4014. },
  4015. dayOfMonthOrdinalParse: /\d{1,2}\./,
  4016. ordinal : '%d.',
  4017. week : {
  4018. dow : 1, // Monday is the first day of the week.
  4019. doy : 4 // The week that contains Jan 4th is the first week of the year.
  4020. }
  4021. });
  4022. //! moment.js locale configuration
  4023. moment.defineLocale('hy-am', {
  4024. months : {
  4025. format: 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split('_'),
  4026. standalone: 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split('_')
  4027. },
  4028. monthsShort : 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_'),
  4029. weekdays : 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split('_'),
  4030. weekdaysShort : 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
  4031. weekdaysMin : 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
  4032. longDateFormat : {
  4033. LT : 'HH:mm',
  4034. LTS : 'HH:mm:ss',
  4035. L : 'DD.MM.YYYY',
  4036. LL : 'D MMMM YYYY թ.',
  4037. LLL : 'D MMMM YYYY թ., HH:mm',
  4038. LLLL : 'dddd, D MMMM YYYY թ., HH:mm'
  4039. },
  4040. calendar : {
  4041. sameDay: '[այսօր] LT',
  4042. nextDay: '[վաղը] LT',
  4043. lastDay: '[երեկ] LT',
  4044. nextWeek: function () {
  4045. return 'dddd [օրը ժամը] LT';
  4046. },
  4047. lastWeek: function () {
  4048. return '[անցած] dddd [օրը ժամը] LT';
  4049. },
  4050. sameElse: 'L'
  4051. },
  4052. relativeTime : {
  4053. future : '%s հետո',
  4054. past : '%s առաջ',
  4055. s : 'մի քանի վայրկյան',
  4056. ss : '%d վայրկյան',
  4057. m : 'րոպե',
  4058. mm : '%d րոպե',
  4059. h : 'ժամ',
  4060. hh : '%d ժամ',
  4061. d : 'օր',
  4062. dd : '%d օր',
  4063. M : 'ամիս',
  4064. MM : '%d ամիս',
  4065. y : 'տարի',
  4066. yy : '%d տարի'
  4067. },
  4068. meridiemParse: /գիշերվա|առավոտվա|ցերեկվա|երեկոյան/,
  4069. isPM: function (input) {
  4070. return /^(ցերեկվա|երեկոյան)$/.test(input);
  4071. },
  4072. meridiem : function (hour) {
  4073. if (hour < 4) {
  4074. return 'գիշերվա';
  4075. } else if (hour < 12) {
  4076. return 'առավոտվա';
  4077. } else if (hour < 17) {
  4078. return 'ցերեկվա';
  4079. } else {
  4080. return 'երեկոյան';
  4081. }
  4082. },
  4083. dayOfMonthOrdinalParse: /\d{1,2}|\d{1,2}-(ին|րդ)/,
  4084. ordinal: function (number, period) {
  4085. switch (period) {
  4086. case 'DDD':
  4087. case 'w':
  4088. case 'W':
  4089. case 'DDDo':
  4090. if (number === 1) {
  4091. return number + '-ին';
  4092. }
  4093. return number + '-րդ';
  4094. default:
  4095. return number;
  4096. }
  4097. },
  4098. week : {
  4099. dow : 1, // Monday is the first day of the week.
  4100. doy : 7 // The week that contains Jan 1st is the first week of the year.
  4101. }
  4102. });
  4103. //! moment.js locale configuration
  4104. moment.defineLocale('id', {
  4105. months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember'.split('_'),
  4106. monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des'.split('_'),
  4107. weekdays : 'Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu'.split('_'),
  4108. weekdaysShort : 'Min_Sen_Sel_Rab_Kam_Jum_Sab'.split('_'),
  4109. weekdaysMin : 'Mg_Sn_Sl_Rb_Km_Jm_Sb'.split('_'),
  4110. longDateFormat : {
  4111. LT : 'HH.mm',
  4112. LTS : 'HH.mm.ss',
  4113. L : 'DD/MM/YYYY',
  4114. LL : 'D MMMM YYYY',
  4115. LLL : 'D MMMM YYYY [pukul] HH.mm',
  4116. LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'
  4117. },
  4118. meridiemParse: /pagi|siang|sore|malam/,
  4119. meridiemHour : function (hour, meridiem) {
  4120. if (hour === 12) {
  4121. hour = 0;
  4122. }
  4123. if (meridiem === 'pagi') {
  4124. return hour;
  4125. } else if (meridiem === 'siang') {
  4126. return hour >= 11 ? hour : hour + 12;
  4127. } else if (meridiem === 'sore' || meridiem === 'malam') {
  4128. return hour + 12;
  4129. }
  4130. },
  4131. meridiem : function (hours, minutes, isLower) {
  4132. if (hours < 11) {
  4133. return 'pagi';
  4134. } else if (hours < 15) {
  4135. return 'siang';
  4136. } else if (hours < 19) {
  4137. return 'sore';
  4138. } else {
  4139. return 'malam';
  4140. }
  4141. },
  4142. calendar : {
  4143. sameDay : '[Hari ini pukul] LT',
  4144. nextDay : '[Besok pukul] LT',
  4145. nextWeek : 'dddd [pukul] LT',
  4146. lastDay : '[Kemarin pukul] LT',
  4147. lastWeek : 'dddd [lalu pukul] LT',
  4148. sameElse : 'L'
  4149. },
  4150. relativeTime : {
  4151. future : 'dalam %s',
  4152. past : '%s yang lalu',
  4153. s : 'beberapa detik',
  4154. ss : '%d detik',
  4155. m : 'semenit',
  4156. mm : '%d menit',
  4157. h : 'sejam',
  4158. hh : '%d jam',
  4159. d : 'sehari',
  4160. dd : '%d hari',
  4161. M : 'sebulan',
  4162. MM : '%d bulan',
  4163. y : 'setahun',
  4164. yy : '%d tahun'
  4165. },
  4166. week : {
  4167. dow : 1, // Monday is the first day of the week.
  4168. doy : 7 // The week that contains Jan 1st is the first week of the year.
  4169. }
  4170. });
  4171. //! moment.js locale configuration
  4172. function plural$2(n) {
  4173. if (n % 100 === 11) {
  4174. return true;
  4175. } else if (n % 10 === 1) {
  4176. return false;
  4177. }
  4178. return true;
  4179. }
  4180. function translate$5(number, withoutSuffix, key, isFuture) {
  4181. var result = number + ' ';
  4182. switch (key) {
  4183. case 's':
  4184. return withoutSuffix || isFuture ? 'nokkrar sekúndur' : 'nokkrum sekúndum';
  4185. case 'ss':
  4186. if (plural$2(number)) {
  4187. return result + (withoutSuffix || isFuture ? 'sekúndur' : 'sekúndum');
  4188. }
  4189. return result + 'sekúnda';
  4190. case 'm':
  4191. return withoutSuffix ? 'mínúta' : 'mínútu';
  4192. case 'mm':
  4193. if (plural$2(number)) {
  4194. return result + (withoutSuffix || isFuture ? 'mínútur' : 'mínútum');
  4195. } else if (withoutSuffix) {
  4196. return result + 'mínúta';
  4197. }
  4198. return result + 'mínútu';
  4199. case 'hh':
  4200. if (plural$2(number)) {
  4201. return result + (withoutSuffix || isFuture ? 'klukkustundir' : 'klukkustundum');
  4202. }
  4203. return result + 'klukkustund';
  4204. case 'd':
  4205. if (withoutSuffix) {
  4206. return 'dagur';
  4207. }
  4208. return isFuture ? 'dag' : 'degi';
  4209. case 'dd':
  4210. if (plural$2(number)) {
  4211. if (withoutSuffix) {
  4212. return result + 'dagar';
  4213. }
  4214. return result + (isFuture ? 'daga' : 'dögum');
  4215. } else if (withoutSuffix) {
  4216. return result + 'dagur';
  4217. }
  4218. return result + (isFuture ? 'dag' : 'degi');
  4219. case 'M':
  4220. if (withoutSuffix) {
  4221. return 'mánuður';
  4222. }
  4223. return isFuture ? 'mánuð' : 'mánuði';
  4224. case 'MM':
  4225. if (plural$2(number)) {
  4226. if (withoutSuffix) {
  4227. return result + 'mánuðir';
  4228. }
  4229. return result + (isFuture ? 'mánuði' : 'mánuðum');
  4230. } else if (withoutSuffix) {
  4231. return result + 'mánuður';
  4232. }
  4233. return result + (isFuture ? 'mánuð' : 'mánuði');
  4234. case 'y':
  4235. return withoutSuffix || isFuture ? 'ár' : 'ári';
  4236. case 'yy':
  4237. if (plural$2(number)) {
  4238. return result + (withoutSuffix || isFuture ? 'ár' : 'árum');
  4239. }
  4240. return result + (withoutSuffix || isFuture ? 'ár' : 'ári');
  4241. }
  4242. }
  4243. moment.defineLocale('is', {
  4244. months : 'janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember'.split('_'),
  4245. monthsShort : 'jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des'.split('_'),
  4246. weekdays : 'sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur'.split('_'),
  4247. weekdaysShort : 'sun_mán_þri_mið_fim_fös_lau'.split('_'),
  4248. weekdaysMin : 'Su_Má_Þr_Mi_Fi_Fö_La'.split('_'),
  4249. longDateFormat : {
  4250. LT : 'H:mm',
  4251. LTS : 'H:mm:ss',
  4252. L : 'DD.MM.YYYY',
  4253. LL : 'D. MMMM YYYY',
  4254. LLL : 'D. MMMM YYYY [kl.] H:mm',
  4255. LLLL : 'dddd, D. MMMM YYYY [kl.] H:mm'
  4256. },
  4257. calendar : {
  4258. sameDay : '[í dag kl.] LT',
  4259. nextDay : '[á morgun kl.] LT',
  4260. nextWeek : 'dddd [kl.] LT',
  4261. lastDay : '[í gær kl.] LT',
  4262. lastWeek : '[síðasta] dddd [kl.] LT',
  4263. sameElse : 'L'
  4264. },
  4265. relativeTime : {
  4266. future : 'eftir %s',
  4267. past : 'fyrir %s síðan',
  4268. s : translate$5,
  4269. ss : translate$5,
  4270. m : translate$5,
  4271. mm : translate$5,
  4272. h : 'klukkustund',
  4273. hh : translate$5,
  4274. d : translate$5,
  4275. dd : translate$5,
  4276. M : translate$5,
  4277. MM : translate$5,
  4278. y : translate$5,
  4279. yy : translate$5
  4280. },
  4281. dayOfMonthOrdinalParse: /\d{1,2}\./,
  4282. ordinal : '%d.',
  4283. week : {
  4284. dow : 1, // Monday is the first day of the week.
  4285. doy : 4 // The week that contains Jan 4th is the first week of the year.
  4286. }
  4287. });
  4288. //! moment.js locale configuration
  4289. moment.defineLocale('it', {
  4290. months : 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split('_'),
  4291. monthsShort : 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'),
  4292. weekdays : 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split('_'),
  4293. weekdaysShort : 'dom_lun_mar_mer_gio_ven_sab'.split('_'),
  4294. weekdaysMin : 'do_lu_ma_me_gi_ve_sa'.split('_'),
  4295. longDateFormat : {
  4296. LT : 'HH:mm',
  4297. LTS : 'HH:mm:ss',
  4298. L : 'DD/MM/YYYY',
  4299. LL : 'D MMMM YYYY',
  4300. LLL : 'D MMMM YYYY HH:mm',
  4301. LLLL : 'dddd D MMMM YYYY HH:mm'
  4302. },
  4303. calendar : {
  4304. sameDay: '[Oggi alle] LT',
  4305. nextDay: '[Domani alle] LT',
  4306. nextWeek: 'dddd [alle] LT',
  4307. lastDay: '[Ieri alle] LT',
  4308. lastWeek: function () {
  4309. switch (this.day()) {
  4310. case 0:
  4311. return '[la scorsa] dddd [alle] LT';
  4312. default:
  4313. return '[lo scorso] dddd [alle] LT';
  4314. }
  4315. },
  4316. sameElse: 'L'
  4317. },
  4318. relativeTime : {
  4319. future : function (s) {
  4320. return ((/^[0-9].+$/).test(s) ? 'tra' : 'in') + ' ' + s;
  4321. },
  4322. past : '%s fa',
  4323. s : 'alcuni secondi',
  4324. ss : '%d secondi',
  4325. m : 'un minuto',
  4326. mm : '%d minuti',
  4327. h : 'un\'ora',
  4328. hh : '%d ore',
  4329. d : 'un giorno',
  4330. dd : '%d giorni',
  4331. M : 'un mese',
  4332. MM : '%d mesi',
  4333. y : 'un anno',
  4334. yy : '%d anni'
  4335. },
  4336. dayOfMonthOrdinalParse : /\d{1,2}º/,
  4337. ordinal: '%dº',
  4338. week : {
  4339. dow : 1, // Monday is the first day of the week.
  4340. doy : 4 // The week that contains Jan 4th is the first week of the year.
  4341. }
  4342. });
  4343. //! moment.js locale configuration
  4344. moment.defineLocale('ja', {
  4345. months : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  4346. monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  4347. weekdays : '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'),
  4348. weekdaysShort : '日_月_火_水_木_金_土'.split('_'),
  4349. weekdaysMin : '日_月_火_水_木_金_土'.split('_'),
  4350. longDateFormat : {
  4351. LT : 'HH:mm',
  4352. LTS : 'HH:mm:ss',
  4353. L : 'YYYY/MM/DD',
  4354. LL : 'YYYY年M月D日',
  4355. LLL : 'YYYY年M月D日 HH:mm',
  4356. LLLL : 'YYYY年M月D日 dddd HH:mm',
  4357. l : 'YYYY/MM/DD',
  4358. ll : 'YYYY年M月D日',
  4359. lll : 'YYYY年M月D日 HH:mm',
  4360. llll : 'YYYY年M月D日(ddd) HH:mm'
  4361. },
  4362. meridiemParse: /午前|午後/i,
  4363. isPM : function (input) {
  4364. return input === '午後';
  4365. },
  4366. meridiem : function (hour, minute, isLower) {
  4367. if (hour < 12) {
  4368. return '午前';
  4369. } else {
  4370. return '午後';
  4371. }
  4372. },
  4373. calendar : {
  4374. sameDay : '[今日] LT',
  4375. nextDay : '[明日] LT',
  4376. nextWeek : function (now) {
  4377. if (now.week() < this.week()) {
  4378. return '[来週]dddd LT';
  4379. } else {
  4380. return 'dddd LT';
  4381. }
  4382. },
  4383. lastDay : '[昨日] LT',
  4384. lastWeek : function (now) {
  4385. if (this.week() < now.week()) {
  4386. return '[先週]dddd LT';
  4387. } else {
  4388. return 'dddd LT';
  4389. }
  4390. },
  4391. sameElse : 'L'
  4392. },
  4393. dayOfMonthOrdinalParse : /\d{1,2}日/,
  4394. ordinal : function (number, period) {
  4395. switch (period) {
  4396. case 'd':
  4397. case 'D':
  4398. case 'DDD':
  4399. return number + '日';
  4400. default:
  4401. return number;
  4402. }
  4403. },
  4404. relativeTime : {
  4405. future : '%s後',
  4406. past : '%s前',
  4407. s : '数秒',
  4408. ss : '%d秒',
  4409. m : '1分',
  4410. mm : '%d分',
  4411. h : '1時間',
  4412. hh : '%d時間',
  4413. d : '1日',
  4414. dd : '%d日',
  4415. M : '1ヶ月',
  4416. MM : '%dヶ月',
  4417. y : '1年',
  4418. yy : '%d年'
  4419. }
  4420. });
  4421. //! moment.js locale configuration
  4422. moment.defineLocale('jv', {
  4423. months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember'.split('_'),
  4424. monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des'.split('_'),
  4425. weekdays : 'Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu'.split('_'),
  4426. weekdaysShort : 'Min_Sen_Sel_Reb_Kem_Jem_Sep'.split('_'),
  4427. weekdaysMin : 'Mg_Sn_Sl_Rb_Km_Jm_Sp'.split('_'),
  4428. longDateFormat : {
  4429. LT : 'HH.mm',
  4430. LTS : 'HH.mm.ss',
  4431. L : 'DD/MM/YYYY',
  4432. LL : 'D MMMM YYYY',
  4433. LLL : 'D MMMM YYYY [pukul] HH.mm',
  4434. LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'
  4435. },
  4436. meridiemParse: /enjing|siyang|sonten|ndalu/,
  4437. meridiemHour : function (hour, meridiem) {
  4438. if (hour === 12) {
  4439. hour = 0;
  4440. }
  4441. if (meridiem === 'enjing') {
  4442. return hour;
  4443. } else if (meridiem === 'siyang') {
  4444. return hour >= 11 ? hour : hour + 12;
  4445. } else if (meridiem === 'sonten' || meridiem === 'ndalu') {
  4446. return hour + 12;
  4447. }
  4448. },
  4449. meridiem : function (hours, minutes, isLower) {
  4450. if (hours < 11) {
  4451. return 'enjing';
  4452. } else if (hours < 15) {
  4453. return 'siyang';
  4454. } else if (hours < 19) {
  4455. return 'sonten';
  4456. } else {
  4457. return 'ndalu';
  4458. }
  4459. },
  4460. calendar : {
  4461. sameDay : '[Dinten puniko pukul] LT',
  4462. nextDay : '[Mbenjang pukul] LT',
  4463. nextWeek : 'dddd [pukul] LT',
  4464. lastDay : '[Kala wingi pukul] LT',
  4465. lastWeek : 'dddd [kepengker pukul] LT',
  4466. sameElse : 'L'
  4467. },
  4468. relativeTime : {
  4469. future : 'wonten ing %s',
  4470. past : '%s ingkang kepengker',
  4471. s : 'sawetawis detik',
  4472. ss : '%d detik',
  4473. m : 'setunggal menit',
  4474. mm : '%d menit',
  4475. h : 'setunggal jam',
  4476. hh : '%d jam',
  4477. d : 'sedinten',
  4478. dd : '%d dinten',
  4479. M : 'sewulan',
  4480. MM : '%d wulan',
  4481. y : 'setaun',
  4482. yy : '%d taun'
  4483. },
  4484. week : {
  4485. dow : 1, // Monday is the first day of the week.
  4486. doy : 7 // The week that contains Jan 1st is the first week of the year.
  4487. }
  4488. });
  4489. //! moment.js locale configuration
  4490. moment.defineLocale('ka', {
  4491. months : {
  4492. standalone: 'იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი'.split('_'),
  4493. format: 'იანვარს_თებერვალს_მარტს_აპრილის_მაისს_ივნისს_ივლისს_აგვისტს_სექტემბერს_ოქტომბერს_ნოემბერს_დეკემბერს'.split('_')
  4494. },
  4495. monthsShort : 'იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ'.split('_'),
  4496. weekdays : {
  4497. standalone: 'კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი'.split('_'),
  4498. format: 'კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს'.split('_'),
  4499. isFormat: /(წინა|შემდეგ)/
  4500. },
  4501. weekdaysShort : 'კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ'.split('_'),
  4502. weekdaysMin : 'კვ_ორ_სა_ოთ_ხუ_პა_შა'.split('_'),
  4503. longDateFormat : {
  4504. LT : 'h:mm A',
  4505. LTS : 'h:mm:ss A',
  4506. L : 'DD/MM/YYYY',
  4507. LL : 'D MMMM YYYY',
  4508. LLL : 'D MMMM YYYY h:mm A',
  4509. LLLL : 'dddd, D MMMM YYYY h:mm A'
  4510. },
  4511. calendar : {
  4512. sameDay : '[დღეს] LT[-ზე]',
  4513. nextDay : '[ხვალ] LT[-ზე]',
  4514. lastDay : '[გუშინ] LT[-ზე]',
  4515. nextWeek : '[შემდეგ] dddd LT[-ზე]',
  4516. lastWeek : '[წინა] dddd LT-ზე',
  4517. sameElse : 'L'
  4518. },
  4519. relativeTime : {
  4520. future : function (s) {
  4521. return (/(წამი|წუთი|საათი|წელი)/).test(s) ?
  4522. s.replace(/ი$/, 'ში') :
  4523. s + 'ში';
  4524. },
  4525. past : function (s) {
  4526. if ((/(წამი|წუთი|საათი|დღე|თვე)/).test(s)) {
  4527. return s.replace(/(ი|ე)$/, 'ის წინ');
  4528. }
  4529. if ((/წელი/).test(s)) {
  4530. return s.replace(/წელი$/, 'წლის წინ');
  4531. }
  4532. },
  4533. s : 'რამდენიმე წამი',
  4534. ss : '%d წამი',
  4535. m : 'წუთი',
  4536. mm : '%d წუთი',
  4537. h : 'საათი',
  4538. hh : '%d საათი',
  4539. d : 'დღე',
  4540. dd : '%d დღე',
  4541. M : 'თვე',
  4542. MM : '%d თვე',
  4543. y : 'წელი',
  4544. yy : '%d წელი'
  4545. },
  4546. dayOfMonthOrdinalParse: /0|1-ლი|მე-\d{1,2}|\d{1,2}-ე/,
  4547. ordinal : function (number) {
  4548. if (number === 0) {
  4549. return number;
  4550. }
  4551. if (number === 1) {
  4552. return number + '-ლი';
  4553. }
  4554. if ((number < 20) || (number <= 100 && (number % 20 === 0)) || (number % 100 === 0)) {
  4555. return 'მე-' + number;
  4556. }
  4557. return number + '-ე';
  4558. },
  4559. week : {
  4560. dow : 1,
  4561. doy : 7
  4562. }
  4563. });
  4564. //! moment.js locale configuration
  4565. var suffixes$1 = {
  4566. 0: '-ші',
  4567. 1: '-ші',
  4568. 2: '-ші',
  4569. 3: '-ші',
  4570. 4: '-ші',
  4571. 5: '-ші',
  4572. 6: '-шы',
  4573. 7: '-ші',
  4574. 8: '-ші',
  4575. 9: '-шы',
  4576. 10: '-шы',
  4577. 20: '-шы',
  4578. 30: '-шы',
  4579. 40: '-шы',
  4580. 50: '-ші',
  4581. 60: '-шы',
  4582. 70: '-ші',
  4583. 80: '-ші',
  4584. 90: '-шы',
  4585. 100: '-ші'
  4586. };
  4587. moment.defineLocale('kk', {
  4588. months : 'қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан'.split('_'),
  4589. monthsShort : 'қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел'.split('_'),
  4590. weekdays : 'жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі'.split('_'),
  4591. weekdaysShort : 'жек_дүй_сей_сәр_бей_жұм_сен'.split('_'),
  4592. weekdaysMin : 'жк_дй_сй_ср_бй_жм_сн'.split('_'),
  4593. longDateFormat : {
  4594. LT : 'HH:mm',
  4595. LTS : 'HH:mm:ss',
  4596. L : 'DD.MM.YYYY',
  4597. LL : 'D MMMM YYYY',
  4598. LLL : 'D MMMM YYYY HH:mm',
  4599. LLLL : 'dddd, D MMMM YYYY HH:mm'
  4600. },
  4601. calendar : {
  4602. sameDay : '[Бүгін сағат] LT',
  4603. nextDay : '[Ертең сағат] LT',
  4604. nextWeek : 'dddd [сағат] LT',
  4605. lastDay : '[Кеше сағат] LT',
  4606. lastWeek : '[Өткен аптаның] dddd [сағат] LT',
  4607. sameElse : 'L'
  4608. },
  4609. relativeTime : {
  4610. future : '%s ішінде',
  4611. past : '%s бұрын',
  4612. s : 'бірнеше секунд',
  4613. ss : '%d секунд',
  4614. m : 'бір минут',
  4615. mm : '%d минут',
  4616. h : 'бір сағат',
  4617. hh : '%d сағат',
  4618. d : 'бір күн',
  4619. dd : '%d күн',
  4620. M : 'бір ай',
  4621. MM : '%d ай',
  4622. y : 'бір жыл',
  4623. yy : '%d жыл'
  4624. },
  4625. dayOfMonthOrdinalParse: /\d{1,2}-(ші|шы)/,
  4626. ordinal : function (number) {
  4627. var a = number % 10,
  4628. b = number >= 100 ? 100 : null;
  4629. return number + (suffixes$1[number] || suffixes$1[a] || suffixes$1[b]);
  4630. },
  4631. week : {
  4632. dow : 1, // Monday is the first day of the week.
  4633. doy : 7 // The week that contains Jan 1st is the first week of the year.
  4634. }
  4635. });
  4636. //! moment.js locale configuration
  4637. var symbolMap$8 = {
  4638. '1': '១',
  4639. '2': '២',
  4640. '3': '៣',
  4641. '4': '៤',
  4642. '5': '៥',
  4643. '6': '៦',
  4644. '7': '៧',
  4645. '8': '៨',
  4646. '9': '៩',
  4647. '0': '០'
  4648. }, numberMap$7 = {
  4649. '១': '1',
  4650. '២': '2',
  4651. '៣': '3',
  4652. '៤': '4',
  4653. '៥': '5',
  4654. '៦': '6',
  4655. '៧': '7',
  4656. '៨': '8',
  4657. '៩': '9',
  4658. '០': '0'
  4659. };
  4660. moment.defineLocale('km', {
  4661. months: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split(
  4662. '_'
  4663. ),
  4664. monthsShort: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split(
  4665. '_'
  4666. ),
  4667. weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
  4668. weekdaysShort: 'អា_ច_អ_ព_ព្រ_សុ_ស'.split('_'),
  4669. weekdaysMin: 'អា_ច_អ_ព_ព្រ_សុ_ស'.split('_'),
  4670. weekdaysParseExact: true,
  4671. longDateFormat: {
  4672. LT: 'HH:mm',
  4673. LTS: 'HH:mm:ss',
  4674. L: 'DD/MM/YYYY',
  4675. LL: 'D MMMM YYYY',
  4676. LLL: 'D MMMM YYYY HH:mm',
  4677. LLLL: 'dddd, D MMMM YYYY HH:mm'
  4678. },
  4679. meridiemParse: /ព្រឹក|ល្ងាច/,
  4680. isPM: function (input) {
  4681. return input === 'ល្ងាច';
  4682. },
  4683. meridiem: function (hour, minute, isLower) {
  4684. if (hour < 12) {
  4685. return 'ព្រឹក';
  4686. } else {
  4687. return 'ល្ងាច';
  4688. }
  4689. },
  4690. calendar: {
  4691. sameDay: '[ថ្ងៃនេះ ម៉ោង] LT',
  4692. nextDay: '[ស្អែក ម៉ោង] LT',
  4693. nextWeek: 'dddd [ម៉ោង] LT',
  4694. lastDay: '[ម្សិលមិញ ម៉ោង] LT',
  4695. lastWeek: 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT',
  4696. sameElse: 'L'
  4697. },
  4698. relativeTime: {
  4699. future: '%sទៀត',
  4700. past: '%sមុន',
  4701. s: 'ប៉ុន្មានវិនាទី',
  4702. ss: '%d វិនាទី',
  4703. m: 'មួយនាទី',
  4704. mm: '%d នាទី',
  4705. h: 'មួយម៉ោង',
  4706. hh: '%d ម៉ោង',
  4707. d: 'មួយថ្ងៃ',
  4708. dd: '%d ថ្ងៃ',
  4709. M: 'មួយខែ',
  4710. MM: '%d ខែ',
  4711. y: 'មួយឆ្នាំ',
  4712. yy: '%d ឆ្នាំ'
  4713. },
  4714. dayOfMonthOrdinalParse : /ទី\d{1,2}/,
  4715. ordinal : 'ទី%d',
  4716. preparse: function (string) {
  4717. return string.replace(/[១២៣៤៥៦៧៨៩០]/g, function (match) {
  4718. return numberMap$7[match];
  4719. });
  4720. },
  4721. postformat: function (string) {
  4722. return string.replace(/\d/g, function (match) {
  4723. return symbolMap$8[match];
  4724. });
  4725. },
  4726. week: {
  4727. dow: 1, // Monday is the first day of the week.
  4728. doy: 4 // The week that contains Jan 4th is the first week of the year.
  4729. }
  4730. });
  4731. //! moment.js locale configuration
  4732. var symbolMap$9 = {
  4733. '1': '೧',
  4734. '2': '೨',
  4735. '3': '೩',
  4736. '4': '೪',
  4737. '5': '೫',
  4738. '6': '೬',
  4739. '7': '೭',
  4740. '8': '೮',
  4741. '9': '೯',
  4742. '0': '೦'
  4743. },
  4744. numberMap$8 = {
  4745. '೧': '1',
  4746. '೨': '2',
  4747. '೩': '3',
  4748. '೪': '4',
  4749. '೫': '5',
  4750. '೬': '6',
  4751. '೭': '7',
  4752. '೮': '8',
  4753. '೯': '9',
  4754. '೦': '0'
  4755. };
  4756. moment.defineLocale('kn', {
  4757. months : 'ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್'.split('_'),
  4758. monthsShort : 'ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ'.split('_'),
  4759. monthsParseExact: true,
  4760. weekdays : 'ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ'.split('_'),
  4761. weekdaysShort : 'ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ'.split('_'),
  4762. weekdaysMin : 'ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ'.split('_'),
  4763. longDateFormat : {
  4764. LT : 'A h:mm',
  4765. LTS : 'A h:mm:ss',
  4766. L : 'DD/MM/YYYY',
  4767. LL : 'D MMMM YYYY',
  4768. LLL : 'D MMMM YYYY, A h:mm',
  4769. LLLL : 'dddd, D MMMM YYYY, A h:mm'
  4770. },
  4771. calendar : {
  4772. sameDay : '[ಇಂದು] LT',
  4773. nextDay : '[ನಾಳೆ] LT',
  4774. nextWeek : 'dddd, LT',
  4775. lastDay : '[ನಿನ್ನೆ] LT',
  4776. lastWeek : '[ಕೊನೆಯ] dddd, LT',
  4777. sameElse : 'L'
  4778. },
  4779. relativeTime : {
  4780. future : '%s ನಂತರ',
  4781. past : '%s ಹಿಂದೆ',
  4782. s : 'ಕೆಲವು ಕ್ಷಣಗಳು',
  4783. ss : '%d ಸೆಕೆಂಡುಗಳು',
  4784. m : 'ಒಂದು ನಿಮಿಷ',
  4785. mm : '%d ನಿಮಿಷ',
  4786. h : 'ಒಂದು ಗಂಟೆ',
  4787. hh : '%d ಗಂಟೆ',
  4788. d : 'ಒಂದು ದಿನ',
  4789. dd : '%d ದಿನ',
  4790. M : 'ಒಂದು ತಿಂಗಳು',
  4791. MM : '%d ತಿಂಗಳು',
  4792. y : 'ಒಂದು ವರ್ಷ',
  4793. yy : '%d ವರ್ಷ'
  4794. },
  4795. preparse: function (string) {
  4796. return string.replace(/[೧೨೩೪೫೬೭೮೯೦]/g, function (match) {
  4797. return numberMap$8[match];
  4798. });
  4799. },
  4800. postformat: function (string) {
  4801. return string.replace(/\d/g, function (match) {
  4802. return symbolMap$9[match];
  4803. });
  4804. },
  4805. meridiemParse: /ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,
  4806. meridiemHour : function (hour, meridiem) {
  4807. if (hour === 12) {
  4808. hour = 0;
  4809. }
  4810. if (meridiem === 'ರಾತ್ರಿ') {
  4811. return hour < 4 ? hour : hour + 12;
  4812. } else if (meridiem === 'ಬೆಳಿಗ್ಗೆ') {
  4813. return hour;
  4814. } else if (meridiem === 'ಮಧ್ಯಾಹ್ನ') {
  4815. return hour >= 10 ? hour : hour + 12;
  4816. } else if (meridiem === 'ಸಂಜೆ') {
  4817. return hour + 12;
  4818. }
  4819. },
  4820. meridiem : function (hour, minute, isLower) {
  4821. if (hour < 4) {
  4822. return 'ರಾತ್ರಿ';
  4823. } else if (hour < 10) {
  4824. return 'ಬೆಳಿಗ್ಗೆ';
  4825. } else if (hour < 17) {
  4826. return 'ಮಧ್ಯಾಹ್ನ';
  4827. } else if (hour < 20) {
  4828. return 'ಸಂಜೆ';
  4829. } else {
  4830. return 'ರಾತ್ರಿ';
  4831. }
  4832. },
  4833. dayOfMonthOrdinalParse: /\d{1,2}(ನೇ)/,
  4834. ordinal : function (number) {
  4835. return number + 'ನೇ';
  4836. },
  4837. week : {
  4838. dow : 0, // Sunday is the first day of the week.
  4839. doy : 6 // The week that contains Jan 1st is the first week of the year.
  4840. }
  4841. });
  4842. //! moment.js locale configuration
  4843. moment.defineLocale('ko', {
  4844. months : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
  4845. monthsShort : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
  4846. weekdays : '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'),
  4847. weekdaysShort : '일_월_화_수_목_금_토'.split('_'),
  4848. weekdaysMin : '일_월_화_수_목_금_토'.split('_'),
  4849. longDateFormat : {
  4850. LT : 'A h:mm',
  4851. LTS : 'A h:mm:ss',
  4852. L : 'YYYY.MM.DD.',
  4853. LL : 'YYYY년 MMMM D일',
  4854. LLL : 'YYYY년 MMMM D일 A h:mm',
  4855. LLLL : 'YYYY년 MMMM D일 dddd A h:mm',
  4856. l : 'YYYY.MM.DD.',
  4857. ll : 'YYYY년 MMMM D일',
  4858. lll : 'YYYY년 MMMM D일 A h:mm',
  4859. llll : 'YYYY년 MMMM D일 dddd A h:mm'
  4860. },
  4861. calendar : {
  4862. sameDay : '오늘 LT',
  4863. nextDay : '내일 LT',
  4864. nextWeek : 'dddd LT',
  4865. lastDay : '어제 LT',
  4866. lastWeek : '지난주 dddd LT',
  4867. sameElse : 'L'
  4868. },
  4869. relativeTime : {
  4870. future : '%s 후',
  4871. past : '%s 전',
  4872. s : '몇 초',
  4873. ss : '%d초',
  4874. m : '1분',
  4875. mm : '%d분',
  4876. h : '한 시간',
  4877. hh : '%d시간',
  4878. d : '하루',
  4879. dd : '%d일',
  4880. M : '한 달',
  4881. MM : '%d달',
  4882. y : '일 년',
  4883. yy : '%d년'
  4884. },
  4885. dayOfMonthOrdinalParse : /\d{1,2}(일|월|주)/,
  4886. ordinal : function (number, period) {
  4887. switch (period) {
  4888. case 'd':
  4889. case 'D':
  4890. case 'DDD':
  4891. return number + '일';
  4892. case 'M':
  4893. return number + '월';
  4894. case 'w':
  4895. case 'W':
  4896. return number + '주';
  4897. default:
  4898. return number;
  4899. }
  4900. },
  4901. meridiemParse : /오전|오후/,
  4902. isPM : function (token) {
  4903. return token === '오후';
  4904. },
  4905. meridiem : function (hour, minute, isUpper) {
  4906. return hour < 12 ? '오전' : '오후';
  4907. }
  4908. });
  4909. //! moment.js locale configuration
  4910. var suffixes$2 = {
  4911. 0: '-чү',
  4912. 1: '-чи',
  4913. 2: '-чи',
  4914. 3: '-чү',
  4915. 4: '-чү',
  4916. 5: '-чи',
  4917. 6: '-чы',
  4918. 7: '-чи',
  4919. 8: '-чи',
  4920. 9: '-чу',
  4921. 10: '-чу',
  4922. 20: '-чы',
  4923. 30: '-чу',
  4924. 40: '-чы',
  4925. 50: '-чү',
  4926. 60: '-чы',
  4927. 70: '-чи',
  4928. 80: '-чи',
  4929. 90: '-чу',
  4930. 100: '-чү'
  4931. };
  4932. moment.defineLocale('ky', {
  4933. months : 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_'),
  4934. monthsShort : 'янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек'.split('_'),
  4935. weekdays : 'Жекшемби_Дүйшөмбү_Шейшемби_Шаршемби_Бейшемби_Жума_Ишемби'.split('_'),
  4936. weekdaysShort : 'Жек_Дүй_Шей_Шар_Бей_Жум_Ише'.split('_'),
  4937. weekdaysMin : 'Жк_Дй_Шй_Шр_Бй_Жм_Иш'.split('_'),
  4938. longDateFormat : {
  4939. LT : 'HH:mm',
  4940. LTS : 'HH:mm:ss',
  4941. L : 'DD.MM.YYYY',
  4942. LL : 'D MMMM YYYY',
  4943. LLL : 'D MMMM YYYY HH:mm',
  4944. LLLL : 'dddd, D MMMM YYYY HH:mm'
  4945. },
  4946. calendar : {
  4947. sameDay : '[Бүгүн саат] LT',
  4948. nextDay : '[Эртең саат] LT',
  4949. nextWeek : 'dddd [саат] LT',
  4950. lastDay : '[Кече саат] LT',
  4951. lastWeek : '[Өткен аптанын] dddd [күнү] [саат] LT',
  4952. sameElse : 'L'
  4953. },
  4954. relativeTime : {
  4955. future : '%s ичинде',
  4956. past : '%s мурун',
  4957. s : 'бирнече секунд',
  4958. ss : '%d секунд',
  4959. m : 'бир мүнөт',
  4960. mm : '%d мүнөт',
  4961. h : 'бир саат',
  4962. hh : '%d саат',
  4963. d : 'бир күн',
  4964. dd : '%d күн',
  4965. M : 'бир ай',
  4966. MM : '%d ай',
  4967. y : 'бир жыл',
  4968. yy : '%d жыл'
  4969. },
  4970. dayOfMonthOrdinalParse: /\d{1,2}-(чи|чы|чү|чу)/,
  4971. ordinal : function (number) {
  4972. var a = number % 10,
  4973. b = number >= 100 ? 100 : null;
  4974. return number + (suffixes$2[number] || suffixes$2[a] || suffixes$2[b]);
  4975. },
  4976. week : {
  4977. dow : 1, // Monday is the first day of the week.
  4978. doy : 7 // The week that contains Jan 1st is the first week of the year.
  4979. }
  4980. });
  4981. //! moment.js locale configuration
  4982. function processRelativeTime$5(number, withoutSuffix, key, isFuture) {
  4983. var format = {
  4984. 'm': ['eng Minutt', 'enger Minutt'],
  4985. 'h': ['eng Stonn', 'enger Stonn'],
  4986. 'd': ['een Dag', 'engem Dag'],
  4987. 'M': ['ee Mount', 'engem Mount'],
  4988. 'y': ['ee Joer', 'engem Joer']
  4989. };
  4990. return withoutSuffix ? format[key][0] : format[key][1];
  4991. }
  4992. function processFutureTime(string) {
  4993. var number = string.substr(0, string.indexOf(' '));
  4994. if (eifelerRegelAppliesToNumber(number)) {
  4995. return 'a ' + string;
  4996. }
  4997. return 'an ' + string;
  4998. }
  4999. function processPastTime(string) {
  5000. var number = string.substr(0, string.indexOf(' '));
  5001. if (eifelerRegelAppliesToNumber(number)) {
  5002. return 'viru ' + string;
  5003. }
  5004. return 'virun ' + string;
  5005. }
  5006. /**
  5007. * Returns true if the word before the given number loses the '-n' ending.
  5008. * e.g. 'an 10 Deeg' but 'a 5 Deeg'
  5009. *
  5010. * @param number {integer}
  5011. * @returns {boolean}
  5012. */
  5013. function eifelerRegelAppliesToNumber(number) {
  5014. number = parseInt(number, 10);
  5015. if (isNaN(number)) {
  5016. return false;
  5017. }
  5018. if (number < 0) {
  5019. // Negative Number --> always true
  5020. return true;
  5021. } else if (number < 10) {
  5022. // Only 1 digit
  5023. if (4 <= number && number <= 7) {
  5024. return true;
  5025. }
  5026. return false;
  5027. } else if (number < 100) {
  5028. // 2 digits
  5029. var lastDigit = number % 10, firstDigit = number / 10;
  5030. if (lastDigit === 0) {
  5031. return eifelerRegelAppliesToNumber(firstDigit);
  5032. }
  5033. return eifelerRegelAppliesToNumber(lastDigit);
  5034. } else if (number < 10000) {
  5035. // 3 or 4 digits --> recursively check first digit
  5036. while (number >= 10) {
  5037. number = number / 10;
  5038. }
  5039. return eifelerRegelAppliesToNumber(number);
  5040. } else {
  5041. // Anything larger than 4 digits: recursively check first n-3 digits
  5042. number = number / 1000;
  5043. return eifelerRegelAppliesToNumber(number);
  5044. }
  5045. }
  5046. moment.defineLocale('lb', {
  5047. months: 'Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
  5048. monthsShort: 'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'),
  5049. monthsParseExact : true,
  5050. weekdays: 'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split('_'),
  5051. weekdaysShort: 'So._Mé._Dë._Më._Do._Fr._Sa.'.split('_'),
  5052. weekdaysMin: 'So_Mé_Dë_Më_Do_Fr_Sa'.split('_'),
  5053. weekdaysParseExact : true,
  5054. longDateFormat: {
  5055. LT: 'H:mm [Auer]',
  5056. LTS: 'H:mm:ss [Auer]',
  5057. L: 'DD.MM.YYYY',
  5058. LL: 'D. MMMM YYYY',
  5059. LLL: 'D. MMMM YYYY H:mm [Auer]',
  5060. LLLL: 'dddd, D. MMMM YYYY H:mm [Auer]'
  5061. },
  5062. calendar: {
  5063. sameDay: '[Haut um] LT',
  5064. sameElse: 'L',
  5065. nextDay: '[Muer um] LT',
  5066. nextWeek: 'dddd [um] LT',
  5067. lastDay: '[Gëschter um] LT',
  5068. lastWeek: function () {
  5069. // Different date string for 'Dënschdeg' (Tuesday) and 'Donneschdeg' (Thursday) due to phonological rule
  5070. switch (this.day()) {
  5071. case 2:
  5072. case 4:
  5073. return '[Leschten] dddd [um] LT';
  5074. default:
  5075. return '[Leschte] dddd [um] LT';
  5076. }
  5077. }
  5078. },
  5079. relativeTime : {
  5080. future : processFutureTime,
  5081. past : processPastTime,
  5082. s : 'e puer Sekonnen',
  5083. ss : '%d Sekonnen',
  5084. m : processRelativeTime$5,
  5085. mm : '%d Minutten',
  5086. h : processRelativeTime$5,
  5087. hh : '%d Stonnen',
  5088. d : processRelativeTime$5,
  5089. dd : '%d Deeg',
  5090. M : processRelativeTime$5,
  5091. MM : '%d Méint',
  5092. y : processRelativeTime$5,
  5093. yy : '%d Joer'
  5094. },
  5095. dayOfMonthOrdinalParse: /\d{1,2}\./,
  5096. ordinal: '%d.',
  5097. week: {
  5098. dow: 1, // Monday is the first day of the week.
  5099. doy: 4 // The week that contains Jan 4th is the first week of the year.
  5100. }
  5101. });
  5102. //! moment.js locale configuration
  5103. moment.defineLocale('lo', {
  5104. months : 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split('_'),
  5105. monthsShort : 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split('_'),
  5106. weekdays : 'ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
  5107. weekdaysShort : 'ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
  5108. weekdaysMin : 'ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ'.split('_'),
  5109. weekdaysParseExact : true,
  5110. longDateFormat : {
  5111. LT : 'HH:mm',
  5112. LTS : 'HH:mm:ss',
  5113. L : 'DD/MM/YYYY',
  5114. LL : 'D MMMM YYYY',
  5115. LLL : 'D MMMM YYYY HH:mm',
  5116. LLLL : 'ວັນdddd D MMMM YYYY HH:mm'
  5117. },
  5118. meridiemParse: /ຕອນເຊົ້າ|ຕອນແລງ/,
  5119. isPM: function (input) {
  5120. return input === 'ຕອນແລງ';
  5121. },
  5122. meridiem : function (hour, minute, isLower) {
  5123. if (hour < 12) {
  5124. return 'ຕອນເຊົ້າ';
  5125. } else {
  5126. return 'ຕອນແລງ';
  5127. }
  5128. },
  5129. calendar : {
  5130. sameDay : '[ມື້ນີ້ເວລາ] LT',
  5131. nextDay : '[ມື້ອື່ນເວລາ] LT',
  5132. nextWeek : '[ວັນ]dddd[ໜ້າເວລາ] LT',
  5133. lastDay : '[ມື້ວານນີ້ເວລາ] LT',
  5134. lastWeek : '[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT',
  5135. sameElse : 'L'
  5136. },
  5137. relativeTime : {
  5138. future : 'ອີກ %s',
  5139. past : '%sຜ່ານມາ',
  5140. s : 'ບໍ່ເທົ່າໃດວິນາທີ',
  5141. ss : '%d ວິນາທີ' ,
  5142. m : '1 ນາທີ',
  5143. mm : '%d ນາທີ',
  5144. h : '1 ຊົ່ວໂມງ',
  5145. hh : '%d ຊົ່ວໂມງ',
  5146. d : '1 ມື້',
  5147. dd : '%d ມື້',
  5148. M : '1 ເດືອນ',
  5149. MM : '%d ເດືອນ',
  5150. y : '1 ປີ',
  5151. yy : '%d ປີ'
  5152. },
  5153. dayOfMonthOrdinalParse: /(ທີ່)\d{1,2}/,
  5154. ordinal : function (number) {
  5155. return 'ທີ່' + number;
  5156. }
  5157. });
  5158. //! moment.js locale configuration
  5159. var units = {
  5160. 'ss' : 'sekundė_sekundžių_sekundes',
  5161. 'm' : 'minutė_minutės_minutę',
  5162. 'mm': 'minutės_minučių_minutes',
  5163. 'h' : 'valanda_valandos_valandą',
  5164. 'hh': 'valandos_valandų_valandas',
  5165. 'd' : 'diena_dienos_dieną',
  5166. 'dd': 'dienos_dienų_dienas',
  5167. 'M' : 'mėnuo_mėnesio_mėnesį',
  5168. 'MM': 'mėnesiai_mėnesių_mėnesius',
  5169. 'y' : 'metai_metų_metus',
  5170. 'yy': 'metai_metų_metus'
  5171. };
  5172. function translateSeconds(number, withoutSuffix, key, isFuture) {
  5173. if (withoutSuffix) {
  5174. return 'kelios sekundės';
  5175. } else {
  5176. return isFuture ? 'kelių sekundžių' : 'kelias sekundes';
  5177. }
  5178. }
  5179. function translateSingular(number, withoutSuffix, key, isFuture) {
  5180. return withoutSuffix ? forms(key)[0] : (isFuture ? forms(key)[1] : forms(key)[2]);
  5181. }
  5182. function special(number) {
  5183. return number % 10 === 0 || (number > 10 && number < 20);
  5184. }
  5185. function forms(key) {
  5186. return units[key].split('_');
  5187. }
  5188. function translate$6(number, withoutSuffix, key, isFuture) {
  5189. var result = number + ' ';
  5190. if (number === 1) {
  5191. return result + translateSingular(number, withoutSuffix, key[0], isFuture);
  5192. } else if (withoutSuffix) {
  5193. return result + (special(number) ? forms(key)[1] : forms(key)[0]);
  5194. } else {
  5195. if (isFuture) {
  5196. return result + forms(key)[1];
  5197. } else {
  5198. return result + (special(number) ? forms(key)[1] : forms(key)[2]);
  5199. }
  5200. }
  5201. }
  5202. moment.defineLocale('lt', {
  5203. months : {
  5204. format: 'sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio'.split('_'),
  5205. standalone: 'sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis'.split('_'),
  5206. isFormat: /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/
  5207. },
  5208. monthsShort : 'sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd'.split('_'),
  5209. weekdays : {
  5210. format: 'sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį'.split('_'),
  5211. standalone: 'sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis'.split('_'),
  5212. isFormat: /dddd HH:mm/
  5213. },
  5214. weekdaysShort : 'Sek_Pir_Ant_Tre_Ket_Pen_Šeš'.split('_'),
  5215. weekdaysMin : 'S_P_A_T_K_Pn_Š'.split('_'),
  5216. weekdaysParseExact : true,
  5217. longDateFormat : {
  5218. LT : 'HH:mm',
  5219. LTS : 'HH:mm:ss',
  5220. L : 'YYYY-MM-DD',
  5221. LL : 'YYYY [m.] MMMM D [d.]',
  5222. LLL : 'YYYY [m.] MMMM D [d.], HH:mm [val.]',
  5223. LLLL : 'YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]',
  5224. l : 'YYYY-MM-DD',
  5225. ll : 'YYYY [m.] MMMM D [d.]',
  5226. lll : 'YYYY [m.] MMMM D [d.], HH:mm [val.]',
  5227. llll : 'YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]'
  5228. },
  5229. calendar : {
  5230. sameDay : '[Šiandien] LT',
  5231. nextDay : '[Rytoj] LT',
  5232. nextWeek : 'dddd LT',
  5233. lastDay : '[Vakar] LT',
  5234. lastWeek : '[Praėjusį] dddd LT',
  5235. sameElse : 'L'
  5236. },
  5237. relativeTime : {
  5238. future : 'po %s',
  5239. past : 'prieš %s',
  5240. s : translateSeconds,
  5241. ss : translate$6,
  5242. m : translateSingular,
  5243. mm : translate$6,
  5244. h : translateSingular,
  5245. hh : translate$6,
  5246. d : translateSingular,
  5247. dd : translate$6,
  5248. M : translateSingular,
  5249. MM : translate$6,
  5250. y : translateSingular,
  5251. yy : translate$6
  5252. },
  5253. dayOfMonthOrdinalParse: /\d{1,2}-oji/,
  5254. ordinal : function (number) {
  5255. return number + '-oji';
  5256. },
  5257. week : {
  5258. dow : 1, // Monday is the first day of the week.
  5259. doy : 4 // The week that contains Jan 4th is the first week of the year.
  5260. }
  5261. });
  5262. //! moment.js locale configuration
  5263. var units$1 = {
  5264. 'ss': 'sekundes_sekundēm_sekunde_sekundes'.split('_'),
  5265. 'm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
  5266. 'mm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
  5267. 'h': 'stundas_stundām_stunda_stundas'.split('_'),
  5268. 'hh': 'stundas_stundām_stunda_stundas'.split('_'),
  5269. 'd': 'dienas_dienām_diena_dienas'.split('_'),
  5270. 'dd': 'dienas_dienām_diena_dienas'.split('_'),
  5271. 'M': 'mēneša_mēnešiem_mēnesis_mēneši'.split('_'),
  5272. 'MM': 'mēneša_mēnešiem_mēnesis_mēneši'.split('_'),
  5273. 'y': 'gada_gadiem_gads_gadi'.split('_'),
  5274. 'yy': 'gada_gadiem_gads_gadi'.split('_')
  5275. };
  5276. /**
  5277. * @param withoutSuffix boolean true = a length of time; false = before/after a period of time.
  5278. */
  5279. function format(forms, number, withoutSuffix) {
  5280. if (withoutSuffix) {
  5281. // E.g. "21 minūte", "3 minūtes".
  5282. return number % 10 === 1 && number % 100 !== 11 ? forms[2] : forms[3];
  5283. } else {
  5284. // E.g. "21 minūtes" as in "pēc 21 minūtes".
  5285. // E.g. "3 minūtēm" as in "pēc 3 minūtēm".
  5286. return number % 10 === 1 && number % 100 !== 11 ? forms[0] : forms[1];
  5287. }
  5288. }
  5289. function relativeTimeWithPlural$1(number, withoutSuffix, key) {
  5290. return number + ' ' + format(units$1[key], number, withoutSuffix);
  5291. }
  5292. function relativeTimeWithSingular(number, withoutSuffix, key) {
  5293. return format(units$1[key], number, withoutSuffix);
  5294. }
  5295. function relativeSeconds(number, withoutSuffix) {
  5296. return withoutSuffix ? 'dažas sekundes' : 'dažām sekundēm';
  5297. }
  5298. moment.defineLocale('lv', {
  5299. months : 'janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris'.split('_'),
  5300. monthsShort : 'jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec'.split('_'),
  5301. weekdays : 'svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena'.split('_'),
  5302. weekdaysShort : 'Sv_P_O_T_C_Pk_S'.split('_'),
  5303. weekdaysMin : 'Sv_P_O_T_C_Pk_S'.split('_'),
  5304. weekdaysParseExact : true,
  5305. longDateFormat : {
  5306. LT : 'HH:mm',
  5307. LTS : 'HH:mm:ss',
  5308. L : 'DD.MM.YYYY.',
  5309. LL : 'YYYY. [gada] D. MMMM',
  5310. LLL : 'YYYY. [gada] D. MMMM, HH:mm',
  5311. LLLL : 'YYYY. [gada] D. MMMM, dddd, HH:mm'
  5312. },
  5313. calendar : {
  5314. sameDay : '[Šodien pulksten] LT',
  5315. nextDay : '[Rīt pulksten] LT',
  5316. nextWeek : 'dddd [pulksten] LT',
  5317. lastDay : '[Vakar pulksten] LT',
  5318. lastWeek : '[Pagājušā] dddd [pulksten] LT',
  5319. sameElse : 'L'
  5320. },
  5321. relativeTime : {
  5322. future : 'pēc %s',
  5323. past : 'pirms %s',
  5324. s : relativeSeconds,
  5325. ss : relativeTimeWithPlural$1,
  5326. m : relativeTimeWithSingular,
  5327. mm : relativeTimeWithPlural$1,
  5328. h : relativeTimeWithSingular,
  5329. hh : relativeTimeWithPlural$1,
  5330. d : relativeTimeWithSingular,
  5331. dd : relativeTimeWithPlural$1,
  5332. M : relativeTimeWithSingular,
  5333. MM : relativeTimeWithPlural$1,
  5334. y : relativeTimeWithSingular,
  5335. yy : relativeTimeWithPlural$1
  5336. },
  5337. dayOfMonthOrdinalParse: /\d{1,2}\./,
  5338. ordinal : '%d.',
  5339. week : {
  5340. dow : 1, // Monday is the first day of the week.
  5341. doy : 4 // The week that contains Jan 4th is the first week of the year.
  5342. }
  5343. });
  5344. //! moment.js locale configuration
  5345. var translator = {
  5346. words: { //Different grammatical cases
  5347. ss: ['sekund', 'sekunda', 'sekundi'],
  5348. m: ['jedan minut', 'jednog minuta'],
  5349. mm: ['minut', 'minuta', 'minuta'],
  5350. h: ['jedan sat', 'jednog sata'],
  5351. hh: ['sat', 'sata', 'sati'],
  5352. dd: ['dan', 'dana', 'dana'],
  5353. MM: ['mjesec', 'mjeseca', 'mjeseci'],
  5354. yy: ['godina', 'godine', 'godina']
  5355. },
  5356. correctGrammaticalCase: function (number, wordKey) {
  5357. return number === 1 ? wordKey[0] : (number >= 2 && number <= 4 ? wordKey[1] : wordKey[2]);
  5358. },
  5359. translate: function (number, withoutSuffix, key) {
  5360. var wordKey = translator.words[key];
  5361. if (key.length === 1) {
  5362. return withoutSuffix ? wordKey[0] : wordKey[1];
  5363. } else {
  5364. return number + ' ' + translator.correctGrammaticalCase(number, wordKey);
  5365. }
  5366. }
  5367. };
  5368. moment.defineLocale('me', {
  5369. months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split('_'),
  5370. monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split('_'),
  5371. monthsParseExact : true,
  5372. weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'),
  5373. weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),
  5374. weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),
  5375. weekdaysParseExact : true,
  5376. longDateFormat: {
  5377. LT: 'H:mm',
  5378. LTS : 'H:mm:ss',
  5379. L: 'DD.MM.YYYY',
  5380. LL: 'D. MMMM YYYY',
  5381. LLL: 'D. MMMM YYYY H:mm',
  5382. LLLL: 'dddd, D. MMMM YYYY H:mm'
  5383. },
  5384. calendar: {
  5385. sameDay: '[danas u] LT',
  5386. nextDay: '[sjutra u] LT',
  5387. nextWeek: function () {
  5388. switch (this.day()) {
  5389. case 0:
  5390. return '[u] [nedjelju] [u] LT';
  5391. case 3:
  5392. return '[u] [srijedu] [u] LT';
  5393. case 6:
  5394. return '[u] [subotu] [u] LT';
  5395. case 1:
  5396. case 2:
  5397. case 4:
  5398. case 5:
  5399. return '[u] dddd [u] LT';
  5400. }
  5401. },
  5402. lastDay : '[juče u] LT',
  5403. lastWeek : function () {
  5404. var lastWeekDays = [
  5405. '[prošle] [nedjelje] [u] LT',
  5406. '[prošlog] [ponedjeljka] [u] LT',
  5407. '[prošlog] [utorka] [u] LT',
  5408. '[prošle] [srijede] [u] LT',
  5409. '[prošlog] [četvrtka] [u] LT',
  5410. '[prošlog] [petka] [u] LT',
  5411. '[prošle] [subote] [u] LT'
  5412. ];
  5413. return lastWeekDays[this.day()];
  5414. },
  5415. sameElse : 'L'
  5416. },
  5417. relativeTime : {
  5418. future : 'za %s',
  5419. past : 'prije %s',
  5420. s : 'nekoliko sekundi',
  5421. ss : translator.translate,
  5422. m : translator.translate,
  5423. mm : translator.translate,
  5424. h : translator.translate,
  5425. hh : translator.translate,
  5426. d : 'dan',
  5427. dd : translator.translate,
  5428. M : 'mjesec',
  5429. MM : translator.translate,
  5430. y : 'godinu',
  5431. yy : translator.translate
  5432. },
  5433. dayOfMonthOrdinalParse: /\d{1,2}\./,
  5434. ordinal : '%d.',
  5435. week : {
  5436. dow : 1, // Monday is the first day of the week.
  5437. doy : 7 // The week that contains Jan 1st is the first week of the year.
  5438. }
  5439. });
  5440. //! moment.js locale configuration
  5441. moment.defineLocale('mi', {
  5442. 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('_'),
  5443. monthsShort: 'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split('_'),
  5444. monthsRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
  5445. monthsStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
  5446. monthsShortRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
  5447. monthsShortStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,
  5448. weekdays: 'Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei'.split('_'),
  5449. weekdaysShort: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),
  5450. weekdaysMin: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),
  5451. longDateFormat: {
  5452. LT: 'HH:mm',
  5453. LTS: 'HH:mm:ss',
  5454. L: 'DD/MM/YYYY',
  5455. LL: 'D MMMM YYYY',
  5456. LLL: 'D MMMM YYYY [i] HH:mm',
  5457. LLLL: 'dddd, D MMMM YYYY [i] HH:mm'
  5458. },
  5459. calendar: {
  5460. sameDay: '[i teie mahana, i] LT',
  5461. nextDay: '[apopo i] LT',
  5462. nextWeek: 'dddd [i] LT',
  5463. lastDay: '[inanahi i] LT',
  5464. lastWeek: 'dddd [whakamutunga i] LT',
  5465. sameElse: 'L'
  5466. },
  5467. relativeTime: {
  5468. future: 'i roto i %s',
  5469. past: '%s i mua',
  5470. s: 'te hēkona ruarua',
  5471. ss: '%d hēkona',
  5472. m: 'he meneti',
  5473. mm: '%d meneti',
  5474. h: 'te haora',
  5475. hh: '%d haora',
  5476. d: 'he ra',
  5477. dd: '%d ra',
  5478. M: 'he marama',
  5479. MM: '%d marama',
  5480. y: 'he tau',
  5481. yy: '%d tau'
  5482. },
  5483. dayOfMonthOrdinalParse: /\d{1,2}º/,
  5484. ordinal: '%dº',
  5485. week : {
  5486. dow : 1, // Monday is the first day of the week.
  5487. doy : 4 // The week that contains Jan 4th is the first week of the year.
  5488. }
  5489. });
  5490. //! moment.js locale configuration
  5491. moment.defineLocale('mk', {
  5492. months : 'јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември'.split('_'),
  5493. monthsShort : 'јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек'.split('_'),
  5494. weekdays : 'недела_понеделник_вторник_среда_четврток_петок_сабота'.split('_'),
  5495. weekdaysShort : 'нед_пон_вто_сре_чет_пет_саб'.split('_'),
  5496. weekdaysMin : 'нe_пo_вт_ср_че_пе_сa'.split('_'),
  5497. longDateFormat : {
  5498. LT : 'H:mm',
  5499. LTS : 'H:mm:ss',
  5500. L : 'D.MM.YYYY',
  5501. LL : 'D MMMM YYYY',
  5502. LLL : 'D MMMM YYYY H:mm',
  5503. LLLL : 'dddd, D MMMM YYYY H:mm'
  5504. },
  5505. calendar : {
  5506. sameDay : '[Денес во] LT',
  5507. nextDay : '[Утре во] LT',
  5508. nextWeek : '[Во] dddd [во] LT',
  5509. lastDay : '[Вчера во] LT',
  5510. lastWeek : function () {
  5511. switch (this.day()) {
  5512. case 0:
  5513. case 3:
  5514. case 6:
  5515. return '[Изминатата] dddd [во] LT';
  5516. case 1:
  5517. case 2:
  5518. case 4:
  5519. case 5:
  5520. return '[Изминатиот] dddd [во] LT';
  5521. }
  5522. },
  5523. sameElse : 'L'
  5524. },
  5525. relativeTime : {
  5526. future : 'после %s',
  5527. past : 'пред %s',
  5528. s : 'неколку секунди',
  5529. ss : '%d секунди',
  5530. m : 'минута',
  5531. mm : '%d минути',
  5532. h : 'час',
  5533. hh : '%d часа',
  5534. d : 'ден',
  5535. dd : '%d дена',
  5536. M : 'месец',
  5537. MM : '%d месеци',
  5538. y : 'година',
  5539. yy : '%d години'
  5540. },
  5541. dayOfMonthOrdinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
  5542. ordinal : function (number) {
  5543. var lastDigit = number % 10,
  5544. last2Digits = number % 100;
  5545. if (number === 0) {
  5546. return number + '-ев';
  5547. } else if (last2Digits === 0) {
  5548. return number + '-ен';
  5549. } else if (last2Digits > 10 && last2Digits < 20) {
  5550. return number + '-ти';
  5551. } else if (lastDigit === 1) {
  5552. return number + '-ви';
  5553. } else if (lastDigit === 2) {
  5554. return number + '-ри';
  5555. } else if (lastDigit === 7 || lastDigit === 8) {
  5556. return number + '-ми';
  5557. } else {
  5558. return number + '-ти';
  5559. }
  5560. },
  5561. week : {
  5562. dow : 1, // Monday is the first day of the week.
  5563. doy : 7 // The week that contains Jan 1st is the first week of the year.
  5564. }
  5565. });
  5566. //! moment.js locale configuration
  5567. moment.defineLocale('ml', {
  5568. months : 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split('_'),
  5569. monthsShort : 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split('_'),
  5570. monthsParseExact : true,
  5571. weekdays : 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split('_'),
  5572. weekdaysShort : 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split('_'),
  5573. weekdaysMin : 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split('_'),
  5574. longDateFormat : {
  5575. LT : 'A h:mm -നു',
  5576. LTS : 'A h:mm:ss -നു',
  5577. L : 'DD/MM/YYYY',
  5578. LL : 'D MMMM YYYY',
  5579. LLL : 'D MMMM YYYY, A h:mm -നു',
  5580. LLLL : 'dddd, D MMMM YYYY, A h:mm -നു'
  5581. },
  5582. calendar : {
  5583. sameDay : '[ഇന്ന്] LT',
  5584. nextDay : '[നാളെ] LT',
  5585. nextWeek : 'dddd, LT',
  5586. lastDay : '[ഇന്നലെ] LT',
  5587. lastWeek : '[കഴിഞ്ഞ] dddd, LT',
  5588. sameElse : 'L'
  5589. },
  5590. relativeTime : {
  5591. future : '%s കഴിഞ്ഞ്',
  5592. past : '%s മുൻപ്',
  5593. s : 'അൽപ നിമിഷങ്ങൾ',
  5594. ss : '%d സെക്കൻഡ്',
  5595. m : 'ഒരു മിനിറ്റ്',
  5596. mm : '%d മിനിറ്റ്',
  5597. h : 'ഒരു മണിക്കൂർ',
  5598. hh : '%d മണിക്കൂർ',
  5599. d : 'ഒരു ദിവസം',
  5600. dd : '%d ദിവസം',
  5601. M : 'ഒരു മാസം',
  5602. MM : '%d മാസം',
  5603. y : 'ഒരു വർഷം',
  5604. yy : '%d വർഷം'
  5605. },
  5606. meridiemParse: /രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,
  5607. meridiemHour : function (hour, meridiem) {
  5608. if (hour === 12) {
  5609. hour = 0;
  5610. }
  5611. if ((meridiem === 'രാത്രി' && hour >= 4) ||
  5612. meridiem === 'ഉച്ച കഴിഞ്ഞ്' ||
  5613. meridiem === 'വൈകുന്നേരം') {
  5614. return hour + 12;
  5615. } else {
  5616. return hour;
  5617. }
  5618. },
  5619. meridiem : function (hour, minute, isLower) {
  5620. if (hour < 4) {
  5621. return 'രാത്രി';
  5622. } else if (hour < 12) {
  5623. return 'രാവിലെ';
  5624. } else if (hour < 17) {
  5625. return 'ഉച്ച കഴിഞ്ഞ്';
  5626. } else if (hour < 20) {
  5627. return 'വൈകുന്നേരം';
  5628. } else {
  5629. return 'രാത്രി';
  5630. }
  5631. }
  5632. });
  5633. //! moment.js locale configuration
  5634. function translate$7(number, withoutSuffix, key, isFuture) {
  5635. switch (key) {
  5636. case 's':
  5637. return withoutSuffix ? 'хэдхэн секунд' : 'хэдхэн секундын';
  5638. case 'ss':
  5639. return number + (withoutSuffix ? ' секунд' : ' секундын');
  5640. case 'm':
  5641. case 'mm':
  5642. return number + (withoutSuffix ? ' минут' : ' минутын');
  5643. case 'h':
  5644. case 'hh':
  5645. return number + (withoutSuffix ? ' цаг' : ' цагийн');
  5646. case 'd':
  5647. case 'dd':
  5648. return number + (withoutSuffix ? ' өдөр' : ' өдрийн');
  5649. case 'M':
  5650. case 'MM':
  5651. return number + (withoutSuffix ? ' сар' : ' сарын');
  5652. case 'y':
  5653. case 'yy':
  5654. return number + (withoutSuffix ? ' жил' : ' жилийн');
  5655. default:
  5656. return number;
  5657. }
  5658. }
  5659. moment.defineLocale('mn', {
  5660. months : 'Нэгдүгээр сар_Хоёрдугаар сар_Гуравдугаар сар_Дөрөвдүгээр сар_Тавдугаар сар_Зургадугаар сар_Долдугаар сар_Наймдугаар сар_Есдүгээр сар_Аравдугаар сар_Арван нэгдүгээр сар_Арван хоёрдугаар сар'.split('_'),
  5661. monthsShort : '1 сар_2 сар_3 сар_4 сар_5 сар_6 сар_7 сар_8 сар_9 сар_10 сар_11 сар_12 сар'.split('_'),
  5662. monthsParseExact : true,
  5663. weekdays : 'Ням_Даваа_Мягмар_Лхагва_Пүрэв_Баасан_Бямба'.split('_'),
  5664. weekdaysShort : 'Ням_Дав_Мяг_Лха_Пүр_Баа_Бям'.split('_'),
  5665. weekdaysMin : 'Ня_Да_Мя_Лх_Пү_Ба_Бя'.split('_'),
  5666. weekdaysParseExact : true,
  5667. longDateFormat : {
  5668. LT : 'HH:mm',
  5669. LTS : 'HH:mm:ss',
  5670. L : 'YYYY-MM-DD',
  5671. LL : 'YYYY оны MMMMын D',
  5672. LLL : 'YYYY оны MMMMын D HH:mm',
  5673. LLLL : 'dddd, YYYY оны MMMMын D HH:mm'
  5674. },
  5675. meridiemParse: /ҮӨ|ҮХ/i,
  5676. isPM : function (input) {
  5677. return input === 'ҮХ';
  5678. },
  5679. meridiem : function (hour, minute, isLower) {
  5680. if (hour < 12) {
  5681. return 'ҮӨ';
  5682. } else {
  5683. return 'ҮХ';
  5684. }
  5685. },
  5686. calendar : {
  5687. sameDay : '[Өнөөдөр] LT',
  5688. nextDay : '[Маргааш] LT',
  5689. nextWeek : '[Ирэх] dddd LT',
  5690. lastDay : '[Өчигдөр] LT',
  5691. lastWeek : '[Өнгөрсөн] dddd LT',
  5692. sameElse : 'L'
  5693. },
  5694. relativeTime : {
  5695. future : '%s дараа',
  5696. past : '%s өмнө',
  5697. s : translate$7,
  5698. ss : translate$7,
  5699. m : translate$7,
  5700. mm : translate$7,
  5701. h : translate$7,
  5702. hh : translate$7,
  5703. d : translate$7,
  5704. dd : translate$7,
  5705. M : translate$7,
  5706. MM : translate$7,
  5707. y : translate$7,
  5708. yy : translate$7
  5709. },
  5710. dayOfMonthOrdinalParse: /\d{1,2} өдөр/,
  5711. ordinal : function (number, period) {
  5712. switch (period) {
  5713. case 'd':
  5714. case 'D':
  5715. case 'DDD':
  5716. return number + ' өдөр';
  5717. default:
  5718. return number;
  5719. }
  5720. }
  5721. });
  5722. //! moment.js locale configuration
  5723. var symbolMap$a = {
  5724. '1': '१',
  5725. '2': '२',
  5726. '3': '३',
  5727. '4': '४',
  5728. '5': '५',
  5729. '6': '६',
  5730. '7': '७',
  5731. '8': '८',
  5732. '9': '९',
  5733. '0': '०'
  5734. },
  5735. numberMap$9 = {
  5736. '१': '1',
  5737. '२': '2',
  5738. '३': '3',
  5739. '४': '4',
  5740. '५': '5',
  5741. '६': '6',
  5742. '७': '7',
  5743. '८': '8',
  5744. '९': '9',
  5745. '०': '0'
  5746. };
  5747. function relativeTimeMr(number, withoutSuffix, string, isFuture)
  5748. {
  5749. var output = '';
  5750. if (withoutSuffix) {
  5751. switch (string) {
  5752. case 's': output = 'काही सेकंद'; break;
  5753. case 'ss': output = '%d सेकंद'; break;
  5754. case 'm': output = 'एक मिनिट'; break;
  5755. case 'mm': output = '%d मिनिटे'; break;
  5756. case 'h': output = 'एक तास'; break;
  5757. case 'hh': output = '%d तास'; break;
  5758. case 'd': output = 'एक दिवस'; break;
  5759. case 'dd': output = '%d दिवस'; break;
  5760. case 'M': output = 'एक महिना'; break;
  5761. case 'MM': output = '%d महिने'; break;
  5762. case 'y': output = 'एक वर्ष'; break;
  5763. case 'yy': output = '%d वर्षे'; break;
  5764. }
  5765. }
  5766. else {
  5767. switch (string) {
  5768. case 's': output = 'काही सेकंदां'; break;
  5769. case 'ss': output = '%d सेकंदां'; break;
  5770. case 'm': output = 'एका मिनिटा'; break;
  5771. case 'mm': output = '%d मिनिटां'; break;
  5772. case 'h': output = 'एका तासा'; break;
  5773. case 'hh': output = '%d तासां'; break;
  5774. case 'd': output = 'एका दिवसा'; break;
  5775. case 'dd': output = '%d दिवसां'; break;
  5776. case 'M': output = 'एका महिन्या'; break;
  5777. case 'MM': output = '%d महिन्यां'; break;
  5778. case 'y': output = 'एका वर्षा'; break;
  5779. case 'yy': output = '%d वर्षां'; break;
  5780. }
  5781. }
  5782. return output.replace(/%d/i, number);
  5783. }
  5784. moment.defineLocale('mr', {
  5785. months : 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split('_'),
  5786. monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split('_'),
  5787. monthsParseExact : true,
  5788. weekdays : 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
  5789. weekdaysShort : 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'),
  5790. weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'),
  5791. longDateFormat : {
  5792. LT : 'A h:mm वाजता',
  5793. LTS : 'A h:mm:ss वाजता',
  5794. L : 'DD/MM/YYYY',
  5795. LL : 'D MMMM YYYY',
  5796. LLL : 'D MMMM YYYY, A h:mm वाजता',
  5797. LLLL : 'dddd, D MMMM YYYY, A h:mm वाजता'
  5798. },
  5799. calendar : {
  5800. sameDay : '[आज] LT',
  5801. nextDay : '[उद्या] LT',
  5802. nextWeek : 'dddd, LT',
  5803. lastDay : '[काल] LT',
  5804. lastWeek: '[मागील] dddd, LT',
  5805. sameElse : 'L'
  5806. },
  5807. relativeTime : {
  5808. future: '%sमध्ये',
  5809. past: '%sपूर्वी',
  5810. s: relativeTimeMr,
  5811. ss: relativeTimeMr,
  5812. m: relativeTimeMr,
  5813. mm: relativeTimeMr,
  5814. h: relativeTimeMr,
  5815. hh: relativeTimeMr,
  5816. d: relativeTimeMr,
  5817. dd: relativeTimeMr,
  5818. M: relativeTimeMr,
  5819. MM: relativeTimeMr,
  5820. y: relativeTimeMr,
  5821. yy: relativeTimeMr
  5822. },
  5823. preparse: function (string) {
  5824. return string.replace(/[१२३४५६७८९०]/g, function (match) {
  5825. return numberMap$9[match];
  5826. });
  5827. },
  5828. postformat: function (string) {
  5829. return string.replace(/\d/g, function (match) {
  5830. return symbolMap$a[match];
  5831. });
  5832. },
  5833. meridiemParse: /रात्री|सकाळी|दुपारी|सायंकाळी/,
  5834. meridiemHour : function (hour, meridiem) {
  5835. if (hour === 12) {
  5836. hour = 0;
  5837. }
  5838. if (meridiem === 'रात्री') {
  5839. return hour < 4 ? hour : hour + 12;
  5840. } else if (meridiem === 'सकाळी') {
  5841. return hour;
  5842. } else if (meridiem === 'दुपारी') {
  5843. return hour >= 10 ? hour : hour + 12;
  5844. } else if (meridiem === 'सायंकाळी') {
  5845. return hour + 12;
  5846. }
  5847. },
  5848. meridiem: function (hour, minute, isLower) {
  5849. if (hour < 4) {
  5850. return 'रात्री';
  5851. } else if (hour < 10) {
  5852. return 'सकाळी';
  5853. } else if (hour < 17) {
  5854. return 'दुपारी';
  5855. } else if (hour < 20) {
  5856. return 'सायंकाळी';
  5857. } else {
  5858. return 'रात्री';
  5859. }
  5860. },
  5861. week : {
  5862. dow : 0, // Sunday is the first day of the week.
  5863. doy : 6 // The week that contains Jan 1st is the first week of the year.
  5864. }
  5865. });
  5866. //! moment.js locale configuration
  5867. moment.defineLocale('ms-my', {
  5868. months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'),
  5869. monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),
  5870. weekdays : 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
  5871. weekdaysShort : 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),
  5872. weekdaysMin : 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),
  5873. longDateFormat : {
  5874. LT : 'HH.mm',
  5875. LTS : 'HH.mm.ss',
  5876. L : 'DD/MM/YYYY',
  5877. LL : 'D MMMM YYYY',
  5878. LLL : 'D MMMM YYYY [pukul] HH.mm',
  5879. LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'
  5880. },
  5881. meridiemParse: /pagi|tengahari|petang|malam/,
  5882. meridiemHour: function (hour, meridiem) {
  5883. if (hour === 12) {
  5884. hour = 0;
  5885. }
  5886. if (meridiem === 'pagi') {
  5887. return hour;
  5888. } else if (meridiem === 'tengahari') {
  5889. return hour >= 11 ? hour : hour + 12;
  5890. } else if (meridiem === 'petang' || meridiem === 'malam') {
  5891. return hour + 12;
  5892. }
  5893. },
  5894. meridiem : function (hours, minutes, isLower) {
  5895. if (hours < 11) {
  5896. return 'pagi';
  5897. } else if (hours < 15) {
  5898. return 'tengahari';
  5899. } else if (hours < 19) {
  5900. return 'petang';
  5901. } else {
  5902. return 'malam';
  5903. }
  5904. },
  5905. calendar : {
  5906. sameDay : '[Hari ini pukul] LT',
  5907. nextDay : '[Esok pukul] LT',
  5908. nextWeek : 'dddd [pukul] LT',
  5909. lastDay : '[Kelmarin pukul] LT',
  5910. lastWeek : 'dddd [lepas pukul] LT',
  5911. sameElse : 'L'
  5912. },
  5913. relativeTime : {
  5914. future : 'dalam %s',
  5915. past : '%s yang lepas',
  5916. s : 'beberapa saat',
  5917. ss : '%d saat',
  5918. m : 'seminit',
  5919. mm : '%d minit',
  5920. h : 'sejam',
  5921. hh : '%d jam',
  5922. d : 'sehari',
  5923. dd : '%d hari',
  5924. M : 'sebulan',
  5925. MM : '%d bulan',
  5926. y : 'setahun',
  5927. yy : '%d tahun'
  5928. },
  5929. week : {
  5930. dow : 1, // Monday is the first day of the week.
  5931. doy : 7 // The week that contains Jan 1st is the first week of the year.
  5932. }
  5933. });
  5934. //! moment.js locale configuration
  5935. moment.defineLocale('ms', {
  5936. months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'),
  5937. monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),
  5938. weekdays : 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
  5939. weekdaysShort : 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),
  5940. weekdaysMin : 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),
  5941. longDateFormat : {
  5942. LT : 'HH.mm',
  5943. LTS : 'HH.mm.ss',
  5944. L : 'DD/MM/YYYY',
  5945. LL : 'D MMMM YYYY',
  5946. LLL : 'D MMMM YYYY [pukul] HH.mm',
  5947. LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'
  5948. },
  5949. meridiemParse: /pagi|tengahari|petang|malam/,
  5950. meridiemHour: function (hour, meridiem) {
  5951. if (hour === 12) {
  5952. hour = 0;
  5953. }
  5954. if (meridiem === 'pagi') {
  5955. return hour;
  5956. } else if (meridiem === 'tengahari') {
  5957. return hour >= 11 ? hour : hour + 12;
  5958. } else if (meridiem === 'petang' || meridiem === 'malam') {
  5959. return hour + 12;
  5960. }
  5961. },
  5962. meridiem : function (hours, minutes, isLower) {
  5963. if (hours < 11) {
  5964. return 'pagi';
  5965. } else if (hours < 15) {
  5966. return 'tengahari';
  5967. } else if (hours < 19) {
  5968. return 'petang';
  5969. } else {
  5970. return 'malam';
  5971. }
  5972. },
  5973. calendar : {
  5974. sameDay : '[Hari ini pukul] LT',
  5975. nextDay : '[Esok pukul] LT',
  5976. nextWeek : 'dddd [pukul] LT',
  5977. lastDay : '[Kelmarin pukul] LT',
  5978. lastWeek : 'dddd [lepas pukul] LT',
  5979. sameElse : 'L'
  5980. },
  5981. relativeTime : {
  5982. future : 'dalam %s',
  5983. past : '%s yang lepas',
  5984. s : 'beberapa saat',
  5985. ss : '%d saat',
  5986. m : 'seminit',
  5987. mm : '%d minit',
  5988. h : 'sejam',
  5989. hh : '%d jam',
  5990. d : 'sehari',
  5991. dd : '%d hari',
  5992. M : 'sebulan',
  5993. MM : '%d bulan',
  5994. y : 'setahun',
  5995. yy : '%d tahun'
  5996. },
  5997. week : {
  5998. dow : 1, // Monday is the first day of the week.
  5999. doy : 7 // The week that contains Jan 1st is the first week of the year.
  6000. }
  6001. });
  6002. //! moment.js locale configuration
  6003. moment.defineLocale('mt', {
  6004. months : 'Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru'.split('_'),
  6005. monthsShort : 'Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ'.split('_'),
  6006. weekdays : 'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split('_'),
  6007. weekdaysShort : 'Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib'.split('_'),
  6008. weekdaysMin : 'Ħa_Tn_Tl_Er_Ħa_Ġi_Si'.split('_'),
  6009. longDateFormat : {
  6010. LT : 'HH:mm',
  6011. LTS : 'HH:mm:ss',
  6012. L : 'DD/MM/YYYY',
  6013. LL : 'D MMMM YYYY',
  6014. LLL : 'D MMMM YYYY HH:mm',
  6015. LLLL : 'dddd, D MMMM YYYY HH:mm'
  6016. },
  6017. calendar : {
  6018. sameDay : '[Illum fil-]LT',
  6019. nextDay : '[Għada fil-]LT',
  6020. nextWeek : 'dddd [fil-]LT',
  6021. lastDay : '[Il-bieraħ fil-]LT',
  6022. lastWeek : 'dddd [li għadda] [fil-]LT',
  6023. sameElse : 'L'
  6024. },
  6025. relativeTime : {
  6026. future : 'f’ %s',
  6027. past : '%s ilu',
  6028. s : 'ftit sekondi',
  6029. ss : '%d sekondi',
  6030. m : 'minuta',
  6031. mm : '%d minuti',
  6032. h : 'siegħa',
  6033. hh : '%d siegħat',
  6034. d : 'ġurnata',
  6035. dd : '%d ġranet',
  6036. M : 'xahar',
  6037. MM : '%d xhur',
  6038. y : 'sena',
  6039. yy : '%d sni'
  6040. },
  6041. dayOfMonthOrdinalParse : /\d{1,2}º/,
  6042. ordinal: '%dº',
  6043. week : {
  6044. dow : 1, // Monday is the first day of the week.
  6045. doy : 4 // The week that contains Jan 4th is the first week of the year.
  6046. }
  6047. });
  6048. //! moment.js locale configuration
  6049. var symbolMap$b = {
  6050. '1': '၁',
  6051. '2': '၂',
  6052. '3': '၃',
  6053. '4': '၄',
  6054. '5': '၅',
  6055. '6': '၆',
  6056. '7': '၇',
  6057. '8': '၈',
  6058. '9': '၉',
  6059. '0': '၀'
  6060. }, numberMap$a = {
  6061. '၁': '1',
  6062. '၂': '2',
  6063. '၃': '3',
  6064. '၄': '4',
  6065. '၅': '5',
  6066. '၆': '6',
  6067. '၇': '7',
  6068. '၈': '8',
  6069. '၉': '9',
  6070. '၀': '0'
  6071. };
  6072. moment.defineLocale('my', {
  6073. months: 'ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ'.split('_'),
  6074. monthsShort: 'ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ'.split('_'),
  6075. weekdays: 'တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ'.split('_'),
  6076. weekdaysShort: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),
  6077. weekdaysMin: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),
  6078. longDateFormat: {
  6079. LT: 'HH:mm',
  6080. LTS: 'HH:mm:ss',
  6081. L: 'DD/MM/YYYY',
  6082. LL: 'D MMMM YYYY',
  6083. LLL: 'D MMMM YYYY HH:mm',
  6084. LLLL: 'dddd D MMMM YYYY HH:mm'
  6085. },
  6086. calendar: {
  6087. sameDay: '[ယနေ.] LT [မှာ]',
  6088. nextDay: '[မနက်ဖြန်] LT [မှာ]',
  6089. nextWeek: 'dddd LT [မှာ]',
  6090. lastDay: '[မနေ.က] LT [မှာ]',
  6091. lastWeek: '[ပြီးခဲ့သော] dddd LT [မှာ]',
  6092. sameElse: 'L'
  6093. },
  6094. relativeTime: {
  6095. future: 'လာမည့် %s မှာ',
  6096. past: 'လွန်ခဲ့သော %s က',
  6097. s: 'စက္ကန်.အနည်းငယ်',
  6098. ss : '%d စက္ကန့်',
  6099. m: 'တစ်မိနစ်',
  6100. mm: '%d မိနစ်',
  6101. h: 'တစ်နာရီ',
  6102. hh: '%d နာရီ',
  6103. d: 'တစ်ရက်',
  6104. dd: '%d ရက်',
  6105. M: 'တစ်လ',
  6106. MM: '%d လ',
  6107. y: 'တစ်နှစ်',
  6108. yy: '%d နှစ်'
  6109. },
  6110. preparse: function (string) {
  6111. return string.replace(/[၁၂၃၄၅၆၇၈၉၀]/g, function (match) {
  6112. return numberMap$a[match];
  6113. });
  6114. },
  6115. postformat: function (string) {
  6116. return string.replace(/\d/g, function (match) {
  6117. return symbolMap$b[match];
  6118. });
  6119. },
  6120. week: {
  6121. dow: 1, // Monday is the first day of the week.
  6122. doy: 4 // The week that contains Jan 1st is the first week of the year.
  6123. }
  6124. });
  6125. //! moment.js locale configuration
  6126. moment.defineLocale('nb', {
  6127. months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
  6128. monthsShort : 'jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.'.split('_'),
  6129. monthsParseExact : true,
  6130. weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
  6131. weekdaysShort : 'sø._ma._ti._on._to._fr._lø.'.split('_'),
  6132. weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'),
  6133. weekdaysParseExact : true,
  6134. longDateFormat : {
  6135. LT : 'HH:mm',
  6136. LTS : 'HH:mm:ss',
  6137. L : 'DD.MM.YYYY',
  6138. LL : 'D. MMMM YYYY',
  6139. LLL : 'D. MMMM YYYY [kl.] HH:mm',
  6140. LLLL : 'dddd D. MMMM YYYY [kl.] HH:mm'
  6141. },
  6142. calendar : {
  6143. sameDay: '[i dag kl.] LT',
  6144. nextDay: '[i morgen kl.] LT',
  6145. nextWeek: 'dddd [kl.] LT',
  6146. lastDay: '[i går kl.] LT',
  6147. lastWeek: '[forrige] dddd [kl.] LT',
  6148. sameElse: 'L'
  6149. },
  6150. relativeTime : {
  6151. future : 'om %s',
  6152. past : '%s siden',
  6153. s : 'noen sekunder',
  6154. ss : '%d sekunder',
  6155. m : 'ett minutt',
  6156. mm : '%d minutter',
  6157. h : 'en time',
  6158. hh : '%d timer',
  6159. d : 'en dag',
  6160. dd : '%d dager',
  6161. M : 'en måned',
  6162. MM : '%d måneder',
  6163. y : 'ett år',
  6164. yy : '%d år'
  6165. },
  6166. dayOfMonthOrdinalParse: /\d{1,2}\./,
  6167. ordinal : '%d.',
  6168. week : {
  6169. dow : 1, // Monday is the first day of the week.
  6170. doy : 4 // The week that contains Jan 4th is the first week of the year.
  6171. }
  6172. });
  6173. //! moment.js locale configuration
  6174. var symbolMap$c = {
  6175. '1': '१',
  6176. '2': '२',
  6177. '3': '३',
  6178. '4': '४',
  6179. '5': '५',
  6180. '6': '६',
  6181. '7': '७',
  6182. '8': '८',
  6183. '9': '९',
  6184. '0': '०'
  6185. },
  6186. numberMap$b = {
  6187. '१': '1',
  6188. '२': '2',
  6189. '३': '3',
  6190. '४': '4',
  6191. '५': '5',
  6192. '६': '6',
  6193. '७': '7',
  6194. '८': '8',
  6195. '९': '9',
  6196. '०': '0'
  6197. };
  6198. moment.defineLocale('ne', {
  6199. months : 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split('_'),
  6200. monthsShort : 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split('_'),
  6201. monthsParseExact : true,
  6202. weekdays : 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split('_'),
  6203. weekdaysShort : 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'),
  6204. weekdaysMin : 'आ._सो._मं._बु._बि._शु._श.'.split('_'),
  6205. weekdaysParseExact : true,
  6206. longDateFormat : {
  6207. LT : 'Aको h:mm बजे',
  6208. LTS : 'Aको h:mm:ss बजे',
  6209. L : 'DD/MM/YYYY',
  6210. LL : 'D MMMM YYYY',
  6211. LLL : 'D MMMM YYYY, Aको h:mm बजे',
  6212. LLLL : 'dddd, D MMMM YYYY, Aको h:mm बजे'
  6213. },
  6214. preparse: function (string) {
  6215. return string.replace(/[१२३४५६७८९०]/g, function (match) {
  6216. return numberMap$b[match];
  6217. });
  6218. },
  6219. postformat: function (string) {
  6220. return string.replace(/\d/g, function (match) {
  6221. return symbolMap$c[match];
  6222. });
  6223. },
  6224. meridiemParse: /राति|बिहान|दिउँसो|साँझ/,
  6225. meridiemHour : function (hour, meridiem) {
  6226. if (hour === 12) {
  6227. hour = 0;
  6228. }
  6229. if (meridiem === 'राति') {
  6230. return hour < 4 ? hour : hour + 12;
  6231. } else if (meridiem === 'बिहान') {
  6232. return hour;
  6233. } else if (meridiem === 'दिउँसो') {
  6234. return hour >= 10 ? hour : hour + 12;
  6235. } else if (meridiem === 'साँझ') {
  6236. return hour + 12;
  6237. }
  6238. },
  6239. meridiem : function (hour, minute, isLower) {
  6240. if (hour < 3) {
  6241. return 'राति';
  6242. } else if (hour < 12) {
  6243. return 'बिहान';
  6244. } else if (hour < 16) {
  6245. return 'दिउँसो';
  6246. } else if (hour < 20) {
  6247. return 'साँझ';
  6248. } else {
  6249. return 'राति';
  6250. }
  6251. },
  6252. calendar : {
  6253. sameDay : '[आज] LT',
  6254. nextDay : '[भोलि] LT',
  6255. nextWeek : '[आउँदो] dddd[,] LT',
  6256. lastDay : '[हिजो] LT',
  6257. lastWeek : '[गएको] dddd[,] LT',
  6258. sameElse : 'L'
  6259. },
  6260. relativeTime : {
  6261. future : '%sमा',
  6262. past : '%s अगाडि',
  6263. s : 'केही क्षण',
  6264. ss : '%d सेकेण्ड',
  6265. m : 'एक मिनेट',
  6266. mm : '%d मिनेट',
  6267. h : 'एक घण्टा',
  6268. hh : '%d घण्टा',
  6269. d : 'एक दिन',
  6270. dd : '%d दिन',
  6271. M : 'एक महिना',
  6272. MM : '%d महिना',
  6273. y : 'एक बर्ष',
  6274. yy : '%d बर्ष'
  6275. },
  6276. week : {
  6277. dow : 0, // Sunday is the first day of the week.
  6278. doy : 6 // The week that contains Jan 1st is the first week of the year.
  6279. }
  6280. });
  6281. //! moment.js locale configuration
  6282. var monthsShortWithDots$1 = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'),
  6283. monthsShortWithoutDots$1 = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_');
  6284. var monthsParse$2 = [/^jan/i, /^feb/i, /^maart|mrt.?$/i, /^apr/i, /^mei$/i, /^jun[i.]?$/i, /^jul[i.]?$/i, /^aug/i, /^sep/i, /^okt/i, /^nov/i, /^dec/i];
  6285. var monthsRegex$2 = /^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
  6286. moment.defineLocale('nl-be', {
  6287. months : 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),
  6288. monthsShort : function (m, format) {
  6289. if (!m) {
  6290. return monthsShortWithDots$1;
  6291. } else if (/-MMM-/.test(format)) {
  6292. return monthsShortWithoutDots$1[m.month()];
  6293. } else {
  6294. return monthsShortWithDots$1[m.month()];
  6295. }
  6296. },
  6297. monthsRegex: monthsRegex$2,
  6298. monthsShortRegex: monthsRegex$2,
  6299. monthsStrictRegex: /^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,
  6300. monthsShortStrictRegex: /^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
  6301. monthsParse : monthsParse$2,
  6302. longMonthsParse : monthsParse$2,
  6303. shortMonthsParse : monthsParse$2,
  6304. weekdays : 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),
  6305. weekdaysShort : 'zo._ma._di._wo._do._vr._za.'.split('_'),
  6306. weekdaysMin : 'zo_ma_di_wo_do_vr_za'.split('_'),
  6307. weekdaysParseExact : true,
  6308. longDateFormat : {
  6309. LT : 'HH:mm',
  6310. LTS : 'HH:mm:ss',
  6311. L : 'DD/MM/YYYY',
  6312. LL : 'D MMMM YYYY',
  6313. LLL : 'D MMMM YYYY HH:mm',
  6314. LLLL : 'dddd D MMMM YYYY HH:mm'
  6315. },
  6316. calendar : {
  6317. sameDay: '[vandaag om] LT',
  6318. nextDay: '[morgen om] LT',
  6319. nextWeek: 'dddd [om] LT',
  6320. lastDay: '[gisteren om] LT',
  6321. lastWeek: '[afgelopen] dddd [om] LT',
  6322. sameElse: 'L'
  6323. },
  6324. relativeTime : {
  6325. future : 'over %s',
  6326. past : '%s geleden',
  6327. s : 'een paar seconden',
  6328. ss : '%d seconden',
  6329. m : 'één minuut',
  6330. mm : '%d minuten',
  6331. h : 'één uur',
  6332. hh : '%d uur',
  6333. d : 'één dag',
  6334. dd : '%d dagen',
  6335. M : 'één maand',
  6336. MM : '%d maanden',
  6337. y : 'één jaar',
  6338. yy : '%d jaar'
  6339. },
  6340. dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
  6341. ordinal : function (number) {
  6342. return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');
  6343. },
  6344. week : {
  6345. dow : 1, // Monday is the first day of the week.
  6346. doy : 4 // The week that contains Jan 4th is the first week of the year.
  6347. }
  6348. });
  6349. //! moment.js locale configuration
  6350. var monthsShortWithDots$2 = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'),
  6351. monthsShortWithoutDots$2 = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_');
  6352. var monthsParse$3 = [/^jan/i, /^feb/i, /^maart|mrt.?$/i, /^apr/i, /^mei$/i, /^jun[i.]?$/i, /^jul[i.]?$/i, /^aug/i, /^sep/i, /^okt/i, /^nov/i, /^dec/i];
  6353. var monthsRegex$3 = /^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
  6354. moment.defineLocale('nl', {
  6355. months : 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),
  6356. monthsShort : function (m, format) {
  6357. if (!m) {
  6358. return monthsShortWithDots$2;
  6359. } else if (/-MMM-/.test(format)) {
  6360. return monthsShortWithoutDots$2[m.month()];
  6361. } else {
  6362. return monthsShortWithDots$2[m.month()];
  6363. }
  6364. },
  6365. monthsRegex: monthsRegex$3,
  6366. monthsShortRegex: monthsRegex$3,
  6367. monthsStrictRegex: /^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,
  6368. monthsShortStrictRegex: /^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
  6369. monthsParse : monthsParse$3,
  6370. longMonthsParse : monthsParse$3,
  6371. shortMonthsParse : monthsParse$3,
  6372. weekdays : 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),
  6373. weekdaysShort : 'zo._ma._di._wo._do._vr._za.'.split('_'),
  6374. weekdaysMin : 'zo_ma_di_wo_do_vr_za'.split('_'),
  6375. weekdaysParseExact : true,
  6376. longDateFormat : {
  6377. LT : 'HH:mm',
  6378. LTS : 'HH:mm:ss',
  6379. L : 'DD-MM-YYYY',
  6380. LL : 'D MMMM YYYY',
  6381. LLL : 'D MMMM YYYY HH:mm',
  6382. LLLL : 'dddd D MMMM YYYY HH:mm'
  6383. },
  6384. calendar : {
  6385. sameDay: '[vandaag om] LT',
  6386. nextDay: '[morgen om] LT',
  6387. nextWeek: 'dddd [om] LT',
  6388. lastDay: '[gisteren om] LT',
  6389. lastWeek: '[afgelopen] dddd [om] LT',
  6390. sameElse: 'L'
  6391. },
  6392. relativeTime : {
  6393. future : 'over %s',
  6394. past : '%s geleden',
  6395. s : 'een paar seconden',
  6396. ss : '%d seconden',
  6397. m : 'één minuut',
  6398. mm : '%d minuten',
  6399. h : 'één uur',
  6400. hh : '%d uur',
  6401. d : 'één dag',
  6402. dd : '%d dagen',
  6403. M : 'één maand',
  6404. MM : '%d maanden',
  6405. y : 'één jaar',
  6406. yy : '%d jaar'
  6407. },
  6408. dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
  6409. ordinal : function (number) {
  6410. return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');
  6411. },
  6412. week : {
  6413. dow : 1, // Monday is the first day of the week.
  6414. doy : 4 // The week that contains Jan 4th is the first week of the year.
  6415. }
  6416. });
  6417. //! moment.js locale configuration
  6418. moment.defineLocale('nn', {
  6419. months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
  6420. monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
  6421. weekdays : 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'),
  6422. weekdaysShort : 'sun_mån_tys_ons_tor_fre_lau'.split('_'),
  6423. weekdaysMin : 'su_må_ty_on_to_fr_lø'.split('_'),
  6424. longDateFormat : {
  6425. LT : 'HH:mm',
  6426. LTS : 'HH:mm:ss',
  6427. L : 'DD.MM.YYYY',
  6428. LL : 'D. MMMM YYYY',
  6429. LLL : 'D. MMMM YYYY [kl.] H:mm',
  6430. LLLL : 'dddd D. MMMM YYYY [kl.] HH:mm'
  6431. },
  6432. calendar : {
  6433. sameDay: '[I dag klokka] LT',
  6434. nextDay: '[I morgon klokka] LT',
  6435. nextWeek: 'dddd [klokka] LT',
  6436. lastDay: '[I går klokka] LT',
  6437. lastWeek: '[Føregåande] dddd [klokka] LT',
  6438. sameElse: 'L'
  6439. },
  6440. relativeTime : {
  6441. future : 'om %s',
  6442. past : '%s sidan',
  6443. s : 'nokre sekund',
  6444. ss : '%d sekund',
  6445. m : 'eit minutt',
  6446. mm : '%d minutt',
  6447. h : 'ein time',
  6448. hh : '%d timar',
  6449. d : 'ein dag',
  6450. dd : '%d dagar',
  6451. M : 'ein månad',
  6452. MM : '%d månader',
  6453. y : 'eit år',
  6454. yy : '%d år'
  6455. },
  6456. dayOfMonthOrdinalParse: /\d{1,2}\./,
  6457. ordinal : '%d.',
  6458. week : {
  6459. dow : 1, // Monday is the first day of the week.
  6460. doy : 4 // The week that contains Jan 4th is the first week of the year.
  6461. }
  6462. });
  6463. //! moment.js locale configuration
  6464. var symbolMap$d = {
  6465. '1': '੧',
  6466. '2': '੨',
  6467. '3': '੩',
  6468. '4': '੪',
  6469. '5': '੫',
  6470. '6': '੬',
  6471. '7': '੭',
  6472. '8': '੮',
  6473. '9': '੯',
  6474. '0': '੦'
  6475. },
  6476. numberMap$c = {
  6477. '੧': '1',
  6478. '੨': '2',
  6479. '੩': '3',
  6480. '੪': '4',
  6481. '੫': '5',
  6482. '੬': '6',
  6483. '੭': '7',
  6484. '੮': '8',
  6485. '੯': '9',
  6486. '੦': '0'
  6487. };
  6488. moment.defineLocale('pa-in', {
  6489. // There are months name as per Nanakshahi Calender but they are not used as rigidly in modern Punjabi.
  6490. months : 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split('_'),
  6491. monthsShort : 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split('_'),
  6492. weekdays : 'ਐਤਵਾਰ_ਸੋਮਵਾਰ_ਮੰਗਲਵਾਰ_ਬੁਧਵਾਰ_ਵੀਰਵਾਰ_ਸ਼ੁੱਕਰਵਾਰ_ਸ਼ਨੀਚਰਵਾਰ'.split('_'),
  6493. weekdaysShort : 'ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ'.split('_'),
  6494. weekdaysMin : 'ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ'.split('_'),
  6495. longDateFormat : {
  6496. LT : 'A h:mm ਵਜੇ',
  6497. LTS : 'A h:mm:ss ਵਜੇ',
  6498. L : 'DD/MM/YYYY',
  6499. LL : 'D MMMM YYYY',
  6500. LLL : 'D MMMM YYYY, A h:mm ਵਜੇ',
  6501. LLLL : 'dddd, D MMMM YYYY, A h:mm ਵਜੇ'
  6502. },
  6503. calendar : {
  6504. sameDay : '[ਅਜ] LT',
  6505. nextDay : '[ਕਲ] LT',
  6506. nextWeek : '[ਅਗਲਾ] dddd, LT',
  6507. lastDay : '[ਕਲ] LT',
  6508. lastWeek : '[ਪਿਛਲੇ] dddd, LT',
  6509. sameElse : 'L'
  6510. },
  6511. relativeTime : {
  6512. future : '%s ਵਿੱਚ',
  6513. past : '%s ਪਿਛਲੇ',
  6514. s : 'ਕੁਝ ਸਕਿੰਟ',
  6515. ss : '%d ਸਕਿੰਟ',
  6516. m : 'ਇਕ ਮਿੰਟ',
  6517. mm : '%d ਮਿੰਟ',
  6518. h : 'ਇੱਕ ਘੰਟਾ',
  6519. hh : '%d ਘੰਟੇ',
  6520. d : 'ਇੱਕ ਦਿਨ',
  6521. dd : '%d ਦਿਨ',
  6522. M : 'ਇੱਕ ਮਹੀਨਾ',
  6523. MM : '%d ਮਹੀਨੇ',
  6524. y : 'ਇੱਕ ਸਾਲ',
  6525. yy : '%d ਸਾਲ'
  6526. },
  6527. preparse: function (string) {
  6528. return string.replace(/[੧੨੩੪੫੬੭੮੯੦]/g, function (match) {
  6529. return numberMap$c[match];
  6530. });
  6531. },
  6532. postformat: function (string) {
  6533. return string.replace(/\d/g, function (match) {
  6534. return symbolMap$d[match];
  6535. });
  6536. },
  6537. // Punjabi notation for meridiems are quite fuzzy in practice. While there exists
  6538. // a rigid notion of a 'Pahar' it is not used as rigidly in modern Punjabi.
  6539. meridiemParse: /ਰਾਤ|ਸਵੇਰ|ਦੁਪਹਿਰ|ਸ਼ਾਮ/,
  6540. meridiemHour : function (hour, meridiem) {
  6541. if (hour === 12) {
  6542. hour = 0;
  6543. }
  6544. if (meridiem === 'ਰਾਤ') {
  6545. return hour < 4 ? hour : hour + 12;
  6546. } else if (meridiem === 'ਸਵੇਰ') {
  6547. return hour;
  6548. } else if (meridiem === 'ਦੁਪਹਿਰ') {
  6549. return hour >= 10 ? hour : hour + 12;
  6550. } else if (meridiem === 'ਸ਼ਾਮ') {
  6551. return hour + 12;
  6552. }
  6553. },
  6554. meridiem : function (hour, minute, isLower) {
  6555. if (hour < 4) {
  6556. return 'ਰਾਤ';
  6557. } else if (hour < 10) {
  6558. return 'ਸਵੇਰ';
  6559. } else if (hour < 17) {
  6560. return 'ਦੁਪਹਿਰ';
  6561. } else if (hour < 20) {
  6562. return 'ਸ਼ਾਮ';
  6563. } else {
  6564. return 'ਰਾਤ';
  6565. }
  6566. },
  6567. week : {
  6568. dow : 0, // Sunday is the first day of the week.
  6569. doy : 6 // The week that contains Jan 1st is the first week of the year.
  6570. }
  6571. });
  6572. //! moment.js locale configuration
  6573. var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split('_'),
  6574. monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split('_');
  6575. function plural$3(n) {
  6576. return (n % 10 < 5) && (n % 10 > 1) && ((~~(n / 10) % 10) !== 1);
  6577. }
  6578. function translate$8(number, withoutSuffix, key) {
  6579. var result = number + ' ';
  6580. switch (key) {
  6581. case 'ss':
  6582. return result + (plural$3(number) ? 'sekundy' : 'sekund');
  6583. case 'm':
  6584. return withoutSuffix ? 'minuta' : 'minutę';
  6585. case 'mm':
  6586. return result + (plural$3(number) ? 'minuty' : 'minut');
  6587. case 'h':
  6588. return withoutSuffix ? 'godzina' : 'godzinę';
  6589. case 'hh':
  6590. return result + (plural$3(number) ? 'godziny' : 'godzin');
  6591. case 'MM':
  6592. return result + (plural$3(number) ? 'miesiące' : 'miesięcy');
  6593. case 'yy':
  6594. return result + (plural$3(number) ? 'lata' : 'lat');
  6595. }
  6596. }
  6597. moment.defineLocale('pl', {
  6598. months : function (momentToFormat, format) {
  6599. if (!momentToFormat) {
  6600. return monthsNominative;
  6601. } else if (format === '') {
  6602. // Hack: if format empty we know this is used to generate
  6603. // RegExp by moment. Give then back both valid forms of months
  6604. // in RegExp ready format.
  6605. return '(' + monthsSubjective[momentToFormat.month()] + '|' + monthsNominative[momentToFormat.month()] + ')';
  6606. } else if (/D MMMM/.test(format)) {
  6607. return monthsSubjective[momentToFormat.month()];
  6608. } else {
  6609. return monthsNominative[momentToFormat.month()];
  6610. }
  6611. },
  6612. monthsShort : 'sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru'.split('_'),
  6613. weekdays : 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split('_'),
  6614. weekdaysShort : 'ndz_pon_wt_śr_czw_pt_sob'.split('_'),
  6615. weekdaysMin : 'Nd_Pn_Wt_Śr_Cz_Pt_So'.split('_'),
  6616. longDateFormat : {
  6617. LT : 'HH:mm',
  6618. LTS : 'HH:mm:ss',
  6619. L : 'DD.MM.YYYY',
  6620. LL : 'D MMMM YYYY',
  6621. LLL : 'D MMMM YYYY HH:mm',
  6622. LLLL : 'dddd, D MMMM YYYY HH:mm'
  6623. },
  6624. calendar : {
  6625. sameDay: '[Dziś o] LT',
  6626. nextDay: '[Jutro o] LT',
  6627. nextWeek: function () {
  6628. switch (this.day()) {
  6629. case 0:
  6630. return '[W niedzielę o] LT';
  6631. case 2:
  6632. return '[We wtorek o] LT';
  6633. case 3:
  6634. return '[W środę o] LT';
  6635. case 6:
  6636. return '[W sobotę o] LT';
  6637. default:
  6638. return '[W] dddd [o] LT';
  6639. }
  6640. },
  6641. lastDay: '[Wczoraj o] LT',
  6642. lastWeek: function () {
  6643. switch (this.day()) {
  6644. case 0:
  6645. return '[W zeszłą niedzielę o] LT';
  6646. case 3:
  6647. return '[W zeszłą środę o] LT';
  6648. case 6:
  6649. return '[W zeszłą sobotę o] LT';
  6650. default:
  6651. return '[W zeszły] dddd [o] LT';
  6652. }
  6653. },
  6654. sameElse: 'L'
  6655. },
  6656. relativeTime : {
  6657. future : 'za %s',
  6658. past : '%s temu',
  6659. s : 'kilka sekund',
  6660. ss : translate$8,
  6661. m : translate$8,
  6662. mm : translate$8,
  6663. h : translate$8,
  6664. hh : translate$8,
  6665. d : '1 dzień',
  6666. dd : '%d dni',
  6667. M : 'miesiąc',
  6668. MM : translate$8,
  6669. y : 'rok',
  6670. yy : translate$8
  6671. },
  6672. dayOfMonthOrdinalParse: /\d{1,2}\./,
  6673. ordinal : '%d.',
  6674. week : {
  6675. dow : 1, // Monday is the first day of the week.
  6676. doy : 4 // The week that contains Jan 4th is the first week of the year.
  6677. }
  6678. });
  6679. //! moment.js locale configuration
  6680. moment.defineLocale('pt-br', {
  6681. months : 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split('_'),
  6682. monthsShort : 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
  6683. weekdays : 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split('_'),
  6684. weekdaysShort : 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
  6685. weekdaysMin : 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),
  6686. weekdaysParseExact : true,
  6687. longDateFormat : {
  6688. LT : 'HH:mm',
  6689. LTS : 'HH:mm:ss',
  6690. L : 'DD/MM/YYYY',
  6691. LL : 'D [de] MMMM [de] YYYY',
  6692. LLL : 'D [de] MMMM [de] YYYY [às] HH:mm',
  6693. LLLL : 'dddd, D [de] MMMM [de] YYYY [às] HH:mm'
  6694. },
  6695. calendar : {
  6696. sameDay: '[Hoje às] LT',
  6697. nextDay: '[Amanhã às] LT',
  6698. nextWeek: 'dddd [às] LT',
  6699. lastDay: '[Ontem às] LT',
  6700. lastWeek: function () {
  6701. return (this.day() === 0 || this.day() === 6) ?
  6702. '[Último] dddd [às] LT' : // Saturday + Sunday
  6703. '[Última] dddd [às] LT'; // Monday - Friday
  6704. },
  6705. sameElse: 'L'
  6706. },
  6707. relativeTime : {
  6708. future : 'em %s',
  6709. past : 'há %s',
  6710. s : 'poucos segundos',
  6711. ss : '%d segundos',
  6712. m : 'um minuto',
  6713. mm : '%d minutos',
  6714. h : 'uma hora',
  6715. hh : '%d horas',
  6716. d : 'um dia',
  6717. dd : '%d dias',
  6718. M : 'um mês',
  6719. MM : '%d meses',
  6720. y : 'um ano',
  6721. yy : '%d anos'
  6722. },
  6723. dayOfMonthOrdinalParse: /\d{1,2}º/,
  6724. ordinal : '%dº'
  6725. });
  6726. //! moment.js locale configuration
  6727. moment.defineLocale('pt', {
  6728. months : 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split('_'),
  6729. monthsShort : 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
  6730. weekdays : 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split('_'),
  6731. weekdaysShort : 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
  6732. weekdaysMin : 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),
  6733. weekdaysParseExact : true,
  6734. longDateFormat : {
  6735. LT : 'HH:mm',
  6736. LTS : 'HH:mm:ss',
  6737. L : 'DD/MM/YYYY',
  6738. LL : 'D [de] MMMM [de] YYYY',
  6739. LLL : 'D [de] MMMM [de] YYYY HH:mm',
  6740. LLLL : 'dddd, D [de] MMMM [de] YYYY HH:mm'
  6741. },
  6742. calendar : {
  6743. sameDay: '[Hoje às] LT',
  6744. nextDay: '[Amanhã às] LT',
  6745. nextWeek: 'dddd [às] LT',
  6746. lastDay: '[Ontem às] LT',
  6747. lastWeek: function () {
  6748. return (this.day() === 0 || this.day() === 6) ?
  6749. '[Último] dddd [às] LT' : // Saturday + Sunday
  6750. '[Última] dddd [às] LT'; // Monday - Friday
  6751. },
  6752. sameElse: 'L'
  6753. },
  6754. relativeTime : {
  6755. future : 'em %s',
  6756. past : 'há %s',
  6757. s : 'segundos',
  6758. ss : '%d segundos',
  6759. m : 'um minuto',
  6760. mm : '%d minutos',
  6761. h : 'uma hora',
  6762. hh : '%d horas',
  6763. d : 'um dia',
  6764. dd : '%d dias',
  6765. M : 'um mês',
  6766. MM : '%d meses',
  6767. y : 'um ano',
  6768. yy : '%d anos'
  6769. },
  6770. dayOfMonthOrdinalParse: /\d{1,2}º/,
  6771. ordinal : '%dº',
  6772. week : {
  6773. dow : 1, // Monday is the first day of the week.
  6774. doy : 4 // The week that contains Jan 4th is the first week of the year.
  6775. }
  6776. });
  6777. //! moment.js locale configuration
  6778. function relativeTimeWithPlural$2(number, withoutSuffix, key) {
  6779. var format = {
  6780. 'ss': 'secunde',
  6781. 'mm': 'minute',
  6782. 'hh': 'ore',
  6783. 'dd': 'zile',
  6784. 'MM': 'luni',
  6785. 'yy': 'ani'
  6786. },
  6787. separator = ' ';
  6788. if (number % 100 >= 20 || (number >= 100 && number % 100 === 0)) {
  6789. separator = ' de ';
  6790. }
  6791. return number + separator + format[key];
  6792. }
  6793. moment.defineLocale('ro', {
  6794. months : 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split('_'),
  6795. monthsShort : 'ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split('_'),
  6796. monthsParseExact: true,
  6797. weekdays : 'duminică_luni_marți_miercuri_joi_vineri_sâmbătă'.split('_'),
  6798. weekdaysShort : 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'),
  6799. weekdaysMin : 'Du_Lu_Ma_Mi_Jo_Vi_Sâ'.split('_'),
  6800. longDateFormat : {
  6801. LT : 'H:mm',
  6802. LTS : 'H:mm:ss',
  6803. L : 'DD.MM.YYYY',
  6804. LL : 'D MMMM YYYY',
  6805. LLL : 'D MMMM YYYY H:mm',
  6806. LLLL : 'dddd, D MMMM YYYY H:mm'
  6807. },
  6808. calendar : {
  6809. sameDay: '[azi la] LT',
  6810. nextDay: '[mâine la] LT',
  6811. nextWeek: 'dddd [la] LT',
  6812. lastDay: '[ieri la] LT',
  6813. lastWeek: '[fosta] dddd [la] LT',
  6814. sameElse: 'L'
  6815. },
  6816. relativeTime : {
  6817. future : 'peste %s',
  6818. past : '%s în urmă',
  6819. s : 'câteva secunde',
  6820. ss : relativeTimeWithPlural$2,
  6821. m : 'un minut',
  6822. mm : relativeTimeWithPlural$2,
  6823. h : 'o oră',
  6824. hh : relativeTimeWithPlural$2,
  6825. d : 'o zi',
  6826. dd : relativeTimeWithPlural$2,
  6827. M : 'o lună',
  6828. MM : relativeTimeWithPlural$2,
  6829. y : 'un an',
  6830. yy : relativeTimeWithPlural$2
  6831. },
  6832. week : {
  6833. dow : 1, // Monday is the first day of the week.
  6834. doy : 7 // The week that contains Jan 1st is the first week of the year.
  6835. }
  6836. });
  6837. //! moment.js locale configuration
  6838. function plural$4(word, num) {
  6839. var forms = word.split('_');
  6840. return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]);
  6841. }
  6842. function relativeTimeWithPlural$3(number, withoutSuffix, key) {
  6843. var format = {
  6844. 'ss': withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',
  6845. 'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',
  6846. 'hh': 'час_часа_часов',
  6847. 'dd': 'день_дня_дней',
  6848. 'MM': 'месяц_месяца_месяцев',
  6849. 'yy': 'год_года_лет'
  6850. };
  6851. if (key === 'm') {
  6852. return withoutSuffix ? 'минута' : 'минуту';
  6853. }
  6854. else {
  6855. return number + ' ' + plural$4(format[key], +number);
  6856. }
  6857. }
  6858. var monthsParse$4 = [/^янв/i, /^фев/i, /^мар/i, /^апр/i, /^ма[йя]/i, /^июн/i, /^июл/i, /^авг/i, /^сен/i, /^окт/i, /^ноя/i, /^дек/i];
  6859. // http://new.gramota.ru/spravka/rules/139-prop : § 103
  6860. // Сокращения месяцев: http://new.gramota.ru/spravka/buro/search-answer?s=242637
  6861. // CLDR data: http://www.unicode.org/cldr/charts/28/summary/ru.html#1753
  6862. moment.defineLocale('ru', {
  6863. months : {
  6864. format: 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split('_'),
  6865. standalone: 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_')
  6866. },
  6867. monthsShort : {
  6868. // по CLDR именно "июл." и "июн.", но какой смысл менять букву на точку ?
  6869. format: 'янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.'.split('_'),
  6870. standalone: 'янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.'.split('_')
  6871. },
  6872. weekdays : {
  6873. standalone: 'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split('_'),
  6874. format: 'воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу'.split('_'),
  6875. isFormat: /\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/
  6876. },
  6877. weekdaysShort : 'вс_пн_вт_ср_чт_пт_сб'.split('_'),
  6878. weekdaysMin : 'вс_пн_вт_ср_чт_пт_сб'.split('_'),
  6879. monthsParse : monthsParse$4,
  6880. longMonthsParse : monthsParse$4,
  6881. shortMonthsParse : monthsParse$4,
  6882. // полные названия с падежами, по три буквы, для некоторых, по 4 буквы, сокращения с точкой и без точки
  6883. monthsRegex: /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
  6884. // копия предыдущего
  6885. monthsShortRegex: /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
  6886. // полные названия с падежами
  6887. monthsStrictRegex: /^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,
  6888. // Выражение, которое соотвествует только сокращённым формам
  6889. monthsShortStrictRegex: /^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,
  6890. longDateFormat : {
  6891. LT : 'H:mm',
  6892. LTS : 'H:mm:ss',
  6893. L : 'DD.MM.YYYY',
  6894. LL : 'D MMMM YYYY г.',
  6895. LLL : 'D MMMM YYYY г., H:mm',
  6896. LLLL : 'dddd, D MMMM YYYY г., H:mm'
  6897. },
  6898. calendar : {
  6899. sameDay: '[Сегодня, в] LT',
  6900. nextDay: '[Завтра, в] LT',
  6901. lastDay: '[Вчера, в] LT',
  6902. nextWeek: function (now) {
  6903. if (now.week() !== this.week()) {
  6904. switch (this.day()) {
  6905. case 0:
  6906. return '[В следующее] dddd, [в] LT';
  6907. case 1:
  6908. case 2:
  6909. case 4:
  6910. return '[В следующий] dddd, [в] LT';
  6911. case 3:
  6912. case 5:
  6913. case 6:
  6914. return '[В следующую] dddd, [в] LT';
  6915. }
  6916. } else {
  6917. if (this.day() === 2) {
  6918. return '[Во] dddd, [в] LT';
  6919. } else {
  6920. return '[В] dddd, [в] LT';
  6921. }
  6922. }
  6923. },
  6924. lastWeek: function (now) {
  6925. if (now.week() !== this.week()) {
  6926. switch (this.day()) {
  6927. case 0:
  6928. return '[В прошлое] dddd, [в] LT';
  6929. case 1:
  6930. case 2:
  6931. case 4:
  6932. return '[В прошлый] dddd, [в] LT';
  6933. case 3:
  6934. case 5:
  6935. case 6:
  6936. return '[В прошлую] dddd, [в] LT';
  6937. }
  6938. } else {
  6939. if (this.day() === 2) {
  6940. return '[Во] dddd, [в] LT';
  6941. } else {
  6942. return '[В] dddd, [в] LT';
  6943. }
  6944. }
  6945. },
  6946. sameElse: 'L'
  6947. },
  6948. relativeTime : {
  6949. future : 'через %s',
  6950. past : '%s назад',
  6951. s : 'несколько секунд',
  6952. ss : relativeTimeWithPlural$3,
  6953. m : relativeTimeWithPlural$3,
  6954. mm : relativeTimeWithPlural$3,
  6955. h : 'час',
  6956. hh : relativeTimeWithPlural$3,
  6957. d : 'день',
  6958. dd : relativeTimeWithPlural$3,
  6959. M : 'месяц',
  6960. MM : relativeTimeWithPlural$3,
  6961. y : 'год',
  6962. yy : relativeTimeWithPlural$3
  6963. },
  6964. meridiemParse: /ночи|утра|дня|вечера/i,
  6965. isPM : function (input) {
  6966. return /^(дня|вечера)$/.test(input);
  6967. },
  6968. meridiem : function (hour, minute, isLower) {
  6969. if (hour < 4) {
  6970. return 'ночи';
  6971. } else if (hour < 12) {
  6972. return 'утра';
  6973. } else if (hour < 17) {
  6974. return 'дня';
  6975. } else {
  6976. return 'вечера';
  6977. }
  6978. },
  6979. dayOfMonthOrdinalParse: /\d{1,2}-(й|го|я)/,
  6980. ordinal: function (number, period) {
  6981. switch (period) {
  6982. case 'M':
  6983. case 'd':
  6984. case 'DDD':
  6985. return number + '-й';
  6986. case 'D':
  6987. return number + '-го';
  6988. case 'w':
  6989. case 'W':
  6990. return number + '-я';
  6991. default:
  6992. return number;
  6993. }
  6994. },
  6995. week : {
  6996. dow : 1, // Monday is the first day of the week.
  6997. doy : 4 // The week that contains Jan 4th is the first week of the year.
  6998. }
  6999. });
  7000. //! moment.js locale configuration
  7001. var months$5 = [
  7002. 'جنوري',
  7003. 'فيبروري',
  7004. 'مارچ',
  7005. 'اپريل',
  7006. 'مئي',
  7007. 'جون',
  7008. 'جولاءِ',
  7009. 'آگسٽ',
  7010. 'سيپٽمبر',
  7011. 'آڪٽوبر',
  7012. 'نومبر',
  7013. 'ڊسمبر'
  7014. ];
  7015. var days = [
  7016. 'آچر',
  7017. 'سومر',
  7018. 'اڱارو',
  7019. 'اربع',
  7020. 'خميس',
  7021. 'جمع',
  7022. 'ڇنڇر'
  7023. ];
  7024. moment.defineLocale('sd', {
  7025. months : months$5,
  7026. monthsShort : months$5,
  7027. weekdays : days,
  7028. weekdaysShort : days,
  7029. weekdaysMin : days,
  7030. longDateFormat : {
  7031. LT : 'HH:mm',
  7032. LTS : 'HH:mm:ss',
  7033. L : 'DD/MM/YYYY',
  7034. LL : 'D MMMM YYYY',
  7035. LLL : 'D MMMM YYYY HH:mm',
  7036. LLLL : 'dddd، D MMMM YYYY HH:mm'
  7037. },
  7038. meridiemParse: /صبح|شام/,
  7039. isPM : function (input) {
  7040. return 'شام' === input;
  7041. },
  7042. meridiem : function (hour, minute, isLower) {
  7043. if (hour < 12) {
  7044. return 'صبح';
  7045. }
  7046. return 'شام';
  7047. },
  7048. calendar : {
  7049. sameDay : '[اڄ] LT',
  7050. nextDay : '[سڀاڻي] LT',
  7051. nextWeek : 'dddd [اڳين هفتي تي] LT',
  7052. lastDay : '[ڪالهه] LT',
  7053. lastWeek : '[گزريل هفتي] dddd [تي] LT',
  7054. sameElse : 'L'
  7055. },
  7056. relativeTime : {
  7057. future : '%s پوء',
  7058. past : '%s اڳ',
  7059. s : 'چند سيڪنڊ',
  7060. ss : '%d سيڪنڊ',
  7061. m : 'هڪ منٽ',
  7062. mm : '%d منٽ',
  7063. h : 'هڪ ڪلاڪ',
  7064. hh : '%d ڪلاڪ',
  7065. d : 'هڪ ڏينهن',
  7066. dd : '%d ڏينهن',
  7067. M : 'هڪ مهينو',
  7068. MM : '%d مهينا',
  7069. y : 'هڪ سال',
  7070. yy : '%d سال'
  7071. },
  7072. preparse: function (string) {
  7073. return string.replace(/،/g, ',');
  7074. },
  7075. postformat: function (string) {
  7076. return string.replace(/,/g, '،');
  7077. },
  7078. week : {
  7079. dow : 1, // Monday is the first day of the week.
  7080. doy : 4 // The week that contains Jan 4th is the first week of the year.
  7081. }
  7082. });
  7083. //! moment.js locale configuration
  7084. moment.defineLocale('se', {
  7085. 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('_'),
  7086. monthsShort : 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split('_'),
  7087. weekdays : 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split('_'),
  7088. weekdaysShort : 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'),
  7089. weekdaysMin : 's_v_m_g_d_b_L'.split('_'),
  7090. longDateFormat : {
  7091. LT : 'HH:mm',
  7092. LTS : 'HH:mm:ss',
  7093. L : 'DD.MM.YYYY',
  7094. LL : 'MMMM D. [b.] YYYY',
  7095. LLL : 'MMMM D. [b.] YYYY [ti.] HH:mm',
  7096. LLLL : 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm'
  7097. },
  7098. calendar : {
  7099. sameDay: '[otne ti] LT',
  7100. nextDay: '[ihttin ti] LT',
  7101. nextWeek: 'dddd [ti] LT',
  7102. lastDay: '[ikte ti] LT',
  7103. lastWeek: '[ovddit] dddd [ti] LT',
  7104. sameElse: 'L'
  7105. },
  7106. relativeTime : {
  7107. future : '%s geažes',
  7108. past : 'maŋit %s',
  7109. s : 'moadde sekunddat',
  7110. ss: '%d sekunddat',
  7111. m : 'okta minuhta',
  7112. mm : '%d minuhtat',
  7113. h : 'okta diimmu',
  7114. hh : '%d diimmut',
  7115. d : 'okta beaivi',
  7116. dd : '%d beaivvit',
  7117. M : 'okta mánnu',
  7118. MM : '%d mánut',
  7119. y : 'okta jahki',
  7120. yy : '%d jagit'
  7121. },
  7122. dayOfMonthOrdinalParse: /\d{1,2}\./,
  7123. ordinal : '%d.',
  7124. week : {
  7125. dow : 1, // Monday is the first day of the week.
  7126. doy : 4 // The week that contains Jan 4th is the first week of the year.
  7127. }
  7128. });
  7129. //! moment.js locale configuration
  7130. /*jshint -W100*/
  7131. moment.defineLocale('si', {
  7132. months : 'ජනවාරි_පෙබරවාරි_මාර්තු_අප්‍රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්බර්_දෙසැම්බර්'.split('_'),
  7133. monthsShort : 'ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ'.split('_'),
  7134. weekdays : 'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්‍රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split('_'),
  7135. weekdaysShort : 'ඉරි_සඳු_අඟ_බදා_බ්‍රහ_සිකු_සෙන'.split('_'),
  7136. weekdaysMin : 'ඉ_ස_අ_බ_බ්‍ර_සි_සෙ'.split('_'),
  7137. weekdaysParseExact : true,
  7138. longDateFormat : {
  7139. LT : 'a h:mm',
  7140. LTS : 'a h:mm:ss',
  7141. L : 'YYYY/MM/DD',
  7142. LL : 'YYYY MMMM D',
  7143. LLL : 'YYYY MMMM D, a h:mm',
  7144. LLLL : 'YYYY MMMM D [වැනි] dddd, a h:mm:ss'
  7145. },
  7146. calendar : {
  7147. sameDay : '[අද] LT[ට]',
  7148. nextDay : '[හෙට] LT[ට]',
  7149. nextWeek : 'dddd LT[ට]',
  7150. lastDay : '[ඊයේ] LT[ට]',
  7151. lastWeek : '[පසුගිය] dddd LT[ට]',
  7152. sameElse : 'L'
  7153. },
  7154. relativeTime : {
  7155. future : '%sකින්',
  7156. past : '%sකට පෙර',
  7157. s : 'තත්පර කිහිපය',
  7158. ss : 'තත්පර %d',
  7159. m : 'මිනිත්තුව',
  7160. mm : 'මිනිත්තු %d',
  7161. h : 'පැය',
  7162. hh : 'පැය %d',
  7163. d : 'දිනය',
  7164. dd : 'දින %d',
  7165. M : 'මාසය',
  7166. MM : 'මාස %d',
  7167. y : 'වසර',
  7168. yy : 'වසර %d'
  7169. },
  7170. dayOfMonthOrdinalParse: /\d{1,2} වැනි/,
  7171. ordinal : function (number) {
  7172. return number + ' වැනි';
  7173. },
  7174. meridiemParse : /පෙර වරු|පස් වරු|පෙ.ව|ප.ව./,
  7175. isPM : function (input) {
  7176. return input === 'ප.ව.' || input === 'පස් වරු';
  7177. },
  7178. meridiem : function (hours, minutes, isLower) {
  7179. if (hours > 11) {
  7180. return isLower ? 'ප.ව.' : 'පස් වරු';
  7181. } else {
  7182. return isLower ? 'පෙ.ව.' : 'පෙර වරු';
  7183. }
  7184. }
  7185. });
  7186. //! moment.js locale configuration
  7187. var months$6 = 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split('_'),
  7188. monthsShort$5 = 'jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec'.split('_');
  7189. function plural$5(n) {
  7190. return (n > 1) && (n < 5);
  7191. }
  7192. function translate$9(number, withoutSuffix, key, isFuture) {
  7193. var result = number + ' ';
  7194. switch (key) {
  7195. case 's': // a few seconds / in a few seconds / a few seconds ago
  7196. return (withoutSuffix || isFuture) ? 'pár sekúnd' : 'pár sekundami';
  7197. case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago
  7198. if (withoutSuffix || isFuture) {
  7199. return result + (plural$5(number) ? 'sekundy' : 'sekúnd');
  7200. } else {
  7201. return result + 'sekundami';
  7202. }
  7203. break;
  7204. case 'm': // a minute / in a minute / a minute ago
  7205. return withoutSuffix ? 'minúta' : (isFuture ? 'minútu' : 'minútou');
  7206. case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
  7207. if (withoutSuffix || isFuture) {
  7208. return result + (plural$5(number) ? 'minúty' : 'minút');
  7209. } else {
  7210. return result + 'minútami';
  7211. }
  7212. break;
  7213. case 'h': // an hour / in an hour / an hour ago
  7214. return withoutSuffix ? 'hodina' : (isFuture ? 'hodinu' : 'hodinou');
  7215. case 'hh': // 9 hours / in 9 hours / 9 hours ago
  7216. if (withoutSuffix || isFuture) {
  7217. return result + (plural$5(number) ? 'hodiny' : 'hodín');
  7218. } else {
  7219. return result + 'hodinami';
  7220. }
  7221. break;
  7222. case 'd': // a day / in a day / a day ago
  7223. return (withoutSuffix || isFuture) ? 'deň' : 'dňom';
  7224. case 'dd': // 9 days / in 9 days / 9 days ago
  7225. if (withoutSuffix || isFuture) {
  7226. return result + (plural$5(number) ? 'dni' : 'dní');
  7227. } else {
  7228. return result + 'dňami';
  7229. }
  7230. break;
  7231. case 'M': // a month / in a month / a month ago
  7232. return (withoutSuffix || isFuture) ? 'mesiac' : 'mesiacom';
  7233. case 'MM': // 9 months / in 9 months / 9 months ago
  7234. if (withoutSuffix || isFuture) {
  7235. return result + (plural$5(number) ? 'mesiace' : 'mesiacov');
  7236. } else {
  7237. return result + 'mesiacmi';
  7238. }
  7239. break;
  7240. case 'y': // a year / in a year / a year ago
  7241. return (withoutSuffix || isFuture) ? 'rok' : 'rokom';
  7242. case 'yy': // 9 years / in 9 years / 9 years ago
  7243. if (withoutSuffix || isFuture) {
  7244. return result + (plural$5(number) ? 'roky' : 'rokov');
  7245. } else {
  7246. return result + 'rokmi';
  7247. }
  7248. break;
  7249. }
  7250. }
  7251. moment.defineLocale('sk', {
  7252. months : months$6,
  7253. monthsShort : monthsShort$5,
  7254. weekdays : 'nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota'.split('_'),
  7255. weekdaysShort : 'ne_po_ut_st_št_pi_so'.split('_'),
  7256. weekdaysMin : 'ne_po_ut_st_št_pi_so'.split('_'),
  7257. longDateFormat : {
  7258. LT: 'H:mm',
  7259. LTS : 'H:mm:ss',
  7260. L : 'DD.MM.YYYY',
  7261. LL : 'D. MMMM YYYY',
  7262. LLL : 'D. MMMM YYYY H:mm',
  7263. LLLL : 'dddd D. MMMM YYYY H:mm'
  7264. },
  7265. calendar : {
  7266. sameDay: '[dnes o] LT',
  7267. nextDay: '[zajtra o] LT',
  7268. nextWeek: function () {
  7269. switch (this.day()) {
  7270. case 0:
  7271. return '[v nedeľu o] LT';
  7272. case 1:
  7273. case 2:
  7274. return '[v] dddd [o] LT';
  7275. case 3:
  7276. return '[v stredu o] LT';
  7277. case 4:
  7278. return '[vo štvrtok o] LT';
  7279. case 5:
  7280. return '[v piatok o] LT';
  7281. case 6:
  7282. return '[v sobotu o] LT';
  7283. }
  7284. },
  7285. lastDay: '[včera o] LT',
  7286. lastWeek: function () {
  7287. switch (this.day()) {
  7288. case 0:
  7289. return '[minulú nedeľu o] LT';
  7290. case 1:
  7291. case 2:
  7292. return '[minulý] dddd [o] LT';
  7293. case 3:
  7294. return '[minulú stredu o] LT';
  7295. case 4:
  7296. case 5:
  7297. return '[minulý] dddd [o] LT';
  7298. case 6:
  7299. return '[minulú sobotu o] LT';
  7300. }
  7301. },
  7302. sameElse: 'L'
  7303. },
  7304. relativeTime : {
  7305. future : 'za %s',
  7306. past : 'pred %s',
  7307. s : translate$9,
  7308. ss : translate$9,
  7309. m : translate$9,
  7310. mm : translate$9,
  7311. h : translate$9,
  7312. hh : translate$9,
  7313. d : translate$9,
  7314. dd : translate$9,
  7315. M : translate$9,
  7316. MM : translate$9,
  7317. y : translate$9,
  7318. yy : translate$9
  7319. },
  7320. dayOfMonthOrdinalParse: /\d{1,2}\./,
  7321. ordinal : '%d.',
  7322. week : {
  7323. dow : 1, // Monday is the first day of the week.
  7324. doy : 4 // The week that contains Jan 4th is the first week of the year.
  7325. }
  7326. });
  7327. //! moment.js locale configuration
  7328. function processRelativeTime$6(number, withoutSuffix, key, isFuture) {
  7329. var result = number + ' ';
  7330. switch (key) {
  7331. case 's':
  7332. return withoutSuffix || isFuture ? 'nekaj sekund' : 'nekaj sekundami';
  7333. case 'ss':
  7334. if (number === 1) {
  7335. result += withoutSuffix ? 'sekundo' : 'sekundi';
  7336. } else if (number === 2) {
  7337. result += withoutSuffix || isFuture ? 'sekundi' : 'sekundah';
  7338. } else if (number < 5) {
  7339. result += withoutSuffix || isFuture ? 'sekunde' : 'sekundah';
  7340. } else {
  7341. result += withoutSuffix || isFuture ? 'sekund' : 'sekund';
  7342. }
  7343. return result;
  7344. case 'm':
  7345. return withoutSuffix ? 'ena minuta' : 'eno minuto';
  7346. case 'mm':
  7347. if (number === 1) {
  7348. result += withoutSuffix ? 'minuta' : 'minuto';
  7349. } else if (number === 2) {
  7350. result += withoutSuffix || isFuture ? 'minuti' : 'minutama';
  7351. } else if (number < 5) {
  7352. result += withoutSuffix || isFuture ? 'minute' : 'minutami';
  7353. } else {
  7354. result += withoutSuffix || isFuture ? 'minut' : 'minutami';
  7355. }
  7356. return result;
  7357. case 'h':
  7358. return withoutSuffix ? 'ena ura' : 'eno uro';
  7359. case 'hh':
  7360. if (number === 1) {
  7361. result += withoutSuffix ? 'ura' : 'uro';
  7362. } else if (number === 2) {
  7363. result += withoutSuffix || isFuture ? 'uri' : 'urama';
  7364. } else if (number < 5) {
  7365. result += withoutSuffix || isFuture ? 'ure' : 'urami';
  7366. } else {
  7367. result += withoutSuffix || isFuture ? 'ur' : 'urami';
  7368. }
  7369. return result;
  7370. case 'd':
  7371. return withoutSuffix || isFuture ? 'en dan' : 'enim dnem';
  7372. case 'dd':
  7373. if (number === 1) {
  7374. result += withoutSuffix || isFuture ? 'dan' : 'dnem';
  7375. } else if (number === 2) {
  7376. result += withoutSuffix || isFuture ? 'dni' : 'dnevoma';
  7377. } else {
  7378. result += withoutSuffix || isFuture ? 'dni' : 'dnevi';
  7379. }
  7380. return result;
  7381. case 'M':
  7382. return withoutSuffix || isFuture ? 'en mesec' : 'enim mesecem';
  7383. case 'MM':
  7384. if (number === 1) {
  7385. result += withoutSuffix || isFuture ? 'mesec' : 'mesecem';
  7386. } else if (number === 2) {
  7387. result += withoutSuffix || isFuture ? 'meseca' : 'mesecema';
  7388. } else if (number < 5) {
  7389. result += withoutSuffix || isFuture ? 'mesece' : 'meseci';
  7390. } else {
  7391. result += withoutSuffix || isFuture ? 'mesecev' : 'meseci';
  7392. }
  7393. return result;
  7394. case 'y':
  7395. return withoutSuffix || isFuture ? 'eno leto' : 'enim letom';
  7396. case 'yy':
  7397. if (number === 1) {
  7398. result += withoutSuffix || isFuture ? 'leto' : 'letom';
  7399. } else if (number === 2) {
  7400. result += withoutSuffix || isFuture ? 'leti' : 'letoma';
  7401. } else if (number < 5) {
  7402. result += withoutSuffix || isFuture ? 'leta' : 'leti';
  7403. } else {
  7404. result += withoutSuffix || isFuture ? 'let' : 'leti';
  7405. }
  7406. return result;
  7407. }
  7408. }
  7409. moment.defineLocale('sl', {
  7410. months : 'januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december'.split('_'),
  7411. monthsShort : 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split('_'),
  7412. monthsParseExact: true,
  7413. weekdays : 'nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota'.split('_'),
  7414. weekdaysShort : 'ned._pon._tor._sre._čet._pet._sob.'.split('_'),
  7415. weekdaysMin : 'ne_po_to_sr_če_pe_so'.split('_'),
  7416. weekdaysParseExact : true,
  7417. longDateFormat : {
  7418. LT : 'H:mm',
  7419. LTS : 'H:mm:ss',
  7420. L : 'DD.MM.YYYY',
  7421. LL : 'D. MMMM YYYY',
  7422. LLL : 'D. MMMM YYYY H:mm',
  7423. LLLL : 'dddd, D. MMMM YYYY H:mm'
  7424. },
  7425. calendar : {
  7426. sameDay : '[danes ob] LT',
  7427. nextDay : '[jutri ob] LT',
  7428. nextWeek : function () {
  7429. switch (this.day()) {
  7430. case 0:
  7431. return '[v] [nedeljo] [ob] LT';
  7432. case 3:
  7433. return '[v] [sredo] [ob] LT';
  7434. case 6:
  7435. return '[v] [soboto] [ob] LT';
  7436. case 1:
  7437. case 2:
  7438. case 4:
  7439. case 5:
  7440. return '[v] dddd [ob] LT';
  7441. }
  7442. },
  7443. lastDay : '[včeraj ob] LT',
  7444. lastWeek : function () {
  7445. switch (this.day()) {
  7446. case 0:
  7447. return '[prejšnjo] [nedeljo] [ob] LT';
  7448. case 3:
  7449. return '[prejšnjo] [sredo] [ob] LT';
  7450. case 6:
  7451. return '[prejšnjo] [soboto] [ob] LT';
  7452. case 1:
  7453. case 2:
  7454. case 4:
  7455. case 5:
  7456. return '[prejšnji] dddd [ob] LT';
  7457. }
  7458. },
  7459. sameElse : 'L'
  7460. },
  7461. relativeTime : {
  7462. future : 'čez %s',
  7463. past : 'pred %s',
  7464. s : processRelativeTime$6,
  7465. ss : processRelativeTime$6,
  7466. m : processRelativeTime$6,
  7467. mm : processRelativeTime$6,
  7468. h : processRelativeTime$6,
  7469. hh : processRelativeTime$6,
  7470. d : processRelativeTime$6,
  7471. dd : processRelativeTime$6,
  7472. M : processRelativeTime$6,
  7473. MM : processRelativeTime$6,
  7474. y : processRelativeTime$6,
  7475. yy : processRelativeTime$6
  7476. },
  7477. dayOfMonthOrdinalParse: /\d{1,2}\./,
  7478. ordinal : '%d.',
  7479. week : {
  7480. dow : 1, // Monday is the first day of the week.
  7481. doy : 7 // The week that contains Jan 1st is the first week of the year.
  7482. }
  7483. });
  7484. //! moment.js locale configuration
  7485. moment.defineLocale('sq', {
  7486. months : 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split('_'),
  7487. monthsShort : 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'),
  7488. weekdays : 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split('_'),
  7489. weekdaysShort : 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'),
  7490. weekdaysMin : 'D_H_Ma_Më_E_P_Sh'.split('_'),
  7491. weekdaysParseExact : true,
  7492. meridiemParse: /PD|MD/,
  7493. isPM: function (input) {
  7494. return input.charAt(0) === 'M';
  7495. },
  7496. meridiem : function (hours, minutes, isLower) {
  7497. return hours < 12 ? 'PD' : 'MD';
  7498. },
  7499. longDateFormat : {
  7500. LT : 'HH:mm',
  7501. LTS : 'HH:mm:ss',
  7502. L : 'DD/MM/YYYY',
  7503. LL : 'D MMMM YYYY',
  7504. LLL : 'D MMMM YYYY HH:mm',
  7505. LLLL : 'dddd, D MMMM YYYY HH:mm'
  7506. },
  7507. calendar : {
  7508. sameDay : '[Sot në] LT',
  7509. nextDay : '[Nesër në] LT',
  7510. nextWeek : 'dddd [në] LT',
  7511. lastDay : '[Dje në] LT',
  7512. lastWeek : 'dddd [e kaluar në] LT',
  7513. sameElse : 'L'
  7514. },
  7515. relativeTime : {
  7516. future : 'në %s',
  7517. past : '%s më parë',
  7518. s : 'disa sekonda',
  7519. ss : '%d sekonda',
  7520. m : 'një minutë',
  7521. mm : '%d minuta',
  7522. h : 'një orë',
  7523. hh : '%d orë',
  7524. d : 'një ditë',
  7525. dd : '%d ditë',
  7526. M : 'një muaj',
  7527. MM : '%d muaj',
  7528. y : 'një vit',
  7529. yy : '%d vite'
  7530. },
  7531. dayOfMonthOrdinalParse: /\d{1,2}\./,
  7532. ordinal : '%d.',
  7533. week : {
  7534. dow : 1, // Monday is the first day of the week.
  7535. doy : 4 // The week that contains Jan 4th is the first week of the year.
  7536. }
  7537. });
  7538. //! moment.js locale configuration
  7539. var translator$1 = {
  7540. words: { //Different grammatical cases
  7541. ss: ['секунда', 'секунде', 'секунди'],
  7542. m: ['један минут', 'једне минуте'],
  7543. mm: ['минут', 'минуте', 'минута'],
  7544. h: ['један сат', 'једног сата'],
  7545. hh: ['сат', 'сата', 'сати'],
  7546. dd: ['дан', 'дана', 'дана'],
  7547. MM: ['месец', 'месеца', 'месеци'],
  7548. yy: ['година', 'године', 'година']
  7549. },
  7550. correctGrammaticalCase: function (number, wordKey) {
  7551. return number === 1 ? wordKey[0] : (number >= 2 && number <= 4 ? wordKey[1] : wordKey[2]);
  7552. },
  7553. translate: function (number, withoutSuffix, key) {
  7554. var wordKey = translator$1.words[key];
  7555. if (key.length === 1) {
  7556. return withoutSuffix ? wordKey[0] : wordKey[1];
  7557. } else {
  7558. return number + ' ' + translator$1.correctGrammaticalCase(number, wordKey);
  7559. }
  7560. }
  7561. };
  7562. moment.defineLocale('sr-cyrl', {
  7563. months: 'јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар'.split('_'),
  7564. monthsShort: 'јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.'.split('_'),
  7565. monthsParseExact: true,
  7566. weekdays: 'недеља_понедељак_уторак_среда_четвртак_петак_субота'.split('_'),
  7567. weekdaysShort: 'нед._пон._уто._сре._чет._пет._суб.'.split('_'),
  7568. weekdaysMin: 'не_по_ут_ср_че_пе_су'.split('_'),
  7569. weekdaysParseExact : true,
  7570. longDateFormat: {
  7571. LT: 'H:mm',
  7572. LTS : 'H:mm:ss',
  7573. L: 'DD.MM.YYYY',
  7574. LL: 'D. MMMM YYYY',
  7575. LLL: 'D. MMMM YYYY H:mm',
  7576. LLLL: 'dddd, D. MMMM YYYY H:mm'
  7577. },
  7578. calendar: {
  7579. sameDay: '[данас у] LT',
  7580. nextDay: '[сутра у] LT',
  7581. nextWeek: function () {
  7582. switch (this.day()) {
  7583. case 0:
  7584. return '[у] [недељу] [у] LT';
  7585. case 3:
  7586. return '[у] [среду] [у] LT';
  7587. case 6:
  7588. return '[у] [суботу] [у] LT';
  7589. case 1:
  7590. case 2:
  7591. case 4:
  7592. case 5:
  7593. return '[у] dddd [у] LT';
  7594. }
  7595. },
  7596. lastDay : '[јуче у] LT',
  7597. lastWeek : function () {
  7598. var lastWeekDays = [
  7599. '[прошле] [недеље] [у] LT',
  7600. '[прошлог] [понедељка] [у] LT',
  7601. '[прошлог] [уторка] [у] LT',
  7602. '[прошле] [среде] [у] LT',
  7603. '[прошлог] [четвртка] [у] LT',
  7604. '[прошлог] [петка] [у] LT',
  7605. '[прошле] [суботе] [у] LT'
  7606. ];
  7607. return lastWeekDays[this.day()];
  7608. },
  7609. sameElse : 'L'
  7610. },
  7611. relativeTime : {
  7612. future : 'за %s',
  7613. past : 'пре %s',
  7614. s : 'неколико секунди',
  7615. ss : translator$1.translate,
  7616. m : translator$1.translate,
  7617. mm : translator$1.translate,
  7618. h : translator$1.translate,
  7619. hh : translator$1.translate,
  7620. d : 'дан',
  7621. dd : translator$1.translate,
  7622. M : 'месец',
  7623. MM : translator$1.translate,
  7624. y : 'годину',
  7625. yy : translator$1.translate
  7626. },
  7627. dayOfMonthOrdinalParse: /\d{1,2}\./,
  7628. ordinal : '%d.',
  7629. week : {
  7630. dow : 1, // Monday is the first day of the week.
  7631. doy : 7 // The week that contains Jan 1st is the first week of the year.
  7632. }
  7633. });
  7634. //! moment.js locale configuration
  7635. var translator$2 = {
  7636. words: { //Different grammatical cases
  7637. ss: ['sekunda', 'sekunde', 'sekundi'],
  7638. m: ['jedan minut', 'jedne minute'],
  7639. mm: ['minut', 'minute', 'minuta'],
  7640. h: ['jedan sat', 'jednog sata'],
  7641. hh: ['sat', 'sata', 'sati'],
  7642. dd: ['dan', 'dana', 'dana'],
  7643. MM: ['mesec', 'meseca', 'meseci'],
  7644. yy: ['godina', 'godine', 'godina']
  7645. },
  7646. correctGrammaticalCase: function (number, wordKey) {
  7647. return number === 1 ? wordKey[0] : (number >= 2 && number <= 4 ? wordKey[1] : wordKey[2]);
  7648. },
  7649. translate: function (number, withoutSuffix, key) {
  7650. var wordKey = translator$2.words[key];
  7651. if (key.length === 1) {
  7652. return withoutSuffix ? wordKey[0] : wordKey[1];
  7653. } else {
  7654. return number + ' ' + translator$2.correctGrammaticalCase(number, wordKey);
  7655. }
  7656. }
  7657. };
  7658. moment.defineLocale('sr', {
  7659. months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split('_'),
  7660. monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split('_'),
  7661. monthsParseExact: true,
  7662. weekdays: 'nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota'.split('_'),
  7663. weekdaysShort: 'ned._pon._uto._sre._čet._pet._sub.'.split('_'),
  7664. weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),
  7665. weekdaysParseExact : true,
  7666. longDateFormat: {
  7667. LT: 'H:mm',
  7668. LTS : 'H:mm:ss',
  7669. L: 'DD.MM.YYYY',
  7670. LL: 'D. MMMM YYYY',
  7671. LLL: 'D. MMMM YYYY H:mm',
  7672. LLLL: 'dddd, D. MMMM YYYY H:mm'
  7673. },
  7674. calendar: {
  7675. sameDay: '[danas u] LT',
  7676. nextDay: '[sutra u] LT',
  7677. nextWeek: function () {
  7678. switch (this.day()) {
  7679. case 0:
  7680. return '[u] [nedelju] [u] LT';
  7681. case 3:
  7682. return '[u] [sredu] [u] LT';
  7683. case 6:
  7684. return '[u] [subotu] [u] LT';
  7685. case 1:
  7686. case 2:
  7687. case 4:
  7688. case 5:
  7689. return '[u] dddd [u] LT';
  7690. }
  7691. },
  7692. lastDay : '[juče u] LT',
  7693. lastWeek : function () {
  7694. var lastWeekDays = [
  7695. '[prošle] [nedelje] [u] LT',
  7696. '[prošlog] [ponedeljka] [u] LT',
  7697. '[prošlog] [utorka] [u] LT',
  7698. '[prošle] [srede] [u] LT',
  7699. '[prošlog] [četvrtka] [u] LT',
  7700. '[prošlog] [petka] [u] LT',
  7701. '[prošle] [subote] [u] LT'
  7702. ];
  7703. return lastWeekDays[this.day()];
  7704. },
  7705. sameElse : 'L'
  7706. },
  7707. relativeTime : {
  7708. future : 'za %s',
  7709. past : 'pre %s',
  7710. s : 'nekoliko sekundi',
  7711. ss : translator$2.translate,
  7712. m : translator$2.translate,
  7713. mm : translator$2.translate,
  7714. h : translator$2.translate,
  7715. hh : translator$2.translate,
  7716. d : 'dan',
  7717. dd : translator$2.translate,
  7718. M : 'mesec',
  7719. MM : translator$2.translate,
  7720. y : 'godinu',
  7721. yy : translator$2.translate
  7722. },
  7723. dayOfMonthOrdinalParse: /\d{1,2}\./,
  7724. ordinal : '%d.',
  7725. week : {
  7726. dow : 1, // Monday is the first day of the week.
  7727. doy : 7 // The week that contains Jan 1st is the first week of the year.
  7728. }
  7729. });
  7730. //! moment.js locale configuration
  7731. moment.defineLocale('ss', {
  7732. months : "Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split('_'),
  7733. monthsShort : 'Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo'.split('_'),
  7734. weekdays : 'Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo'.split('_'),
  7735. weekdaysShort : 'Lis_Umb_Lsb_Les_Lsi_Lsh_Umg'.split('_'),
  7736. weekdaysMin : 'Li_Us_Lb_Lt_Ls_Lh_Ug'.split('_'),
  7737. weekdaysParseExact : true,
  7738. longDateFormat : {
  7739. LT : 'h:mm A',
  7740. LTS : 'h:mm:ss A',
  7741. L : 'DD/MM/YYYY',
  7742. LL : 'D MMMM YYYY',
  7743. LLL : 'D MMMM YYYY h:mm A',
  7744. LLLL : 'dddd, D MMMM YYYY h:mm A'
  7745. },
  7746. calendar : {
  7747. sameDay : '[Namuhla nga] LT',
  7748. nextDay : '[Kusasa nga] LT',
  7749. nextWeek : 'dddd [nga] LT',
  7750. lastDay : '[Itolo nga] LT',
  7751. lastWeek : 'dddd [leliphelile] [nga] LT',
  7752. sameElse : 'L'
  7753. },
  7754. relativeTime : {
  7755. future : 'nga %s',
  7756. past : 'wenteka nga %s',
  7757. s : 'emizuzwana lomcane',
  7758. ss : '%d mzuzwana',
  7759. m : 'umzuzu',
  7760. mm : '%d emizuzu',
  7761. h : 'lihora',
  7762. hh : '%d emahora',
  7763. d : 'lilanga',
  7764. dd : '%d emalanga',
  7765. M : 'inyanga',
  7766. MM : '%d tinyanga',
  7767. y : 'umnyaka',
  7768. yy : '%d iminyaka'
  7769. },
  7770. meridiemParse: /ekuseni|emini|entsambama|ebusuku/,
  7771. meridiem : function (hours, minutes, isLower) {
  7772. if (hours < 11) {
  7773. return 'ekuseni';
  7774. } else if (hours < 15) {
  7775. return 'emini';
  7776. } else if (hours < 19) {
  7777. return 'entsambama';
  7778. } else {
  7779. return 'ebusuku';
  7780. }
  7781. },
  7782. meridiemHour : function (hour, meridiem) {
  7783. if (hour === 12) {
  7784. hour = 0;
  7785. }
  7786. if (meridiem === 'ekuseni') {
  7787. return hour;
  7788. } else if (meridiem === 'emini') {
  7789. return hour >= 11 ? hour : hour + 12;
  7790. } else if (meridiem === 'entsambama' || meridiem === 'ebusuku') {
  7791. if (hour === 0) {
  7792. return 0;
  7793. }
  7794. return hour + 12;
  7795. }
  7796. },
  7797. dayOfMonthOrdinalParse: /\d{1,2}/,
  7798. ordinal : '%d',
  7799. week : {
  7800. dow : 1, // Monday is the first day of the week.
  7801. doy : 4 // The week that contains Jan 4th is the first week of the year.
  7802. }
  7803. });
  7804. //! moment.js locale configuration
  7805. moment.defineLocale('sv', {
  7806. months : 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split('_'),
  7807. monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
  7808. weekdays : 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'),
  7809. weekdaysShort : 'sön_mån_tis_ons_tor_fre_lör'.split('_'),
  7810. weekdaysMin : 'sö_må_ti_on_to_fr_lö'.split('_'),
  7811. longDateFormat : {
  7812. LT : 'HH:mm',
  7813. LTS : 'HH:mm:ss',
  7814. L : 'YYYY-MM-DD',
  7815. LL : 'D MMMM YYYY',
  7816. LLL : 'D MMMM YYYY [kl.] HH:mm',
  7817. LLLL : 'dddd D MMMM YYYY [kl.] HH:mm',
  7818. lll : 'D MMM YYYY HH:mm',
  7819. llll : 'ddd D MMM YYYY HH:mm'
  7820. },
  7821. calendar : {
  7822. sameDay: '[Idag] LT',
  7823. nextDay: '[Imorgon] LT',
  7824. lastDay: '[Igår] LT',
  7825. nextWeek: '[På] dddd LT',
  7826. lastWeek: '[I] dddd[s] LT',
  7827. sameElse: 'L'
  7828. },
  7829. relativeTime : {
  7830. future : 'om %s',
  7831. past : 'för %s sedan',
  7832. s : 'några sekunder',
  7833. ss : '%d sekunder',
  7834. m : 'en minut',
  7835. mm : '%d minuter',
  7836. h : 'en timme',
  7837. hh : '%d timmar',
  7838. d : 'en dag',
  7839. dd : '%d dagar',
  7840. M : 'en månad',
  7841. MM : '%d månader',
  7842. y : 'ett år',
  7843. yy : '%d år'
  7844. },
  7845. dayOfMonthOrdinalParse: /\d{1,2}(e|a)/,
  7846. ordinal : function (number) {
  7847. var b = number % 10,
  7848. output = (~~(number % 100 / 10) === 1) ? 'e' :
  7849. (b === 1) ? 'a' :
  7850. (b === 2) ? 'a' :
  7851. (b === 3) ? 'e' : 'e';
  7852. return number + output;
  7853. },
  7854. week : {
  7855. dow : 1, // Monday is the first day of the week.
  7856. doy : 4 // The week that contains Jan 4th is the first week of the year.
  7857. }
  7858. });
  7859. //! moment.js locale configuration
  7860. moment.defineLocale('sw', {
  7861. months : 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split('_'),
  7862. monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'),
  7863. weekdays : 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split('_'),
  7864. weekdaysShort : 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'),
  7865. weekdaysMin : 'J2_J3_J4_J5_Al_Ij_J1'.split('_'),
  7866. weekdaysParseExact : true,
  7867. longDateFormat : {
  7868. LT : 'HH:mm',
  7869. LTS : 'HH:mm:ss',
  7870. L : 'DD.MM.YYYY',
  7871. LL : 'D MMMM YYYY',
  7872. LLL : 'D MMMM YYYY HH:mm',
  7873. LLLL : 'dddd, D MMMM YYYY HH:mm'
  7874. },
  7875. calendar : {
  7876. sameDay : '[leo saa] LT',
  7877. nextDay : '[kesho saa] LT',
  7878. nextWeek : '[wiki ijayo] dddd [saat] LT',
  7879. lastDay : '[jana] LT',
  7880. lastWeek : '[wiki iliyopita] dddd [saat] LT',
  7881. sameElse : 'L'
  7882. },
  7883. relativeTime : {
  7884. future : '%s baadaye',
  7885. past : 'tokea %s',
  7886. s : 'hivi punde',
  7887. ss : 'sekunde %d',
  7888. m : 'dakika moja',
  7889. mm : 'dakika %d',
  7890. h : 'saa limoja',
  7891. hh : 'masaa %d',
  7892. d : 'siku moja',
  7893. dd : 'masiku %d',
  7894. M : 'mwezi mmoja',
  7895. MM : 'miezi %d',
  7896. y : 'mwaka mmoja',
  7897. yy : 'miaka %d'
  7898. },
  7899. week : {
  7900. dow : 1, // Monday is the first day of the week.
  7901. doy : 7 // The week that contains Jan 1st is the first week of the year.
  7902. }
  7903. });
  7904. //! moment.js locale configuration
  7905. var symbolMap$e = {
  7906. '1': '௧',
  7907. '2': '௨',
  7908. '3': '௩',
  7909. '4': '௪',
  7910. '5': '௫',
  7911. '6': '௬',
  7912. '7': '௭',
  7913. '8': '௮',
  7914. '9': '௯',
  7915. '0': '௦'
  7916. }, numberMap$d = {
  7917. '௧': '1',
  7918. '௨': '2',
  7919. '௩': '3',
  7920. '௪': '4',
  7921. '௫': '5',
  7922. '௬': '6',
  7923. '௭': '7',
  7924. '௮': '8',
  7925. '௯': '9',
  7926. '௦': '0'
  7927. };
  7928. moment.defineLocale('ta', {
  7929. months : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
  7930. monthsShort : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
  7931. weekdays : 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split('_'),
  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. dayOfMonthOrdinalParse: /\d{1,2}வது/,
  7967. ordinal : function (number) {
  7968. return number + 'வது';
  7969. },
  7970. preparse: function (string) {
  7971. return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) {
  7972. return numberMap$d[match];
  7973. });
  7974. },
  7975. postformat: function (string) {
  7976. return string.replace(/\d/g, function (match) {
  7977. return symbolMap$e[match];
  7978. });
  7979. },
  7980. // refer http://ta.wikipedia.org/s/1er1
  7981. meridiemParse: /யாமம்|வைகறை|காலை|நண்பகல்|எற்பாடு|மாலை/,
  7982. meridiem : function (hour, minute, isLower) {
  7983. if (hour < 2) {
  7984. return ' யாமம்';
  7985. } else if (hour < 6) {
  7986. return ' வைகறை'; // வைகறை
  7987. } else if (hour < 10) {
  7988. return ' காலை'; // காலை
  7989. } else if (hour < 14) {
  7990. return ' நண்பகல்'; // நண்பகல்
  7991. } else if (hour < 18) {
  7992. return ' எற்பாடு'; // எற்பாடு
  7993. } else if (hour < 22) {
  7994. return ' மாலை'; // மாலை
  7995. } else {
  7996. return ' யாமம்';
  7997. }
  7998. },
  7999. meridiemHour : function (hour, meridiem) {
  8000. if (hour === 12) {
  8001. hour = 0;
  8002. }
  8003. if (meridiem === 'யாமம்') {
  8004. return hour < 2 ? hour : hour + 12;
  8005. } else if (meridiem === 'வைகறை' || meridiem === 'காலை') {
  8006. return hour;
  8007. } else if (meridiem === 'நண்பகல்') {
  8008. return hour >= 10 ? hour : hour + 12;
  8009. } else {
  8010. return hour + 12;
  8011. }
  8012. },
  8013. week : {
  8014. dow : 0, // Sunday is the first day of the week.
  8015. doy : 6 // The week that contains Jan 1st is the first week of the year.
  8016. }
  8017. });
  8018. //! moment.js locale configuration
  8019. moment.defineLocale('te', {
  8020. months : 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జూలై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split('_'),
  8021. monthsShort : 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జూలై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split('_'),
  8022. monthsParseExact : true,
  8023. weekdays : 'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split('_'),
  8024. weekdaysShort : 'ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని'.split('_'),
  8025. weekdaysMin : 'ఆ_సో_మం_బు_గు_శు_శ'.split('_'),
  8026. longDateFormat : {
  8027. LT : 'A h:mm',
  8028. LTS : 'A h:mm:ss',
  8029. L : 'DD/MM/YYYY',
  8030. LL : 'D MMMM YYYY',
  8031. LLL : 'D MMMM YYYY, A h:mm',
  8032. LLLL : 'dddd, D MMMM YYYY, A h:mm'
  8033. },
  8034. calendar : {
  8035. sameDay : '[నేడు] LT',
  8036. nextDay : '[రేపు] LT',
  8037. nextWeek : 'dddd, LT',
  8038. lastDay : '[నిన్న] LT',
  8039. lastWeek : '[గత] dddd, LT',
  8040. sameElse : 'L'
  8041. },
  8042. relativeTime : {
  8043. future : '%s లో',
  8044. past : '%s క్రితం',
  8045. s : 'కొన్ని క్షణాలు',
  8046. ss : '%d సెకన్లు',
  8047. m : 'ఒక నిమిషం',
  8048. mm : '%d నిమిషాలు',
  8049. h : 'ఒక గంట',
  8050. hh : '%d గంటలు',
  8051. d : 'ఒక రోజు',
  8052. dd : '%d రోజులు',
  8053. M : 'ఒక నెల',
  8054. MM : '%d నెలలు',
  8055. y : 'ఒక సంవత్సరం',
  8056. yy : '%d సంవత్సరాలు'
  8057. },
  8058. dayOfMonthOrdinalParse : /\d{1,2}వ/,
  8059. ordinal : '%dవ',
  8060. meridiemParse: /రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,
  8061. meridiemHour : function (hour, meridiem) {
  8062. if (hour === 12) {
  8063. hour = 0;
  8064. }
  8065. if (meridiem === 'రాత్రి') {
  8066. return hour < 4 ? hour : hour + 12;
  8067. } else if (meridiem === 'ఉదయం') {
  8068. return hour;
  8069. } else if (meridiem === 'మధ్యాహ్నం') {
  8070. return hour >= 10 ? hour : hour + 12;
  8071. } else if (meridiem === 'సాయంత్రం') {
  8072. return hour + 12;
  8073. }
  8074. },
  8075. meridiem : function (hour, minute, isLower) {
  8076. if (hour < 4) {
  8077. return 'రాత్రి';
  8078. } else if (hour < 10) {
  8079. return 'ఉదయం';
  8080. } else if (hour < 17) {
  8081. return 'మధ్యాహ్నం';
  8082. } else if (hour < 20) {
  8083. return 'సాయంత్రం';
  8084. } else {
  8085. return 'రాత్రి';
  8086. }
  8087. },
  8088. week : {
  8089. dow : 0, // Sunday is the first day of the week.
  8090. doy : 6 // The week that contains Jan 1st is the first week of the year.
  8091. }
  8092. });
  8093. //! moment.js locale configuration
  8094. moment.defineLocale('tet', {
  8095. months : 'Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru'.split('_'),
  8096. monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),
  8097. weekdays : 'Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu'.split('_'),
  8098. weekdaysShort : 'Dom_Seg_Ters_Kua_Kint_Sest_Sab'.split('_'),
  8099. weekdaysMin : 'Do_Seg_Te_Ku_Ki_Ses_Sa'.split('_'),
  8100. longDateFormat : {
  8101. LT : 'HH:mm',
  8102. LTS : 'HH:mm:ss',
  8103. L : 'DD/MM/YYYY',
  8104. LL : 'D MMMM YYYY',
  8105. LLL : 'D MMMM YYYY HH:mm',
  8106. LLLL : 'dddd, D MMMM YYYY HH:mm'
  8107. },
  8108. calendar : {
  8109. sameDay: '[Ohin iha] LT',
  8110. nextDay: '[Aban iha] LT',
  8111. nextWeek: 'dddd [iha] LT',
  8112. lastDay: '[Horiseik iha] LT',
  8113. lastWeek: 'dddd [semana kotuk] [iha] LT',
  8114. sameElse: 'L'
  8115. },
  8116. relativeTime : {
  8117. future : 'iha %s',
  8118. past : '%s liuba',
  8119. s : 'minutu balun',
  8120. ss : 'minutu %d',
  8121. m : 'minutu ida',
  8122. mm : 'minutu %d',
  8123. h : 'oras ida',
  8124. hh : 'oras %d',
  8125. d : 'loron ida',
  8126. dd : 'loron %d',
  8127. M : 'fulan ida',
  8128. MM : 'fulan %d',
  8129. y : 'tinan ida',
  8130. yy : 'tinan %d'
  8131. },
  8132. dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
  8133. ordinal : function (number) {
  8134. var b = number % 10,
  8135. output = (~~(number % 100 / 10) === 1) ? 'th' :
  8136. (b === 1) ? 'st' :
  8137. (b === 2) ? 'nd' :
  8138. (b === 3) ? 'rd' : 'th';
  8139. return number + output;
  8140. },
  8141. week : {
  8142. dow : 1, // Monday is the first day of the week.
  8143. doy : 4 // The week that contains Jan 4th is the first week of the year.
  8144. }
  8145. });
  8146. //! moment.js locale configuration
  8147. var suffixes$3 = {
  8148. 0: '-ум',
  8149. 1: '-ум',
  8150. 2: '-юм',
  8151. 3: '-юм',
  8152. 4: '-ум',
  8153. 5: '-ум',
  8154. 6: '-ум',
  8155. 7: '-ум',
  8156. 8: '-ум',
  8157. 9: '-ум',
  8158. 10: '-ум',
  8159. 12: '-ум',
  8160. 13: '-ум',
  8161. 20: '-ум',
  8162. 30: '-юм',
  8163. 40: '-ум',
  8164. 50: '-ум',
  8165. 60: '-ум',
  8166. 70: '-ум',
  8167. 80: '-ум',
  8168. 90: '-ум',
  8169. 100: '-ум'
  8170. };
  8171. moment.defineLocale('tg', {
  8172. months : 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split('_'),
  8173. monthsShort : 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'),
  8174. weekdays : 'якшанбе_душанбе_сешанбе_чоршанбе_панҷшанбе_ҷумъа_шанбе'.split('_'),
  8175. weekdaysShort : 'яшб_дшб_сшб_чшб_пшб_ҷум_шнб'.split('_'),
  8176. weekdaysMin : 'яш_дш_сш_чш_пш_ҷм_шб'.split('_'),
  8177. longDateFormat : {
  8178. LT : 'HH:mm',
  8179. LTS : 'HH:mm:ss',
  8180. L : 'DD/MM/YYYY',
  8181. LL : 'D MMMM YYYY',
  8182. LLL : 'D MMMM YYYY HH:mm',
  8183. LLLL : 'dddd, D MMMM YYYY HH:mm'
  8184. },
  8185. calendar : {
  8186. sameDay : '[Имрӯз соати] LT',
  8187. nextDay : '[Пагоҳ соати] LT',
  8188. lastDay : '[Дирӯз соати] LT',
  8189. nextWeek : 'dddd[и] [ҳафтаи оянда соати] LT',
  8190. lastWeek : 'dddd[и] [ҳафтаи гузашта соати] LT',
  8191. sameElse : 'L'
  8192. },
  8193. relativeTime : {
  8194. future : 'баъди %s',
  8195. past : '%s пеш',
  8196. s : 'якчанд сония',
  8197. m : 'як дақиқа',
  8198. mm : '%d дақиқа',
  8199. h : 'як соат',
  8200. hh : '%d соат',
  8201. d : 'як рӯз',
  8202. dd : '%d рӯз',
  8203. M : 'як моҳ',
  8204. MM : '%d моҳ',
  8205. y : 'як сол',
  8206. yy : '%d сол'
  8207. },
  8208. meridiemParse: /шаб|субҳ|рӯз|бегоҳ/,
  8209. meridiemHour: function (hour, meridiem) {
  8210. if (hour === 12) {
  8211. hour = 0;
  8212. }
  8213. if (meridiem === 'шаб') {
  8214. return hour < 4 ? hour : hour + 12;
  8215. } else if (meridiem === 'субҳ') {
  8216. return hour;
  8217. } else if (meridiem === 'рӯз') {
  8218. return hour >= 11 ? hour : hour + 12;
  8219. } else if (meridiem === 'бегоҳ') {
  8220. return hour + 12;
  8221. }
  8222. },
  8223. meridiem: function (hour, minute, isLower) {
  8224. if (hour < 4) {
  8225. return 'шаб';
  8226. } else if (hour < 11) {
  8227. return 'субҳ';
  8228. } else if (hour < 16) {
  8229. return 'рӯз';
  8230. } else if (hour < 19) {
  8231. return 'бегоҳ';
  8232. } else {
  8233. return 'шаб';
  8234. }
  8235. },
  8236. dayOfMonthOrdinalParse: /\d{1,2}-(ум|юм)/,
  8237. ordinal: function (number) {
  8238. var a = number % 10,
  8239. b = number >= 100 ? 100 : null;
  8240. return number + (suffixes$3[number] || suffixes$3[a] || suffixes$3[b]);
  8241. },
  8242. week : {
  8243. dow : 1, // Monday is the first day of the week.
  8244. doy : 7 // The week that contains Jan 1th is the first week of the year.
  8245. }
  8246. });
  8247. //! moment.js locale configuration
  8248. moment.defineLocale('th', {
  8249. months : 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split('_'),
  8250. monthsShort : 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split('_'),
  8251. monthsParseExact: true,
  8252. weekdays : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),
  8253. weekdaysShort : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference
  8254. weekdaysMin : 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'),
  8255. weekdaysParseExact : true,
  8256. longDateFormat : {
  8257. LT : 'H:mm',
  8258. LTS : 'H:mm:ss',
  8259. L : 'DD/MM/YYYY',
  8260. LL : 'D MMMM YYYY',
  8261. LLL : 'D MMMM YYYY เวลา H:mm',
  8262. LLLL : 'วันddddที่ D MMMM YYYY เวลา H:mm'
  8263. },
  8264. meridiemParse: /ก่อนเที่ยง|หลังเที่ยง/,
  8265. isPM: function (input) {
  8266. return input === 'หลังเที่ยง';
  8267. },
  8268. meridiem : function (hour, minute, isLower) {
  8269. if (hour < 12) {
  8270. return 'ก่อนเที่ยง';
  8271. } else {
  8272. return 'หลังเที่ยง';
  8273. }
  8274. },
  8275. calendar : {
  8276. sameDay : '[วันนี้ เวลา] LT',
  8277. nextDay : '[พรุ่งนี้ เวลา] LT',
  8278. nextWeek : 'dddd[หน้า เวลา] LT',
  8279. lastDay : '[เมื่อวานนี้ เวลา] LT',
  8280. lastWeek : '[วัน]dddd[ที่แล้ว เวลา] LT',
  8281. sameElse : 'L'
  8282. },
  8283. relativeTime : {
  8284. future : 'อีก %s',
  8285. past : '%sที่แล้ว',
  8286. s : 'ไม่กี่วินาที',
  8287. ss : '%d วินาที',
  8288. m : '1 นาที',
  8289. mm : '%d นาที',
  8290. h : '1 ชั่วโมง',
  8291. hh : '%d ชั่วโมง',
  8292. d : '1 วัน',
  8293. dd : '%d วัน',
  8294. M : '1 เดือน',
  8295. MM : '%d เดือน',
  8296. y : '1 ปี',
  8297. yy : '%d ปี'
  8298. }
  8299. });
  8300. //! moment.js locale configuration
  8301. moment.defineLocale('tl-ph', {
  8302. months : 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split('_'),
  8303. monthsShort : 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),
  8304. weekdays : 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split('_'),
  8305. weekdaysShort : 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'),
  8306. weekdaysMin : 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'),
  8307. longDateFormat : {
  8308. LT : 'HH:mm',
  8309. LTS : 'HH:mm:ss',
  8310. L : 'MM/D/YYYY',
  8311. LL : 'MMMM D, YYYY',
  8312. LLL : 'MMMM D, YYYY HH:mm',
  8313. LLLL : 'dddd, MMMM DD, YYYY HH:mm'
  8314. },
  8315. calendar : {
  8316. sameDay: 'LT [ngayong araw]',
  8317. nextDay: '[Bukas ng] LT',
  8318. nextWeek: 'LT [sa susunod na] dddd',
  8319. lastDay: 'LT [kahapon]',
  8320. lastWeek: 'LT [noong nakaraang] dddd',
  8321. sameElse: 'L'
  8322. },
  8323. relativeTime : {
  8324. future : 'sa loob ng %s',
  8325. past : '%s ang nakalipas',
  8326. s : 'ilang segundo',
  8327. ss : '%d segundo',
  8328. m : 'isang minuto',
  8329. mm : '%d minuto',
  8330. h : 'isang oras',
  8331. hh : '%d oras',
  8332. d : 'isang araw',
  8333. dd : '%d araw',
  8334. M : 'isang buwan',
  8335. MM : '%d buwan',
  8336. y : 'isang taon',
  8337. yy : '%d taon'
  8338. },
  8339. dayOfMonthOrdinalParse: /\d{1,2}/,
  8340. ordinal : function (number) {
  8341. return number;
  8342. },
  8343. week : {
  8344. dow : 1, // Monday is the first day of the week.
  8345. doy : 4 // The week that contains Jan 4th is the first week of the year.
  8346. }
  8347. });
  8348. //! moment.js locale configuration
  8349. var numbersNouns = 'pagh_wa’_cha’_wej_loS_vagh_jav_Soch_chorgh_Hut'.split('_');
  8350. function translateFuture(output) {
  8351. var time = output;
  8352. time = (output.indexOf('jaj') !== -1) ?
  8353. time.slice(0, -3) + 'leS' :
  8354. (output.indexOf('jar') !== -1) ?
  8355. time.slice(0, -3) + 'waQ' :
  8356. (output.indexOf('DIS') !== -1) ?
  8357. time.slice(0, -3) + 'nem' :
  8358. time + ' pIq';
  8359. return time;
  8360. }
  8361. function translatePast(output) {
  8362. var time = output;
  8363. time = (output.indexOf('jaj') !== -1) ?
  8364. time.slice(0, -3) + 'Hu’' :
  8365. (output.indexOf('jar') !== -1) ?
  8366. time.slice(0, -3) + 'wen' :
  8367. (output.indexOf('DIS') !== -1) ?
  8368. time.slice(0, -3) + 'ben' :
  8369. time + ' ret';
  8370. return time;
  8371. }
  8372. function translate$a(number, withoutSuffix, string, isFuture) {
  8373. var numberNoun = numberAsNoun(number);
  8374. switch (string) {
  8375. case 'ss':
  8376. return numberNoun + ' lup';
  8377. case 'mm':
  8378. return numberNoun + ' tup';
  8379. case 'hh':
  8380. return numberNoun + ' rep';
  8381. case 'dd':
  8382. return numberNoun + ' jaj';
  8383. case 'MM':
  8384. return numberNoun + ' jar';
  8385. case 'yy':
  8386. return numberNoun + ' DIS';
  8387. }
  8388. }
  8389. function numberAsNoun(number) {
  8390. var hundred = Math.floor((number % 1000) / 100),
  8391. ten = Math.floor((number % 100) / 10),
  8392. one = number % 10,
  8393. word = '';
  8394. if (hundred > 0) {
  8395. word += numbersNouns[hundred] + 'vatlh';
  8396. }
  8397. if (ten > 0) {
  8398. word += ((word !== '') ? ' ' : '') + numbersNouns[ten] + 'maH';
  8399. }
  8400. if (one > 0) {
  8401. word += ((word !== '') ? ' ' : '') + numbersNouns[one];
  8402. }
  8403. return (word === '') ? 'pagh' : word;
  8404. }
  8405. moment.defineLocale('tlh', {
  8406. 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('_'),
  8407. 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('_'),
  8408. monthsParseExact : true,
  8409. weekdays : 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split('_'),
  8410. weekdaysShort : 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split('_'),
  8411. weekdaysMin : 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split('_'),
  8412. longDateFormat : {
  8413. LT : 'HH:mm',
  8414. LTS : 'HH:mm:ss',
  8415. L : 'DD.MM.YYYY',
  8416. LL : 'D MMMM YYYY',
  8417. LLL : 'D MMMM YYYY HH:mm',
  8418. LLLL : 'dddd, D MMMM YYYY HH:mm'
  8419. },
  8420. calendar : {
  8421. sameDay: '[DaHjaj] LT',
  8422. nextDay: '[wa’leS] LT',
  8423. nextWeek: 'LLL',
  8424. lastDay: '[wa’Hu’] LT',
  8425. lastWeek: 'LLL',
  8426. sameElse: 'L'
  8427. },
  8428. relativeTime : {
  8429. future : translateFuture,
  8430. past : translatePast,
  8431. s : 'puS lup',
  8432. ss : translate$a,
  8433. m : 'wa’ tup',
  8434. mm : translate$a,
  8435. h : 'wa’ rep',
  8436. hh : translate$a,
  8437. d : 'wa’ jaj',
  8438. dd : translate$a,
  8439. M : 'wa’ jar',
  8440. MM : translate$a,
  8441. y : 'wa’ DIS',
  8442. yy : translate$a
  8443. },
  8444. dayOfMonthOrdinalParse: /\d{1,2}\./,
  8445. ordinal : '%d.',
  8446. week : {
  8447. dow : 1, // Monday is the first day of the week.
  8448. doy : 4 // The week that contains Jan 4th is the first week of the year.
  8449. }
  8450. });
  8451. var suffixes$4 = {
  8452. 1: '\'inci',
  8453. 5: '\'inci',
  8454. 8: '\'inci',
  8455. 70: '\'inci',
  8456. 80: '\'inci',
  8457. 2: '\'nci',
  8458. 7: '\'nci',
  8459. 20: '\'nci',
  8460. 50: '\'nci',
  8461. 3: '\'üncü',
  8462. 4: '\'üncü',
  8463. 100: '\'üncü',
  8464. 6: '\'ncı',
  8465. 9: '\'uncu',
  8466. 10: '\'uncu',
  8467. 30: '\'uncu',
  8468. 60: '\'ıncı',
  8469. 90: '\'ıncı'
  8470. };
  8471. moment.defineLocale('tr', {
  8472. months : 'Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık'.split('_'),
  8473. monthsShort : 'Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara'.split('_'),
  8474. weekdays : 'Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi'.split('_'),
  8475. weekdaysShort : 'Paz_Pts_Sal_Çar_Per_Cum_Cts'.split('_'),
  8476. weekdaysMin : 'Pz_Pt_Sa_Ça_Pe_Cu_Ct'.split('_'),
  8477. longDateFormat : {
  8478. LT : 'HH:mm',
  8479. LTS : 'HH:mm:ss',
  8480. L : 'DD.MM.YYYY',
  8481. LL : 'D MMMM YYYY',
  8482. LLL : 'D MMMM YYYY HH:mm',
  8483. LLLL : 'dddd, D MMMM YYYY HH:mm'
  8484. },
  8485. calendar : {
  8486. sameDay : '[bugün saat] LT',
  8487. nextDay : '[yarın saat] LT',
  8488. nextWeek : '[gelecek] dddd [saat] LT',
  8489. lastDay : '[dün] LT',
  8490. lastWeek : '[geçen] dddd [saat] LT',
  8491. sameElse : 'L'
  8492. },
  8493. relativeTime : {
  8494. future : '%s sonra',
  8495. past : '%s önce',
  8496. s : 'birkaç saniye',
  8497. ss : '%d saniye',
  8498. m : 'bir dakika',
  8499. mm : '%d dakika',
  8500. h : 'bir saat',
  8501. hh : '%d saat',
  8502. d : 'bir gün',
  8503. dd : '%d gün',
  8504. M : 'bir ay',
  8505. MM : '%d ay',
  8506. y : 'bir yıl',
  8507. yy : '%d yıl'
  8508. },
  8509. ordinal: function (number, period) {
  8510. switch (period) {
  8511. case 'd':
  8512. case 'D':
  8513. case 'Do':
  8514. case 'DD':
  8515. return number;
  8516. default:
  8517. if (number === 0) { // special case for zero
  8518. return number + '\'ıncı';
  8519. }
  8520. var a = number % 10,
  8521. b = number % 100 - a,
  8522. c = number >= 100 ? 100 : null;
  8523. return number + (suffixes$4[a] || suffixes$4[b] || suffixes$4[c]);
  8524. }
  8525. },
  8526. week : {
  8527. dow : 1, // Monday is the first day of the week.
  8528. doy : 7 // The week that contains Jan 1st is the first week of the year.
  8529. }
  8530. });
  8531. //! moment.js locale configuration
  8532. // After the year there should be a slash and the amount of years since December 26, 1979 in Roman numerals.
  8533. // This is currently too difficult (maybe even impossible) to add.
  8534. moment.defineLocale('tzl', {
  8535. months : 'Januar_Fevraglh_Març_Avrïu_Mai_Gün_Julia_Guscht_Setemvar_Listopäts_Noemvar_Zecemvar'.split('_'),
  8536. monthsShort : 'Jan_Fev_Mar_Avr_Mai_Gün_Jul_Gus_Set_Lis_Noe_Zec'.split('_'),
  8537. weekdays : 'Súladi_Lúneçi_Maitzi_Márcuri_Xhúadi_Viénerçi_Sáturi'.split('_'),
  8538. weekdaysShort : 'Súl_Lún_Mai_Már_Xhú_Vié_Sát'.split('_'),
  8539. weekdaysMin : 'Sú_Lú_Ma_Má_Xh_Vi_Sá'.split('_'),
  8540. longDateFormat : {
  8541. LT : 'HH.mm',
  8542. LTS : 'HH.mm.ss',
  8543. L : 'DD.MM.YYYY',
  8544. LL : 'D. MMMM [dallas] YYYY',
  8545. LLL : 'D. MMMM [dallas] YYYY HH.mm',
  8546. LLLL : 'dddd, [li] D. MMMM [dallas] YYYY HH.mm'
  8547. },
  8548. meridiemParse: /d\'o|d\'a/i,
  8549. isPM : function (input) {
  8550. return 'd\'o' === input.toLowerCase();
  8551. },
  8552. meridiem : function (hours, minutes, isLower) {
  8553. if (hours > 11) {
  8554. return isLower ? 'd\'o' : 'D\'O';
  8555. } else {
  8556. return isLower ? 'd\'a' : 'D\'A';
  8557. }
  8558. },
  8559. calendar : {
  8560. sameDay : '[oxhi à] LT',
  8561. nextDay : '[demà à] LT',
  8562. nextWeek : 'dddd [à] LT',
  8563. lastDay : '[ieiri à] LT',
  8564. lastWeek : '[sür el] dddd [lasteu à] LT',
  8565. sameElse : 'L'
  8566. },
  8567. relativeTime : {
  8568. future : 'osprei %s',
  8569. past : 'ja%s',
  8570. s : processRelativeTime$7,
  8571. ss : processRelativeTime$7,
  8572. m : processRelativeTime$7,
  8573. mm : processRelativeTime$7,
  8574. h : processRelativeTime$7,
  8575. hh : processRelativeTime$7,
  8576. d : processRelativeTime$7,
  8577. dd : processRelativeTime$7,
  8578. M : processRelativeTime$7,
  8579. MM : processRelativeTime$7,
  8580. y : processRelativeTime$7,
  8581. yy : processRelativeTime$7
  8582. },
  8583. dayOfMonthOrdinalParse: /\d{1,2}\./,
  8584. ordinal : '%d.',
  8585. week : {
  8586. dow : 1, // Monday is the first day of the week.
  8587. doy : 4 // The week that contains Jan 4th is the first week of the year.
  8588. }
  8589. });
  8590. function processRelativeTime$7(number, withoutSuffix, key, isFuture) {
  8591. var format = {
  8592. 's': ['viensas secunds', '\'iensas secunds'],
  8593. 'ss': [number + ' secunds', '' + number + ' secunds'],
  8594. 'm': ['\'n míut', '\'iens míut'],
  8595. 'mm': [number + ' míuts', '' + number + ' míuts'],
  8596. 'h': ['\'n þora', '\'iensa þora'],
  8597. 'hh': [number + ' þoras', '' + number + ' þoras'],
  8598. 'd': ['\'n ziua', '\'iensa ziua'],
  8599. 'dd': [number + ' ziuas', '' + number + ' ziuas'],
  8600. 'M': ['\'n mes', '\'iens mes'],
  8601. 'MM': [number + ' mesen', '' + number + ' mesen'],
  8602. 'y': ['\'n ar', '\'iens ar'],
  8603. 'yy': [number + ' ars', '' + number + ' ars']
  8604. };
  8605. return isFuture ? format[key][0] : (withoutSuffix ? format[key][0] : format[key][1]);
  8606. }
  8607. //! moment.js locale configuration
  8608. moment.defineLocale('tzm-latn', {
  8609. months : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'),
  8610. monthsShort : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'),
  8611. weekdays : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
  8612. weekdaysShort : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
  8613. weekdaysMin : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
  8614. longDateFormat : {
  8615. LT : 'HH:mm',
  8616. LTS : 'HH:mm:ss',
  8617. L : 'DD/MM/YYYY',
  8618. LL : 'D MMMM YYYY',
  8619. LLL : 'D MMMM YYYY HH:mm',
  8620. LLLL : 'dddd D MMMM YYYY HH:mm'
  8621. },
  8622. calendar : {
  8623. sameDay: '[asdkh g] LT',
  8624. nextDay: '[aska g] LT',
  8625. nextWeek: 'dddd [g] LT',
  8626. lastDay: '[assant g] LT',
  8627. lastWeek: 'dddd [g] LT',
  8628. sameElse: 'L'
  8629. },
  8630. relativeTime : {
  8631. future : 'dadkh s yan %s',
  8632. past : 'yan %s',
  8633. s : 'imik',
  8634. ss : '%d imik',
  8635. m : 'minuḍ',
  8636. mm : '%d minuḍ',
  8637. h : 'saɛa',
  8638. hh : '%d tassaɛin',
  8639. d : 'ass',
  8640. dd : '%d ossan',
  8641. M : 'ayowr',
  8642. MM : '%d iyyirn',
  8643. y : 'asgas',
  8644. yy : '%d isgasn'
  8645. },
  8646. week : {
  8647. dow : 6, // Saturday is the first day of the week.
  8648. doy : 12 // The week that contains Jan 1st is the first week of the year.
  8649. }
  8650. });
  8651. //! moment.js locale configuration
  8652. moment.defineLocale('tzm', {
  8653. months : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'),
  8654. monthsShort : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'),
  8655. weekdays : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
  8656. weekdaysShort : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
  8657. weekdaysMin : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
  8658. longDateFormat : {
  8659. LT : 'HH:mm',
  8660. LTS: 'HH:mm:ss',
  8661. L : 'DD/MM/YYYY',
  8662. LL : 'D MMMM YYYY',
  8663. LLL : 'D MMMM YYYY HH:mm',
  8664. LLLL : 'dddd D MMMM YYYY HH:mm'
  8665. },
  8666. calendar : {
  8667. sameDay: '[ⴰⵙⴷⵅ ⴴ] LT',
  8668. nextDay: '[ⴰⵙⴽⴰ ⴴ] LT',
  8669. nextWeek: 'dddd [ⴴ] LT',
  8670. lastDay: '[ⴰⵚⴰⵏⵜ ⴴ] LT',
  8671. lastWeek: 'dddd [ⴴ] LT',
  8672. sameElse: 'L'
  8673. },
  8674. relativeTime : {
  8675. future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s',
  8676. past : 'ⵢⴰⵏ %s',
  8677. s : 'ⵉⵎⵉⴽ',
  8678. ss : '%d ⵉⵎⵉⴽ',
  8679. m : 'ⵎⵉⵏⵓⴺ',
  8680. mm : '%d ⵎⵉⵏⵓⴺ',
  8681. h : 'ⵙⴰⵄⴰ',
  8682. hh : '%d ⵜⴰⵙⵙⴰⵄⵉⵏ',
  8683. d : 'ⴰⵙⵙ',
  8684. dd : '%d oⵙⵙⴰⵏ',
  8685. M : 'ⴰⵢoⵓⵔ',
  8686. MM : '%d ⵉⵢⵢⵉⵔⵏ',
  8687. y : 'ⴰⵙⴳⴰⵙ',
  8688. yy : '%d ⵉⵙⴳⴰⵙⵏ'
  8689. },
  8690. week : {
  8691. dow : 6, // Saturday is the first day of the week.
  8692. doy : 12 // The week that contains Jan 1st is the first week of the year.
  8693. }
  8694. });
  8695. //! moment.js language configuration
  8696. moment.defineLocale('ug-cn', {
  8697. months: 'يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر'.split(
  8698. '_'
  8699. ),
  8700. monthsShort: 'يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر'.split(
  8701. '_'
  8702. ),
  8703. weekdays: 'يەكشەنبە_دۈشەنبە_سەيشەنبە_چارشەنبە_پەيشەنبە_جۈمە_شەنبە'.split(
  8704. '_'
  8705. ),
  8706. weekdaysShort: 'يە_دۈ_سە_چا_پە_جۈ_شە'.split('_'),
  8707. weekdaysMin: 'يە_دۈ_سە_چا_پە_جۈ_شە'.split('_'),
  8708. longDateFormat: {
  8709. LT: 'HH:mm',
  8710. LTS: 'HH:mm:ss',
  8711. L: 'YYYY-MM-DD',
  8712. LL: 'YYYY-يىلىM-ئاينىڭD-كۈنى',
  8713. LLL: 'YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm',
  8714. LLLL: 'dddd، YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm'
  8715. },
  8716. meridiemParse: /يېرىم كېچە|سەھەر|چۈشتىن بۇرۇن|چۈش|چۈشتىن كېيىن|كەچ/,
  8717. meridiemHour: function (hour, meridiem) {
  8718. if (hour === 12) {
  8719. hour = 0;
  8720. }
  8721. if (
  8722. meridiem === 'يېرىم كېچە' ||
  8723. meridiem === 'سەھەر' ||
  8724. meridiem === 'چۈشتىن بۇرۇن'
  8725. ) {
  8726. return hour;
  8727. } else if (meridiem === 'چۈشتىن كېيىن' || meridiem === 'كەچ') {
  8728. return hour + 12;
  8729. } else {
  8730. return hour >= 11 ? hour : hour + 12;
  8731. }
  8732. },
  8733. meridiem: function (hour, minute, isLower) {
  8734. var hm = hour * 100 + minute;
  8735. if (hm < 600) {
  8736. return 'يېرىم كېچە';
  8737. } else if (hm < 900) {
  8738. return 'سەھەر';
  8739. } else if (hm < 1130) {
  8740. return 'چۈشتىن بۇرۇن';
  8741. } else if (hm < 1230) {
  8742. return 'چۈش';
  8743. } else if (hm < 1800) {
  8744. return 'چۈشتىن كېيىن';
  8745. } else {
  8746. return 'كەچ';
  8747. }
  8748. },
  8749. calendar: {
  8750. sameDay: '[بۈگۈن سائەت] LT',
  8751. nextDay: '[ئەتە سائەت] LT',
  8752. nextWeek: '[كېلەركى] dddd [سائەت] LT',
  8753. lastDay: '[تۆنۈگۈن] LT',
  8754. lastWeek: '[ئالدىنقى] dddd [سائەت] LT',
  8755. sameElse: 'L'
  8756. },
  8757. relativeTime: {
  8758. future: '%s كېيىن',
  8759. past: '%s بۇرۇن',
  8760. s: 'نەچچە سېكونت',
  8761. ss: '%d سېكونت',
  8762. m: 'بىر مىنۇت',
  8763. mm: '%d مىنۇت',
  8764. h: 'بىر سائەت',
  8765. hh: '%d سائەت',
  8766. d: 'بىر كۈن',
  8767. dd: '%d كۈن',
  8768. M: 'بىر ئاي',
  8769. MM: '%d ئاي',
  8770. y: 'بىر يىل',
  8771. yy: '%d يىل'
  8772. },
  8773. dayOfMonthOrdinalParse: /\d{1,2}(-كۈنى|-ئاي|-ھەپتە)/,
  8774. ordinal: function (number, period) {
  8775. switch (period) {
  8776. case 'd':
  8777. case 'D':
  8778. case 'DDD':
  8779. return number + '-كۈنى';
  8780. case 'w':
  8781. case 'W':
  8782. return number + '-ھەپتە';
  8783. default:
  8784. return number;
  8785. }
  8786. },
  8787. preparse: function (string) {
  8788. return string.replace(/،/g, ',');
  8789. },
  8790. postformat: function (string) {
  8791. return string.replace(/,/g, '،');
  8792. },
  8793. week: {
  8794. // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
  8795. dow: 1, // Monday is the first day of the week.
  8796. doy: 7 // The week that contains Jan 1st is the first week of the year.
  8797. }
  8798. });
  8799. //! moment.js locale configuration
  8800. function plural$6(word, num) {
  8801. var forms = word.split('_');
  8802. return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]);
  8803. }
  8804. function relativeTimeWithPlural$4(number, withoutSuffix, key) {
  8805. var format = {
  8806. 'ss': withoutSuffix ? 'секунда_секунди_секунд' : 'секунду_секунди_секунд',
  8807. 'mm': withoutSuffix ? 'хвилина_хвилини_хвилин' : 'хвилину_хвилини_хвилин',
  8808. 'hh': withoutSuffix ? 'година_години_годин' : 'годину_години_годин',
  8809. 'dd': 'день_дні_днів',
  8810. 'MM': 'місяць_місяці_місяців',
  8811. 'yy': 'рік_роки_років'
  8812. };
  8813. if (key === 'm') {
  8814. return withoutSuffix ? 'хвилина' : 'хвилину';
  8815. }
  8816. else if (key === 'h') {
  8817. return withoutSuffix ? 'година' : 'годину';
  8818. }
  8819. else {
  8820. return number + ' ' + plural$6(format[key], +number);
  8821. }
  8822. }
  8823. function weekdaysCaseReplace(m, format) {
  8824. var weekdays = {
  8825. 'nominative': 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split('_'),
  8826. 'accusative': 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split('_'),
  8827. 'genitive': 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split('_')
  8828. };
  8829. if (!m) {
  8830. return weekdays['nominative'];
  8831. }
  8832. var nounCase = (/(\[[ВвУу]\]) ?dddd/).test(format) ?
  8833. 'accusative' :
  8834. ((/\[?(?:минулої|наступної)? ?\] ?dddd/).test(format) ?
  8835. 'genitive' :
  8836. 'nominative');
  8837. return weekdays[nounCase][m.day()];
  8838. }
  8839. function processHoursFunction(str) {
  8840. return function () {
  8841. return str + 'о' + (this.hours() === 11 ? 'б' : '') + '] LT';
  8842. };
  8843. }
  8844. moment.defineLocale('uk', {
  8845. months : {
  8846. 'format': 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split('_'),
  8847. 'standalone': 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split('_')
  8848. },
  8849. monthsShort : 'січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд'.split('_'),
  8850. weekdays : weekdaysCaseReplace,
  8851. weekdaysShort : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
  8852. weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
  8853. longDateFormat : {
  8854. LT : 'HH:mm',
  8855. LTS : 'HH:mm:ss',
  8856. L : 'DD.MM.YYYY',
  8857. LL : 'D MMMM YYYY р.',
  8858. LLL : 'D MMMM YYYY р., HH:mm',
  8859. LLLL : 'dddd, D MMMM YYYY р., HH:mm'
  8860. },
  8861. calendar : {
  8862. sameDay: processHoursFunction('[Сьогодні '),
  8863. nextDay: processHoursFunction('[Завтра '),
  8864. lastDay: processHoursFunction('[Вчора '),
  8865. nextWeek: processHoursFunction('[У] dddd ['),
  8866. lastWeek: function () {
  8867. switch (this.day()) {
  8868. case 0:
  8869. case 3:
  8870. case 5:
  8871. case 6:
  8872. return processHoursFunction('[Минулої] dddd [').call(this);
  8873. case 1:
  8874. case 2:
  8875. case 4:
  8876. return processHoursFunction('[Минулого] dddd [').call(this);
  8877. }
  8878. },
  8879. sameElse: 'L'
  8880. },
  8881. relativeTime : {
  8882. future : 'за %s',
  8883. past : '%s тому',
  8884. s : 'декілька секунд',
  8885. ss : relativeTimeWithPlural$4,
  8886. m : relativeTimeWithPlural$4,
  8887. mm : relativeTimeWithPlural$4,
  8888. h : 'годину',
  8889. hh : relativeTimeWithPlural$4,
  8890. d : 'день',
  8891. dd : relativeTimeWithPlural$4,
  8892. M : 'місяць',
  8893. MM : relativeTimeWithPlural$4,
  8894. y : 'рік',
  8895. yy : relativeTimeWithPlural$4
  8896. },
  8897. // M. E.: those two are virtually unused but a user might want to implement them for his/her website for some reason
  8898. meridiemParse: /ночі|ранку|дня|вечора/,
  8899. isPM: function (input) {
  8900. return /^(дня|вечора)$/.test(input);
  8901. },
  8902. meridiem : function (hour, minute, isLower) {
  8903. if (hour < 4) {
  8904. return 'ночі';
  8905. } else if (hour < 12) {
  8906. return 'ранку';
  8907. } else if (hour < 17) {
  8908. return 'дня';
  8909. } else {
  8910. return 'вечора';
  8911. }
  8912. },
  8913. dayOfMonthOrdinalParse: /\d{1,2}-(й|го)/,
  8914. ordinal: function (number, period) {
  8915. switch (period) {
  8916. case 'M':
  8917. case 'd':
  8918. case 'DDD':
  8919. case 'w':
  8920. case 'W':
  8921. return number + '-й';
  8922. case 'D':
  8923. return number + '-го';
  8924. default:
  8925. return number;
  8926. }
  8927. },
  8928. week : {
  8929. dow : 1, // Monday is the first day of the week.
  8930. doy : 7 // The week that contains Jan 1st is the first week of the year.
  8931. }
  8932. });
  8933. //! moment.js locale configuration
  8934. var months$7 = [
  8935. 'جنوری',
  8936. 'فروری',
  8937. 'مارچ',
  8938. 'اپریل',
  8939. 'مئی',
  8940. 'جون',
  8941. 'جولائی',
  8942. 'اگست',
  8943. 'ستمبر',
  8944. 'اکتوبر',
  8945. 'نومبر',
  8946. 'دسمبر'
  8947. ];
  8948. var days$1 = [
  8949. 'اتوار',
  8950. 'پیر',
  8951. 'منگل',
  8952. 'بدھ',
  8953. 'جمعرات',
  8954. 'جمعہ',
  8955. 'ہفتہ'
  8956. ];
  8957. moment.defineLocale('ur', {
  8958. months : months$7,
  8959. monthsShort : months$7,
  8960. weekdays : days$1,
  8961. weekdaysShort : days$1,
  8962. weekdaysMin : days$1,
  8963. longDateFormat : {
  8964. LT : 'HH:mm',
  8965. LTS : 'HH:mm:ss',
  8966. L : 'DD/MM/YYYY',
  8967. LL : 'D MMMM YYYY',
  8968. LLL : 'D MMMM YYYY HH:mm',
  8969. LLLL : 'dddd، D MMMM YYYY HH:mm'
  8970. },
  8971. meridiemParse: /صبح|شام/,
  8972. isPM : function (input) {
  8973. return 'شام' === input;
  8974. },
  8975. meridiem : function (hour, minute, isLower) {
  8976. if (hour < 12) {
  8977. return 'صبح';
  8978. }
  8979. return 'شام';
  8980. },
  8981. calendar : {
  8982. sameDay : '[آج بوقت] LT',
  8983. nextDay : '[کل بوقت] LT',
  8984. nextWeek : 'dddd [بوقت] LT',
  8985. lastDay : '[گذشتہ روز بوقت] LT',
  8986. lastWeek : '[گذشتہ] dddd [بوقت] LT',
  8987. sameElse : 'L'
  8988. },
  8989. relativeTime : {
  8990. future : '%s بعد',
  8991. past : '%s قبل',
  8992. s : 'چند سیکنڈ',
  8993. ss : '%d سیکنڈ',
  8994. m : 'ایک منٹ',
  8995. mm : '%d منٹ',
  8996. h : 'ایک گھنٹہ',
  8997. hh : '%d گھنٹے',
  8998. d : 'ایک دن',
  8999. dd : '%d دن',
  9000. M : 'ایک ماہ',
  9001. MM : '%d ماہ',
  9002. y : 'ایک سال',
  9003. yy : '%d سال'
  9004. },
  9005. preparse: function (string) {
  9006. return string.replace(/،/g, ',');
  9007. },
  9008. postformat: function (string) {
  9009. return string.replace(/,/g, '،');
  9010. },
  9011. week : {
  9012. dow : 1, // Monday is the first day of the week.
  9013. doy : 4 // The week that contains Jan 4th is the first week of the year.
  9014. }
  9015. });
  9016. //! moment.js locale configuration
  9017. moment.defineLocale('uz-latn', {
  9018. months : 'Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr'.split('_'),
  9019. monthsShort : 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'),
  9020. weekdays : 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split('_'),
  9021. weekdaysShort : 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'),
  9022. weekdaysMin : 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'),
  9023. longDateFormat : {
  9024. LT : 'HH:mm',
  9025. LTS : 'HH:mm:ss',
  9026. L : 'DD/MM/YYYY',
  9027. LL : 'D MMMM YYYY',
  9028. LLL : 'D MMMM YYYY HH:mm',
  9029. LLLL : 'D MMMM YYYY, dddd HH:mm'
  9030. },
  9031. calendar : {
  9032. sameDay : '[Bugun soat] LT [da]',
  9033. nextDay : '[Ertaga] LT [da]',
  9034. nextWeek : 'dddd [kuni soat] LT [da]',
  9035. lastDay : '[Kecha soat] LT [da]',
  9036. lastWeek : '[O\'tgan] dddd [kuni soat] LT [da]',
  9037. sameElse : 'L'
  9038. },
  9039. relativeTime : {
  9040. future : 'Yaqin %s ichida',
  9041. past : 'Bir necha %s oldin',
  9042. s : 'soniya',
  9043. ss : '%d soniya',
  9044. m : 'bir daqiqa',
  9045. mm : '%d daqiqa',
  9046. h : 'bir soat',
  9047. hh : '%d soat',
  9048. d : 'bir kun',
  9049. dd : '%d kun',
  9050. M : 'bir oy',
  9051. MM : '%d oy',
  9052. y : 'bir yil',
  9053. yy : '%d yil'
  9054. },
  9055. week : {
  9056. dow : 1, // Monday is the first day of the week.
  9057. doy : 7 // The week that contains Jan 1st is the first week of the year.
  9058. }
  9059. });
  9060. //! moment.js locale configuration
  9061. moment.defineLocale('uz', {
  9062. months : 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split('_'),
  9063. monthsShort : 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'),
  9064. weekdays : 'Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба'.split('_'),
  9065. weekdaysShort : 'Якш_Душ_Сеш_Чор_Пай_Жум_Шан'.split('_'),
  9066. weekdaysMin : 'Як_Ду_Се_Чо_Па_Жу_Ша'.split('_'),
  9067. longDateFormat : {
  9068. LT : 'HH:mm',
  9069. LTS : 'HH:mm:ss',
  9070. L : 'DD/MM/YYYY',
  9071. LL : 'D MMMM YYYY',
  9072. LLL : 'D MMMM YYYY HH:mm',
  9073. LLLL : 'D MMMM YYYY, dddd HH:mm'
  9074. },
  9075. calendar : {
  9076. sameDay : '[Бугун соат] LT [да]',
  9077. nextDay : '[Эртага] LT [да]',
  9078. nextWeek : 'dddd [куни соат] LT [да]',
  9079. lastDay : '[Кеча соат] LT [да]',
  9080. lastWeek : '[Утган] dddd [куни соат] LT [да]',
  9081. sameElse : 'L'
  9082. },
  9083. relativeTime : {
  9084. future : 'Якин %s ичида',
  9085. past : 'Бир неча %s олдин',
  9086. s : 'фурсат',
  9087. ss : '%d фурсат',
  9088. m : 'бир дакика',
  9089. mm : '%d дакика',
  9090. h : 'бир соат',
  9091. hh : '%d соат',
  9092. d : 'бир кун',
  9093. dd : '%d кун',
  9094. M : 'бир ой',
  9095. MM : '%d ой',
  9096. y : 'бир йил',
  9097. yy : '%d йил'
  9098. },
  9099. week : {
  9100. dow : 1, // Monday is the first day of the week.
  9101. doy : 7 // The week that contains Jan 4th is the first week of the year.
  9102. }
  9103. });
  9104. //! moment.js locale configuration
  9105. moment.defineLocale('vi', {
  9106. 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('_'),
  9107. monthsShort : 'Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12'.split('_'),
  9108. monthsParseExact : true,
  9109. weekdays : 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split('_'),
  9110. weekdaysShort : 'CN_T2_T3_T4_T5_T6_T7'.split('_'),
  9111. weekdaysMin : 'CN_T2_T3_T4_T5_T6_T7'.split('_'),
  9112. weekdaysParseExact : true,
  9113. meridiemParse: /sa|ch/i,
  9114. isPM : function (input) {
  9115. return /^ch$/i.test(input);
  9116. },
  9117. meridiem : function (hours, minutes, isLower) {
  9118. if (hours < 12) {
  9119. return isLower ? 'sa' : 'SA';
  9120. } else {
  9121. return isLower ? 'ch' : 'CH';
  9122. }
  9123. },
  9124. longDateFormat : {
  9125. LT : 'HH:mm',
  9126. LTS : 'HH:mm:ss',
  9127. L : 'DD/MM/YYYY',
  9128. LL : 'D MMMM [năm] YYYY',
  9129. LLL : 'D MMMM [năm] YYYY HH:mm',
  9130. LLLL : 'dddd, D MMMM [năm] YYYY HH:mm',
  9131. l : 'DD/M/YYYY',
  9132. ll : 'D MMM YYYY',
  9133. lll : 'D MMM YYYY HH:mm',
  9134. llll : 'ddd, D MMM YYYY HH:mm'
  9135. },
  9136. calendar : {
  9137. sameDay: '[Hôm nay lúc] LT',
  9138. nextDay: '[Ngày mai lúc] LT',
  9139. nextWeek: 'dddd [tuần tới lúc] LT',
  9140. lastDay: '[Hôm qua lúc] LT',
  9141. lastWeek: 'dddd [tuần rồi lúc] LT',
  9142. sameElse: 'L'
  9143. },
  9144. relativeTime : {
  9145. future : '%s tới',
  9146. past : '%s trước',
  9147. s : 'vài giây',
  9148. ss : '%d giây' ,
  9149. m : 'một phút',
  9150. mm : '%d phút',
  9151. h : 'một giờ',
  9152. hh : '%d giờ',
  9153. d : 'một ngày',
  9154. dd : '%d ngày',
  9155. M : 'một tháng',
  9156. MM : '%d tháng',
  9157. y : 'một năm',
  9158. yy : '%d năm'
  9159. },
  9160. dayOfMonthOrdinalParse: /\d{1,2}/,
  9161. ordinal : function (number) {
  9162. return number;
  9163. },
  9164. week : {
  9165. dow : 1, // Monday is the first day of the week.
  9166. doy : 4 // The week that contains Jan 4th is the first week of the year.
  9167. }
  9168. });
  9169. //! moment.js locale configuration
  9170. moment.defineLocale('x-pseudo', {
  9171. 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('_'),
  9172. monthsShort : 'J~áñ_~Féb_~Már_~Ápr_~Máý_~Júñ_~Júl_~Áúg_~Sép_~Óct_~Ñóv_~Déc'.split('_'),
  9173. monthsParseExact : true,
  9174. weekdays : 'S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~Fríd~áý_S~átúr~dáý'.split('_'),
  9175. weekdaysShort : 'S~úñ_~Móñ_~Túé_~Wéd_~Thú_~Frí_~Sát'.split('_'),
  9176. weekdaysMin : 'S~ú_Mó~_Tú_~Wé_T~h_Fr~_Sá'.split('_'),
  9177. weekdaysParseExact : true,
  9178. longDateFormat : {
  9179. LT : 'HH:mm',
  9180. L : 'DD/MM/YYYY',
  9181. LL : 'D MMMM YYYY',
  9182. LLL : 'D MMMM YYYY HH:mm',
  9183. LLLL : 'dddd, D MMMM YYYY HH:mm'
  9184. },
  9185. calendar : {
  9186. sameDay : '[T~ódá~ý át] LT',
  9187. nextDay : '[T~ómó~rró~w át] LT',
  9188. nextWeek : 'dddd [át] LT',
  9189. lastDay : '[Ý~ést~érdá~ý át] LT',
  9190. lastWeek : '[L~ást] dddd [át] LT',
  9191. sameElse : 'L'
  9192. },
  9193. relativeTime : {
  9194. future : 'í~ñ %s',
  9195. past : '%s á~gó',
  9196. s : 'á ~féw ~sécó~ñds',
  9197. ss : '%d s~écóñ~ds',
  9198. m : 'á ~míñ~úté',
  9199. mm : '%d m~íñú~tés',
  9200. h : 'á~ñ hó~úr',
  9201. hh : '%d h~óúrs',
  9202. d : 'á ~dáý',
  9203. dd : '%d d~áýs',
  9204. M : 'á ~móñ~th',
  9205. MM : '%d m~óñt~hs',
  9206. y : 'á ~ýéár',
  9207. yy : '%d ý~éárs'
  9208. },
  9209. dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/,
  9210. ordinal : function (number) {
  9211. var b = number % 10,
  9212. output = (~~(number % 100 / 10) === 1) ? 'th' :
  9213. (b === 1) ? 'st' :
  9214. (b === 2) ? 'nd' :
  9215. (b === 3) ? 'rd' : 'th';
  9216. return number + output;
  9217. },
  9218. week : {
  9219. dow : 1, // Monday is the first day of the week.
  9220. doy : 4 // The week that contains Jan 4th is the first week of the year.
  9221. }
  9222. });
  9223. //! moment.js locale configuration
  9224. moment.defineLocale('yo', {
  9225. months : 'Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀'.split('_'),
  9226. monthsShort : 'Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀'.split('_'),
  9227. weekdays : 'Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta'.split('_'),
  9228. weekdaysShort : 'Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá'.split('_'),
  9229. weekdaysMin : 'Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb'.split('_'),
  9230. longDateFormat : {
  9231. LT : 'h:mm A',
  9232. LTS : 'h:mm:ss A',
  9233. L : 'DD/MM/YYYY',
  9234. LL : 'D MMMM YYYY',
  9235. LLL : 'D MMMM YYYY h:mm A',
  9236. LLLL : 'dddd, D MMMM YYYY h:mm A'
  9237. },
  9238. calendar : {
  9239. sameDay : '[Ònì ni] LT',
  9240. nextDay : '[Ọ̀la ni] LT',
  9241. nextWeek : 'dddd [Ọsẹ̀ tón\'bọ] [ni] LT',
  9242. lastDay : '[Àna ni] LT',
  9243. lastWeek : 'dddd [Ọsẹ̀ tólọ́] [ni] LT',
  9244. sameElse : 'L'
  9245. },
  9246. relativeTime : {
  9247. future : 'ní %s',
  9248. past : '%s kọjá',
  9249. s : 'ìsẹjú aayá die',
  9250. ss :'aayá %d',
  9251. m : 'ìsẹjú kan',
  9252. mm : 'ìsẹjú %d',
  9253. h : 'wákati kan',
  9254. hh : 'wákati %d',
  9255. d : 'ọjọ́ kan',
  9256. dd : 'ọjọ́ %d',
  9257. M : 'osù kan',
  9258. MM : 'osù %d',
  9259. y : 'ọdún kan',
  9260. yy : 'ọdún %d'
  9261. },
  9262. dayOfMonthOrdinalParse : /ọjọ́\s\d{1,2}/,
  9263. ordinal : 'ọjọ́ %d',
  9264. week : {
  9265. dow : 1, // Monday is the first day of the week.
  9266. doy : 4 // The week that contains Jan 4th is the first week of the year.
  9267. }
  9268. });
  9269. //! moment.js locale configuration
  9270. moment.defineLocale('zh-cn', {
  9271. months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
  9272. monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  9273. weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
  9274. weekdaysShort : '周日_周一_周二_周三_周四_周五_周六'.split('_'),
  9275. weekdaysMin : '日_一_二_三_四_五_六'.split('_'),
  9276. longDateFormat : {
  9277. LT : 'HH:mm',
  9278. LTS : 'HH:mm:ss',
  9279. L : 'YYYY/MM/DD',
  9280. LL : 'YYYY年M月D日',
  9281. LLL : 'YYYY年M月D日Ah点mm分',
  9282. LLLL : 'YYYY年M月D日ddddAh点mm分',
  9283. l : 'YYYY/M/D',
  9284. ll : 'YYYY年M月D日',
  9285. lll : 'YYYY年M月D日 HH:mm',
  9286. llll : 'YYYY年M月D日dddd HH:mm'
  9287. },
  9288. meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
  9289. meridiemHour: function (hour, meridiem) {
  9290. if (hour === 12) {
  9291. hour = 0;
  9292. }
  9293. if (meridiem === '凌晨' || meridiem === '早上' ||
  9294. meridiem === '上午') {
  9295. return hour;
  9296. } else if (meridiem === '下午' || meridiem === '晚上') {
  9297. return hour + 12;
  9298. } else {
  9299. // '中午'
  9300. return hour >= 11 ? hour : hour + 12;
  9301. }
  9302. },
  9303. meridiem : function (hour, minute, isLower) {
  9304. var hm = hour * 100 + minute;
  9305. if (hm < 600) {
  9306. return '凌晨';
  9307. } else if (hm < 900) {
  9308. return '早上';
  9309. } else if (hm < 1130) {
  9310. return '上午';
  9311. } else if (hm < 1230) {
  9312. return '中午';
  9313. } else if (hm < 1800) {
  9314. return '下午';
  9315. } else {
  9316. return '晚上';
  9317. }
  9318. },
  9319. calendar : {
  9320. sameDay : '[今天]LT',
  9321. nextDay : '[明天]LT',
  9322. nextWeek : '[下]ddddLT',
  9323. lastDay : '[昨天]LT',
  9324. lastWeek : '[上]ddddLT',
  9325. sameElse : 'L'
  9326. },
  9327. dayOfMonthOrdinalParse: /\d{1,2}(日|月|周)/,
  9328. ordinal : function (number, period) {
  9329. switch (period) {
  9330. case 'd':
  9331. case 'D':
  9332. case 'DDD':
  9333. return number + '日';
  9334. case 'M':
  9335. return number + '月';
  9336. case 'w':
  9337. case 'W':
  9338. return number + '周';
  9339. default:
  9340. return number;
  9341. }
  9342. },
  9343. relativeTime : {
  9344. future : '%s内',
  9345. past : '%s前',
  9346. s : '几秒',
  9347. ss : '%d 秒',
  9348. m : '1 分钟',
  9349. mm : '%d 分钟',
  9350. h : '1 小时',
  9351. hh : '%d 小时',
  9352. d : '1 天',
  9353. dd : '%d 天',
  9354. M : '1 个月',
  9355. MM : '%d 个月',
  9356. y : '1 年',
  9357. yy : '%d 年'
  9358. },
  9359. week : {
  9360. // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
  9361. dow : 1, // Monday is the first day of the week.
  9362. doy : 4 // The week that contains Jan 4th is the first week of the year.
  9363. }
  9364. });
  9365. //! moment.js locale configuration
  9366. moment.defineLocale('zh-hk', {
  9367. months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
  9368. monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  9369. weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
  9370. weekdaysShort : '週日_週一_週二_週三_週四_週五_週六'.split('_'),
  9371. weekdaysMin : '日_一_二_三_四_五_六'.split('_'),
  9372. longDateFormat : {
  9373. LT : 'HH:mm',
  9374. LTS : 'HH:mm:ss',
  9375. L : 'YYYY/MM/DD',
  9376. LL : 'YYYY年M月D日',
  9377. LLL : 'YYYY年M月D日 HH:mm',
  9378. LLLL : 'YYYY年M月D日dddd HH:mm',
  9379. l : 'YYYY/M/D',
  9380. ll : 'YYYY年M月D日',
  9381. lll : 'YYYY年M月D日 HH:mm',
  9382. llll : 'YYYY年M月D日dddd HH:mm'
  9383. },
  9384. meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
  9385. meridiemHour : function (hour, meridiem) {
  9386. if (hour === 12) {
  9387. hour = 0;
  9388. }
  9389. if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {
  9390. return hour;
  9391. } else if (meridiem === '中午') {
  9392. return hour >= 11 ? hour : hour + 12;
  9393. } else if (meridiem === '下午' || meridiem === '晚上') {
  9394. return hour + 12;
  9395. }
  9396. },
  9397. meridiem : function (hour, minute, isLower) {
  9398. var hm = hour * 100 + minute;
  9399. if (hm < 600) {
  9400. return '凌晨';
  9401. } else if (hm < 900) {
  9402. return '早上';
  9403. } else if (hm < 1130) {
  9404. return '上午';
  9405. } else if (hm < 1230) {
  9406. return '中午';
  9407. } else if (hm < 1800) {
  9408. return '下午';
  9409. } else {
  9410. return '晚上';
  9411. }
  9412. },
  9413. calendar : {
  9414. sameDay : '[今天]LT',
  9415. nextDay : '[明天]LT',
  9416. nextWeek : '[下]ddddLT',
  9417. lastDay : '[昨天]LT',
  9418. lastWeek : '[上]ddddLT',
  9419. sameElse : 'L'
  9420. },
  9421. dayOfMonthOrdinalParse: /\d{1,2}(日|月|週)/,
  9422. ordinal : function (number, period) {
  9423. switch (period) {
  9424. case 'd' :
  9425. case 'D' :
  9426. case 'DDD' :
  9427. return number + '日';
  9428. case 'M' :
  9429. return number + '月';
  9430. case 'w' :
  9431. case 'W' :
  9432. return number + '週';
  9433. default :
  9434. return number;
  9435. }
  9436. },
  9437. relativeTime : {
  9438. future : '%s內',
  9439. past : '%s前',
  9440. s : '幾秒',
  9441. ss : '%d 秒',
  9442. m : '1 分鐘',
  9443. mm : '%d 分鐘',
  9444. h : '1 小時',
  9445. hh : '%d 小時',
  9446. d : '1 天',
  9447. dd : '%d 天',
  9448. M : '1 個月',
  9449. MM : '%d 個月',
  9450. y : '1 年',
  9451. yy : '%d 年'
  9452. }
  9453. });
  9454. //! moment.js locale configuration
  9455. moment.defineLocale('zh-tw', {
  9456. months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
  9457. monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  9458. weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
  9459. weekdaysShort : '週日_週一_週二_週三_週四_週五_週六'.split('_'),
  9460. weekdaysMin : '日_一_二_三_四_五_六'.split('_'),
  9461. longDateFormat : {
  9462. LT : 'HH:mm',
  9463. LTS : 'HH:mm:ss',
  9464. L : 'YYYY/MM/DD',
  9465. LL : 'YYYY年M月D日',
  9466. LLL : 'YYYY年M月D日 HH:mm',
  9467. LLLL : 'YYYY年M月D日dddd HH:mm',
  9468. l : 'YYYY/M/D',
  9469. ll : 'YYYY年M月D日',
  9470. lll : 'YYYY年M月D日 HH:mm',
  9471. llll : 'YYYY年M月D日dddd HH:mm'
  9472. },
  9473. meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
  9474. meridiemHour : function (hour, meridiem) {
  9475. if (hour === 12) {
  9476. hour = 0;
  9477. }
  9478. if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {
  9479. return hour;
  9480. } else if (meridiem === '中午') {
  9481. return hour >= 11 ? hour : hour + 12;
  9482. } else if (meridiem === '下午' || meridiem === '晚上') {
  9483. return hour + 12;
  9484. }
  9485. },
  9486. meridiem : function (hour, minute, isLower) {
  9487. var hm = hour * 100 + minute;
  9488. if (hm < 600) {
  9489. return '凌晨';
  9490. } else if (hm < 900) {
  9491. return '早上';
  9492. } else if (hm < 1130) {
  9493. return '上午';
  9494. } else if (hm < 1230) {
  9495. return '中午';
  9496. } else if (hm < 1800) {
  9497. return '下午';
  9498. } else {
  9499. return '晚上';
  9500. }
  9501. },
  9502. calendar : {
  9503. sameDay : '[今天] LT',
  9504. nextDay : '[明天] LT',
  9505. nextWeek : '[下]dddd LT',
  9506. lastDay : '[昨天] LT',
  9507. lastWeek : '[上]dddd LT',
  9508. sameElse : 'L'
  9509. },
  9510. dayOfMonthOrdinalParse: /\d{1,2}(日|月|週)/,
  9511. ordinal : function (number, period) {
  9512. switch (period) {
  9513. case 'd' :
  9514. case 'D' :
  9515. case 'DDD' :
  9516. return number + '日';
  9517. case 'M' :
  9518. return number + '月';
  9519. case 'w' :
  9520. case 'W' :
  9521. return number + '週';
  9522. default :
  9523. return number;
  9524. }
  9525. },
  9526. relativeTime : {
  9527. future : '%s內',
  9528. past : '%s前',
  9529. s : '幾秒',
  9530. ss : '%d 秒',
  9531. m : '1 分鐘',
  9532. mm : '%d 分鐘',
  9533. h : '1 小時',
  9534. hh : '%d 小時',
  9535. d : '1 天',
  9536. dd : '%d 天',
  9537. M : '1 個月',
  9538. MM : '%d 個月',
  9539. y : '1 年',
  9540. yy : '%d 年'
  9541. }
  9542. });
  9543. moment.locale('en');
  9544. return moment;
  9545. })));