123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
- <!-- Copyright © 1991-2013 Unicode, Inc.
- CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
- For terms of use, see http://www.unicode.org/copyright.html
- -->
- <ldml>
- <identity>
- <version number="$Revision: 9876 $"/>
- <generation date="$Date: 2014-03-05 23:14:25 -0600 (Wed, 05 Mar 2014) $"/>
- <language type="ne"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>{0}, {1}</localeSeparator>
- <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
- </localeDisplayPattern>
- <languages>
- <language type="ab">अब्खाजियाली</language>
- <language type="af">अफ्रिकान्स</language>
- <language type="am">अम्हारिक</language>
- <language type="ar">अरबी</language>
- <language type="ar_001">अधुनिक प्रमाणिक अरबी</language>
- <language type="as">आसामी</language>
- <language type="az">अजरबैजानी</language>
- <language type="be">वेलारूसी</language>
- <language type="bg">बुल्गेरियाली</language>
- <language type="bn">बंगाली</language>
- <language type="bo">तिब्बती</language>
- <language type="bs">बोस्नियाली</language>
- <language type="ca">क्याटालन</language>
- <language type="cs">चेक</language>
- <language type="cy">वेल्श</language>
- <language type="da">डेनिश</language>
- <language type="de">जर्मन</language>
- <language type="de_AT">अष्ट्रियन जर्मन</language>
- <language type="de_CH">स्वीस हाई जर्मन</language>
- <language type="el">ग्रीक</language>
- <language type="en">अंग्रेजी</language>
- <language type="en_AU">अष्ट्रेलियाली अंग्रेजी</language>
- <language type="en_CA">क्यानाडाली अंग्रेजी</language>
- <language type="en_GB">वेलायती अंग्रेजी</language>
- <language type="en_GB" alt="short">वेलायती अंग्रेजी</language>
- <language type="en_US">अमेरिकी अंग्रेजी</language>
- <language type="en_US" alt="short">अमेरिकी अंग्रेजी</language>
- <language type="eo">एस्पेरान्तो</language>
- <language type="es">स्पेनिस</language>
- <language type="es_419">ल्याटिन अमेरिकी स्पेनिस</language>
- <language type="es_ES">युरोपेली स्पेनिस</language>
- <language type="es_MX">स्पेनिस (मेक्सिकन)</language>
- <language type="et">इस्टोनियाली</language>
- <language type="eu">बास्क</language>
- <language type="fa">फारसी</language>
- <language type="fi">फिनिश</language>
- <language type="fil">फिलिपिनी</language>
- <language type="fj">फिजियाली</language>
- <language type="fo">फारोज</language>
- <language type="fr">फ्रान्सेली</language>
- <language type="fr_CA">क्यानाडाली फ्रान्सेली</language>
- <language type="fr_CH">स्वीस फ्रान्सेली</language>
- <language type="fy">फ्रिजीयन</language>
- <language type="ga">आइरिश</language>
- <language type="gd" draft="unconfirmed">स्कट्स गाएलिक</language>
- <language type="gl">गलिसियाली</language>
- <language type="gn">गुजरानी</language>
- <language type="gsw">स्वीस जर्मन</language>
- <language type="gu">गुजराती</language>
- <language type="ha">हाउसा</language>
- <language type="haw">हवाइयन</language>
- <language type="he">हिब्रु</language>
- <language type="hi">हिन्दी</language>
- <language type="hr">क्रोएशियाली</language>
- <language type="ht">हैटियाली</language>
- <language type="hu">हंग्रीयाली</language>
- <language type="hy">आर्मेनियाली</language>
- <language type="ia" draft="unconfirmed">इन्टर्लिङ्गुआ</language>
- <language type="id">इन्डोनेसियाली</language>
- <language type="ie" draft="unconfirmed">अन्तरभाषी</language>
- <language type="ig">इग्बो</language>
- <language type="is">आइसल्यान्डिक</language>
- <language type="it">इटालियन</language>
- <language type="ja">जापानी</language>
- <language type="jv">जाभानिज</language>
- <language type="ka">जर्जियाली</language>
- <language type="kk">काजाख</language>
- <language type="km">खमेर</language>
- <language type="kn">कन्नाडा</language>
- <language type="ko">कोरियाली</language>
- <language type="ks">काश्मीरी</language>
- <language type="ku">कुर्दिश</language>
- <language type="ky">किर्गिज</language>
- <language type="la">ल्याटिन</language>
- <language type="lb">लक्जेम्बर्गिस</language>
- <language type="ln" draft="unconfirmed">लिंगाला</language>
- <language type="lo">लाओ</language>
- <language type="lt">लिथुआनियाली</language>
- <language type="lv">लात्भियाली</language>
- <language type="mg">मलागासी</language>
- <language type="mi">माओरी</language>
- <language type="mk">म्याकेडोनियन</language>
- <language type="ml">मलयालम</language>
- <language type="mn" draft="unconfirmed">मंगोल</language>
- <language type="mr">मराठी</language>
- <language type="ms">मलाया</language>
- <language type="mt">माल्टिज</language>
- <language type="my">वर्मेली</language>
- <language type="nb">नर्वेली बोकमाल</language>
- <language type="ne">नेपाली</language>
- <language type="nl">डच</language>
- <language type="nl_BE">फ्लेमिश</language>
- <language type="nn">नर्वेली नाइनोर्स्क</language>
- <language type="no" draft="unconfirmed">नर्वेजियाली</language>
- <language type="oc" draft="unconfirmed">अक्सिटन</language>
- <language type="or">ओरिया</language>
- <language type="pa">पंजाबी</language>
- <language type="pl">पोलिश</language>
- <language type="ps">पाश्तो</language>
- <language type="pt">पोर्तुगी</language>
- <language type="pt_PT">पोर्तुगी (युरोप)</language>
- <language type="qu">क्वेचुवा</language>
- <language type="rm">रोमानिश</language>
- <language type="ro">रोमानियाली</language>
- <language type="ru">रूसी</language>
- <language type="sa">संस्कृत</language>
- <language type="sd">सिन्धी</language>
- <language type="si">सिन्हाला</language>
- <language type="sk">स्लोभाकियाली</language>
- <language type="sl">स्लोभेनियाली</language>
- <language type="so">सोमाली</language>
- <language type="sq">अल्बेनियन</language>
- <language type="sr">सर्बियाली</language>
- <language type="su">सुडानी</language>
- <language type="sv">स्विडिश</language>
- <language type="sw">स्वाहिली</language>
- <language type="ta">तामिल</language>
- <language type="te">तेलुगु</language>
- <language type="tg">ताजिक</language>
- <language type="th">थाई</language>
- <language type="ti">तिग्रीन्या</language>
- <language type="tk">टर्कमेन</language>
- <language type="tlh" draft="unconfirmed">क्लिङ्गन</language>
- <language type="to">टोङ्गन</language>
- <language type="tr">टर्किश</language>
- <language type="tt">तातार</language>
- <language type="ug">उइघुर</language>
- <language type="uk">युक्रेनी</language>
- <language type="und">अज्ञात भाषा</language>
- <language type="ur">उर्दु</language>
- <language type="uz">उज्बेकी</language>
- <language type="vi">भियतनामी</language>
- <language type="wo">वुलुफ</language>
- <language type="xh">खोसा</language>
- <language type="yi" draft="unconfirmed">यिद्दिस</language>
- <language type="yo">योरूवा</language>
- <language type="zgh">प्रमाणिक मोरोक्कोन तामाज्ईट</language>
- <language type="zh">चिनियाँ</language>
- <language type="zh_Hans">सरलिकृत चिनियाँ</language>
- <language type="zh_Hant">परम्परागत चिनियाँ</language>
- <language type="zu">जुलु</language>
- <language type="zxx">भाषिक सामग्री छैन</language>
- </languages>
- <scripts>
- <script type="Arab">अरबी</script>
- <script type="Armi" draft="contributed">आर्मी</script>
- <script type="Armn">आर्मेनियाली</script>
- <script type="Avst" draft="contributed">आभेस्टान</script>
- <script type="Bali" draft="contributed">बाली</script>
- <script type="Batk" draft="contributed">बाटक</script>
- <script type="Beng">बङ्गाली</script>
- <script type="Blis" draft="contributed">ब्लिजसिम्बोल्स</script>
- <script type="Bopo">बोपोमोफो</script>
- <script type="Brah" draft="contributed">ब्राह्मी</script>
- <script type="Brai">ब्रेल</script>
- <script type="Bugi" draft="contributed">बुगिनिज</script>
- <script type="Buhd" draft="contributed">बुहिद</script>
- <script type="Cakm" draft="contributed">काक्म्</script>
- <script type="Cari" draft="contributed">कारियन</script>
- <script type="Cham" draft="contributed">चाम</script>
- <script type="Cher" draft="contributed">चेरोकी</script>
- <script type="Cirt" draft="contributed">किर्थ</script>
- <script type="Copt" draft="contributed">कप्टिक</script>
- <script type="Cprt" draft="contributed">कप्रियट</script>
- <script type="Cyrl">सिरिलिक</script>
- <script type="Deva">देवानागरी</script>
- <script type="Dsrt" draft="contributed">डेसेरेट</script>
- <script type="Egyd" draft="contributed">इजिप्टियन डेमोटिक</script>
- <script type="Egyh" draft="contributed">इजिप्टियन हाइरटिक</script>
- <script type="Egyp" draft="contributed">इजिप्टियन हाइरोग्लिफ्स</script>
- <script type="Ethi">इथियोपिक</script>
- <script type="Geok" draft="contributed">ग्रुजियाली खुट्सुरी</script>
- <script type="Geor">जोर्जियन</script>
- <script type="Glag" draft="contributed">ग्लागोलिटिक</script>
- <script type="Goth" draft="contributed">गोथिक</script>
- <script type="Grek">ग्रीक</script>
- <script type="Gujr">गुजराती</script>
- <script type="Guru">गुरूमुखी</script>
- <script type="Hang">हान्गुल</script>
- <script type="Hani">हान</script>
- <script type="Hano" draft="contributed">हानुनु</script>
- <script type="Hans">सरलिकृत चिनी</script>
- <script type="Hans" alt="stand-alone">सरलिकृत चिनी</script>
- <script type="Hant">परम्परागत चिनी</script>
- <script type="Hant" alt="stand-alone">परम्परागत चिनी</script>
- <script type="Hebr">हिब्रु</script>
- <script type="Hira">हिरागना</script>
- <script type="Hmng" draft="contributed">पहावह हमोङ्ग</script>
- <script type="Hrkt" draft="contributed">काताकाना वा हिरागाना</script>
- <script type="Hung" draft="contributed">पुरानो हङ्गेरियाली</script>
- <script type="Inds" draft="contributed">इन्दुस</script>
- <script type="Ital" draft="contributed">पुरानो इटालिक</script>
- <script type="Java" draft="contributed">जाभानी</script>
- <script type="Jpan">जापानी</script>
- <script type="Kali" draft="contributed">कायाहली</script>
- <script type="Kana">काताकाना</script>
- <script type="Khar" draft="contributed">खारोस्थिति</script>
- <script type="Khmr">खमेर</script>
- <script type="Knda">कान्नाडा</script>
- <script type="Kore">कोरियन</script>
- <script type="Kthi" draft="contributed">क्थी</script>
- <script type="Lana" draft="contributed">लान्ना</script>
- <script type="Laoo">लाओ</script>
- <script type="Latf" draft="contributed">फ्राक्टुर ल्याटिन</script>
- <script type="Latg" draft="contributed">ग्यालिक ल्याटिन</script>
- <script type="Latn">ल्याटिन</script>
- <script type="Lepc" draft="contributed">लेप्चा</script>
- <script type="Limb" draft="contributed">लिम्बु</script>
- <script type="Lyci" draft="contributed">लाइसियन</script>
- <script type="Lydi" draft="contributed">लाइडियन</script>
- <script type="Mand" draft="contributed">मान्डाएन</script>
- <script type="Mani" draft="contributed">मानिकाएन</script>
- <script type="Maya" draft="contributed">माया हाइरोग्लिफ्स</script>
- <script type="Mero" draft="contributed">मेरियोटिक</script>
- <script type="Mlym">मलायालम</script>
- <script type="Mong">मङ्गोल</script>
- <script type="Moon" draft="contributed">जून</script>
- <script type="Mtei" draft="contributed">माइटेइ मायेक</script>
- <script type="Mymr">म्यान्मार</script>
- <script type="Nkoo" draft="contributed">एन्को</script>
- <script type="Ogam" draft="contributed">ओघाम</script>
- <script type="Olck" draft="contributed">ओलचिकी</script>
- <script type="Orkh" draft="contributed">ओर्खोन</script>
- <script type="Orya">ओडिया</script>
- <script type="Osma" draft="contributed">ओस्मान्या</script>
- <script type="Perm" draft="contributed">पुरानो पर्मिक</script>
- <script type="Phag" draft="contributed">फाग्स-पा</script>
- <script type="Phli" draft="contributed">फ्लि</script>
- <script type="Phlp" draft="contributed">फ्ल्प</script>
- <script type="Phlv" draft="contributed">बुक पहल्भी</script>
- <script type="Phnx" draft="contributed">फोनिसियन</script>
- <script type="Plrd" draft="contributed">पोल्लार्ड फोनेटिक</script>
- <script type="Prti" draft="contributed">पिआरटी</script>
- <script type="Rjng" draft="contributed">रेजाङ</script>
- <script type="Roro" draft="contributed">रोङ्गोरोङ्गो</script>
- <script type="Runr" draft="contributed">रूनिक</script>
- <script type="Samr" draft="contributed">समारिटन</script>
- <script type="Sara" draft="contributed">सारती</script>
- <script type="Saur" draft="contributed">सौराष्ट्र</script>
- <script type="Sgnw" draft="contributed">साइनराइटिङ</script>
- <script type="Shaw" draft="contributed">शाभियन</script>
- <script type="Sinh">सिन्हाला</script>
- <script type="Sund" draft="contributed">सुडानी</script>
- <script type="Sylo" draft="contributed">स्ल्योटी नाग्री</script>
- <script type="Syrc" draft="contributed">सिरियाक</script>
- <script type="Syre" draft="contributed">इस्ट्रेनजेलो सिरियाक</script>
- <script type="Syrj" draft="contributed">पश्चिमी सिरियाक</script>
- <script type="Syrn" draft="contributed">पूर्वी सिरियाक</script>
- <script type="Tagb" draft="contributed">टाग्वान्वा</script>
- <script type="Tale" draft="contributed">टाइले</script>
- <script type="Talu" draft="contributed">न्यू टाइ लुइ</script>
- <script type="Taml">तामिल</script>
- <script type="Tavt" draft="contributed">टाभ्ट</script>
- <script type="Telu">तेलेगु</script>
- <script type="Teng" draft="contributed">टेङ्वार</script>
- <script type="Tfng" draft="contributed">टिफिनाघ</script>
- <script type="Tglg" draft="contributed">टागालोग</script>
- <script type="Thaa">थाना</script>
- <script type="Thai">थाई</script>
- <script type="Tibt">तिब्बती</script>
- <script type="Ugar" draft="contributed">युगारिटिक</script>
- <script type="Vaii" draft="contributed">भाइ</script>
- <script type="Visp" draft="contributed">दृश्यमय वाणी</script>
- <script type="Xpeo" draft="contributed">पुरानो पर्सियन</script>
- <script type="Yiii" draft="contributed">यी</script>
- <script type="Zinh" draft="contributed">इन्हेरिटेड</script>
- <script type="Zmth" draft="contributed">जमथ</script>
- <script type="Zsym">प्रतीकहरू</script>
- <script type="Zxxx">नलेखिएको</script>
- <script type="Zyyy">साझा</script>
- <script type="Zzzz">अज्ञात लिपि</script>
- </scripts>
- <territories>
- <territory type="001">विश्व</territory>
- <territory type="002">अफ्रिका</territory>
- <territory type="003">उत्तर अमेरिका</territory>
- <territory type="005">दक्षिण अमेरिका</territory>
- <territory type="009">ओसनिया</territory>
- <territory type="011">पश्चिमी अफ्रिका</territory>
- <territory type="013">केन्द्रीय अमेरिका</territory>
- <territory type="014">पूर्वी अफ्रिका</territory>
- <territory type="015">उत्तरी अफ्रिका</territory>
- <territory type="017">मध्य अफ्रिका</territory>
- <territory type="018">दक्षिणी अफ्रिका</territory>
- <territory type="019">अमेरिकास</territory>
- <territory type="021">उत्तरी अमेरिका</territory>
- <territory type="029">क्यारिबियन</territory>
- <territory type="030">पूर्वी एशिया</territory>
- <territory type="034">दक्षिणी एशिया</territory>
- <territory type="035">दक्षिण पूर्वी एशिया</territory>
- <territory type="039">दक्षिणी युरोप</territory>
- <territory type="053">अष्ट्रालासिया</territory>
- <territory type="054">मेलानेसिया</territory>
- <territory type="057">माइक्रोनेसियाली क्षेत्र</territory>
- <territory type="061">पोलिनेशिया</territory>
- <territory type="142">एशिया</territory>
- <territory type="143">केन्द्रीय एशिया</territory>
- <territory type="145">पश्चिमी एशिया</territory>
- <territory type="150">युरोप</territory>
- <territory type="151">पूर्वी युरोप</territory>
- <territory type="154">उत्तरी युरोप</territory>
- <territory type="155">पश्चिमी युरोप</territory>
- <territory type="419">ल्याटिन अमेरिका</territory>
- <territory type="AC">एस्केन्सन टापु</territory>
- <territory type="AD">अन्डोर्रा</territory>
- <territory type="AE">संयुक्त अरब इमिराट्स</territory>
- <territory type="AF">अफगानिस्तान</territory>
- <territory type="AG">एन्टिगुआ र बारबुडा</territory>
- <territory type="AI">आङ्गुइला</territory>
- <territory type="AL">अल्बानिया</territory>
- <territory type="AM">आर्मेनिया</territory>
- <territory type="AN" draft="contributed">नेदरल्याण्ड्स एण्टिलिस</territory>
- <territory type="AO">अङ्गोला</territory>
- <territory type="AQ">अन्टारतिका</territory>
- <territory type="AR">अर्जेन्टिना</territory>
- <territory type="AS">अमेरिकी समोआ</territory>
- <territory type="AT">अष्ट्रिया</territory>
- <territory type="AU">अष्ट्रेलिया</territory>
- <territory type="AW">आरूबा</territory>
- <territory type="AX">अलान्ड टापुहरु</territory>
- <territory type="AZ">अजरबैजान</territory>
- <territory type="BA">बोस्निया एण्ड हर्जगोभिनिया</territory>
- <territory type="BB">बार्बाडोस</territory>
- <territory type="BD">बङ्गलादेश</territory>
- <territory type="BE">बेल्जियम</territory>
- <territory type="BF">बर्किना फासो</territory>
- <territory type="BG">बुल्गेरिया</territory>
- <territory type="BH">बहराइन</territory>
- <territory type="BI">बुरूण्डी</territory>
- <territory type="BJ">बेनिन</territory>
- <territory type="BL">सेन्ट बार्थालेमी</territory>
- <territory type="BM">बर्मुडा</territory>
- <territory type="BN">ब्रुनाइ</territory>
- <territory type="BO">बोलिभिया</territory>
- <territory type="BQ">क्यारिवियन नेदरल्याण्ड्स</territory>
- <territory type="BR">ब्राजिल</territory>
- <territory type="BS">बहामास</territory>
- <territory type="BT">भुटान</territory>
- <territory type="BV">बुभेट टापु</territory>
- <territory type="BW">बोट्स्वाना</territory>
- <territory type="BY">बेलारूस</territory>
- <territory type="BZ">बेलिज</territory>
- <territory type="CA">क्यानाडा</territory>
- <territory type="CC">कोकोस (किलिंग) टापुहरु</territory>
- <territory type="CD">कोङ्गो-किन्शासा</territory>
- <territory type="CD" alt="variant">कङ्गो (डीआर्सी)</territory>
- <territory type="CF">केन्द्रीय अफ्रिकी गणतन्त्र</territory>
- <territory type="CG">कोङ्गो - ब्राज्जाभिल्ले</territory>
- <territory type="CG" alt="variant">कङ्गो (गणतन्त्र)</territory>
- <territory type="CH">स्विजरल्याण्ड</territory>
- <territory type="CI">आइभरी कोस्ट</territory>
- <territory type="CK">कुक टापुहरु</territory>
- <territory type="CL">चिली</territory>
- <territory type="CM">क्यामरून</territory>
- <territory type="CN">चीन</territory>
- <territory type="CO">कोलोम्बिया</territory>
- <territory type="CP">क्लिप्पेर्टन टापु</territory>
- <territory type="CR">कोष्टारिका</territory>
- <territory type="CU">क्युबा</territory>
- <territory type="CV">केप भर्डे</territory>
- <territory type="CW">कुराकाओ</territory>
- <territory type="CX">क्रिष्टमस टापु</territory>
- <territory type="CY">साइप्रस</territory>
- <territory type="CZ">चेक गणतन्त्र</territory>
- <territory type="DE">जर्मनी</territory>
- <territory type="DG">डियगो गार्सिया</territory>
- <territory type="DJ">डिजिबुटी</territory>
- <territory type="DK">डेनमार्क</territory>
- <territory type="DM">डोमिनिका</territory>
- <territory type="DO">डोमिनिकन गणतन्त्र</territory>
- <territory type="DZ">अल्जेरिया</territory>
- <territory type="EA">सिउटा र मेलिला</territory>
- <territory type="EC">इक्वडेर</territory>
- <territory type="EE">इस्टोनिया</territory>
- <territory type="EG">इजिप्ट</territory>
- <territory type="EH">पश्चिमी साहारा</territory>
- <territory type="ER">एरित्रिया</territory>
- <territory type="ES">स्पेन</territory>
- <territory type="ET">इथियोपिया</territory>
- <territory type="EU">युरोपियन युनियन</territory>
- <territory type="FI">फिन्ल्याण्ड</territory>
- <territory type="FJ">फिजी</territory>
- <territory type="FK">फकल्याण्ड टापुहरु</territory>
- <territory type="FK" alt="variant">फक्ल्याण्ड टापुहरू (इज्लास माल्भिनास)</territory>
- <territory type="FM">माइक्रोनेसिया</territory>
- <territory type="FO">फारोर टापुहरु</territory>
- <territory type="FR">फ्रान्स</territory>
- <territory type="GA">गावोन</territory>
- <territory type="GB">बेलायत</territory>
- <territory type="GB" alt="short">बेलायत</territory>
- <territory type="GD">ग्रेनाडा</territory>
- <territory type="GE">जर्जिया</territory>
- <territory type="GF">फ्रान्सेली गायना</territory>
- <territory type="GG">गुएर्नसे</territory>
- <territory type="GH">घाना</territory>
- <territory type="GI">जिब्राल्टार</territory>
- <territory type="GL">ग्रिनल्याण्ड</territory>
- <territory type="GM">गाम्विया</territory>
- <territory type="GN">गिनी</territory>
- <territory type="GP">ग्वाडेलुप</territory>
- <territory type="GQ">भू-मध्यीय गिनी</territory>
- <territory type="GR">ग्रिस</territory>
- <territory type="GS">दक्षिण जर्जिया र दक्षिण स्यान्डवीच टापुहरू</territory>
- <territory type="GT">ग्वाटेमाला</territory>
- <territory type="GU">गुवाम</territory>
- <territory type="GW">गिनी-बिसाउ</territory>
- <territory type="GY">गुयाना</territory>
- <territory type="HK">हङकङ चिनिया समाजवादी स्वायत्त क्षेत्र</territory>
- <territory type="HK" alt="short">हङकङ</territory>
- <territory type="HM">हर्ड टापु एण्ड म्याकडोनाल्ड टापुहरु</territory>
- <territory type="HN">हन्डुरास</territory>
- <territory type="HR">क्रोएशिया</territory>
- <territory type="HT">हैटी</territory>
- <territory type="HU">हङ्गेरी</territory>
- <territory type="IC">क्यानारी टापुहरू</territory>
- <territory type="ID">इन्डोनेशिया</territory>
- <territory type="IE">आयरल्याण्ड</territory>
- <territory type="IL">इजरायल</territory>
- <territory type="IM">आइज्ले अफ् म्यान</territory>
- <territory type="IN">भारत</territory>
- <territory type="IO">बेलायती हिन्द महासागर क्षेत्र</territory>
- <territory type="IQ">इराक</territory>
- <territory type="IR">इरान</territory>
- <territory type="IS">आइस्ल्याण्ड</territory>
- <territory type="IT">इटाली</territory>
- <territory type="JE">जर्सी</territory>
- <territory type="JM">जमाइका</territory>
- <territory type="JO">जोर्डन</territory>
- <territory type="JP">जापान</territory>
- <territory type="KE">केन्या</territory>
- <territory type="KG">किर्गिस्थान</territory>
- <territory type="KH">कम्बोडिया</territory>
- <territory type="KI">किरिबाटी</territory>
- <territory type="KM">कोमोरोस</territory>
- <territory type="KN">सेन्ट किट्स र नेभिस</territory>
- <territory type="KP">उत्तर कोरिया</territory>
- <territory type="KR">दक्षिण कोरिया</territory>
- <territory type="KW">कुवेत</territory>
- <territory type="KY">केयमान टापु</territory>
- <territory type="KZ">काजाकस्तान</territory>
- <territory type="LA">लाओस</territory>
- <territory type="LB">लेबनन</territory>
- <territory type="LC">सेन्ट लुसिया</territory>
- <territory type="LI">लिएखटेन्स्टाइन</territory>
- <territory type="LK">श्रीलङ्का</territory>
- <territory type="LR">लाइबेरिया</territory>
- <territory type="LS">लेसोथो</territory>
- <territory type="LT">लिथुअनिया</territory>
- <territory type="LU">लक्जेमबर्ग</territory>
- <territory type="LV">लाट्भिया</territory>
- <territory type="LY">लिबिया</territory>
- <territory type="MA">मोरोक्को</territory>
- <territory type="MC">मोनाको</territory>
- <territory type="MD">माल्डोभा</territory>
- <territory type="ME">मोन्टेनेग्रो</territory>
- <territory type="MF">सेन्ट मार्टिन</territory>
- <territory type="MG">मडागास्कर</territory>
- <territory type="MH">मार्शल टापुहरु</territory>
- <territory type="MK">म्याकेडोनिया</territory>
- <territory type="MK" alt="variant">म्याकेडोनिया (फाइरम)</territory>
- <territory type="ML">माली</territory>
- <territory type="MM">म्यान्मार (बर्मा)</territory>
- <territory type="MN">मङ्गोलिया</territory>
- <territory type="MO">मकावो चिनिँया स्वशासित क्षेत्र</territory>
- <territory type="MO" alt="short">मकावो</territory>
- <territory type="MP">उत्तरी मारिआना टापु</territory>
- <territory type="MQ">मार्टिनिक</territory>
- <territory type="MR">माउरिटानिया</territory>
- <territory type="MS">मोन्टसेर्राट</territory>
- <territory type="MT">माल्टा</territory>
- <territory type="MU">माउरिटस</territory>
- <territory type="MV">माल्दिभ्स</territory>
- <territory type="MW">मालावी</territory>
- <territory type="MX">मेक्सिको</territory>
- <territory type="MY">मलेसिया</territory>
- <territory type="MZ">मोजाम्बिक</territory>
- <territory type="NA">नामिबिया</territory>
- <territory type="NC">नयाँ कालेडोनिया</territory>
- <territory type="NE">नाइजर</territory>
- <territory type="NF">नोरफोल्क टापु</territory>
- <territory type="NG">नाइजेरिया</territory>
- <territory type="NI">निकारागुवा</territory>
- <territory type="NL">नेदरल्याण्ड्स</territory>
- <territory type="NO">नर्वे</territory>
- <territory type="NP">नेपाल</territory>
- <territory type="NR">नाउरू</territory>
- <territory type="NU">नियुइ</territory>
- <territory type="NZ">न्युजिल्याण्ड</territory>
- <territory type="OM">ओमन</territory>
- <territory type="PA">पनामा</territory>
- <territory type="PE">पेरू</territory>
- <territory type="PF">फ्रान्सेली पोलिनेसिया</territory>
- <territory type="PG">पपुआ न्यू गाइनिया</territory>
- <territory type="PH">फिलिपिन्स</territory>
- <territory type="PK">पाकिस्तान</territory>
- <territory type="PL">पोल्याण्ड</territory>
- <territory type="PM">सेन्ट पिर्रे र मिक्केलोन</territory>
- <territory type="PN">पिटकाइर्न टापुहरु</territory>
- <territory type="PR">पुएर्टो रिको</territory>
- <territory type="PS">प्यालेस्टनी भू-भागहरु</territory>
- <territory type="PS" alt="short">प्यालेसटाइन</territory>
- <territory type="PT">पोर्चुगल</territory>
- <territory type="PW">पलाउ</territory>
- <territory type="PY">प्याराग्वे</territory>
- <territory type="QA">कतार</territory>
- <territory type="QO">बाह्य ओसनिया</territory>
- <territory type="RE">रियुनियन</territory>
- <territory type="RO">रोमानिया</territory>
- <territory type="RS">सर्बिया</territory>
- <territory type="RU">रूस</territory>
- <territory type="RW">रवाण्डा</territory>
- <territory type="SA">साउदी अरब</territory>
- <territory type="SB">सोलोमोन टापुहरु</territory>
- <territory type="SC">सेचेलेस</territory>
- <territory type="SD">सुडान</territory>
- <territory type="SE">स्विडेन</territory>
- <territory type="SG">सिङ्गापुर</territory>
- <territory type="SH">सेन्ट हेलेना</territory>
- <territory type="SI">स्लोभेनिया</territory>
- <territory type="SJ">सभाल्बार्ड र जान मायेन</territory>
- <territory type="SK">स्लोभाकिया</territory>
- <territory type="SL">सिएर्रा लिओन</territory>
- <territory type="SM">सान् मारिनो</territory>
- <territory type="SN">सेनेगाल</territory>
- <territory type="SO">सोमालिया</territory>
- <territory type="SR">सुरिनेम</territory>
- <territory type="SS">दक्षिणी सुडान</territory>
- <territory type="ST">साओ टोमे र प्रिन्सिप</territory>
- <territory type="SV">एल् साल्भाडोर</territory>
- <territory type="SX">सिन्ट मार्टेन</territory>
- <territory type="SY">सिरिया</territory>
- <territory type="SZ">स्वाजिल्याण्ड</territory>
- <territory type="TA">ट्रिस्टान डा कुन्हा</territory>
- <territory type="TC">तुर्क र काइकोस टापु</territory>
- <territory type="TD">चाड</territory>
- <territory type="TF">फ्रान्सेली दक्षिणी क्षेत्रहरु</territory>
- <territory type="TG">टोगो</territory>
- <territory type="TH">थाइल्याण्ड</territory>
- <territory type="TJ">ताजिकिस्तान</territory>
- <territory type="TK">तोकेलाउ</territory>
- <territory type="TL">टिमोर-लेस्टे</territory>
- <territory type="TL" alt="variant">पृर्वी टीमोर</territory>
- <territory type="TM">तुर्कमेनिस्तान</territory>
- <territory type="TN">ट्युनिसिया</territory>
- <territory type="TO">टोंगा</territory>
- <territory type="TR">टर्की</territory>
- <territory type="TT">त्रिनिडाड एण्ड टोबागो</territory>
- <territory type="TV">तुभालु</territory>
- <territory type="TW">ताइवान</territory>
- <territory type="TZ">तान्जानिया</territory>
- <territory type="UA">युक्रेन</territory>
- <territory type="UG">युगाण्डा</territory>
- <territory type="UM">संयुक्त राज्य बाह्य टापुहरु</territory>
- <territory type="US">संयुक्त राज्य</territory>
- <territory type="US" alt="short">अमेरिका</territory>
- <territory type="UY">उरूग्वे</territory>
- <territory type="UZ">उज्बेकिस्तान</territory>
- <territory type="VA">भेटिकन सिटी</territory>
- <territory type="VC">सेन्ट भिन्सेन्ट र ग्रेनाडिन्स</territory>
- <territory type="VE">भेनेजुएला</territory>
- <territory type="VG">बेलायती भर्जिन टापुहरु</territory>
- <territory type="VI">संयुक्त राज्य भर्जिन टापुहरु</territory>
- <territory type="VN">भिएतनाम</territory>
- <territory type="VU">भानुआतु</territory>
- <territory type="WF">वालिस र फुटुना</territory>
- <territory type="WS">सामोआ</territory>
- <territory type="XK">कोसोवो</territory>
- <territory type="YE">येमेन</territory>
- <territory type="YT">मायोट्ट</territory>
- <territory type="ZA">दक्षिण अफ्रिका</territory>
- <territory type="ZM">जाम्बिया</territory>
- <territory type="ZW">जिम्बाबे</territory>
- <territory type="ZZ">अपरिचित क्षेत्र</territory>
- </territories>
- <variants>
- <variant type="AREVELA" draft="contributed">पूर्वी आर्मेनियाली</variant>
- <variant type="POSIX" draft="contributed">कम्प्युटर</variant>
- </variants>
- <keys>
- <key type="calendar">पात्रो</key>
- <key type="collation">क्रमबद्ध सुची</key>
- <key type="currency">मुद्रा</key>
- <key type="numbers">अङ्कहरू</key>
- </keys>
- <types>
- <type type="arab" key="numbers">अरबी भारतीय अङ्कहरू</type>
- <type type="arabext" key="numbers">विस्तृत अरबी भारतीय अङ्कहरू</type>
- <type type="armn" key="numbers">आर्मेनियाली अङ्कहरू</type>
- <type type="armnlow" key="numbers">आर्मनियाली साना अङ्कहरू</type>
- <type type="beng" key="numbers">बङ्गाली अङ्कहरू</type>
- <type type="big5han" key="collation" draft="contributed">परम्परागत चिनिँया क्रमबद्धता पद्दति - बिग फाइभ</type>
- <type type="buddhist" key="calendar" draft="contributed">बुद्धिष्ट पात्रो</type>
- <type type="chinese" key="calendar" draft="contributed">चिनिँया पात्रो</type>
- <type type="deva" key="numbers">देवनागरी अङ्कहरू</type>
- <type type="ducet" key="collation">पूर्वनिर्धारित युनिकोड क्रमबद्ध सूची</type>
- <type type="ethi" key="numbers">इथियोपाली अङ्कहरू</type>
- <type type="fullwide" key="numbers">पुरा चौडाईका अङ्कहरू</type>
- <type type="gb2312han" key="collation" draft="contributed">सरलिकृत चिनियाँ क्रमबद्धता पद्दति-गीबीटुथ्रीवानटु</type>
- <type type="geor" key="numbers">जर्जियाली अङ्कहरू</type>
- <type type="gregorian" key="calendar">ग्रेगोरियन पात्रो</type>
- <type type="grek" key="numbers">ग्रीक अङ्कहरू</type>
- <type type="greklow" key="numbers">ग्रीक साना अङ्कहरू</type>
- <type type="gujr" key="numbers">गुजराती अङ्कहरू</type>
- <type type="guru" key="numbers">गुरूमुखी अङ्कहरू</type>
- <type type="hanidec" key="numbers">चिनियाँ दशमलव अङ्कहरू</type>
- <type type="hans" key="numbers">सरलिकृत चिनियाँ अङ्कहरू</type>
- <type type="hansfin" key="numbers">सरलिकृत चिनियाँ वित्तीय अङ्कहरू</type>
- <type type="hant" key="numbers">परम्परागत चिनियाँ अङ्कहरू</type>
- <type type="hantfin" key="numbers">परम्परागत चिनियाँ वित्तीय अङ्कहरू</type>
- <type type="hebr" key="numbers">हिब्रु अङ्कहरू</type>
- <type type="hebrew" key="calendar" draft="contributed">हिब्रु पात्रो</type>
- <type type="indian" key="calendar" draft="contributed">भारतीय राष्ट्रिय पात्रो</type>
- <type type="islamic" key="calendar" draft="contributed">इस्लामी पात्रो</type>
- <type type="islamic-civil" key="calendar" draft="contributed">इस्लामी नागरिक पात्रो</type>
- <type type="japanese" key="calendar" draft="contributed">जापानी पात्रो</type>
- <type type="jpan" key="numbers">जापानी अङ्कहरू</type>
- <type type="jpanfin" key="numbers">जापानी वित्तीय अङ्कहरू</type>
- <type type="khmr" key="numbers">खमेर अङ्कहरू</type>
- <type type="knda" key="numbers">कन्नाडा अङ्कहरू</type>
- <type type="laoo" key="numbers">लाओ अङ्कहरू</type>
- <type type="latn" key="numbers">पश्चिमी अङ्कहरू</type>
- <type type="mlym" key="numbers">मलायलम अङ्कहरू</type>
- <type type="mymr" key="numbers">म्यान्मारका अङ्कहरू</type>
- <type type="orya" key="numbers">ओरिया अङ्कहरू</type>
- <type type="phonebook" key="collation" draft="contributed">टेलिफोन पुस्तिका क्रमबद्धतापद्दति</type>
- <type type="pinyin" key="collation" draft="contributed">पिनयिन क्रमबद्धता पद्दति</type>
- <type type="roc" key="calendar" draft="contributed">चिनिँया गणतन्त्र पात्रो</type>
- <type type="roman" key="numbers">रोमन अङ्कहरू</type>
- <type type="romanlow" key="numbers">रोमन साना केसका अङ्कहरू</type>
- <type type="search" key="collation">सामान्य खोजी</type>
- <type type="standard" key="collation">स्तर</type>
- <type type="stroke" key="collation" draft="contributed">स्ट्रोक क्रमबद्धता पद्दति</type>
- <type type="taml" key="numbers">परम्परागत तामिल अङ्कहरू</type>
- <type type="tamldec" key="numbers">तामिल अङ्कहरू</type>
- <type type="telu" key="numbers">तेलेगु अङ्कहरू</type>
- <type type="thai" key="numbers">थाई अङ्कहरू</type>
- <type type="tibt" key="numbers">तिब्बती अङ्कहरू</type>
- <type type="traditional" key="collation" draft="contributed">परम्परागत क्रमबद्धता पद्दति</type>
- </types>
- <measurementSystemNames>
- <measurementSystemName type="metric">मेट्रिक</measurementSystemName>
- <measurementSystemName type="UK">UK</measurementSystemName>
- <measurementSystemName type="US">US</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">{0}</codePattern>
- <codePattern type="script">{0}</codePattern>
- <codePattern type="territory">{0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <characters>
- <exemplarCharacters>[\u093C \u0901 \u0902 ः ॐ अ आ इ ई उ ऊ ऋ ऌ ऍ ए ऐ ऑ ओ औ क ख ग घ ङ च छ ज झ ञ ट ठ ड ढ ण त थ द ध न प फ ब भ म य र ल ळ व श ष स ह ऽ ा ि ी \u0941 \u0942 \u0943 \u0944 \u0945 \u0947 \u0948 ॉ ो ौ \u094D]</exemplarCharacters>
- <exemplarCharacters type="auxiliary">[\u200C\u200D]</exemplarCharacters>
- <exemplarCharacters type="index" draft="unconfirmed">[अ आ इ ई उ ऊ ऋ ए ऐ ओ औ क ख ग घ ङ च छ ज झ ञ ट ठ ड ढ ण त थ द ध न प फ ब भ म य र ल व श ष स ह]</exemplarCharacters>
- <ellipsis type="final">{0}…</ellipsis>
- <ellipsis type="initial">…{0}</ellipsis>
- <ellipsis type="word-final">{0} …</ellipsis>
- <ellipsis type="word-initial">… {0}</ellipsis>
- <ellipsis type="word-medial">{0} … {1}</ellipsis>
- <moreInformation>?</moreInformation>
- </characters>
- <delimiters>
- <quotationStart draft="contributed">“</quotationStart>
- <quotationEnd draft="contributed">”</quotationEnd>
- <alternateQuotationStart draft="contributed">‘</alternateQuotationStart>
- <alternateQuotationEnd draft="contributed">’</alternateQuotationEnd>
- </delimiters>
- <dates>
- <calendars>
- <calendar type="generic">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>G y MMMM d, EEEE</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>G y MMMM d</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>G y MMM d</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>GGGGG y-MM-dd</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">d, E</dateFormatItem>
- <dateFormatItem id="Gy">G y</dateFormatItem>
- <dateFormatItem id="GyMMM">G y MMM</dateFormatItem>
- <dateFormatItem id="GyMMMd">G y MMM d</dateFormatItem>
- <dateFormatItem id="GyMMMEd">G y MMM d, E</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">MM-dd</dateFormatItem>
- <dateFormatItem id="MEd">MM/dd, E</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">MMM d</dateFormatItem>
- <dateFormatItem id="MMMEd">MMM d, E</dateFormatItem>
- <dateFormatItem id="y">G y</dateFormatItem>
- <dateFormatItem id="yyyy">G y</dateFormatItem>
- <dateFormatItem id="yyyyM">GGGGG y-MM</dateFormatItem>
- <dateFormatItem id="yyyyMd">GGGGG y-MM-dd</dateFormatItem>
- <dateFormatItem id="yyyyMEd">GGGGG y-MM-dd, E</dateFormatItem>
- <dateFormatItem id="yyyyMMM">G y MMM</dateFormatItem>
- <dateFormatItem id="yyyyMMMd">G y MMM d</dateFormatItem>
- <dateFormatItem id="yyyyMMMEd">G y MMM d, E</dateFormatItem>
- <dateFormatItem id="yyyyQQQ">G y QQQ</dateFormatItem>
- <dateFormatItem id="yyyyQQQQ">G y QQQQ</dateFormatItem>
- </availableFormats>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d–d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">MM–MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">MM-dd – MM-dd</greatestDifference>
- <greatestDifference id="M">MM-dd – MM-dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">MM/dd, E – MM/dd, E</greatestDifference>
- <greatestDifference id="M">MM/dd, E – MM/dd, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">LLL–LLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">MMM d–d</greatestDifference>
- <greatestDifference id="M">MMM d – MMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">MMM d, E – MMM d, E</greatestDifference>
- <greatestDifference id="M">MMM d, E – MMM d, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">G y–y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">GGGGG y-MM – y-MM</greatestDifference>
- <greatestDifference id="y">GGGGG y-MM – y-MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">GGGGG y-MM-dd – y-MM-dd</greatestDifference>
- <greatestDifference id="M">GGGGG y-MM-dd – y-MM-dd</greatestDifference>
- <greatestDifference id="y">GGGGG y-MM-dd – y-MM-dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">GGGGG y-MM-dd, E – y-MM-dd, E</greatestDifference>
- <greatestDifference id="M">GGGGG y-MM-dd, E – y-MM-dd, E</greatestDifference>
- <greatestDifference id="y">GGGGG y-MM-dd, E – y-MM-dd, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">G y MMM–MMM</greatestDifference>
- <greatestDifference id="y">G y MMM – y MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">G y MMM d–d</greatestDifference>
- <greatestDifference id="M">G y MMM d – MMM d</greatestDifference>
- <greatestDifference id="y">G y MMM d – y MMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">G y MMM d, E – MMM d, E</greatestDifference>
- <greatestDifference id="M">G y MMM d, E – MMM d, E</greatestDifference>
- <greatestDifference id="y">G y MMM d, E – y MMM d, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">G y MMMM–MMMM</greatestDifference>
- <greatestDifference id="y">G y MMMM – y MMMM</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="gregorian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">जनवरी</month>
- <month type="2">फेब्रुअरी</month>
- <month type="3">मार्च</month>
- <month type="4">अप्रिल</month>
- <month type="5">मे</month>
- <month type="6">जुन</month>
- <month type="7">जुलाई</month>
- <month type="8">अगस्ट</month>
- <month type="9">सेप्टेम्बर</month>
- <month type="10">अक्टोबर</month>
- <month type="11">नोभेम्बर</month>
- <month type="12">डिसेम्बर</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">१</month>
- <month type="2">२</month>
- <month type="3">३</month>
- <month type="4">४</month>
- <month type="5">५</month>
- <month type="6">६</month>
- <month type="7">७</month>
- <month type="8">८</month>
- <month type="9">९</month>
- <month type="10">१०</month>
- <month type="11">११</month>
- <month type="12">१२</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">जनवरी</month>
- <month type="2">फेब्रुअरी</month>
- <month type="3">मार्च</month>
- <month type="4">अप्रिल</month>
- <month type="5">मे</month>
- <month type="6">जुन</month>
- <month type="7">जुलाई</month>
- <month type="8">अगस्ट</month>
- <month type="9">सेप्टेम्बर</month>
- <month type="10">अक्टोबर</month>
- <month type="11">नोभेम्बर</month>
- <month type="12">डिसेम्बर</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="abbreviated">
- <month type="1">जनवरी</month>
- <month type="2">फेब्रुअरी</month>
- <month type="3">मार्च</month>
- <month type="4">अप्रिल</month>
- <month type="5">मे</month>
- <month type="6">जुन</month>
- <month type="7">जुलाई</month>
- <month type="8">अगस्ट</month>
- <month type="9">सेप्टेम्बर</month>
- <month type="10">अक्टोबर</month>
- <month type="11">नोभेम्बर</month>
- <month type="12">डिसेम्बर</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">१</month>
- <month type="2">२</month>
- <month type="3">३</month>
- <month type="4">४</month>
- <month type="5">५</month>
- <month type="6">६</month>
- <month type="7">७</month>
- <month type="8">८</month>
- <month type="9">९</month>
- <month type="10">१०</month>
- <month type="11">११</month>
- <month type="12">१२</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">जनवरी</month>
- <month type="2">फेब्रुअरी</month>
- <month type="3">मार्च</month>
- <month type="4">अप्रिल</month>
- <month type="5">मे</month>
- <month type="6">जुन</month>
- <month type="7">जुलाई</month>
- <month type="8">अगस्ट</month>
- <month type="9">सेप्टेम्बर</month>
- <month type="10">अक्टोबर</month>
- <month type="11">नोभेम्बर</month>
- <month type="12">डिसेम्बर</month>
- </monthWidth>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">आइत</day>
- <day type="mon">सोम</day>
- <day type="tue">मङ्गल</day>
- <day type="wed">बुध</day>
- <day type="thu">बिही</day>
- <day type="fri">शुक्र</day>
- <day type="sat">शनि</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">आ</day>
- <day type="mon">सो</day>
- <day type="tue">म</day>
- <day type="wed">बु</day>
- <day type="thu">बि</day>
- <day type="fri">शु</day>
- <day type="sat">श</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">आइत</day>
- <day type="mon">सोम</day>
- <day type="tue">मङ्गल</day>
- <day type="wed">बुध</day>
- <day type="thu">बिही</day>
- <day type="fri">शुक्र</day>
- <day type="sat">शनि</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">आइतबार</day>
- <day type="mon">सोमबार</day>
- <day type="tue">मङ्गलबार</day>
- <day type="wed">बुधबार</day>
- <day type="thu">बिहीबार</day>
- <day type="fri">शुक्रबार</day>
- <day type="sat">शनिबार</day>
- </dayWidth>
- </dayContext>
- <dayContext type="stand-alone">
- <dayWidth type="abbreviated">
- <day type="sun">आइत</day>
- <day type="mon">सोम</day>
- <day type="tue">मङ्गल</day>
- <day type="wed">बुध</day>
- <day type="thu">बिही</day>
- <day type="fri">शुक्र</day>
- <day type="sat">शनि</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">आ</day>
- <day type="mon">सो</day>
- <day type="tue">म</day>
- <day type="wed">बु</day>
- <day type="thu">बि</day>
- <day type="fri">शु</day>
- <day type="sat">श</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">आइत</day>
- <day type="mon">सोम</day>
- <day type="tue">मङ्गल</day>
- <day type="wed">बुध</day>
- <day type="thu">बिही</day>
- <day type="fri">शुक्र</day>
- <day type="sat">शनि</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">आइतबार</day>
- <day type="mon">सोमबार</day>
- <day type="tue">मङ्गलबार</day>
- <day type="wed">बुधबार</day>
- <day type="thu">बिहीबार</day>
- <day type="fri">शुक्रबार</day>
- <day type="sat">शनिबार</day>
- </dayWidth>
- </dayContext>
- </days>
- <quarters>
- <quarterContext type="format">
- <quarterWidth type="abbreviated">
- <quarter type="1">पहिलो सत्र</quarter>
- <quarter type="2">दोस्रो सत्र</quarter>
- <quarter type="3">तेस्रो सत्र</quarter>
- <quarter type="4">चौथो सत्र</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">१</quarter>
- <quarter type="2">२</quarter>
- <quarter type="3">३</quarter>
- <quarter type="4">४</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">पहिलो सत्र</quarter>
- <quarter type="2">दोस्रो सत्र</quarter>
- <quarter type="3">तेस्रो सत्र</quarter>
- <quarter type="4">चौथो सत्र</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="abbreviated">
- <quarter type="1">पहिलो सत्र</quarter>
- <quarter type="2">दोस्रो सत्र</quarter>
- <quarter type="3">तेस्रो सत्र</quarter>
- <quarter type="4">चौथो सत्र</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">१</quarter>
- <quarter type="2">२</quarter>
- <quarter type="3">३</quarter>
- <quarter type="4">४</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">पहिलो सत्र</quarter>
- <quarter type="2">दोस्रो सत्र</quarter>
- <quarter type="3">तेस्रो सत्र</quarter>
- <quarter type="4">चौथो सत्र</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <dayPeriods>
- <dayPeriodContext type="format">
- <dayPeriodWidth type="wide">
- <dayPeriod type="am">पूर्व मध्यान्ह</dayPeriod>
- <dayPeriod type="pm">उत्तर मध्यान्ह</dayPeriod>
- </dayPeriodWidth>
- </dayPeriodContext>
- </dayPeriods>
- <eras>
- <eraAbbr>
- <era type="0">ईसा पूर्व</era>
- <era type="1">सन्</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>y MMMM d, EEEE</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>y MMMM d</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>y MMM d</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>y-MM-dd</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>HH:mm:ss zzzz</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>HH:mm:ss z</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>HH:mm:ss</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>HH:mm</pattern>
- </timeFormat>
- </timeFormatLength>
- </timeFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1}, {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1}, {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">d E</dateFormatItem>
- <dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
- <dateFormatItem id="EHm">E HH:mm</dateFormatItem>
- <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
- <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
- <dateFormatItem id="Gy">G y</dateFormatItem>
- <dateFormatItem id="GyMMM">G y MMM</dateFormatItem>
- <dateFormatItem id="GyMMMd">G y MMM d</dateFormatItem>
- <dateFormatItem id="GyMMMEd">G y MMM d, E</dateFormatItem>
- <dateFormatItem id="h">h a</dateFormatItem>
- <dateFormatItem id="H">HH</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">MM-dd</dateFormatItem>
- <dateFormatItem id="MEd">MM-dd, E</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">MMM d</dateFormatItem>
- <dateFormatItem id="MMMEd">MMM d, E</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">y-MM</dateFormatItem>
- <dateFormatItem id="yMd">y-MM-dd</dateFormatItem>
- <dateFormatItem id="yMEd">y-MM-dd, E</dateFormatItem>
- <dateFormatItem id="yMMM">y MMM</dateFormatItem>
- <dateFormatItem id="yMMMd">y MMM d</dateFormatItem>
- <dateFormatItem id="yMMMEd">y MMM d, E</dateFormatItem>
- <dateFormatItem id="yQQQ">y QQQ</dateFormatItem>
- <dateFormatItem id="yQQQQ">y QQQQ</dateFormatItem>
- </availableFormats>
- <appendItems>
- <appendItem request="Timezone">{0} {1}</appendItem>
- </appendItems>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d–d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a – h a</greatestDifference>
- <greatestDifference id="h">h–h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH–HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">h a – h a v</greatestDifference>
- <greatestDifference id="h">h–h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH–HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">MM–MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">MM-dd – MM-dd</greatestDifference>
- <greatestDifference id="M">MM-dd – MM-dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">MM-dd, E – MM-dd, E</greatestDifference>
- <greatestDifference id="M">MM-dd, E – MM-dd, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">LLL–LLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">MMM d–d</greatestDifference>
- <greatestDifference id="M">MMM d – MMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">MMM d, E – MMM d, E</greatestDifference>
- <greatestDifference id="M">MMM d, E – MMM d, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y–y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">y-MM – y-MM</greatestDifference>
- <greatestDifference id="y">y-MM – y-MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">y-MM-dd – y-MM-dd</greatestDifference>
- <greatestDifference id="M">y-MM-dd – y-MM-dd</greatestDifference>
- <greatestDifference id="y">y-MM-dd – y-MM-dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">y-MM-dd, E – y-MM-dd, E</greatestDifference>
- <greatestDifference id="M">y-MM-dd, E – y-MM-dd, E</greatestDifference>
- <greatestDifference id="y">y-MM-dd, E – y-MM-dd, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">y MMM–MMM</greatestDifference>
- <greatestDifference id="y">y MMM – y MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">y MMM d–d</greatestDifference>
- <greatestDifference id="M">y MMM d – MMM d</greatestDifference>
- <greatestDifference id="y">y MMM d – y MMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">y MMM d, E – MMM d, E</greatestDifference>
- <greatestDifference id="M">y MMM d, E – MMM d, E</greatestDifference>
- <greatestDifference id="y">y MMM d, E – y MMM d, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">y MMMM–MMMM</greatestDifference>
- <greatestDifference id="y">y MMMM – y MMMM</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- </calendars>
- <fields>
- <field type="era">
- <displayName>काल</displayName>
- </field>
- <field type="year">
- <displayName>बर्ष</displayName>
- <relative type="-1">पहिलो वर्ष</relative>
- <relative type="0">यो वर्ष</relative>
- <relative type="1">अर्को वर्ष</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} वर्षमा</relativeTimePattern>
- <relativeTimePattern count="other">{0} वर्षमा</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} वर्ष अघि</relativeTimePattern>
- <relativeTimePattern count="other">{0} वर्ष अघि</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="month">
- <displayName>महिना</displayName>
- <relative type="-1">गएको महिना</relative>
- <relative type="0">यो महिना</relative>
- <relative type="1">अर्को महिना</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} महिनामा</relativeTimePattern>
- <relativeTimePattern count="other">{0} महिनामा</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} महिना पहिले</relativeTimePattern>
- <relativeTimePattern count="other">{0} महिना पहिले</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="week">
- <displayName>हप्ता</displayName>
- <relative type="-1">गएको हप्ता</relative>
- <relative type="0">यो हप्ता</relative>
- <relative type="1">आउने हप्ता</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} हप्तामा</relativeTimePattern>
- <relativeTimePattern count="other">{0} हप्तामा</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} हप्ता पहिले</relativeTimePattern>
- <relativeTimePattern count="other">{0} हप्ता पहिले</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="day">
- <displayName>बार</displayName>
- <relative type="-2">अस्ति</relative>
- <relative type="-1">हिजो</relative>
- <relative type="0">आज</relative>
- <relative type="1">भोली</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} दिनमा</relativeTimePattern>
- <relativeTimePattern count="other">{0} दिनमा</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} दिन पहिले</relativeTimePattern>
- <relativeTimePattern count="other">{0} दिन पहिले</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="weekday">
- <displayName>हप्ताको बार</displayName>
- </field>
- <field type="sun">
- <relative type="-1">गत आईतबार</relative>
- <relative type="0">यो आईतबार</relative>
- <relative type="1">अर्को आईतबार</relative>
- </field>
- <field type="mon">
- <relative type="-1">गत सोमबार</relative>
- <relative type="0">यो सोमबार</relative>
- <relative type="1">अर्को सोमबार</relative>
- </field>
- <field type="tue">
- <relative type="-1">गत मंगलबार</relative>
- <relative type="0">यो मंगलबार</relative>
- <relative type="1">अर्को मंगलबार</relative>
- </field>
- <field type="wed">
- <relative type="-1">गत बुधबार</relative>
- <relative type="0">यो बुधबार</relative>
- <relative type="1">अर्को बुधबार</relative>
- </field>
- <field type="thu">
- <relative type="-1">गत बिहिबार</relative>
- <relative type="0">यो बिहिबार</relative>
- <relative type="1">अर्को बिहिबार</relative>
- </field>
- <field type="fri">
- <relative type="-1">गत शुक्रबार</relative>
- <relative type="0">यो शुक्रबार</relative>
- <relative type="1">अर्को शुक्रबार</relative>
- </field>
- <field type="sat">
- <relative type="-1">गत शनिबार</relative>
- <relative type="0">यो शनिबार</relative>
- <relative type="1">अर्को शनिबार</relative>
- </field>
- <field type="dayperiod">
- <displayName>पूर्व मध्यान्ह/उत्तर मध्यान्ह</displayName>
- </field>
- <field type="hour">
- <displayName>घण्टा</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} घण्टामा</relativeTimePattern>
- <relativeTimePattern count="other">{0} घण्टामा</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} घण्टा पहिले</relativeTimePattern>
- <relativeTimePattern count="other">{0} घण्टा पहिले</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="minute">
- <displayName>मिनेट</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} मिनेटमा</relativeTimePattern>
- <relativeTimePattern count="other">{0} मिनेटमा</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} मिनेट पहिले</relativeTimePattern>
- <relativeTimePattern count="other">{0} मिनेट पहिले</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="second">
- <displayName>दोस्रो</displayName>
- <relative type="0">अब</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} सेकेण्डमा</relativeTimePattern>
- <relativeTimePattern count="other">{0} सेकेण्डमा</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} सेकेण्ड पहिले</relativeTimePattern>
- <relativeTimePattern count="other">{0} सेकेण्ड पहिले</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="zone">
- <displayName>क्षेत्र</displayName>
- </field>
- </fields>
- <timeZoneNames>
- <hourFormat>+HH:mm;-HH:mm</hourFormat>
- <gmtFormat>GMT{0}</gmtFormat>
- <gmtZeroFormat>GMT</gmtZeroFormat>
- <regionFormat>{0} समय</regionFormat>
- <regionFormat type="daylight">{0} (+१)</regionFormat>
- <regionFormat type="standard">{0} (+०)</regionFormat>
- <fallbackFormat>{1} ({0})</fallbackFormat>
- <zone type="Etc/Unknown">
- <exemplarCity>अज्ञात शहर</exemplarCity>
- </zone>
- <zone type="Europe/Andorra">
- <exemplarCity>आन्डोर्रा</exemplarCity>
- </zone>
- <zone type="Asia/Dubai">
- <exemplarCity>दुबही</exemplarCity>
- </zone>
- <zone type="Asia/Kabul">
- <exemplarCity>काबुल</exemplarCity>
- </zone>
- <zone type="America/Antigua">
- <exemplarCity>एण्टिगुवा</exemplarCity>
- </zone>
- <zone type="America/Anguilla">
- <exemplarCity>एङ्ग्विल्ला</exemplarCity>
- </zone>
- <zone type="Europe/Tirane">
- <exemplarCity>टिराने</exemplarCity>
- </zone>
- <zone type="Asia/Yerevan">
- <exemplarCity>येरेभान</exemplarCity>
- </zone>
- <zone type="Africa/Luanda">
- <exemplarCity>लुवान्डा</exemplarCity>
- </zone>
- <zone type="Antarctica/Rothera">
- <exemplarCity>रोथेरा</exemplarCity>
- </zone>
- <zone type="Antarctica/Palmer">
- <exemplarCity>पाल्मेर</exemplarCity>
- </zone>
- <zone type="Antarctica/Syowa">
- <exemplarCity>सिओआ</exemplarCity>
- </zone>
- <zone type="Antarctica/Mawson">
- <exemplarCity>माउसन</exemplarCity>
- </zone>
- <zone type="Antarctica/Davis">
- <exemplarCity>डेभिस</exemplarCity>
- </zone>
- <zone type="Antarctica/Vostok">
- <exemplarCity>भास्टोक</exemplarCity>
- </zone>
- <zone type="Antarctica/Casey">
- <exemplarCity>केजे</exemplarCity>
- </zone>
- <zone type="Antarctica/DumontDUrville">
- <exemplarCity>दुमोन्ट डि उर्भेल्ले</exemplarCity>
- </zone>
- <zone type="Antarctica/McMurdo">
- <exemplarCity>माकमुर्डो</exemplarCity>
- </zone>
- <zone type="America/Argentina/Rio_Gallegos">
- <exemplarCity>रियो ग्यालेगोस</exemplarCity>
- </zone>
- <zone type="America/Mendoza">
- <exemplarCity>मेन्डोजा</exemplarCity>
- </zone>
- <zone type="America/Argentina/San_Juan">
- <exemplarCity>सान जुवान</exemplarCity>
- </zone>
- <zone type="America/Argentina/Ushuaia">
- <exemplarCity>उशुआइआ</exemplarCity>
- </zone>
- <zone type="America/Argentina/La_Rioja">
- <exemplarCity>ला रियोजा</exemplarCity>
- </zone>
- <zone type="America/Argentina/San_Luis">
- <exemplarCity>सान लुइस</exemplarCity>
- </zone>
- <zone type="America/Catamarca">
- <exemplarCity>कातामार्का</exemplarCity>
- </zone>
- <zone type="America/Argentina/Salta">
- <exemplarCity>साल्टा</exemplarCity>
- </zone>
- <zone type="America/Jujuy">
- <exemplarCity>जुजुई</exemplarCity>
- </zone>
- <zone type="America/Argentina/Tucuman">
- <exemplarCity>टुकुमान</exemplarCity>
- </zone>
- <zone type="America/Cordoba">
- <exemplarCity>कोरडोवा</exemplarCity>
- </zone>
- <zone type="America/Buenos_Aires">
- <exemplarCity>ब्यनेश आयर्स</exemplarCity>
- </zone>
- <zone type="Pacific/Pago_Pago">
- <exemplarCity>पागो पागो</exemplarCity>
- </zone>
- <zone type="Europe/Vienna">
- <exemplarCity>भियना</exemplarCity>
- </zone>
- <zone type="Australia/Perth">
- <exemplarCity>पर्थ</exemplarCity>
- </zone>
- <zone type="Australia/Eucla">
- <exemplarCity>इयुक्ला</exemplarCity>
- </zone>
- <zone type="Australia/Darwin">
- <exemplarCity>डार्विन</exemplarCity>
- </zone>
- <zone type="Australia/Adelaide">
- <exemplarCity>एडेलेड</exemplarCity>
- </zone>
- <zone type="Australia/Broken_Hill">
- <exemplarCity>ब्रोकन हिल</exemplarCity>
- </zone>
- <zone type="Australia/Currie">
- <exemplarCity>क्युरी</exemplarCity>
- </zone>
- <zone type="Australia/Melbourne">
- <exemplarCity>मेल्बर्न</exemplarCity>
- </zone>
- <zone type="Australia/Hobart">
- <exemplarCity>होभार्ट</exemplarCity>
- </zone>
- <zone type="Australia/Lindeman">
- <exemplarCity>लिन्डेम्यान</exemplarCity>
- </zone>
- <zone type="Australia/Sydney">
- <exemplarCity>सिड्नी</exemplarCity>
- </zone>
- <zone type="Australia/Brisbane">
- <exemplarCity>ब्रिस्बेन</exemplarCity>
- </zone>
- <zone type="Antarctica/Macquarie">
- <exemplarCity>मक्वारिई</exemplarCity>
- </zone>
- <zone type="Australia/Lord_Howe">
- <exemplarCity>लर्ड होवे</exemplarCity>
- </zone>
- <zone type="America/Aruba">
- <exemplarCity>एरूवा</exemplarCity>
- </zone>
- <zone type="Europe/Mariehamn">
- <exemplarCity>म्यारिह्याम्न</exemplarCity>
- </zone>
- <zone type="Asia/Baku">
- <exemplarCity>बाकु</exemplarCity>
- </zone>
- <zone type="Europe/Sarajevo">
- <exemplarCity>साराजेभो</exemplarCity>
- </zone>
- <zone type="America/Barbados">
- <exemplarCity>वार्वाडोस्</exemplarCity>
- </zone>
- <zone type="Asia/Dhaka">
- <exemplarCity>ढाका</exemplarCity>
- </zone>
- <zone type="Europe/Brussels">
- <exemplarCity>ब्रसेल्स</exemplarCity>
- </zone>
- <zone type="Africa/Ouagadougou">
- <exemplarCity>औआगाडौगौ</exemplarCity>
- </zone>
- <zone type="Europe/Sofia">
- <exemplarCity>सोफिया</exemplarCity>
- </zone>
- <zone type="Asia/Bahrain">
- <exemplarCity>बहराईन</exemplarCity>
- </zone>
- <zone type="Africa/Bujumbura">
- <exemplarCity>बुजुम्बुरा</exemplarCity>
- </zone>
- <zone type="Africa/Porto-Novo">
- <exemplarCity>पोर्टो-नोभो</exemplarCity>
- </zone>
- <zone type="America/St_Barthelemy">
- <exemplarCity>सेन्ट बार्थेलेमी</exemplarCity>
- </zone>
- <zone type="Atlantic/Bermuda">
- <exemplarCity>बर्मुडा</exemplarCity>
- </zone>
- <zone type="Asia/Brunei">
- <exemplarCity>ब्रुनाइ</exemplarCity>
- </zone>
- <zone type="America/La_Paz">
- <exemplarCity>ला पाज</exemplarCity>
- </zone>
- <zone type="America/Kralendijk">
- <exemplarCity>कालेन्देजिक</exemplarCity>
- </zone>
- <zone type="America/Eirunepe">
- <exemplarCity>आइरनेपे</exemplarCity>
- </zone>
- <zone type="America/Rio_Branco">
- <exemplarCity>रियो ब्रान्को</exemplarCity>
- </zone>
- <zone type="America/Porto_Velho">
- <exemplarCity>पोर्टो भेल्हो</exemplarCity>
- </zone>
- <zone type="America/Boa_Vista">
- <exemplarCity>बोआ भिष्टा</exemplarCity>
- </zone>
- <zone type="America/Manaus">
- <exemplarCity>मानाउस</exemplarCity>
- </zone>
- <zone type="America/Cuiaba">
- <exemplarCity>क्युइआबा</exemplarCity>
- </zone>
- <zone type="America/Santarem">
- <exemplarCity>सान्टारेम</exemplarCity>
- </zone>
- <zone type="America/Campo_Grande">
- <exemplarCity>क्याम्पो ग्रान्डे</exemplarCity>
- </zone>
- <zone type="America/Belem">
- <exemplarCity>बेलेम</exemplarCity>
- </zone>
- <zone type="America/Araguaina">
- <exemplarCity>आरागुवाना</exemplarCity>
- </zone>
- <zone type="America/Sao_Paulo">
- <exemplarCity>साओ पाउलो</exemplarCity>
- </zone>
- <zone type="America/Bahia">
- <exemplarCity>बाहिया</exemplarCity>
- </zone>
- <zone type="America/Fortaleza">
- <exemplarCity>फोर्टालेजा</exemplarCity>
- </zone>
- <zone type="America/Maceio">
- <exemplarCity>मासेइओ</exemplarCity>
- </zone>
- <zone type="America/Recife">
- <exemplarCity>रिसाइफ</exemplarCity>
- </zone>
- <zone type="America/Noronha">
- <exemplarCity>नोरोन्हा</exemplarCity>
- </zone>
- <zone type="America/Nassau">
- <exemplarCity>नास्साउ</exemplarCity>
- </zone>
- <zone type="Asia/Thimphu">
- <exemplarCity>थिम्पु</exemplarCity>
- </zone>
- <zone type="Africa/Gaborone">
- <exemplarCity>गावोरोन</exemplarCity>
- </zone>
- <zone type="Europe/Minsk">
- <exemplarCity>मिन्स्क</exemplarCity>
- </zone>
- <zone type="America/Belize">
- <exemplarCity>वेलिज</exemplarCity>
- </zone>
- <zone type="America/Dawson">
- <exemplarCity>डेजन</exemplarCity>
- </zone>
- <zone type="America/Whitehorse">
- <exemplarCity>ह्वाइटहर्स</exemplarCity>
- </zone>
- <zone type="America/Inuvik">
- <exemplarCity>इनुभिक</exemplarCity>
- </zone>
- <zone type="America/Vancouver">
- <exemplarCity>भ्यानकोभर</exemplarCity>
- </zone>
- <zone type="America/Dawson_Creek">
- <exemplarCity>डेजन क्रिक</exemplarCity>
- </zone>
- <zone type="America/Creston">
- <exemplarCity>क्रेस्टन</exemplarCity>
- </zone>
- <zone type="America/Yellowknife">
- <exemplarCity>येल्लोनाइफ</exemplarCity>
- </zone>
- <zone type="America/Edmonton">
- <exemplarCity>एड्मोन्टन</exemplarCity>
- </zone>
- <zone type="America/Swift_Current">
- <exemplarCity>स्विफ्ट करेण्ट</exemplarCity>
- </zone>
- <zone type="America/Cambridge_Bay">
- <exemplarCity>क्याम्ब्रिज बे</exemplarCity>
- </zone>
- <zone type="America/Regina">
- <exemplarCity>रेजिना</exemplarCity>
- </zone>
- <zone type="America/Winnipeg">
- <exemplarCity>विन्निपेग</exemplarCity>
- </zone>
- <zone type="America/Resolute">
- <exemplarCity>रिजोलुट</exemplarCity>
- </zone>
- <zone type="America/Rainy_River">
- <exemplarCity>रेनिरिभर</exemplarCity>
- </zone>
- <zone type="America/Rankin_Inlet">
- <exemplarCity>रान्किन इन्लेट</exemplarCity>
- </zone>
- <zone type="America/Coral_Harbour">
- <exemplarCity>कोराल बन्दरगाहा</exemplarCity>
- </zone>
- <zone type="America/Thunder_Bay">
- <exemplarCity>थण्डर बे</exemplarCity>
- </zone>
- <zone type="America/Nipigon">
- <exemplarCity>निपिगन</exemplarCity>
- </zone>
- <zone type="America/Toronto">
- <exemplarCity>टोरोण्टो</exemplarCity>
- </zone>
- <zone type="America/Iqaluit">
- <exemplarCity>इक्वालुइट</exemplarCity>
- </zone>
- <zone type="America/Pangnirtung">
- <exemplarCity>पाङ्निरतुङ</exemplarCity>
- </zone>
- <zone type="America/Moncton">
- <exemplarCity>मोन्कटन</exemplarCity>
- </zone>
- <zone type="America/Halifax">
- <exemplarCity>हालेफाक्स</exemplarCity>
- </zone>
- <zone type="America/Goose_Bay">
- <exemplarCity>गुज बे</exemplarCity>
- </zone>
- <zone type="America/Glace_Bay">
- <exemplarCity>ग्लेस बे</exemplarCity>
- </zone>
- <zone type="America/Blanc-Sablon">
- <exemplarCity>ब्लान्क-साब्लोन</exemplarCity>
- </zone>
- <zone type="America/St_Johns">
- <exemplarCity>सेन्ट जोन्स</exemplarCity>
- </zone>
- <zone type="Indian/Cocos">
- <exemplarCity>कोकोस</exemplarCity>
- </zone>
- <zone type="Africa/Kinshasa">
- <exemplarCity>किन्शासा</exemplarCity>
- </zone>
- <zone type="Africa/Lubumbashi">
- <exemplarCity>लुबुम्बासी</exemplarCity>
- </zone>
- <zone type="Africa/Bangui">
- <exemplarCity>बाङ्गुवी</exemplarCity>
- </zone>
- <zone type="Africa/Brazzaville">
- <exemplarCity>ब्राजाभिल्ले</exemplarCity>
- </zone>
- <zone type="Europe/Zurich">
- <exemplarCity>जुरिक</exemplarCity>
- </zone>
- <zone type="Africa/Abidjan">
- <exemplarCity>अविड्जान</exemplarCity>
- </zone>
- <zone type="Pacific/Rarotonga">
- <exemplarCity>राओतोंगा</exemplarCity>
- </zone>
- <zone type="Pacific/Easter">
- <exemplarCity>इस्टर</exemplarCity>
- </zone>
- <zone type="America/Santiago">
- <exemplarCity>सान्टिआगो</exemplarCity>
- </zone>
- <zone type="Africa/Douala">
- <exemplarCity>डोउआला</exemplarCity>
- </zone>
- <zone type="Asia/Kashgar">
- <exemplarCity>काश्गर</exemplarCity>
- </zone>
- <zone type="Asia/Urumqi">
- <exemplarCity>उरूम्की</exemplarCity>
- </zone>
- <zone type="Asia/Chongqing">
- <exemplarCity>चोङकिङ</exemplarCity>
- </zone>
- <zone type="Asia/Shanghai">
- <exemplarCity>सान्घाई</exemplarCity>
- </zone>
- <zone type="Asia/Harbin">
- <exemplarCity>हार्विन</exemplarCity>
- </zone>
- <zone type="America/Bogota">
- <exemplarCity>बोगोटा</exemplarCity>
- </zone>
- <zone type="America/Costa_Rica">
- <exemplarCity>कोष्टा रिका</exemplarCity>
- </zone>
- <zone type="America/Havana">
- <exemplarCity>हवाना</exemplarCity>
- </zone>
- <zone type="Atlantic/Cape_Verde">
- <exemplarCity>केप भर्डे</exemplarCity>
- </zone>
- <zone type="America/Curacao">
- <exemplarCity>कुराकाओ</exemplarCity>
- </zone>
- <zone type="Indian/Christmas">
- <exemplarCity>ख्रिस्टमस</exemplarCity>
- </zone>
- <zone type="Asia/Nicosia">
- <exemplarCity>निकोसिया</exemplarCity>
- </zone>
- <zone type="Europe/Prague">
- <exemplarCity>प्राग</exemplarCity>
- </zone>
- <zone type="Europe/Busingen">
- <exemplarCity>बुसिन्नगन</exemplarCity>
- </zone>
- <zone type="Europe/Berlin">
- <exemplarCity>बर्लिन</exemplarCity>
- </zone>
- <zone type="Africa/Djibouti">
- <exemplarCity>जिबौंटी</exemplarCity>
- </zone>
- <zone type="Europe/Copenhagen">
- <exemplarCity>कोपेनह्यागन</exemplarCity>
- </zone>
- <zone type="America/Dominica">
- <exemplarCity>डोमिनिका</exemplarCity>
- </zone>
- <zone type="America/Santo_Domingo">
- <exemplarCity>सान्टो डोमिन्गो</exemplarCity>
- </zone>
- <zone type="Africa/Algiers">
- <exemplarCity>अल्जियर्स</exemplarCity>
- </zone>
- <zone type="Pacific/Galapagos">
- <exemplarCity>गलापागोस</exemplarCity>
- </zone>
- <zone type="America/Guayaquil">
- <exemplarCity>गुयाक्विल</exemplarCity>
- </zone>
- <zone type="Europe/Tallinn">
- <exemplarCity>ताल्लिन</exemplarCity>
- </zone>
- <zone type="Africa/Cairo">
- <exemplarCity>काइरो</exemplarCity>
- </zone>
- <zone type="Africa/El_Aaiun">
- <exemplarCity>एल् आइयुन</exemplarCity>
- </zone>
- <zone type="Africa/Asmera">
- <exemplarCity>आस्मारा</exemplarCity>
- </zone>
- <zone type="Atlantic/Canary">
- <exemplarCity>क्यानारी</exemplarCity>
- </zone>
- <zone type="Africa/Ceuta">
- <exemplarCity>सेउटा</exemplarCity>
- </zone>
- <zone type="Europe/Madrid">
- <exemplarCity>म्याड्रिड</exemplarCity>
- </zone>
- <zone type="Africa/Addis_Ababa">
- <exemplarCity>एड्डिस आबाबा</exemplarCity>
- </zone>
- <zone type="Europe/Helsinki">
- <exemplarCity>हेल्सिन्की</exemplarCity>
- </zone>
- <zone type="Pacific/Fiji">
- <exemplarCity>फिजी</exemplarCity>
- </zone>
- <zone type="Atlantic/Stanley">
- <exemplarCity>स्टान्ले</exemplarCity>
- </zone>
- <zone type="Pacific/Truk">
- <exemplarCity>चूक</exemplarCity>
- </zone>
- <zone type="Pacific/Ponape">
- <exemplarCity>पोनापे</exemplarCity>
- </zone>
- <zone type="Pacific/Kosrae">
- <exemplarCity>कोस्राए</exemplarCity>
- </zone>
- <zone type="Atlantic/Faeroe">
- <exemplarCity>फारोइ</exemplarCity>
- </zone>
- <zone type="Europe/Paris">
- <exemplarCity>पेरिस</exemplarCity>
- </zone>
- <zone type="Africa/Libreville">
- <exemplarCity>लिब्रेभिल्ले</exemplarCity>
- </zone>
- <zone type="Europe/London">
- <long>
- <daylight>ब्रिटिश ग्रीष्मकालीन समय</daylight>
- </long>
- <exemplarCity>लण्डन</exemplarCity>
- </zone>
- <zone type="America/Grenada">
- <exemplarCity>ग्रेनाडा</exemplarCity>
- </zone>
- <zone type="Asia/Tbilisi">
- <exemplarCity>तिबिलिसी</exemplarCity>
- </zone>
- <zone type="America/Cayenne">
- <exemplarCity>कायेन्ने</exemplarCity>
- </zone>
- <zone type="Europe/Guernsey">
- <exemplarCity>गुएर्नसे</exemplarCity>
- </zone>
- <zone type="Africa/Accra">
- <exemplarCity>अक्रा</exemplarCity>
- </zone>
- <zone type="Europe/Gibraltar">
- <exemplarCity>जिब्राल्टार</exemplarCity>
- </zone>
- <zone type="America/Thule">
- <exemplarCity>थुले</exemplarCity>
- </zone>
- <zone type="America/Godthab">
- <exemplarCity>नूक</exemplarCity>
- </zone>
- <zone type="America/Scoresbysund">
- <exemplarCity>ईट्टोक्कोरटूर्मिट</exemplarCity>
- </zone>
- <zone type="America/Danmarkshavn">
- <exemplarCity>डान्मार्कशाभन</exemplarCity>
- </zone>
- <zone type="Africa/Banjul">
- <exemplarCity>बन्जुल</exemplarCity>
- </zone>
- <zone type="Africa/Conakry">
- <exemplarCity>कोनाक्री</exemplarCity>
- </zone>
- <zone type="America/Guadeloupe">
- <exemplarCity>ग्वाडेलुप</exemplarCity>
- </zone>
- <zone type="Africa/Malabo">
- <exemplarCity>मालाबो</exemplarCity>
- </zone>
- <zone type="Europe/Athens">
- <exemplarCity>एथेन्स</exemplarCity>
- </zone>
- <zone type="Atlantic/South_Georgia">
- <exemplarCity>दक्षिण जर्जिया</exemplarCity>
- </zone>
- <zone type="America/Guatemala">
- <exemplarCity>ग्वाटेमाला</exemplarCity>
- </zone>
- <zone type="Pacific/Guam">
- <exemplarCity>गुवाम</exemplarCity>
- </zone>
- <zone type="Africa/Bissau">
- <exemplarCity>बिसाउ</exemplarCity>
- </zone>
- <zone type="America/Guyana">
- <exemplarCity>गुयाना</exemplarCity>
- </zone>
- <zone type="Asia/Hong_Kong">
- <exemplarCity>हंकग</exemplarCity>
- </zone>
- <zone type="America/Tegucigalpa">
- <exemplarCity>टेगुसिगाल्पा</exemplarCity>
- </zone>
- <zone type="Europe/Zagreb">
- <exemplarCity>जाग्रेब</exemplarCity>
- </zone>
- <zone type="America/Port-au-Prince">
- <exemplarCity>पोर्ट-अउ-प्रिन्स</exemplarCity>
- </zone>
- <zone type="Europe/Budapest">
- <exemplarCity>बुडापेस्ट</exemplarCity>
- </zone>
- <zone type="Asia/Jakarta">
- <exemplarCity>जाकार्ता</exemplarCity>
- </zone>
- <zone type="Asia/Pontianak">
- <exemplarCity>पोन्टिआनाक</exemplarCity>
- </zone>
- <zone type="Asia/Makassar">
- <exemplarCity>माकास्सार</exemplarCity>
- </zone>
- <zone type="Asia/Jayapura">
- <exemplarCity>जयापुरा</exemplarCity>
- </zone>
- <zone type="Europe/Dublin">
- <long>
- <daylight>आईरिस ग्रीष्मकालीन समय</daylight>
- </long>
- <exemplarCity>डब्लिन</exemplarCity>
- </zone>
- <zone type="Asia/Jerusalem">
- <exemplarCity>जेरुसलेम</exemplarCity>
- </zone>
- <zone type="Europe/Isle_of_Man">
- <exemplarCity>इजल अफ् म्यान</exemplarCity>
- </zone>
- <zone type="Asia/Calcutta">
- <exemplarCity>कोलकाता</exemplarCity>
- </zone>
- <zone type="Indian/Chagos">
- <exemplarCity>चागोस</exemplarCity>
- </zone>
- <zone type="Asia/Baghdad">
- <exemplarCity>बगदाद</exemplarCity>
- </zone>
- <zone type="Asia/Tehran">
- <exemplarCity>तेहेराण</exemplarCity>
- </zone>
- <zone type="Atlantic/Reykjavik">
- <exemplarCity>रेक्जाभिक</exemplarCity>
- </zone>
- <zone type="Europe/Rome">
- <exemplarCity>रोम</exemplarCity>
- </zone>
- <zone type="Europe/Jersey">
- <exemplarCity>जर्सी</exemplarCity>
- </zone>
- <zone type="America/Jamaica">
- <exemplarCity>जमाइका</exemplarCity>
- </zone>
- <zone type="Asia/Amman">
- <exemplarCity>आम्मान</exemplarCity>
- </zone>
- <zone type="Asia/Tokyo">
- <exemplarCity>टोकियो</exemplarCity>
- </zone>
- <zone type="Africa/Nairobi">
- <exemplarCity>नाइरोबी</exemplarCity>
- </zone>
- <zone type="Asia/Bishkek">
- <exemplarCity>बिसकेक्</exemplarCity>
- </zone>
- <zone type="Asia/Phnom_Penh">
- <exemplarCity>फेनोम फेन</exemplarCity>
- </zone>
- <zone type="Pacific/Enderbury">
- <exemplarCity>एन्डरबरी</exemplarCity>
- </zone>
- <zone type="Pacific/Kiritimati">
- <exemplarCity>किरितिमाटी</exemplarCity>
- </zone>
- <zone type="Pacific/Tarawa">
- <exemplarCity>तरवा</exemplarCity>
- </zone>
- <zone type="Indian/Comoro">
- <exemplarCity>कोमोरो</exemplarCity>
- </zone>
- <zone type="America/St_Kitts">
- <exemplarCity>सेन्ट् किट्स</exemplarCity>
- </zone>
- <zone type="Asia/Pyongyang">
- <exemplarCity>प्योग्ङाग</exemplarCity>
- </zone>
- <zone type="Asia/Seoul">
- <exemplarCity>स्योल</exemplarCity>
- </zone>
- <zone type="Asia/Kuwait">
- <exemplarCity>कुवेत</exemplarCity>
- </zone>
- <zone type="America/Cayman">
- <exemplarCity>केम्यान</exemplarCity>
- </zone>
- <zone type="Asia/Aqtau">
- <exemplarCity>आक्टाउ</exemplarCity>
- </zone>
- <zone type="Asia/Oral">
- <exemplarCity>ओरल</exemplarCity>
- </zone>
- <zone type="Asia/Aqtobe">
- <exemplarCity>आक्टोब</exemplarCity>
- </zone>
- <zone type="Asia/Qyzylorda">
- <exemplarCity>किजिलोर्डा</exemplarCity>
- </zone>
- <zone type="Asia/Almaty">
- <exemplarCity>आल्माटी</exemplarCity>
- </zone>
- <zone type="Asia/Vientiane">
- <exemplarCity>भेतनाम</exemplarCity>
- </zone>
- <zone type="Asia/Beirut">
- <exemplarCity>बेईरुट</exemplarCity>
- </zone>
- <zone type="America/St_Lucia">
- <exemplarCity>सेन्ट लुसिया</exemplarCity>
- </zone>
- <zone type="Europe/Vaduz">
- <exemplarCity>भाडुज</exemplarCity>
- </zone>
- <zone type="Asia/Colombo">
- <exemplarCity>कोलम्बो</exemplarCity>
- </zone>
- <zone type="Africa/Monrovia">
- <exemplarCity>मोन्रोभिया</exemplarCity>
- </zone>
- <zone type="Africa/Maseru">
- <exemplarCity>मासेरू</exemplarCity>
- </zone>
- <zone type="Europe/Vilnius">
- <exemplarCity>भिल्निअस</exemplarCity>
- </zone>
- <zone type="Europe/Luxembourg">
- <exemplarCity>लक्जेम्वर्ग</exemplarCity>
- </zone>
- <zone type="Europe/Riga">
- <exemplarCity>रिगा</exemplarCity>
- </zone>
- <zone type="Africa/Tripoli">
- <exemplarCity>त्रिपोली</exemplarCity>
- </zone>
- <zone type="Africa/Casablanca">
- <exemplarCity>कासाब्लान्का</exemplarCity>
- </zone>
- <zone type="Europe/Monaco">
- <exemplarCity>मोनाको</exemplarCity>
- </zone>
- <zone type="Europe/Chisinau">
- <exemplarCity>चिसिनाउ</exemplarCity>
- </zone>
- <zone type="Europe/Podgorica">
- <exemplarCity>पड्गोरिका</exemplarCity>
- </zone>
- <zone type="America/Marigot">
- <exemplarCity>म्यारिगट</exemplarCity>
- </zone>
- <zone type="Indian/Antananarivo">
- <exemplarCity>अन्टानारिभो</exemplarCity>
- </zone>
- <zone type="Pacific/Kwajalein">
- <exemplarCity>क्वाजालेइन</exemplarCity>
- </zone>
- <zone type="Pacific/Majuro">
- <exemplarCity>माजुरो</exemplarCity>
- </zone>
- <zone type="Europe/Skopje">
- <exemplarCity>स्कोपजे</exemplarCity>
- </zone>
- <zone type="Africa/Bamako">
- <exemplarCity>बोमाको</exemplarCity>
- </zone>
- <zone type="Asia/Rangoon">
- <exemplarCity>रान्गुन</exemplarCity>
- </zone>
- <zone type="Asia/Hovd">
- <exemplarCity>होभ्ड</exemplarCity>
- </zone>
- <zone type="Asia/Ulaanbaatar">
- <exemplarCity>उलानबटार</exemplarCity>
- </zone>
- <zone type="Asia/Choibalsan">
- <exemplarCity>चोइबाल्सान</exemplarCity>
- </zone>
- <zone type="Asia/Macau">
- <exemplarCity>मकाउ</exemplarCity>
- </zone>
- <zone type="Pacific/Saipan">
- <exemplarCity>साईपन</exemplarCity>
- </zone>
- <zone type="America/Martinique">
- <exemplarCity>मार्टिनिक</exemplarCity>
- </zone>
- <zone type="Africa/Nouakchott">
- <exemplarCity>नोउआकचोट</exemplarCity>
- </zone>
- <zone type="America/Montserrat">
- <exemplarCity>मन्टसेर्राट</exemplarCity>
- </zone>
- <zone type="Europe/Malta">
- <exemplarCity>माल्टा</exemplarCity>
- </zone>
- <zone type="Indian/Mauritius">
- <exemplarCity>मउरिटिअस</exemplarCity>
- </zone>
- <zone type="Indian/Maldives">
- <exemplarCity>माल्दिभ्स</exemplarCity>
- </zone>
- <zone type="Africa/Blantyre">
- <exemplarCity>ब्लान्टायर</exemplarCity>
- </zone>
- <zone type="America/Tijuana">
- <exemplarCity>तिजुआना</exemplarCity>
- </zone>
- <zone type="America/Santa_Isabel">
- <exemplarCity>सान्टा ईसाबेल</exemplarCity>
- </zone>
- <zone type="America/Hermosillo">
- <exemplarCity>हेर्मोसिल्लो</exemplarCity>
- </zone>
- <zone type="America/Mazatlan">
- <exemplarCity>माजाट्लान</exemplarCity>
- </zone>
- <zone type="America/Chihuahua">
- <exemplarCity>चिहुआहुआ</exemplarCity>
- </zone>
- <zone type="America/Bahia_Banderas">
- <exemplarCity>बाहिअ बन्देर्स</exemplarCity>
- </zone>
- <zone type="America/Ojinaga">
- <exemplarCity>वोन्जिनागा</exemplarCity>
- </zone>
- <zone type="America/Monterrey">
- <exemplarCity>मोन्टेर्रे</exemplarCity>
- </zone>
- <zone type="America/Mexico_City">
- <exemplarCity>मेक्सिको सिटी</exemplarCity>
- </zone>
- <zone type="America/Matamoros">
- <exemplarCity>माट्तामोरोस्</exemplarCity>
- </zone>
- <zone type="America/Merida">
- <exemplarCity>मेरिडा</exemplarCity>
- </zone>
- <zone type="America/Cancun">
- <exemplarCity>कानकुन</exemplarCity>
- </zone>
- <zone type="Asia/Kuala_Lumpur">
- <exemplarCity>कुआ लाम्पुर</exemplarCity>
- </zone>
- <zone type="Asia/Kuching">
- <exemplarCity>कुचिङ</exemplarCity>
- </zone>
- <zone type="Africa/Maputo">
- <exemplarCity>मापुतो</exemplarCity>
- </zone>
- <zone type="Africa/Windhoek">
- <exemplarCity>विन्डहोएक</exemplarCity>
- </zone>
- <zone type="Pacific/Noumea">
- <exemplarCity>नोउमेअ</exemplarCity>
- </zone>
- <zone type="Africa/Niamey">
- <exemplarCity>नायमे</exemplarCity>
- </zone>
- <zone type="Pacific/Norfolk">
- <exemplarCity>नरफोल्क</exemplarCity>
- </zone>
- <zone type="Africa/Lagos">
- <exemplarCity>लागोस</exemplarCity>
- </zone>
- <zone type="America/Managua">
- <exemplarCity>मानागुवा</exemplarCity>
- </zone>
- <zone type="Europe/Amsterdam">
- <exemplarCity>एम्स्ट्र्डम</exemplarCity>
- </zone>
- <zone type="Europe/Oslo">
- <exemplarCity>ओस्लो</exemplarCity>
- </zone>
- <zone type="Asia/Katmandu">
- <exemplarCity>काठमाण्डौं</exemplarCity>
- </zone>
- <zone type="Pacific/Nauru">
- <exemplarCity>नाउरु</exemplarCity>
- </zone>
- <zone type="Pacific/Niue">
- <exemplarCity>निउई</exemplarCity>
- </zone>
- <zone type="Pacific/Chatham">
- <exemplarCity>चाथाम</exemplarCity>
- </zone>
- <zone type="Pacific/Auckland">
- <exemplarCity>अक्कल्यान्ड</exemplarCity>
- </zone>
- <zone type="Asia/Muscat">
- <exemplarCity>मस्क्याट</exemplarCity>
- </zone>
- <zone type="America/Panama">
- <exemplarCity>पानामा</exemplarCity>
- </zone>
- <zone type="America/Lima">
- <exemplarCity>लिमा</exemplarCity>
- </zone>
- <zone type="Pacific/Tahiti">
- <exemplarCity>ताहिती</exemplarCity>
- </zone>
- <zone type="Pacific/Marquesas">
- <exemplarCity>मार्केसास</exemplarCity>
- </zone>
- <zone type="Pacific/Gambier">
- <exemplarCity>ग्याम्बियर</exemplarCity>
- </zone>
- <zone type="Pacific/Port_Moresby">
- <exemplarCity>पोर्ट मोरेस्बी</exemplarCity>
- </zone>
- <zone type="Asia/Manila">
- <exemplarCity>मनिला</exemplarCity>
- </zone>
- <zone type="Asia/Karachi">
- <exemplarCity>कराची</exemplarCity>
- </zone>
- <zone type="Europe/Warsaw">
- <exemplarCity>वारसअ</exemplarCity>
- </zone>
- <zone type="America/Miquelon">
- <exemplarCity>मिक्विलन</exemplarCity>
- </zone>
- <zone type="Pacific/Pitcairn">
- <exemplarCity>पितकाईरन</exemplarCity>
- </zone>
- <zone type="America/Puerto_Rico">
- <exemplarCity>प्युर्टो रिको</exemplarCity>
- </zone>
- <zone type="Asia/Gaza">
- <exemplarCity>गाजा</exemplarCity>
- </zone>
- <zone type="Asia/Hebron">
- <exemplarCity>हिब्रोन</exemplarCity>
- </zone>
- <zone type="Atlantic/Azores">
- <exemplarCity>आजोर्स</exemplarCity>
- </zone>
- <zone type="Atlantic/Madeira">
- <exemplarCity>माडेइरा</exemplarCity>
- </zone>
- <zone type="Europe/Lisbon">
- <exemplarCity>लिस्बोन</exemplarCity>
- </zone>
- <zone type="Pacific/Palau">
- <exemplarCity>पलाउ</exemplarCity>
- </zone>
- <zone type="America/Asuncion">
- <exemplarCity>असन्सियन</exemplarCity>
- </zone>
- <zone type="Asia/Qatar">
- <exemplarCity>कतार</exemplarCity>
- </zone>
- <zone type="Indian/Reunion">
- <exemplarCity>रियुनियन</exemplarCity>
- </zone>
- <zone type="Europe/Bucharest">
- <exemplarCity>वुचारेस्ट</exemplarCity>
- </zone>
- <zone type="Europe/Belgrade">
- <exemplarCity>बेलग्रेड</exemplarCity>
- </zone>
- <zone type="Europe/Kaliningrad">
- <exemplarCity>कालिनिनग्राद</exemplarCity>
- </zone>
- <zone type="Europe/Moscow">
- <exemplarCity>मस्को</exemplarCity>
- </zone>
- <zone type="Europe/Volgograd">
- <exemplarCity>भोल्गोग्राद</exemplarCity>
- </zone>
- <zone type="Europe/Samara">
- <exemplarCity>सामारा</exemplarCity>
- </zone>
- <zone type="Asia/Yekaterinburg">
- <exemplarCity>एकटरिनबुर्ग</exemplarCity>
- </zone>
- <zone type="Asia/Omsk">
- <exemplarCity>ओम्स्क</exemplarCity>
- </zone>
- <zone type="Asia/Novosibirsk">
- <exemplarCity>नोबोसिबिर्स्क</exemplarCity>
- </zone>
- <zone type="Asia/Novokuznetsk">
- <exemplarCity>नेभोकुजनेस्क</exemplarCity>
- </zone>
- <zone type="Asia/Krasnoyarsk">
- <exemplarCity>क्रास्नोयार्स्क</exemplarCity>
- </zone>
- <zone type="Asia/Irkutsk">
- <exemplarCity>इर्कुत्स्क</exemplarCity>
- </zone>
- <zone type="Asia/Yakutsk">
- <exemplarCity>याकुत्स्क</exemplarCity>
- </zone>
- <zone type="Asia/Vladivostok">
- <exemplarCity>भ्लाडिभास्टोक</exemplarCity>
- </zone>
- <zone type="Asia/Khandyga">
- <exemplarCity>खान्दिगा</exemplarCity>
- </zone>
- <zone type="Asia/Sakhalin">
- <exemplarCity>साखालिन</exemplarCity>
- </zone>
- <zone type="Asia/Ust-Nera">
- <exemplarCity>उस्ट-नेरा</exemplarCity>
- </zone>
- <zone type="Asia/Magadan">
- <exemplarCity>मागाडान</exemplarCity>
- </zone>
- <zone type="Asia/Kamchatka">
- <exemplarCity>कामचट्का</exemplarCity>
- </zone>
- <zone type="Asia/Anadyr">
- <exemplarCity>आनाडियर</exemplarCity>
- </zone>
- <zone type="Africa/Kigali">
- <exemplarCity>किगाली</exemplarCity>
- </zone>
- <zone type="Asia/Riyadh">
- <exemplarCity>रियाद</exemplarCity>
- </zone>
- <zone type="Pacific/Guadalcanal">
- <exemplarCity>गुअडालकनाल</exemplarCity>
- </zone>
- <zone type="Indian/Mahe">
- <exemplarCity>माहे</exemplarCity>
- </zone>
- <zone type="Africa/Khartoum">
- <exemplarCity>खार्टउम</exemplarCity>
- </zone>
- <zone type="Europe/Stockholm">
- <exemplarCity>स्टकहोल्म</exemplarCity>
- </zone>
- <zone type="Asia/Singapore">
- <exemplarCity>सिंगापुर</exemplarCity>
- </zone>
- <zone type="Atlantic/St_Helena">
- <exemplarCity>सेन्ट हेलेना</exemplarCity>
- </zone>
- <zone type="Europe/Ljubljana">
- <exemplarCity>लजुबिजाना</exemplarCity>
- </zone>
- <zone type="Arctic/Longyearbyen">
- <exemplarCity>लङयिअरबाइएन</exemplarCity>
- </zone>
- <zone type="Europe/Bratislava">
- <exemplarCity>ब्राटिस्लाभा</exemplarCity>
- </zone>
- <zone type="Africa/Freetown">
- <exemplarCity>फ्रिटाउन</exemplarCity>
- </zone>
- <zone type="Europe/San_Marino">
- <exemplarCity>सान मारिनो</exemplarCity>
- </zone>
- <zone type="Africa/Dakar">
- <exemplarCity>डाकार</exemplarCity>
- </zone>
- <zone type="Africa/Mogadishu">
- <exemplarCity>मोगाडिशु</exemplarCity>
- </zone>
- <zone type="America/Paramaribo">
- <exemplarCity>पारामारिवो</exemplarCity>
- </zone>
- <zone type="Africa/Juba">
- <exemplarCity>जुबा</exemplarCity>
- </zone>
- <zone type="Africa/Sao_Tome">
- <exemplarCity>साओ टोमे</exemplarCity>
- </zone>
- <zone type="America/El_Salvador">
- <exemplarCity>एल् साल्भाडोर</exemplarCity>
- </zone>
- <zone type="America/Lower_Princes">
- <exemplarCity>लोअर प्रिन्स्स क्वार्टर</exemplarCity>
- </zone>
- <zone type="Asia/Damascus">
- <exemplarCity>दामास्कस्</exemplarCity>
- </zone>
- <zone type="Africa/Mbabane">
- <exemplarCity>एमबाबेन</exemplarCity>
- </zone>
- <zone type="America/Grand_Turk">
- <exemplarCity>ग्रान्ड टर्क</exemplarCity>
- </zone>
- <zone type="Africa/Ndjamena">
- <exemplarCity>एन्जामेना</exemplarCity>
- </zone>
- <zone type="Indian/Kerguelen">
- <exemplarCity>केर्गुएलेन</exemplarCity>
- </zone>
- <zone type="Africa/Lome">
- <exemplarCity>लोम</exemplarCity>
- </zone>
- <zone type="Asia/Bangkok">
- <exemplarCity>बैंकक</exemplarCity>
- </zone>
- <zone type="Asia/Dushanbe">
- <exemplarCity>दस्सान्बे</exemplarCity>
- </zone>
- <zone type="Pacific/Fakaofo">
- <exemplarCity>फाकाओफो</exemplarCity>
- </zone>
- <zone type="Asia/Dili">
- <exemplarCity>दिल्ली</exemplarCity>
- </zone>
- <zone type="Asia/Ashgabat">
- <exemplarCity>अस्काबाट</exemplarCity>
- </zone>
- <zone type="Africa/Tunis">
- <exemplarCity>टुनिस</exemplarCity>
- </zone>
- <zone type="Pacific/Tongatapu">
- <exemplarCity>टंगातपु</exemplarCity>
- </zone>
- <zone type="Europe/Istanbul">
- <exemplarCity>ईस्टानबुल</exemplarCity>
- </zone>
- <zone type="America/Port_of_Spain">
- <exemplarCity>पोर्ट अफ् स्पेन</exemplarCity>
- </zone>
- <zone type="Pacific/Funafuti">
- <exemplarCity>फुनाफुति</exemplarCity>
- </zone>
- <zone type="Asia/Taipei">
- <exemplarCity>ताईपे</exemplarCity>
- </zone>
- <zone type="Africa/Dar_es_Salaam">
- <exemplarCity>डार एस् सलाम</exemplarCity>
- </zone>
- <zone type="Europe/Uzhgorod">
- <exemplarCity>उझगोरद</exemplarCity>
- </zone>
- <zone type="Europe/Kiev">
- <exemplarCity>किभ</exemplarCity>
- </zone>
- <zone type="Europe/Simferopol">
- <exemplarCity>सिम्फेरोपोल</exemplarCity>
- </zone>
- <zone type="Europe/Zaporozhye">
- <exemplarCity>जापोरोझ्ये</exemplarCity>
- </zone>
- <zone type="Africa/Kampala">
- <exemplarCity>काम्पाला</exemplarCity>
- </zone>
- <zone type="Pacific/Midway">
- <exemplarCity>मिडवे</exemplarCity>
- </zone>
- <zone type="Pacific/Johnston">
- <exemplarCity>जोन्सटन</exemplarCity>
- </zone>
- <zone type="Pacific/Wake">
- <exemplarCity>वेक</exemplarCity>
- </zone>
- <zone type="America/Adak">
- <exemplarCity>आडाक</exemplarCity>
- </zone>
- <zone type="America/Nome">
- <exemplarCity>नोमे</exemplarCity>
- </zone>
- <zone type="Pacific/Honolulu">
- <exemplarCity>होनोलुलु</exemplarCity>
- </zone>
- <zone type="America/Anchorage">
- <exemplarCity>एङ्कोरेज</exemplarCity>
- </zone>
- <zone type="America/Yakutat">
- <exemplarCity>याकुतात</exemplarCity>
- </zone>
- <zone type="America/Sitka">
- <exemplarCity>सित्तका</exemplarCity>
- </zone>
- <zone type="America/Juneau">
- <exemplarCity>जुनिउ</exemplarCity>
- </zone>
- <zone type="America/Metlakatla">
- <exemplarCity>मेट्लाक्टला</exemplarCity>
- </zone>
- <zone type="America/Los_Angeles">
- <exemplarCity>लस् एन्जेलस</exemplarCity>
- </zone>
- <zone type="America/Boise">
- <exemplarCity>बोइज</exemplarCity>
- </zone>
- <zone type="America/Phoenix">
- <exemplarCity>फोनिक्स</exemplarCity>
- </zone>
- <zone type="America/Denver">
- <exemplarCity>डेन्भर</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Beulah">
- <exemplarCity>बेलुआ, उत्तर डोकोटा</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/New_Salem">
- <exemplarCity>नयाँ सालेम, उत्तर डाकोटा</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Center">
- <exemplarCity>उत्तर डाकोटा, केन्द्र</exemplarCity>
- </zone>
- <zone type="America/Chicago">
- <exemplarCity>चिकागो</exemplarCity>
- </zone>
- <zone type="America/Menominee">
- <exemplarCity>मेनोमिनी</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vincennes">
- <exemplarCity>भिन्सेन्स</exemplarCity>
- </zone>
- <zone type="America/Indiana/Petersburg">
- <exemplarCity>पिटर्सबर्ग, इन्डियाना</exemplarCity>
- </zone>
- <zone type="America/Indiana/Tell_City">
- <exemplarCity>टेल सिटी, इन्डियाना</exemplarCity>
- </zone>
- <zone type="America/Indiana/Knox">
- <exemplarCity>नोक्स, इण्डियाना</exemplarCity>
- </zone>
- <zone type="America/Indiana/Winamac">
- <exemplarCity>विनामाक, इन्डियाना</exemplarCity>
- </zone>
- <zone type="America/Indiana/Marengo">
- <exemplarCity>मारेन्गो, इन्डियाना</exemplarCity>
- </zone>
- <zone type="America/Indianapolis">
- <exemplarCity>इण्डियानापोलिस</exemplarCity>
- </zone>
- <zone type="America/Louisville">
- <exemplarCity>लुइसभिल्ले</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vevay">
- <exemplarCity>भेभे, इन्डियाना</exemplarCity>
- </zone>
- <zone type="America/Kentucky/Monticello">
- <exemplarCity>मोन्टिसेल्लो,केन्टकी</exemplarCity>
- </zone>
- <zone type="America/Detroit">
- <exemplarCity>डिट्रोइट</exemplarCity>
- </zone>
- <zone type="America/New_York">
- <exemplarCity>न्युयोर्क</exemplarCity>
- </zone>
- <zone type="America/Montevideo">
- <exemplarCity>मोन्टेभिडियो</exemplarCity>
- </zone>
- <zone type="Asia/Samarkand">
- <exemplarCity>समारकण्ड</exemplarCity>
- </zone>
- <zone type="Asia/Tashkent">
- <exemplarCity>तास्केन्ट</exemplarCity>
- </zone>
- <zone type="Europe/Vatican">
- <exemplarCity>भ्याटिकन</exemplarCity>
- </zone>
- <zone type="America/St_Vincent">
- <exemplarCity>सेन्ट भिन्सेन्ट</exemplarCity>
- </zone>
- <zone type="America/Caracas">
- <exemplarCity>काराकास</exemplarCity>
- </zone>
- <zone type="America/Tortola">
- <exemplarCity>टार्टोला</exemplarCity>
- </zone>
- <zone type="America/St_Thomas">
- <exemplarCity>सेन्ट थोमस</exemplarCity>
- </zone>
- <zone type="Asia/Saigon">
- <exemplarCity>हो ची मिन्ह शहर</exemplarCity>
- </zone>
- <zone type="Pacific/Efate">
- <exemplarCity>ईफाते</exemplarCity>
- </zone>
- <zone type="Pacific/Wallis">
- <exemplarCity>वालिस</exemplarCity>
- </zone>
- <zone type="Pacific/Apia">
- <exemplarCity>अपिया</exemplarCity>
- </zone>
- <zone type="Asia/Aden">
- <exemplarCity>एडेन</exemplarCity>
- </zone>
- <zone type="Indian/Mayotte">
- <exemplarCity>मायोट्टे</exemplarCity>
- </zone>
- <zone type="Africa/Johannesburg">
- <exemplarCity>जोहानेसवर्ग</exemplarCity>
- </zone>
- <zone type="Africa/Lusaka">
- <exemplarCity>लुसाका</exemplarCity>
- </zone>
- <zone type="Africa/Harare">
- <exemplarCity>हरारे</exemplarCity>
- </zone>
- <metazone type="Afghanistan">
- <long>
- <standard>अफगानिस्तान समय</standard>
- </long>
- </metazone>
- <metazone type="Africa_Central">
- <long>
- <standard>केन्द्रीय अफ्रिकी समय</standard>
- </long>
- </metazone>
- <metazone type="Africa_Eastern">
- <long>
- <standard>पुर्वी अफ्रिकी समय</standard>
- </long>
- </metazone>
- <metazone type="Africa_Southern">
- <long>
- <standard>दक्षिण अफ्रिकी समय</standard>
- </long>
- </metazone>
- <metazone type="Africa_Western">
- <long>
- <generic>पश्चिम अफ्रिकी समय</generic>
- <standard>पश्चिम अफ्रिकी प्रमाणीक समय</standard>
- <daylight>पश्चिम अफ्रिकी ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Alaska">
- <long>
- <generic>अलास्का समय</generic>
- <standard>अलास्का प्रमाणिक समय</standard>
- <daylight>अलस्का दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Amazon">
- <long>
- <generic>अमेजन समय</generic>
- <standard>अमेजन प्रमाणिक समय</standard>
- <daylight>अमेजन ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="America_Central">
- <long>
- <generic>उत्तर अमेरिका केन्द्रिय समय</generic>
- <standard>उत्तर अमेरिका केन्द्रिय प्रमाणिक समय</standard>
- <daylight>उत्तर अमेरिका केन्द्रिय दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="America_Eastern">
- <long>
- <generic>उत्तर अमेरिकी पूर्वी समय</generic>
- <standard>उत्तर अमेरिकी प्रमाणिक समय</standard>
- <daylight>उत्तर अमेरिकी दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="America_Mountain">
- <long>
- <generic>उत्तर अमेरिकी हिमाली समय</generic>
- <standard>अमेरिकी पूर्वी हिमाली प्रमाणिक समय</standard>
- <daylight>अमेरिकी पूर्वी हिमाली दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="America_Pacific">
- <long>
- <generic>उत्तर अमेरिकी प्यासफिक समय</generic>
- <standard>उत्तर अमेरिकी प्यासफिक प्रमाणिक समय</standard>
- <daylight>उत्तर अमेरिकी प्यासफिक दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Arabian">
- <long>
- <generic>अरेबी समय</generic>
- <standard>अरेबी प्रमाणिक समय</standard>
- <daylight>अरेबी दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Argentina">
- <long>
- <generic>अर्जेनटिनी समय</generic>
- <standard>अर्जेनटिनी प्रमाणिक समय</standard>
- <daylight>अर्जेनटिनी ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Argentina_Western">
- <long>
- <generic>उत्तरी अर्जेनटिनी समय</generic>
- <standard>उत्तरी अर्जेनटिनी प्रमाणिक समय</standard>
- <daylight>उत्तरी अर्जेनटिनी ग्रीष्मकालिन समय</daylight>
- </long>
- </metazone>
- <metazone type="Armenia">
- <long>
- <generic>अर्मेनिया समय</generic>
- <standard>अर्मेनिया प्रमाणिक समय</standard>
- <daylight>अर्मेनिया ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Atlantic">
- <long>
- <generic>एट्लान्टिक समय</generic>
- <standard>एट्लान्टिक प्रमाणिक समय</standard>
- <daylight>एट्लान्टिक दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Central">
- <long>
- <generic>केन्द्रिय अस्ट्रेलिया समय</generic>
- <standard>केन्द्रिय अस्ट्रेलिया प्रमाणिक समय</standard>
- <daylight>केन्द्रिय अस्ट्रेलिया दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Australia_CentralWestern">
- <long>
- <generic>केन्द्रिय पश्चिमी अस्ट्रेलिया समय</generic>
- <standard>केन्द्रिय पश्चिमी अस्ट्रेलिया प्रमाणिक समय</standard>
- <daylight>केन्द्रिय पश्चिमी अस्ट्रेलिया दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Eastern">
- <long>
- <generic>पूर्वी अस्ट्रेलिया समय</generic>
- <standard>पूर्वी अस्ट्रेलिया प्रमाणिक समय</standard>
- <daylight>पूर्वी अस्ट्रेलिया दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Western">
- <long>
- <generic>पश्चिमी अस्ट्रेलिया समय</generic>
- <standard>पश्चिमी अस्ट्रेलिया प्रमाणिक समय</standard>
- <daylight>पश्चिमी अस्ट्रेलिया दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Azerbaijan">
- <long>
- <generic>अजेरबैजन समय</generic>
- <standard>अजेरबैजन प्रमाणिक समय</standard>
- <daylight>अजेरबैजन ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Azores">
- <long>
- <generic>एजोरेस् समय</generic>
- <standard>एजोरेस् प्रमाणीक समय</standard>
- <daylight>एजोरेस् ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Bangladesh">
- <long>
- <generic>बंगलादेशी समय</generic>
- <standard>बंगलादेशी प्रमाणिक समय</standard>
- <daylight>बंगलादेशी ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Bhutan">
- <long>
- <standard>भुटानी समय</standard>
- </long>
- </metazone>
- <metazone type="Bolivia">
- <long>
- <standard>बोलिभिया समय</standard>
- </long>
- </metazone>
- <metazone type="Brasilia">
- <long>
- <generic>ब्राजिलीया समय</generic>
- <standard>ब्राजिलीया प्रमाणिक समय</standard>
- <daylight>ब्राजिलीया ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Brunei">
- <long>
- <standard>ब्रुनाई दरुस्सलाम समय</standard>
- </long>
- </metazone>
- <metazone type="Cape_Verde">
- <long>
- <generic>केप भर्दे समय</generic>
- <standard>केप भर्दे प्रमाणिक समय</standard>
- <daylight>केप भर्दे ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Chamorro">
- <long>
- <standard>च्यामोर्रो समय</standard>
- </long>
- </metazone>
- <metazone type="Chatham">
- <long>
- <generic>चाथाम समय</generic>
- <standard>चाथाम प्रमाणिक समय</standard>
- <daylight>चाथाम दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Chile">
- <long>
- <generic>चिल्लि समय</generic>
- <standard>चिल्लि प्रमाणिक समय</standard>
- <daylight>चिल्लि ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="China">
- <long>
- <generic>चीनीयाँ समय</generic>
- <standard>चीनीयाँ प्रमाणिक समय</standard>
- <daylight>चीनीयाँ ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Choibalsan">
- <long>
- <generic>चोईबाल्सन समय</generic>
- <standard>चोईबाल्सन प्रमाणिक समय</standard>
- <daylight>चोईबाल्सन ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Christmas">
- <long>
- <standard>क्रिस्मस टापू समय</standard>
- </long>
- </metazone>
- <metazone type="Cocos">
- <long>
- <standard>कोकोस् टापू समय</standard>
- </long>
- </metazone>
- <metazone type="Colombia">
- <long>
- <generic>कोल्मवियन समय</generic>
- <standard>कोल्मवियन प्रमाणिक समय</standard>
- <daylight>कोल्मवियन ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Cook">
- <long>
- <generic>कुक टापू समय</generic>
- <standard>कुक टापू प्रमाणिक समय</standard>
- <daylight>कुक टापू आधा ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Cuba">
- <long>
- <generic>क्यूबा समय</generic>
- <standard>क्यूबा प्रमाणिक समय</standard>
- <daylight>क्यूबा दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Davis">
- <long>
- <standard>डेभिस समय</standard>
- </long>
- </metazone>
- <metazone type="DumontDUrville">
- <long>
- <standard>डुमोन्ट-डी' उर्भिले समय</standard>
- </long>
- </metazone>
- <metazone type="East_Timor">
- <long>
- <standard>पूर्वी टिमोर समय</standard>
- </long>
- </metazone>
- <metazone type="Easter">
- <long>
- <generic>इस्टर टापू समय</generic>
- <standard>इस्टर टापू प्रमाणिक समय</standard>
- <daylight>इस्टर टापू ग्रीष्म समय</daylight>
- </long>
- </metazone>
- <metazone type="Ecuador">
- <long>
- <standard>ईक्वोडोर समय</standard>
- </long>
- </metazone>
- <metazone type="Europe_Central">
- <long>
- <generic>केन्द्रिय युरोपेली समय</generic>
- <standard>केन्द्रिय युरोपेली प्रमाणीक समय</standard>
- <daylight>केन्द्रिय युरोपेली ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Eastern">
- <long>
- <generic>पूर्वी युरोपेली समय</generic>
- <standard>पूर्वी युरोपेली प्रमाणीक समय</standard>
- <daylight>पूर्वी युरोपेली ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Western">
- <long>
- <generic>युरोपेली समय</generic>
- <standard>युरोपेली प्रमाणीक समय</standard>
- <daylight>युरोपेली ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Falkland">
- <long>
- <generic>फल्कल्यान्ड टापू समय</generic>
- <standard>फल्कल्यान्ड टापू प्रमाणिक समय</standard>
- <daylight>फल्कल्यान्ड टापू ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Fiji">
- <long>
- <generic>फिजी समय</generic>
- <standard>फिजी प्रमाणिक समय</standard>
- <daylight>फिजी ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="French_Guiana">
- <long>
- <standard>फ्रेन्च ग्वाना समय</standard>
- </long>
- </metazone>
- <metazone type="French_Southern">
- <long>
- <standard>फ्रेन्च दक्षिणी र अन्टार्टिक समय</standard>
- </long>
- </metazone>
- <metazone type="Galapagos">
- <long>
- <standard>गालापागोस् समय</standard>
- </long>
- </metazone>
- <metazone type="Gambier">
- <long>
- <standard>ग्याम्बियर समय</standard>
- </long>
- </metazone>
- <metazone type="Georgia">
- <long>
- <generic>जर्जीया समय</generic>
- <standard>जर्जीया प्रमाणिक समय</standard>
- <daylight>जर्जीया ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Gilbert_Islands">
- <long>
- <standard>गिल्बर्ट टापू समय</standard>
- </long>
- </metazone>
- <metazone type="GMT">
- <long>
- <standard>ग्रीनवीच मान समय</standard>
- </long>
- </metazone>
- <metazone type="Greenland_Eastern">
- <long>
- <generic>पूर्वी ग्रीनल्याड समय</generic>
- <standard>पूर्वी ग्रीनल्याड प्रमाणिक समय</standard>
- <daylight>पूर्वी ग्रीनल्याड ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Western">
- <long>
- <generic>पश्चिमी ग्रीनल्याड समय</generic>
- <standard>पश्चिमी ग्रीनल्याड प्रमाणिक समय</standard>
- <daylight>पश्चिमी ग्रीनल्याड ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Gulf">
- <long>
- <standard>गल्फ समय</standard>
- </long>
- </metazone>
- <metazone type="Guyana">
- <long>
- <standard>गुयाना समय</standard>
- </long>
- </metazone>
- <metazone type="Hawaii_Aleutian">
- <long>
- <generic>हवाई-एलुटियन समय</generic>
- <standard>हवाई-एलुटियन प्रमाणिक समय</standard>
- <daylight>हवाई-एलुटियन दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Hong_Kong">
- <long>
- <generic>हंगकंग समय</generic>
- <standard>हंगकंग प्रमाणिक समय</standard>
- <daylight>हंगकंग ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Hovd">
- <long>
- <generic>होब्ड समय</generic>
- <standard>होब्ड प्रमाणिक समय</standard>
- <daylight>होब्ड ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="India">
- <long>
- <standard>भारतीय समय</standard>
- </long>
- </metazone>
- <metazone type="Indian_Ocean">
- <long>
- <standard>ईन्डियन महाद्वीप समय</standard>
- </long>
- </metazone>
- <metazone type="Indochina">
- <long>
- <standard>इन्डोचाईना समय</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Central">
- <long>
- <standard>केन्द्रिय इन्डोनेसियन समय</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Eastern">
- <long>
- <standard>पूर्वी इन्डोनेसियन समय</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Western">
- <long>
- <standard>पश्चिमी इन्डोनेसियन समय</standard>
- </long>
- </metazone>
- <metazone type="Iran">
- <long>
- <generic>ईरानी समय</generic>
- <standard>ईरानी प्रमाणिक समय</standard>
- <daylight>ईरानी दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Irkutsk">
- <long>
- <generic>ईर्कुट्स्क समय</generic>
- <standard>ईर्कुट्स्क प्रमाणिक समय</standard>
- <daylight>ईर्कुट्स्क ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Israel">
- <long>
- <generic>ईजरायल समय</generic>
- <standard>ईजरायल प्रमाणिक समय</standard>
- <daylight>ईजरायल दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Japan">
- <long>
- <generic>जापानी समय</generic>
- <standard>जापानी प्रमाणिक समय</standard>
- <daylight>जापानी दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Eastern">
- <long>
- <standard>पूर्वी काजकस्थान समय</standard>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Western">
- <long>
- <standard>पश्चिम काजकस्थान समय</standard>
- </long>
- </metazone>
- <metazone type="Korea">
- <long>
- <generic>कोरियाली समय</generic>
- <standard>कोरियाली प्रमाणिक समय</standard>
- <daylight>कोरियाली दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Kosrae">
- <long>
- <standard>कोसराए समय</standard>
- </long>
- </metazone>
- <metazone type="Krasnoyarsk">
- <long>
- <generic>क्रासनोयार्क समय</generic>
- <standard>क्रासनोयार्क प्रमाणिक समय</standard>
- <daylight>क्रासनोयार्क ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Kyrgystan">
- <long>
- <standard>किर्गिस्तान समय</standard>
- </long>
- </metazone>
- <metazone type="Line_Islands">
- <long>
- <standard>लाईन टापू समय</standard>
- </long>
- </metazone>
- <metazone type="Lord_Howe">
- <long>
- <generic>लर्ड ह्ववी समय</generic>
- <standard>लर्ड ह्ववी प्रमाणिक समय</standard>
- <daylight>लर्ड ह्ववी दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Macquarie">
- <long>
- <standard>म्याक्वारीया टापू समय</standard>
- </long>
- </metazone>
- <metazone type="Magadan">
- <long>
- <generic>मागादान् समय</generic>
- <standard>मागादान् प्रमाणिक समय</standard>
- <daylight>मागादान् ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Malaysia">
- <long>
- <standard>मलेसिया समय</standard>
- </long>
- </metazone>
- <metazone type="Maldives">
- <long>
- <standard>माल्दिभ्स समय</standard>
- </long>
- </metazone>
- <metazone type="Marquesas">
- <long>
- <standard>मार्केस्स समय</standard>
- </long>
- </metazone>
- <metazone type="Marshall_Islands">
- <long>
- <standard>मार्सेल टापू समय</standard>
- </long>
- </metazone>
- <metazone type="Mauritius">
- <long>
- <generic>मैरीत्यूस् समय</generic>
- <standard>मैरीत्यूस् प्रमाणिक समय</standard>
- <daylight>मैरीत्यूस् ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Mawson">
- <long>
- <standard>म्वसन समय</standard>
- </long>
- </metazone>
- <metazone type="Mongolia">
- <long>
- <generic>उलान बाटोर समय</generic>
- <standard>उलान बाटोर प्रमाणिक समय</standard>
- <daylight>उलान बाटोर ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Moscow">
- <long>
- <generic>मस्काउ समय</generic>
- <standard>मस्काउ प्रमाणिक समय</standard>
- <daylight>मस्काउ ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Myanmar">
- <long>
- <standard>म्यानमार समय</standard>
- </long>
- </metazone>
- <metazone type="Nauru">
- <long>
- <standard>नाउरु समय</standard>
- </long>
- </metazone>
- <metazone type="Nepal">
- <long>
- <standard>नेपाली समय</standard>
- </long>
- </metazone>
- <metazone type="New_Caledonia">
- <long>
- <generic>नयाँ क्यालदोनिया समय</generic>
- <standard>नयाँ क्यालदोनिया प्रमाणिक समय</standard>
- <daylight>नयाँ क्यालदोनिया ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="New_Zealand">
- <long>
- <generic>न्यूजिल्यान्ड समय</generic>
- <standard>न्यूजिल्यान्ड प्रमाणिक समय</standard>
- <daylight>न्यूजिल्यान्ड दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Newfoundland">
- <long>
- <generic>न्यूफाउन्डल्याड समय</generic>
- <standard>न्यूफाउन्डल्याड प्रमाणिक समय</standard>
- <daylight>न्यूफाउन्डल्याड दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Niue">
- <long>
- <standard>निउए समय</standard>
- </long>
- </metazone>
- <metazone type="Norfolk">
- <long>
- <standard>नोर्फल्क टापू समय</standard>
- </long>
- </metazone>
- <metazone type="Noronha">
- <long>
- <generic>फर्नान्डो डे नोरोन्हा समय</generic>
- <standard>फर्नान्डो डे नोरोन्हा प्रमाणिक समय</standard>
- <daylight>फर्नान्डो डे नोरोन्हा ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Novosibirsk">
- <long>
- <generic>नोभोसीबीर्स्क समय</generic>
- <standard>नोभोसीबीर्स्क प्रमाणिक समय</standard>
- <daylight>नोभोसीबीर्स्क ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Omsk">
- <long>
- <generic>ओमस्क समय</generic>
- <standard>ओमस्क प्रमाणिक समय</standard>
- <daylight>ओमस्क ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Pakistan">
- <long>
- <generic>पाकिस्तानी समय</generic>
- <standard>पाकिस्तानी प्रमाणिक समय</standard>
- <daylight>पाकिस्तानी ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Palau">
- <long>
- <standard>पालाउ समय</standard>
- </long>
- </metazone>
- <metazone type="Papua_New_Guinea">
- <long>
- <standard>पपूवा न्यू गिनी समय</standard>
- </long>
- </metazone>
- <metazone type="Paraguay">
- <long>
- <generic>पाराग्वे समय</generic>
- <standard>पाराग्वे प्रमाणिक समय</standard>
- <daylight>पाराग्वे ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Peru">
- <long>
- <generic>पेरु समय</generic>
- <standard>पेरु प्रमाणिक समय</standard>
- <daylight>पेरु ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Philippines">
- <long>
- <generic>फिलीपिनी समय</generic>
- <standard>फिलीपिनी प्रमाणिक समय</standard>
- <daylight>फिलीपिनी ग्रष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Phoenix_Islands">
- <long>
- <standard>फोइनिक्स टापू समय</standard>
- </long>
- </metazone>
- <metazone type="Pierre_Miquelon">
- <long>
- <generic>साय्ट पेईरि र मिक्यूलोन समय</generic>
- <standard>साय्ट पेईरि र मिक्यूलोन प्रमाणिक समय</standard>
- <daylight>साय्ट पेईरि र मिक्यूलोन दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Pitcairn">
- <long>
- <standard>पिटकैरण समय</standard>
- </long>
- </metazone>
- <metazone type="Ponape">
- <long>
- <standard>पोनापे समय</standard>
- </long>
- </metazone>
- <metazone type="Reunion">
- <long>
- <standard>रियुनियन समय</standard>
- </long>
- </metazone>
- <metazone type="Rothera">
- <long>
- <standard>रोथेरा समय</standard>
- </long>
- </metazone>
- <metazone type="Sakhalin">
- <long>
- <generic>साखालिन समय</generic>
- <standard>साखालिन प्रमाणिक समय</standard>
- <daylight>साखालिन ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Samoa">
- <long>
- <generic>सामोअ समय</generic>
- <standard>सामोअ प्रमाणिक समय</standard>
- <daylight>सामोअ दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Seychelles">
- <long>
- <standard>सेयेचेलास् समय</standard>
- </long>
- </metazone>
- <metazone type="Singapore">
- <long>
- <standard>सिंगापुर समय</standard>
- </long>
- </metazone>
- <metazone type="Solomon">
- <long>
- <standard>सोलोमोन टापू समय</standard>
- </long>
- </metazone>
- <metazone type="South_Georgia">
- <long>
- <standard>दक्षिण जर्जिया समय</standard>
- </long>
- </metazone>
- <metazone type="Suriname">
- <long>
- <standard>सुरिनामा समय</standard>
- </long>
- </metazone>
- <metazone type="Syowa">
- <long>
- <standard>स्योवा समय</standard>
- </long>
- </metazone>
- <metazone type="Tahiti">
- <long>
- <standard>ताहिती समय</standard>
- </long>
- </metazone>
- <metazone type="Taipei">
- <long>
- <generic>ताईपे समय</generic>
- <standard>ताईपे प्रमाणिक समय</standard>
- <daylight>ताईपे दिनको समय</daylight>
- </long>
- </metazone>
- <metazone type="Tajikistan">
- <long>
- <standard>ताजकस्थान समय</standard>
- </long>
- </metazone>
- <metazone type="Tokelau">
- <long>
- <standard>तोकेल्यू समय</standard>
- </long>
- </metazone>
- <metazone type="Tonga">
- <long>
- <generic>टोंगा समय</generic>
- <standard>टोंगा प्रमाणिक समय</standard>
- <daylight>टोंगा ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Truk">
- <long>
- <standard>चुउक समय</standard>
- </long>
- </metazone>
- <metazone type="Turkmenistan">
- <long>
- <generic>तुर्कमेनीस्थान समय</generic>
- <standard>तुर्कमेनीस्थान प्रमाणिक समय</standard>
- <daylight>तुर्कमेनीस्थान ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Tuvalu">
- <long>
- <standard>टुभालु समय</standard>
- </long>
- </metazone>
- <metazone type="Uruguay">
- <long>
- <generic>उरुग्वे समय</generic>
- <standard>उरुग्वे प्रमाणिक समय</standard>
- <daylight>उरुग्वे ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Uzbekistan">
- <long>
- <generic>उज्बे्कस्थान समय</generic>
- <standard>उज्बे्कस्थान प्रमाणिक समय</standard>
- <daylight>उज्बे्कस्थान ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Vanuatu">
- <long>
- <generic>भानुआतु समय</generic>
- <standard>भानुआतु प्रमाणिक समय</standard>
- <daylight>भानुआतु ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Venezuela">
- <long>
- <standard>भेनेज्युएला समय</standard>
- </long>
- </metazone>
- <metazone type="Vladivostok">
- <long>
- <generic>भ्लदिस्भोस्टोक समय</generic>
- <standard>भ्लदिस्भोस्टोक प्रमाणिक समय</standard>
- <daylight>भ्लदिस्भोस्टोक ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Volgograd">
- <long>
- <generic>भोल्गोग्राड समय</generic>
- <standard>भोल्गोग्राड प्रमाणिक समय</standard>
- <daylight>भोल्गोग्राड ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Vostok">
- <long>
- <standard>भोस्टोक समय</standard>
- </long>
- </metazone>
- <metazone type="Wake">
- <long>
- <standard>वेक टापू समय</standard>
- </long>
- </metazone>
- <metazone type="Wallis">
- <long>
- <standard>वालिस् र फुटुना समय</standard>
- </long>
- </metazone>
- <metazone type="Yakutsk">
- <long>
- <generic>याकुस्ट समय</generic>
- <standard>याकुस्ट प्रमाणिक समय</standard>
- <daylight>याकुस्ट ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- <metazone type="Yekaterinburg">
- <long>
- <generic>येकाटेरिनबर्ग समय</generic>
- <standard>येकाटेरिनबर्ग प्रमाणीक समय</standard>
- <daylight>येकाटेरिनबर्ग ग्रीष्मकालीन समय</daylight>
- </long>
- </metazone>
- </timeZoneNames>
- </dates>
- <numbers>
- <defaultNumberingSystem>deva</defaultNumberingSystem>
- <otherNumberingSystems>
- <native>deva</native>
- </otherNumberingSystems>
- <symbols numberSystem="deva">
- <decimal>.</decimal>
- <group>,</group>
- <percentSign>%</percentSign>
- <plusSign>+</plusSign>
- <minusSign>-</minusSign>
- <exponential>E</exponential>
- <superscriptingExponent>×</superscriptingExponent>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>NaN</nan>
- </symbols>
- <symbols numberSystem="latn">
- <decimal>.</decimal>
- <group>,</group>
- <list draft="contributed">;</list>
- <percentSign>%</percentSign>
- <plusSign>+</plusSign>
- <minusSign>-</minusSign>
- <exponential>E</exponential>
- <superscriptingExponent>×</superscriptingExponent>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>NaN</nan>
- </symbols>
- <decimalFormats numberSystem="deva">
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <decimalFormats numberSystem="latn">
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="long">
- <decimalFormat>
- <pattern type="1000" count="one">0 हजार</pattern>
- <pattern type="1000" count="other">0 हजार</pattern>
- <pattern type="10000" count="one">00 हजार</pattern>
- <pattern type="10000" count="other">00 हजार</pattern>
- <pattern type="100000" count="one">0 लाख</pattern>
- <pattern type="100000" count="other">0 लाख</pattern>
- <pattern type="1000000" count="one">0 करोड</pattern>
- <pattern type="1000000" count="other">0 करोड</pattern>
- <pattern type="10000000" count="one">00 करोड</pattern>
- <pattern type="10000000" count="other">00 करोड</pattern>
- <pattern type="100000000" count="one">000 करोड</pattern>
- <pattern type="100000000" count="other">000 करोड</pattern>
- <pattern type="1000000000" count="one">0 अर्ब</pattern>
- <pattern type="1000000000" count="other">0 अर्ब</pattern>
- <pattern type="10000000000" count="one">00 अर्ब</pattern>
- <pattern type="10000000000" count="other">00 अर्ब</pattern>
- <pattern type="100000000000" count="one">0 खरब</pattern>
- <pattern type="100000000000" count="other">0 खरब</pattern>
- <pattern type="1000000000000" count="one">0T</pattern>
- <pattern type="1000000000000" count="other">0T</pattern>
- <pattern type="10000000000000" count="one">0 शंख</pattern>
- <pattern type="10000000000000" count="other">0 शंख</pattern>
- <pattern type="100000000000000" count="one">00 शंख</pattern>
- <pattern type="100000000000000" count="other">00 शंख</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="short">
- <decimalFormat>
- <pattern type="1000" count="one">0 हजार</pattern>
- <pattern type="1000" count="other">0 हजार</pattern>
- <pattern type="10000" count="one">00 हजार</pattern>
- <pattern type="10000" count="other">00 हजार</pattern>
- <pattern type="100000" count="one">0 लाख</pattern>
- <pattern type="100000" count="other">0 लाख</pattern>
- <pattern type="1000000" count="one">00 लाख</pattern>
- <pattern type="1000000" count="other">00 लाख</pattern>
- <pattern type="10000000" count="one">0 करोड</pattern>
- <pattern type="10000000" count="other">0 करोड</pattern>
- <pattern type="100000000" count="one">00 करोड</pattern>
- <pattern type="100000000" count="other">00 करोड</pattern>
- <pattern type="1000000000" count="one">0 अरब</pattern>
- <pattern type="1000000000" count="other">0 अरब</pattern>
- <pattern type="10000000000" count="one">00 अरब</pattern>
- <pattern type="10000000000" count="other">00 अरब</pattern>
- <pattern type="100000000000" count="one">0 खरब</pattern>
- <pattern type="100000000000" count="other">0 खरब</pattern>
- <pattern type="1000000000000" count="one">00 खरब</pattern>
- <pattern type="1000000000000" count="other">00 खरब</pattern>
- <pattern type="10000000000000" count="one">0 शंख</pattern>
- <pattern type="10000000000000" count="other">0 शंख</pattern>
- <pattern type="100000000000000" count="one">00 शंख</pattern>
- <pattern type="100000000000000" count="other">00 शंख</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <scientificFormats numberSystem="deva">
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <scientificFormats numberSystem="latn">
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <percentFormats numberSystem="deva">
- <percentFormatLength>
- <percentFormat>
- <pattern>#,##0%</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <percentFormats numberSystem="latn">
- <percentFormatLength>
- <percentFormat>
- <pattern>#,##0%</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <currencyFormats numberSystem="deva">
- <currencyFormatLength>
- <currencyFormat type="standard">
- <pattern>¤#,##0.00</pattern>
- </currencyFormat>
- </currencyFormatLength>
- </currencyFormats>
- <currencyFormats numberSystem="latn">
- <currencyFormatLength>
- <currencyFormat type="standard">
- <pattern>¤ #,##0.00</pattern>
- </currencyFormat>
- <currencyFormat type="accounting">
- <pattern>¤ #,##0.00</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="one">{0} {1}</unitPattern>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="AED">
- <displayName>संयुक्त अरब एमिराट्स डिर्हाम</displayName>
- <displayName count="one">संयुक्त अरब एमिराट्स डिर्हाम</displayName>
- <displayName count="other">संयुक्त अरब एमिराट्स डिर्हाम</displayName>
- </currency>
- <currency type="AFA">
- <displayName draft="contributed">अफ्गानी(१९२७–२००२)</displayName>
- </currency>
- <currency type="AFN">
- <displayName>अफ्गान अफ्गानी</displayName>
- <displayName count="one">अफ्गान अफ्गानी</displayName>
- <displayName count="other">अफ्गान अफ्गानीहरू</displayName>
- </currency>
- <currency type="ALL">
- <displayName>अल्बानियन लेक</displayName>
- </currency>
- <currency type="AMD">
- <displayName>आर्मेनियाली ड्राम</displayName>
- <displayName count="one">आर्मेनियाली ड्राम</displayName>
- <displayName count="other">आर्मेनियाली ड्रामहरू</displayName>
- </currency>
- <currency type="ANG">
- <displayName>नेदरल्याण्ड्स एन्टिलियन गिल्डर</displayName>
- <displayName count="one">नेदरल्याण्ड्स एन्टिलियन गिल्डर</displayName>
- <displayName count="other">नेदरल्याण्ड्स एन्टिलियन गिल्डर</displayName>
- </currency>
- <currency type="AOA">
- <displayName>एङ्गोलान क्वान्जा</displayName>
- <displayName count="one">एङ्गोलान क्वान्जा</displayName>
- <displayName count="other">एङ्गोलान क्वान्जाहरू</displayName>
- </currency>
- <currency type="ARS">
- <displayName>अर्जेन्टिनी पेसो</displayName>
- <displayName count="one">अर्जेन्टिनी पेसो</displayName>
- <displayName count="other">अर्जेन्टिनी पेसोहरू</displayName>
- </currency>
- <currency type="AUD">
- <displayName>अष्ट्रेलियन डलर</displayName>
- <symbol>A$</symbol>
- </currency>
- <currency type="AWG">
- <displayName>आरूबन फ्लोरिन</displayName>
- <displayName count="one">आरूबन फ्लोरिन</displayName>
- <displayName count="other">आरूबन फ्लोरिन</displayName>
- </currency>
- <currency type="AZN">
- <displayName>अजरबैजानी मानात</displayName>
- <displayName count="one">अजरबैजानी मानात</displayName>
- <displayName count="other">अजरबैजानी मानात</displayName>
- </currency>
- <currency type="BAM">
- <displayName>बोस्निया-हर्जगोभिनिया रूपान्तरयोग्य मार्क</displayName>
- <displayName count="one">बोस्निया-हर्जगोभिनिया रूपान्तरयोग्य मार्क</displayName>
- <displayName count="other">बोस्निया-हर्जगोभिनिया रूपान्तरयोग्य मार्कहरू</displayName>
- </currency>
- <currency type="BBD">
- <displayName>बर्बाडियन डलर</displayName>
- <displayName count="one">बार्बाडियन डलर</displayName>
- <displayName count="other">बार्बाडियन डलरहरू</displayName>
- </currency>
- <currency type="BDT">
- <displayName>बङ्गलादेशी टाका</displayName>
- <displayName count="one">बङ्गलादेशी टाका</displayName>
- <displayName count="other">बङ्गलादेशी टाकाहरू</displayName>
- </currency>
- <currency type="BGN">
- <displayName>बुल्गारियाली लेभ</displayName>
- <displayName count="one">बुल्गारियाली लेभ</displayName>
- <displayName count="other">बुल्गारियाली लेभा</displayName>
- </currency>
- <currency type="BHD">
- <displayName>बाहारैनी डिनार</displayName>
- <displayName count="one">बाहारैनी डिनार</displayName>
- <displayName count="other">बाहारैनी डिनारहरू</displayName>
- </currency>
- <currency type="BIF">
- <displayName>बुरूण्डियाली फ्रान्क</displayName>
- <displayName count="one">बुरूण्डियाली फ्रान्क</displayName>
- <displayName count="other">बुरूण्डियाली फ्रान्कहरू</displayName>
- </currency>
- <currency type="BMD">
- <displayName>बर्मुडन डलर</displayName>
- <displayName count="one">बर्मुडन डलर</displayName>
- <displayName count="other">बर्मुडन डलर</displayName>
- </currency>
- <currency type="BND">
- <displayName>ब्रुनाई डलर</displayName>
- <displayName count="one">ब्रुनाई डलर</displayName>
- <displayName count="other">ब्रुनाई डलरहरू</displayName>
- </currency>
- <currency type="BOB">
- <displayName>बोलिभियन बोलिभियानो</displayName>
- <displayName count="one">बोलिभियन बोलिभियानो</displayName>
- <displayName count="other">बोलिभियन बोलिभियानोहरू</displayName>
- </currency>
- <currency type="BRL">
- <displayName>ब्राजिलियन रियल</displayName>
- <symbol>R$</symbol>
- </currency>
- <currency type="BSD">
- <displayName>बहामियाली डलर</displayName>
- <displayName count="one">बहामियाली डलर</displayName>
- <displayName count="other">बहामियाली डलरहरू</displayName>
- </currency>
- <currency type="BTN">
- <displayName>भुटानी एन्गुल्ट्रुम</displayName>
- <displayName count="one">भुटानी एन्गुल्ट्रुम</displayName>
- <displayName count="other">भुटानी एन्गुल्ट्रुमहरू</displayName>
- </currency>
- <currency type="BWP">
- <displayName>बोट्सवानान पुला</displayName>
- <displayName count="one">बोट्सवानान पुला</displayName>
- <displayName count="other">बोट्सवानान पुलाहरू</displayName>
- </currency>
- <currency type="BYR">
- <displayName>बेलारूसी रूबल</displayName>
- <displayName count="one">बेलारूसी रूबल</displayName>
- <displayName count="other">बेलारूसी रूबलहरू</displayName>
- </currency>
- <currency type="BZD">
- <displayName>वेलिज डलर</displayName>
- <displayName count="one">वेलिज डलर</displayName>
- <displayName count="other">वेलिज डलर</displayName>
- </currency>
- <currency type="CAD">
- <displayName>क्यानाडियाली डलर</displayName>
- <displayName count="one">क्यानाडियाली डलर</displayName>
- <displayName count="other">क्याननाडियाली डलरहरू</displayName>
- <symbol>CA$</symbol>
- </currency>
- <currency type="CDF">
- <displayName>कङ्गोली फ्रान्क</displayName>
- <displayName count="one">कङ्गोली फ्रान्क</displayName>
- <displayName count="other">कङ्गोली फ्रान्कहरू</displayName>
- </currency>
- <currency type="CHF">
- <displayName>स्विस् फ्रैङ्क</displayName>
- <displayName count="one">स्विस् फ्रैङ्क</displayName>
- <displayName count="other">स्विस् फ्रैङ्क</displayName>
- </currency>
- <currency type="CLP">
- <displayName>चिलियन पेसो</displayName>
- <displayName count="one">चिलियन पेसो</displayName>
- <displayName count="other">चिलियन पेसोहरू</displayName>
- </currency>
- <currency type="CNY">
- <displayName>चिनिँया युआन</displayName>
- <symbol>CN¥</symbol>
- </currency>
- <currency type="COP">
- <displayName>कोलम्वियन पेसो</displayName>
- <displayName count="one">कोलम्वियन पेसो</displayName>
- <displayName count="other">कोलम्वियन पेसोहरू</displayName>
- </currency>
- <currency type="CRC">
- <displayName>कोष्टारिकन कोलोन</displayName>
- <displayName count="one">कोष्टारिकन कोलोन</displayName>
- <displayName count="other">कोष्टारिकन कोलोनहरू</displayName>
- </currency>
- <currency type="CUC">
- <displayName>क्यूवाली रूपान्तरणयोग्य पेसो</displayName>
- <displayName count="one">क्यूवाली रूपान्तरणयोग्य पेसो</displayName>
- <displayName count="other">क्यूवाली रूपान्तरणयोग्य पेसो</displayName>
- </currency>
- <currency type="CUP">
- <displayName>क्यूवाली पेसो</displayName>
- <displayName count="one">क्यूवाली पेसो</displayName>
- <displayName count="other">क्यूवाली पेसोहरू</displayName>
- </currency>
- <currency type="CVE">
- <displayName>केप भर्डियन एस्कुडो</displayName>
- <displayName count="one">केप भर्डियन एस्कुडो</displayName>
- <displayName count="other">केप भर्डियन एस्कुडोहरू</displayName>
- </currency>
- <currency type="CZK">
- <displayName>चेख गणतञ्त्र कोरूना</displayName>
- <displayName count="one">चेख गणतञ्त्र कोरूना</displayName>
- <displayName count="other">चेख गणतञ्त्र कोरूनाहरू</displayName>
- </currency>
- <currency type="DJF">
- <displayName>जिबौंटियाली फ्रान्क</displayName>
- <displayName count="one">जिबौटियाली फ्रान्क</displayName>
- <displayName count="other">जिबौटियाली फ्रान्कहरू</displayName>
- </currency>
- <currency type="DKK">
- <displayName>ड्यानिश क्रोन</displayName>
- <displayName count="one">ड्यानिश क्रोन</displayName>
- <displayName count="other">ड्यानिश क्रोनर</displayName>
- </currency>
- <currency type="DOP">
- <displayName>डोमिनिकन पेसो</displayName>
- <displayName count="one">डोमिनिकन पेसो</displayName>
- <displayName count="other">डोमिनिकन पेसोहरू</displayName>
- </currency>
- <currency type="DZD">
- <displayName>अल्जेरियाली डिनार</displayName>
- <displayName count="one">अल्जेरियाली डिनार</displayName>
- <displayName count="other">अल्जेरियाली डिनारहरू</displayName>
- </currency>
- <currency type="EGP">
- <displayName>इजिप्सियन पाउन्ड</displayName>
- <displayName count="one">इजिप्सियन पाउन्ड</displayName>
- <displayName count="other">इजिप्सियन पाउन्डहरू</displayName>
- </currency>
- <currency type="ERN">
- <displayName>एरिट्रियन नाक्फा</displayName>
- <displayName count="one">एरिट्रियन नाक्फा</displayName>
- <displayName count="other">एरिट्रियन नाक्फाहरू</displayName>
- </currency>
- <currency type="ETB">
- <displayName>इथियोपियाली बिर</displayName>
- <displayName count="one">इथियोपियाली बिर</displayName>
- <displayName count="other">इथियोपियाली बिरहरू</displayName>
- </currency>
- <currency type="EUR">
- <displayName>युरो</displayName>
- <symbol>€</symbol>
- </currency>
- <currency type="FJD">
- <displayName>फिजीयाली डलर</displayName>
- <displayName count="one">फिजीयाली डलर</displayName>
- <displayName count="other">फिजीयाली डलरहरू</displayName>
- </currency>
- <currency type="FKP">
- <displayName>फक्ल्याण्ड टापुहरूका पाउन्ड</displayName>
- <displayName count="one">फक्ल्याण्ड टापुहरूका पाउन्ड</displayName>
- <displayName count="other">फक्ल्याण्ड टापुहरूका पाउन्डहरू</displayName>
- </currency>
- <currency type="GBP">
- <displayName>बेलायती पाउण्ड स्टर्लिङ</displayName>
- <symbol>£</symbol>
- </currency>
- <currency type="GEL">
- <displayName>जर्जियन लारी</displayName>
- <displayName count="one">जर्जियाली लारी</displayName>
- <displayName count="other">जर्जियाली लारीहरू</displayName>
- </currency>
- <currency type="GHS">
- <displayName>घानाली सेडी</displayName>
- <displayName count="one">घानाली सेडी</displayName>
- <displayName count="other">घानाली सेडीहरू</displayName>
- </currency>
- <currency type="GIP">
- <displayName>जिब्राल्टर पाउण्ड</displayName>
- <displayName count="one">जिब्राल्टर पाउण्ड</displayName>
- <displayName count="other">जिब्राल्टर पाउण्डहरू</displayName>
- </currency>
- <currency type="GMD">
- <displayName>गाम्वियाली डालासी</displayName>
- <displayName count="one">गाम्वियाली डालासी</displayName>
- <displayName count="other">गाम्वियाली डालासीहरू</displayName>
- </currency>
- <currency type="GNF">
- <displayName>गिनियाली फ्रान्क</displayName>
- <displayName count="one">गिनियाली फ्रान्क</displayName>
- <displayName count="other">गिनियाली फ्रान्कहरू</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>ग्वाटेमाला क्वेट्जाल</displayName>
- <displayName count="one">ग्वाटेमाला क्वेट्जाल</displayName>
- <displayName count="other">ग्वाटेमाला क्वेट्जालहरू</displayName>
- </currency>
- <currency type="GYD">
- <displayName>गाइनिज डलर</displayName>
- <displayName count="one">गाइनिज डलर</displayName>
- <displayName count="other">गाइनिज डलरहरू</displayName>
- </currency>
- <currency type="HKD">
- <displayName>हङकङ डलर</displayName>
- <displayName count="one">हङकङ डलर</displayName>
- <displayName count="other">हङकङ डलरहरू</displayName>
- <symbol>HK$</symbol>
- </currency>
- <currency type="HNL">
- <displayName>होन्डुरान लेम्पिरा</displayName>
- <displayName count="one">होन्डुरान लेम्पिरा</displayName>
- <displayName count="other">होन्डुरान लेम्पिराहरू</displayName>
- </currency>
- <currency type="HRK">
- <displayName>क्रोएशियाली कुना</displayName>
- <displayName count="one">क्रोएशियाली कुना</displayName>
- <displayName count="other">क्रोएशियाली कुना</displayName>
- </currency>
- <currency type="HTG">
- <displayName>हैटियाली गुर्ड</displayName>
- <displayName count="one">हैटियाली</displayName>
- <displayName count="other">हैटियाली गुर्डहरु</displayName>
- </currency>
- <currency type="HUF">
- <displayName>हङ्गेरियन फोरिन्ट</displayName>
- <displayName count="one">हङ्गेरियन फोरिन्ट</displayName>
- <displayName count="other">हङ्घैृीञण पओृीण्ठअृु</displayName>
- </currency>
- <currency type="IDR">
- <displayName>इण्डोनेशियाली रूपियाँ</displayName>
- <displayName count="one">इण्डोनेशियाली रूपियाँ</displayName>
- <displayName count="other">इण्डोनेशियाली रूपियाँहरू</displayName>
- </currency>
- <currency type="ILS">
- <displayName>इजरायली नयाँ शेकेल</displayName>
- <displayName count="one">इजरायली नयाँ शेकेल</displayName>
- <displayName count="other">इजरायली नयाँ शेकेलहरु</displayName>
- <symbol>₪</symbol>
- </currency>
- <currency type="INR">
- <displayName>भारती रूपिँया</displayName>
- <symbol>₹</symbol>
- </currency>
- <currency type="IQD">
- <displayName>इराकी डिनार</displayName>
- <displayName count="one">इराकी डिनार</displayName>
- <displayName count="other">इराकी डिनारहरू</displayName>
- </currency>
- <currency type="IRR">
- <displayName>इरानियाली रियाल</displayName>
- <displayName count="one">इरानियाली रियाल</displayName>
- <displayName count="other">इरानियाली रियालहरू</displayName>
- </currency>
- <currency type="ISK">
- <displayName>आइसल्याण्डिक क्रोना</displayName>
- <displayName count="one">आइसल्याण्डिक क्रोना</displayName>
- <displayName count="other">आइसल्याण्डिक क्रोनर</displayName>
- </currency>
- <currency type="JMD">
- <displayName>जमाइकाली डलर</displayName>
- <displayName count="one">जमाइकाली डलर</displayName>
- <displayName count="other">जमाइकाली डलरहरू</displayName>
- </currency>
- <currency type="JOD">
- <displayName>जोर्डानियाली डलर</displayName>
- <displayName count="one">जोर्डानियाली डलर</displayName>
- <displayName count="other">जोर्डानियाली डलरहरू</displayName>
- </currency>
- <currency type="JPY">
- <displayName>जापानी येन</displayName>
- <symbol>JP¥</symbol>
- </currency>
- <currency type="KES">
- <displayName>केन्याली शिलिङ</displayName>
- <displayName count="one">केन्याली शिलिङ</displayName>
- <displayName count="other">केन्याली शिलिङहरू</displayName>
- </currency>
- <currency type="KGS">
- <displayName>किर्गिस्तानी सोम</displayName>
- <displayName count="one">किर्गिस्तानी सोम</displayName>
- <displayName count="other">किर्गिस्तानी सोमहरू</displayName>
- </currency>
- <currency type="KHR">
- <displayName>कम्बोडिनेयाली रियल</displayName>
- <displayName count="one">कम्बोडिनेयाली रियल</displayName>
- <displayName count="other">कम्बोडिनेयाली रियलहरू</displayName>
- </currency>
- <currency type="KMF">
- <displayName>कोमोरियन फ्रान्क</displayName>
- <displayName count="one">कोमोरियन फ्रान्क</displayName>
- <displayName count="other">कोमोरियन फ्रान्कहरू</displayName>
- </currency>
- <currency type="KPW">
- <displayName>उत्तर कोरियाली वन</displayName>
- <displayName count="one">उत्तर कोरियाली वन</displayName>
- <displayName count="other">उत्तर कोरियाली वन</displayName>
- </currency>
- <currency type="KRW">
- <displayName>दक्षिण कोरियाली वन</displayName>
- <displayName count="one">दक्षिण कोरियाली वन</displayName>
- <displayName count="other">दक्षिण कोरियाली वन</displayName>
- <symbol>₩</symbol>
- </currency>
- <currency type="KWD">
- <displayName>कुवेती डिनार</displayName>
- <displayName count="one">कुवेती डिनार</displayName>
- <displayName count="other">कुवेती डिनारहरू</displayName>
- </currency>
- <currency type="KYD">
- <displayName>केम्यान टापुहरूका डलर</displayName>
- <displayName count="one">केम्यान टापुहरूका डलर</displayName>
- <displayName count="other">केम्यान टापुहरूका डलरहरू</displayName>
- </currency>
- <currency type="KZT">
- <displayName>काजाखस्तानी टेन्ज</displayName>
- <displayName count="one">काजाखस्तानी टेन्ज</displayName>
- <displayName count="other">काजाखस्तानी टेन्जहरू</displayName>
- </currency>
- <currency type="LAK">
- <displayName>लाओशियन किप</displayName>
- <displayName count="one">लाओशियन किप</displayName>
- <displayName count="other">लाओशियन किपहरू</displayName>
- </currency>
- <currency type="LBP">
- <displayName>लेबनाली पाउन्ड</displayName>
- <displayName count="one">लेबनाली पाउन्ड</displayName>
- <displayName count="other">लेबनाली पाउन्डहरू</displayName>
- </currency>
- <currency type="LKR">
- <displayName>श्रीलङ्काली रूपिया</displayName>
- <displayName count="one">श्रीलङ्काली रूपिया</displayName>
- <displayName count="other">श्रीलङ्काली रूपियाहरू</displayName>
- </currency>
- <currency type="LRD">
- <displayName>लिबेरियाली डलर</displayName>
- <displayName count="one">लिबेरियाली डलर</displayName>
- <displayName count="other">लिबेरियाली डलरहरू</displayName>
- </currency>
- <currency type="LTL">
- <displayName>लिथुनियाली लिटास</displayName>
- <displayName count="one">लिथुनियाली लिटास</displayName>
- <displayName count="other">लिथुनियाली लिटाई</displayName>
- </currency>
- <currency type="LVL">
- <displayName>लाट्भियाली लाट्स</displayName>
- <displayName count="one">लाट्भियन लाट्स</displayName>
- <displayName count="other">लाट्भियन लाटी</displayName>
- </currency>
- <currency type="LYD">
- <displayName>लिवियाली डिनार</displayName>
- <displayName count="one">लिवियाली डिनार</displayName>
- <displayName count="other">लिवियाली डिनार</displayName>
- </currency>
- <currency type="MAD">
- <displayName>मोरोक्काली डिर्हाम</displayName>
- <displayName count="one">मोरोक्काली डिर्हाम</displayName>
- <displayName count="other">मोरोक्काली डिर्हामहरू</displayName>
- </currency>
- <currency type="MDL">
- <displayName>माल्डोभन लेउ</displayName>
- <displayName count="one">माल्डोभन लेउ</displayName>
- <displayName count="other">माल्डोभन लेई</displayName>
- </currency>
- <currency type="MGA">
- <displayName>मालागासी एरिआरी</displayName>
- <displayName count="one">मालागासी एरिआरी</displayName>
- <displayName count="other">मालागासी एरिआरीहरू</displayName>
- </currency>
- <currency type="MKD">
- <displayName>म्यासेडोनियाली डेनार</displayName>
- <displayName count="one">म्यासेडोनियाली डेनार</displayName>
- <displayName count="other">म्यासेडोनियाली डेनारी</displayName>
- </currency>
- <currency type="MMK">
- <displayName>म्यान्मा क्याट</displayName>
- <displayName count="one">म्यान्मा क्याट</displayName>
- <displayName count="other">म्यान्मा क्याटहरू</displayName>
- </currency>
- <currency type="MNT">
- <displayName>मङ्गोलियाली टुग्रिक</displayName>
- <displayName count="one">मङ्गोलियाली टुग्रिक</displayName>
- <displayName count="other">मङ्गोलियाली टुग्रिकहरू</displayName>
- </currency>
- <currency type="MOP">
- <displayName>माकानिज पटाका</displayName>
- <displayName count="one">माकानिज पटाका</displayName>
- <displayName count="other">माकानिज पटाकाहरू</displayName>
- </currency>
- <currency type="MRO">
- <displayName>माउरिटानियानली औगुइया</displayName>
- <displayName count="one">माउरिटानियाली औगुइया</displayName>
- <displayName count="other">माउरिटानियाली औगुइयाहरू</displayName>
- </currency>
- <currency type="MUR">
- <displayName>माउरिटियन रूपी</displayName>
- <displayName count="one">माउरिटियन रूपी</displayName>
- <displayName count="other">माउरिटियन रूपीहरू</displayName>
- </currency>
- <currency type="MVR">
- <displayName>मालडिभियाली रूफियाँ</displayName>
- <displayName count="one">मालडिभियाली रूफियाँ</displayName>
- <displayName count="other">मालडिभियाली रूफियाँहरू</displayName>
- </currency>
- <currency type="MWK">
- <displayName>मलाविअन क्वाचा</displayName>
- <displayName count="one">मलाविअन क्वाचा</displayName>
- <displayName count="other">मलाविअन क्वाचाहरू</displayName>
- </currency>
- <currency type="MXN">
- <displayName>मेक्सिकन पेसो</displayName>
- <displayName count="one">मेक्सिकन पेसो</displayName>
- <displayName count="other">मेक्सिकन पेसोहरू</displayName>
- <symbol>MX$</symbol>
- </currency>
- <currency type="MYR">
- <displayName>मलेशियाली रिङ्गेट</displayName>
- <displayName count="one">मलेशियाली रिङ्गेट</displayName>
- <displayName count="other">मलेशियाली रिङ्गेटहरू</displayName>
- </currency>
- <currency type="MZN">
- <displayName>मोजाम्विकन मेटिकल</displayName>
- <displayName count="one">मोजाम्विकन मेटिकल</displayName>
- <displayName count="other">मोजाम्विकन मेटिकलहरू</displayName>
- </currency>
- <currency type="NAD">
- <displayName>नामिबियन डलर</displayName>
- <displayName count="one">नामिबियन डलर</displayName>
- <displayName count="other">नामिबियन डलरहरु</displayName>
- </currency>
- <currency type="NGN">
- <displayName>नाइजेरियन नाइरा</displayName>
- <displayName count="one">नाइजेरियन नाइरा</displayName>
- <displayName count="other">नाइजेरियन नाइराहरू</displayName>
- </currency>
- <currency type="NIO">
- <displayName>निकारागुवान कोर्डोवा</displayName>
- <displayName count="one">निकारागुवान कोर्डोवा</displayName>
- <displayName count="other">निकारागुवान कोर्डोवाहरू</displayName>
- </currency>
- <currency type="NOK">
- <displayName>नर्वेजियाली क्रोन</displayName>
- </currency>
- <currency type="NPR">
- <displayName>नेपाली रूपैयाँ</displayName>
- <displayName count="one">नेपाली रूपैयाँ</displayName>
- <displayName count="other">नेपाली रूपैयाँहरू</displayName>
- <symbol>नेरू</symbol>
- </currency>
- <currency type="NZD">
- <displayName>न्यूजिल्याण्ड डलर</displayName>
- <displayName count="one">न्यूजिल्याण्ड डलर</displayName>
- <displayName count="other">न्यूजिल्याण्ड डलरहरू</displayName>
- <symbol>NZ$</symbol>
- </currency>
- <currency type="OMR">
- <displayName>ओमनी रियल</displayName>
- <displayName count="one">ओमनी रियाल</displayName>
- <displayName count="other">ओमनी रियलहरू</displayName>
- </currency>
- <currency type="PAB">
- <displayName>पानामानियाली बाल्बोआ</displayName>
- <displayName count="one">पानामानियाली बाल्बोआ</displayName>
- <displayName count="other">पानामानियाली बाल्बोआहरू</displayName>
- </currency>
- <currency type="PEN">
- <displayName>पेरूभियाली न्यूभो सोल</displayName>
- <displayName count="one">पेरूभियाली न्यूभो सोल</displayName>
- <displayName count="other">पेरूभियाली न्यूभो सोल</displayName>
- </currency>
- <currency type="PGK">
- <displayName>पपुआ न्यू गिनियाली किना</displayName>
- <displayName count="one">पपुआ न्यू गिनियाली किना</displayName>
- <displayName count="other">पपुआ न्यू गिनियाली किना</displayName>
- </currency>
- <currency type="PHP">
- <displayName>फिलिपिनी पेसो</displayName>
- </currency>
- <currency type="PKR">
- <displayName>पाकिस्तानी रूपियाँ</displayName>
- <displayName count="one">पाकिस्तानी रूपियाँ</displayName>
- <displayName count="other">पाकिस्तानी रूपियाँहरू</displayName>
- </currency>
- <currency type="PLN">
- <displayName>पोलिश ज्लोटाई</displayName>
- <displayName count="one">पोलिश ज्लोटाई</displayName>
- <displayName count="other">पोलिश ज्लोटाईहरू</displayName>
- </currency>
- <currency type="PYG">
- <displayName>पारागुयाली गुरानी</displayName>
- <displayName count="one">पारागुयाली गुरानी</displayName>
- <displayName count="other">पारागुयाली गुरानीस</displayName>
- </currency>
- <currency type="QAR">
- <displayName>कतारी रियल</displayName>
- <displayName count="one">कतारी रियाल</displayName>
- <displayName count="other">कतारी रियालहरू</displayName>
- </currency>
- <currency type="RON">
- <displayName>रोमानियाली लेऊ</displayName>
- <displayName count="one">रोमानियाली लेऊ</displayName>
- <displayName count="other">रोमानियाली लेई</displayName>
- </currency>
- <currency type="RSD">
- <displayName>सर्बियाली डिनार</displayName>
- <displayName count="one">सर्बियाली डिनार</displayName>
- <displayName count="other">सर्बियाली डिनारहरू</displayName>
- </currency>
- <currency type="RUB">
- <displayName>रूसी रूबल</displayName>
- <displayName count="one">रूसी रूबल</displayName>
- <displayName count="other">रूसी रूबलहरू</displayName>
- </currency>
- <currency type="RWF">
- <displayName>र्वाण्डाली फ्रान्क</displayName>
- <displayName count="one">र्वाण्डाली फ्रान्क</displayName>
- <displayName count="other">र्वाण्डाली फ्रान्क</displayName>
- </currency>
- <currency type="SAR">
- <displayName>साउदी रियालहरू</displayName>
- <displayName count="one">साउदी रियाल</displayName>
- <displayName count="other">साउदी रियालहरू</displayName>
- </currency>
- <currency type="SBD">
- <displayName>सोलोमन टापुहरूका डलर</displayName>
- <displayName count="one">सोलोमन टापुहरूका डलर</displayName>
- <displayName count="other">सोलोमन टापुहरूका डलर</displayName>
- </currency>
- <currency type="SCR">
- <displayName>सेचेलोइस रूपी</displayName>
- <displayName count="one">सेचेलोइस रूपी</displayName>
- <displayName count="other">सेचेलोइस रूपीहरू</displayName>
- </currency>
- <currency type="SDG">
- <displayName>सुडानी पाउन्ड</displayName>
- <displayName count="one">सुडानी पाउन्ड</displayName>
- <displayName count="other">सुडानी पाउन्डहरू</displayName>
- </currency>
- <currency type="SEK">
- <displayName>स्विडिश क्रोना</displayName>
- <displayName count="one">स्विडिश क्रोना</displayName>
- <displayName count="other">स्विडिश क्रोना</displayName>
- </currency>
- <currency type="SGD">
- <displayName>सिङ्गापुर डलर</displayName>
- <displayName count="one">सिङ्गापुर डलर</displayName>
- <displayName count="other">सिङ्गापुर डलरहरू</displayName>
- </currency>
- <currency type="SHP">
- <displayName>सेन्ट हेलेना पाउन्ड</displayName>
- <displayName count="one">सेन्ट हेलेना पाउन्ड</displayName>
- <displayName count="other">सेन्ट हेलेना पाउन्डहरू</displayName>
- </currency>
- <currency type="SLL">
- <displayName>सियरा लियोनेन लियोन</displayName>
- <displayName count="one">सियरा लियोनेन लियोन</displayName>
- <displayName count="other">सियारा लियोनेन लियोनहरू</displayName>
- </currency>
- <currency type="SOS">
- <displayName>सोमाली शिलिङ</displayName>
- <displayName count="one">सोमाली शिलिङ</displayName>
- <displayName count="other">सोमाली शिलिङहरू</displayName>
- </currency>
- <currency type="SRD">
- <displayName>सुरिनामिज डलर</displayName>
- <displayName count="one">सुरिनामिज डलर</displayName>
- <displayName count="other">सुरिनामिज डलरहरू</displayName>
- </currency>
- <currency type="SSP">
- <displayName>दक्षिण सुडानी पाउन्ड</displayName>
- <displayName count="one">दक्षिण सुडानी पाउन्ड</displayName>
- <displayName count="other">दक्षिण सुडानी पाउन्डहरू</displayName>
- </currency>
- <currency type="STD">
- <displayName>साओ टोम र प्रिन्सिप डोब्रा</displayName>
- <displayName count="one">साओ टोम र प्रिन्सिप डोब्रा</displayName>
- <displayName count="other">साओ टोम र प्रिन्सिप डोब्राहरू</displayName>
- </currency>
- <currency type="SYP">
- <displayName>सिरियाली पाउन्ड</displayName>
- <displayName count="one">सिरियाली पाउन्ड</displayName>
- <displayName count="other">सिरियाली पाउन्डहरू</displayName>
- </currency>
- <currency type="SZL">
- <displayName>स्वाजी लिलान्गेनी</displayName>
- <displayName count="one">स्वाजी लिलान्गेनी</displayName>
- <displayName count="other">स्वाजी इमालेन्गेनी</displayName>
- </currency>
- <currency type="THB">
- <displayName>थाई भाट</displayName>
- <displayName count="one">थाई भाट</displayName>
- <displayName count="other">थाई भाट</displayName>
- <symbol>฿</symbol>
- </currency>
- <currency type="TJS">
- <displayName>ताजिक्स्तानी सोमोनी</displayName>
- <displayName count="one">ताजिक्स्तानी सोमोनी</displayName>
- <displayName count="other">ताजिक्स्तानी सोमोनीहरू</displayName>
- </currency>
- <currency type="TMT">
- <displayName>टुर्क्मेनिस्तानी मानात</displayName>
- <displayName count="one">टुर्क्मेनिस्तानी मानात</displayName>
- <displayName count="other">टुर्क्मेनिस्तानी मानात</displayName>
- </currency>
- <currency type="TND">
- <displayName>टुनिसियाली डिनार</displayName>
- <displayName count="one">टुनिसियाली डिनार</displayName>
- <displayName count="other">टुनिसियाली डिनारहरू</displayName>
- </currency>
- <currency type="TOP">
- <displayName>टङ्गन पाङ्गा</displayName>
- <displayName count="one">टङ्गन पाङ्गा</displayName>
- <displayName count="other">टङ्गन पाङ्गा</displayName>
- </currency>
- <currency type="TRY">
- <displayName>टर्किश लिरा</displayName>
- <displayName count="one">टर्किश लिरा</displayName>
- <displayName count="other">टर्किश लिराहरू</displayName>
- </currency>
- <currency type="TTD">
- <displayName>त्रिनिडाड र टोबागो डलर</displayName>
- <displayName count="one">त्रिनिडाड र टोबागो डलर</displayName>
- <displayName count="other">त्रिनिडाड र टोबागो डलर</displayName>
- </currency>
- <currency type="TWD">
- <displayName>नयाँ ताइवान डलर</displayName>
- <displayName count="one">नयाँ ताइवान डलर</displayName>
- <displayName count="other">नयाँ ताइवान डलरहरू</displayName>
- <symbol>NT$</symbol>
- </currency>
- <currency type="TZS">
- <displayName>ताञ्जानियाली शिलिङ</displayName>
- <displayName count="one">ताञ्जानियाली शिलिङ</displayName>
- <displayName count="other">ताञ्जानियाली शिलिङहरू</displayName>
- </currency>
- <currency type="UAH">
- <displayName>युक्रेनी हिर्भिनिया</displayName>
- <displayName count="one">युक्रेनी हिर्भिनिया</displayName>
- <displayName count="other">युक्रेनी हिर्भिनिया</displayName>
- </currency>
- <currency type="UGX">
- <displayName>युगाण्डाली शिलिङ</displayName>
- <displayName count="one">युगाण्डाली शिलिङहरू</displayName>
- <displayName count="other">युगाण्डाली शिलिङहरू</displayName>
- </currency>
- <currency type="USD">
- <displayName>संयुक्त राज्य डलर</displayName>
- <symbol>US$</symbol>
- </currency>
- <currency type="UYU">
- <displayName>उरूग्वेयन पेसो</displayName>
- <displayName count="one">युरूगुयाली पेसो</displayName>
- <displayName count="other">युरूगुयाली पेसोहरू</displayName>
- </currency>
- <currency type="UZS">
- <displayName>उज्बेकिस्तान सोम</displayName>
- <displayName count="one">युज्बेकिस्तान सोम</displayName>
- <displayName count="other">युज्बेकिस्तान सोम</displayName>
- </currency>
- <currency type="VEF">
- <displayName>भेनेजुएलन बोलिभर</displayName>
- <displayName count="one">भेनेजुएलन बोलिभर</displayName>
- <displayName count="other">भेनेजुएलन बोलिभरहरू</displayName>
- </currency>
- <currency type="VND">
- <displayName>भियतनामी डङ्</displayName>
- <displayName count="one">भियतनामी डङ्</displayName>
- <displayName count="other">भियतनामी डङ्</displayName>
- <symbol>₫</symbol>
- </currency>
- <currency type="VUV">
- <displayName>भानुआतू भातु</displayName>
- <displayName count="one">भानुआतू भातु</displayName>
- <displayName count="other">भानुआतू भातुहरू</displayName>
- </currency>
- <currency type="WST">
- <displayName>सामोआन ताला</displayName>
- <displayName count="one">सामोआन ताला</displayName>
- <displayName count="other">सामोआन ताला</displayName>
- </currency>
- <currency type="XAF">
- <displayName>सीएफ्ए फ्रान्क बीइएसी</displayName>
- <displayName count="one">सीएफ्ए फ्रान्क बीइएसी</displayName>
- <displayName count="other">सीएफ्ए फ्रान्कहरू बीइएसी</displayName>
- <symbol>FCFA</symbol>
- </currency>
- <currency type="XCD">
- <displayName>पूर्वी क्यारिबियन डलर</displayName>
- <displayName count="one">पूर्वी क्यारिबियन डलर</displayName>
- <displayName count="other">पूर्वी क्यारिबियन डलरहरू</displayName>
- <symbol>EC$</symbol>
- </currency>
- <currency type="XOF">
- <displayName>सीएफ्ए फ्रान्क बीसीइएओ</displayName>
- <displayName count="one">सीएफ्ए फ्रान्क बीसीइएओ</displayName>
- <displayName count="other">सीऐफ्ए फ्रान्क्स बीसीइएओ</displayName>
- <symbol>CFA</symbol>
- </currency>
- <currency type="XPF">
- <displayName>सीएफ्पी फ्रान्क</displayName>
- <displayName count="one">सीएफ्पी फ्रान्क</displayName>
- <displayName count="other">सीएफ्पी फ्रान्कहरू</displayName>
- <symbol>CFPF</symbol>
- </currency>
- <currency type="XXX">
- <displayName>अपरिचित मुद्रा</displayName>
- </currency>
- <currency type="YER">
- <displayName>येमेनी रियाल</displayName>
- <displayName count="one">येमेनी रियाल</displayName>
- <displayName count="other">येमेनी रियालहरू</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>दक्षिण अफ्रिकी र्यान्ड</displayName>
- <displayName count="one">दक्षिण अफ्रिकी र्यान्ड</displayName>
- <displayName count="other">दक्षिण अफ्रिकी र्यान्ड</displayName>
- </currency>
- <currency type="ZMK">
- <displayName>जाम्बियाली क्वाचा (१९६८–२०१२)</displayName>
- <displayName count="one">जाम्बियाली क्वाचा (१९६८–२०१२)</displayName>
- <displayName count="other">जाम्बियाली क्वाचाहरू (१९६८–२०१२)</displayName>
- </currency>
- <currency type="ZMW">
- <displayName>जाम्बियाली क्वाचा</displayName>
- <displayName count="one">जाम्बियाली क्वाचा</displayName>
- <displayName count="other">जाम्बियाली क्वाचाहरू</displayName>
- </currency>
- </currencies>
- <miscPatterns numberSystem="latn">
- <pattern type="atLeast">{0}+</pattern>
- <pattern type="range">{0}–{1}</pattern>
- </miscPatterns>
- </numbers>
- <units>
- <unitLength type="long">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} गुरूत्वाकर्षण शक्ति</unitPattern>
- <unitPattern count="other">{0} गुरूत्वाकर्षण शक्ति</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0} मिनेट</unitPattern>
- <unitPattern count="other">{0} मिनेट</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0} सेकेण्ड</unitPattern>
- <unitPattern count="other">{0} सेकेण्ड</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0} डिग्री</unitPattern>
- <unitPattern count="other">{0} डिग्री</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} एकर</unitPattern>
- <unitPattern count="other">{0} एकर</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} हेक्टर</unitPattern>
- <unitPattern count="other">{0} हेक्टर</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} बर्ग फुट</unitPattern>
- <unitPattern count="other">{0} बर्ग फुट</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} बर्ग किलोमिटर</unitPattern>
- <unitPattern count="other">{0} बर्ग किलोमिटर</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} बर्ग मिटर</unitPattern>
- <unitPattern count="other">{0} बर्ग मिटर</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} बर्ग माईल</unitPattern>
- <unitPattern count="other">{0} बर्ग माईल</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} दिन</unitPattern>
- <unitPattern count="other">{0} दिन</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} घण्टा</unitPattern>
- <unitPattern count="other">{0} घण्टा</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} मिली सेकेण्ड</unitPattern>
- <unitPattern count="other">{0} मिली सेकेण्ड</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} मिनेट</unitPattern>
- <unitPattern count="other">{0} मिनेट</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} महिना</unitPattern>
- <unitPattern count="other">{0} महिना</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} सेकेण्ड</unitPattern>
- <unitPattern count="other">{0} सेकेण्ड</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} हप्ता</unitPattern>
- <unitPattern count="other">{0} सप्ताह</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} वर्ष</unitPattern>
- <unitPattern count="other">{0} वर्ष</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} सेन्टिमिटर</unitPattern>
- <unitPattern count="other">{0} सेन्टिमिटर</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} फुट</unitPattern>
- <unitPattern count="other">{0} फुट</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} ईञ्च</unitPattern>
- <unitPattern count="other">{0} ईञ्च</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} किलो मिटर</unitPattern>
- <unitPattern count="other">{0} किलो मिटर</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} प्रकाश वर्ष</unitPattern>
- <unitPattern count="other">{0} प्रकाश वर्ष</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} मिटर</unitPattern>
- <unitPattern count="other">{0} मिटर</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} माईल</unitPattern>
- <unitPattern count="other">{0} माईल</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} मिलि मिटर</unitPattern>
- <unitPattern count="other">{0} मिलि मिटर</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} पिको मिटर</unitPattern>
- <unitPattern count="other">{0} पिको मिटर</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} गज</unitPattern>
- <unitPattern count="other">{0} गज</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} ग्राम</unitPattern>
- <unitPattern count="other">{0} ग्राम</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} किलोग्राम</unitPattern>
- <unitPattern count="other">{0} किलोग्राम</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} आऊन्स</unitPattern>
- <unitPattern count="other">{0} आऊन्स</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} पाउण्ड</unitPattern>
- <unitPattern count="other">{0} पाउण्ड</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} घोडा शक्ति</unitPattern>
- <unitPattern count="other">{0} घोडा शक्ति</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} किलो वाट</unitPattern>
- <unitPattern count="other">{0} किलो वाट</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} वाट</unitPattern>
- <unitPattern count="other">{0} वाट</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} हेक्टो पास्कल</unitPattern>
- <unitPattern count="other">{0} हेक्टो पास्कल</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} ईञ्च पारो</unitPattern>
- <unitPattern count="other">{0} ईञ्च पारो</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} मिलीबार</unitPattern>
- <unitPattern count="other">{0} मिलीबार</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} किलोमिटर प्रति घण्टा</unitPattern>
- <unitPattern count="other">{0} किलोमिटर प्रति घण्टा</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} मिटर प्रति सेकेण्ड</unitPattern>
- <unitPattern count="other">{0} मिटर प्रति सेकेण्ड</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} माईल प्रति घण्टा</unitPattern>
- <unitPattern count="other">{0} माईल प्रति घण्टा</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0} डिग्री सेल्सियस्</unitPattern>
- <unitPattern count="other">{0} डिग्री सेल्सियस्</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}डिग्री फरेनहाइट</unitPattern>
- <unitPattern count="other">{0}डिग्री फरेनहाइट</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} घन किलोमिटर</unitPattern>
- <unitPattern count="other">{0} घन किलोमिटर</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} घन माईल</unitPattern>
- <unitPattern count="other">{0} घन माईल</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} लिटर</unitPattern>
- <unitPattern count="other">{0} लिटर</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="short">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} गुरूत्वाकर्षण शक्त</unitPattern>
- <unitPattern count="other">{0} गुरूत्वाकर्षण शक्ति</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0} मिनेट</unitPattern>
- <unitPattern count="other">{0} मिनेट</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0} सेकेण्ड</unitPattern>
- <unitPattern count="other">{0} सेकेण्ड</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} एकर</unitPattern>
- <unitPattern count="other">{0} एकर</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} हे.</unitPattern>
- <unitPattern count="other">{0} हे.</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} ब.फु.</unitPattern>
- <unitPattern count="other">{0} ब.फु.</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} ब.कि.मि.</unitPattern>
- <unitPattern count="other">{0} ब.कि.मि.</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} ब.मि.</unitPattern>
- <unitPattern count="other">{0} ब.मि.</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} बर्ग माईल</unitPattern>
- <unitPattern count="other">{0} बर्ग माईल</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} दिन</unitPattern>
- <unitPattern count="other">{0} दिन</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} घण्टा</unitPattern>
- <unitPattern count="other">{0} घण्टा</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} मिली से.</unitPattern>
- <unitPattern count="other">{0} मिली से.</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} मिनेट</unitPattern>
- <unitPattern count="other">{0} मिनेट</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} महिना</unitPattern>
- <unitPattern count="other">{0} महिना</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} सेकेण्ड</unitPattern>
- <unitPattern count="other">{0} सेकेण्ड</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} हप्ता</unitPattern>
- <unitPattern count="other">{0} सप्ताह</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} वर्ष</unitPattern>
- <unitPattern count="other">{0} वर्ष</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} से.मी.</unitPattern>
- <unitPattern count="other">{0} से.मी.</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} फुट</unitPattern>
- <unitPattern count="other">{0} फुट</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} ईञ्च</unitPattern>
- <unitPattern count="other">{0} ईञ्च</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} कि.मी.</unitPattern>
- <unitPattern count="other">{0} कि.मी.</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} प्रकाश वर्ष</unitPattern>
- <unitPattern count="other">{0} प्रकाश वर्ष</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} मि.</unitPattern>
- <unitPattern count="other">{0} मि.</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} माईल</unitPattern>
- <unitPattern count="other">{0} माईल</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} मिमि.</unitPattern>
- <unitPattern count="other">{0} मिमि.</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} पिको मिटर</unitPattern>
- <unitPattern count="other">{0} पिको मिटर</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} गज</unitPattern>
- <unitPattern count="other">{0} गज</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} ग्राम</unitPattern>
- <unitPattern count="other">{0} ग्राम</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} किलो</unitPattern>
- <unitPattern count="other">{0} किलो</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} आऊन्स</unitPattern>
- <unitPattern count="other">{0} आऊन्स</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} पाउण्ड</unitPattern>
- <unitPattern count="other">{0} पाउण्ड</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} घोडा</unitPattern>
- <unitPattern count="other">{0} घोडा</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} किलो वाट</unitPattern>
- <unitPattern count="other">{0} किलो वाट</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} वाट</unitPattern>
- <unitPattern count="other">{0} वाट</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} हेक्टो पास्कल</unitPattern>
- <unitPattern count="other">{0} हेक्टो पास्कल</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} ईञ्च पारो</unitPattern>
- <unitPattern count="other">{0} ईञ्च पारो</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} मिलीबार</unitPattern>
- <unitPattern count="other">{0} मिलीबार</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} कि.मि. प्रति घण्टा</unitPattern>
- <unitPattern count="other">{0} कि.मि. प्रति घण्टा</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} मि. प्रति सेकेण्ड</unitPattern>
- <unitPattern count="other">{0} मि. प्रति सेकेण्ड</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} माईल प्रति घण्टा</unitPattern>
- <unitPattern count="other">{0} माईल प्रति घण्टा</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°से</unitPattern>
- <unitPattern count="other">{0}°से</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°फ</unitPattern>
- <unitPattern count="other">{0}°फ</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} घन किलोमिटर³</unitPattern>
- <unitPattern count="other">{0} घन किलोमिटर³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} घन माईल</unitPattern>
- <unitPattern count="other">{0} घन माईल</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} लि.</unitPattern>
- <unitPattern count="other">{0} लि.</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="narrow">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} G</unitPattern>
- <unitPattern count="other">{0} G</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0}′</unitPattern>
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0}″</unitPattern>
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} एकर</unitPattern>
- <unitPattern count="other">{0} एकर</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} हे.</unitPattern>
- <unitPattern count="other">{0} हे.</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} ब.फु.</unitPattern>
- <unitPattern count="other">{0} ब.फु.</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} ब.कि.मि.</unitPattern>
- <unitPattern count="other">{0} ब.कि.मि.</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} ब.मि.</unitPattern>
- <unitPattern count="other">{0} ब.मि.</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} बर्ग माईल</unitPattern>
- <unitPattern count="other">{0} बर्ग माईल</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} दिन</unitPattern>
- <unitPattern count="other">{0} दिन</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} घण्टा</unitPattern>
- <unitPattern count="other">{0} घण्टा</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} मिली से.</unitPattern>
- <unitPattern count="other">{0} मिली से.</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} मिनेट</unitPattern>
- <unitPattern count="other">{0} मिनेट</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} महिना</unitPattern>
- <unitPattern count="other">{0} महिना</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} सेकेण्ड</unitPattern>
- <unitPattern count="other">{0} सेकेण्ड</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} हप्ता</unitPattern>
- <unitPattern count="other">{0} सप्ताह</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} वर्ष</unitPattern>
- <unitPattern count="other">{0} वर्ष</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} से.मी.</unitPattern>
- <unitPattern count="other">{0} से.मी.</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0}′</unitPattern>
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0}″</unitPattern>
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} कि.मी.</unitPattern>
- <unitPattern count="other">{0} कि.मी.</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} ly</unitPattern>
- <unitPattern count="other">{0} ly</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} मि.</unitPattern>
- <unitPattern count="other">{0} मि.</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} माईल</unitPattern>
- <unitPattern count="other">{0} माईल</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} मिमि.</unitPattern>
- <unitPattern count="other">{0} मिमि.</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} pm</unitPattern>
- <unitPattern count="other">{0} pm</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} गज</unitPattern>
- <unitPattern count="other">{0} गज</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} ग्राम</unitPattern>
- <unitPattern count="other">{0} ग्राम</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} किलो</unitPattern>
- <unitPattern count="other">{0} किलो</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} आऊन्स</unitPattern>
- <unitPattern count="other">{0} आऊन्स</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} पाउण्ड</unitPattern>
- <unitPattern count="other">{0} पाउण्ड</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} घोडा</unitPattern>
- <unitPattern count="other">{0} घोडा</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">किलो वाट</unitPattern>
- <unitPattern count="other">{0} किलो वाट</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} वाट</unitPattern>
- <unitPattern count="other">{0} वाट</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} hPa</unitPattern>
- <unitPattern count="other">{0} hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} ईञ्च पारो</unitPattern>
- <unitPattern count="other">{0} ईञ्च पारो</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} मिलीबार</unitPattern>
- <unitPattern count="other">{0} मिलीबार</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} km/h</unitPattern>
- <unitPattern count="other">{0} km/h</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} m/s</unitPattern>
- <unitPattern count="other">{0} m/s</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} mi/h</unitPattern>
- <unitPattern count="other">{0} mi/h</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°फ</unitPattern>
- <unitPattern count="other">{0}°फ</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} km³</unitPattern>
- <unitPattern count="other">{0} km³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} घन माईल</unitPattern>
- <unitPattern count="other">{0} घन माईल</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} लि.</unitPattern>
- <unitPattern count="other">{0} लि.</unitPattern>
- </unit>
- </unitLength>
- <durationUnit type="hm">
- <durationUnitPattern>h:mm</durationUnitPattern>
- </durationUnit>
- <durationUnit type="hms">
- <durationUnitPattern>h:mm:ss</durationUnitPattern>
- </durationUnit>
- <durationUnit type="ms">
- <durationUnitPattern>m:ss</durationUnitPattern>
- </durationUnit>
- </units>
- <listPatterns>
- <listPattern>
- <listPatternPart type="start">{0} र {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0} र {1}</listPatternPart>
- <listPatternPart type="2">{0} र {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit">
- <listPatternPart type="start">{0} {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0} {1}</listPatternPart>
- <listPatternPart type="2">{0} {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit-narrow">
- <listPatternPart type="start">{0} {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0} {1}</listPatternPart>
- <listPatternPart type="2">{0} {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit-short">
- <listPatternPart type="start">{0} {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0} {1}</listPatternPart>
- <listPatternPart type="2">{0} {1}</listPatternPart>
- </listPattern>
- </listPatterns>
- <posix>
- <messages>
- <yesstr>हो</yesstr>
- <nostr>होईन</nostr>
- </messages>
- </posix>
- </ldml>
|