123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737 |
- <?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: 9862 $"/>
- <generation date="$Date: 2014-03-03 17:35:05 -0600 (Mon, 03 Mar 2014) $"/>
- <language type="my"/>
- </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="ang">အင်္ဂလိပ်စာဟောင်း</language>
- <language type="ar">အာရေဗီ</language>
- <language type="ar_001">အရေဗီ(ပုံမှန်)</language>
- <language type="as">အက္စမီစ်</language>
- <language type="az">အော်ဇောဘိုင်ဂျောနီ</language>
- <language type="ban">ဘာလီ</language>
- <language type="bas">ဘာဆာ</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="ce">ချေချင်း</language>
- <language type="chr">ချာရိုကီ</language>
- <language type="cr">ခရီး</language>
- <language type="cs">ချက်</language>
- <language type="cy">ဝေလ</language>
- <language type="da">ဒိန်းမတ်</language>
- <language type="dak">ဒါကိုတာ</language>
- <language type="de">ဂျာမန်</language>
- <language type="de_AT">ဩစတြီးယ ဂျာမန်</language>
- <language type="de_CH">ဆွစ် အမြင့် ဂျာမန်</language>
- <language type="del">ဒီလာဝဲ</language>
- <language type="dum">အလယ်ပိုင်း ဒတ်ချ်</language>
- <language type="dz">ဒွန်ကာ</language>
- <language type="egy">ရှေးဟောင်း အီဂျစ်</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="enm">အလယ်ပိုင်း အင်္ဂလိပ်</language>
- <language type="eo">အက္စပရန္တို</language>
- <language type="es">စပိန်</language>
- <language type="es_419">လက်တင်အမေရိက စပိန်</language>
- <language type="es_ES">စပိန်(ဥရောပ)</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="frm">အလယ်ပိုင်းပြင်သစ်</language>
- <language type="fro">ပြင်သစ်ဟောင်း</language>
- <language type="frr">မြောက်ပိုင်း ဖရီစီရန်</language>
- <language type="frs">အရှေ့ပိုင်း ဖရီစီရန်</language>
- <language type="fy">အနောက်ပိုင်း ဖရီစီရန်</language>
- <language type="ga">အိုင်းရစ်</language>
- <language type="gl">ဂါလာစီယံ</language>
- <language type="gmh">အလယ်ပိုင်းအမြင့်ဂျာမန်</language>
- <language type="gn">ဂူအာရာနီ</language>
- <language type="grc">ရှေးဟောင်း ဂရိ</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="id">အင်ဒိုနီးရှား</language>
- <language type="ig">အစ္ဂဘို</language>
- <language type="ii">စီချွမ် ရီ</language>
- <language type="is">အိုင်စ်လန္ဒီ</language>
- <language type="it">အီတလီ</language>
- <language type="ja">ဂျပန်</language>
- <language type="jpr">ဂျူဒီယို-ပါရှန်</language>
- <language type="jrb">ဂျူဒီယို-အာရေဗျ</language>
- <language type="jv">ဂျာဗားနီးစ်</language>
- <language type="ka">ဂျော်ဂျီယန်</language>
- <language type="kac">ကချင်</language>
- <language type="kg">ကွန်ဂို</language>
- <language type="kha">ခါစီ</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="lo">လာအို</language>
- <language type="lt">လစ္သူအာနီယံ</language>
- <language type="lv">လက္ဘီအံ</language>
- <language type="mg">အာလာဂါစီ</language>
- <language type="mga">အလယ်ပိုင်း အိုင်းရစ်</language>
- <language type="mi" draft="contributed">မောင်းရီ (နယူးဇီလန်ကျွန်းရှိ ပင်ရင်းတိုင်းရင်းသားလူမျိုး)</language>
- <language type="mk">မာစီဒိုနီယံ</language>
- <language type="ml">မလေးရာလမ်</language>
- <language type="mn">မွန်ဂိုလီးယန်း</language>
- <language type="mnc">မန်ချူး</language>
- <language type="mni" draft="unconfirmed">မနိပူရီ</language>
- <language type="mr">မာရသီ</language>
- <language type="ms">မလေး</language>
- <language type="mt">မောလ္တီစ်</language>
- <language type="mul">အကြိမ်များစွာ ဘာသာစကားများ</language>
- <language type="my">ဗမာ</language>
- <language type="nb">ဘွတ်မော်လ်</language>
- <language type="nds">အနိမ့် ဂျာမန်</language>
- <language type="ne">နီပါလီ</language>
- <language type="nl">ဒတ်ချ်</language>
- <language type="nl_BE">ဖလီမစ်ရှ်</language>
- <language type="nn">နော်ဝေး နီးနော်စ်ခ်</language>
- <language type="no">နော်ဝေး</language>
- <language type="or">အိုရီရာ</language>
- <language type="pa">ပန်ချာပီ</language>
- <language type="peo">ပါရှန် အဟောင်း</language>
- <language type="pi">ပါဠိ</language>
- <language type="pl">ပိုလန်</language>
- <language type="ps">ပါရှ်တို</language>
- <language type="pt">ပေါ်တူဂီ</language>
- <language type="pt_BR">ဘရာဇီး ပေါ်တူဂီ</language>
- <language type="qu">ခက်ချ်ဝါ</language>
- <language type="rm">ရောမ</language>
- <language type="ro">ရိုမေနီယား</language>
- <language type="root">မူလရင်းမြစ်</language>
- <language type="ru">ရုရှ</language>
- <language type="sa">သင်္သကရိုက်</language>
- <language type="sco">စကော့</language>
- <language type="sd">စင်ဒီ</language>
- <language type="sga">အိုင်းရစ် ဟောင်း</language>
- <language type="shn">ရှမ်း</language>
- <language type="si">ဆင်ဟာလ</language>
- <language type="sk">စလိုဗက်</language>
- <language type="sl">စလိုဗေးနီးယမ်း</language>
- <language type="sma">တောင်ပိုင်း ဆာမိ</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="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="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="Armn">အာမေးနီးယား</script>
- <script type="Beng">ဘင်္ဂါလီ</script>
- <script type="Bopo">ဘိုပို</script>
- <script type="Brah">ဗြဟ္မမီ</script>
- <script type="Brai">ဘရေ</script>
- <script type="Cyrl">စစ်ရိလစ်</script>
- <script type="Deva">ဒီဗနာဂရီ</script>
- <script type="Ethi">အီသီယိုးပီးယား</script>
- <script type="Geor">ဂျော်ဂျီယန်</script>
- <script type="Grek">ဂရိ</script>
- <script type="Gujr">ဂုဂျာရသီ</script>
- <script type="Guru">ဂူရူ</script>
- <script type="Hang">ဟန်ဂူးလ်</script>
- <script type="Hani">ဟန်</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="Hrkt">ခတခဏ သို့မဟုတ် ဟိရဂဏ</script>
- <script type="Java">ဂျာဗားနီးစ်</script>
- <script type="Jpan">ဂျပန်</script>
- <script type="Kali">ကယားလီ</script>
- <script type="Kana">ခတခဏ</script>
- <script type="Khmr">ခမာ</script>
- <script type="Knda">ခန္နာဒါ</script>
- <script type="Kore">ကိုးရီးယား</script>
- <script type="Laoo">လာအို</script>
- <script type="Latn">လက်တင်</script>
- <script type="Mlym">မာလာရာလန်</script>
- <script type="Mong">မွန်ဂိုလီးယား</script>
- <script type="Mymr">မြန်မာ</script>
- <script type="Orya">အိုရာ</script>
- <script type="Sinh">ဆင်ဟာလ</script>
- <script type="Sund">ဆူဒန်</script>
- <script type="Tale">တိုင်လီ</script>
- <script type="Taml">တမီးလ်</script>
- <script type="Telu">တီလု</script>
- <script type="Tglg">တဂလော့ဂ်</script>
- <script type="Thaa">သာအ်</script>
- <script type="Thai">ထိုင်း</script>
- <script type="Tibt">တိဘက်</script>
- <script type="Visp">မြင်နိုင်သော စကား</script>
- <script type="Xpeo">ပါရှန် အဟောင်း</script>
- <script type="Yiii">ရီ</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="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">ကွန်ဂို (DRC)</territory>
- <territory type="CF">အလယ်ပိုင်း အာဖရိက ပြည်ထောင်စု</territory>
- <territory type="CG">ကွန်ဂို-ဘရာဇာဗီလ်</territory>
- <territory type="CG" alt="variant">ကွန်ဂို (Republic)</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="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="1901">ရှေးရိုးစဉ်လာ ဂျာမန် ရေးထုံး</variant>
- <variant type="1996">၁၉၉၆ ဂျာမန် ရေးထုံး</variant>
- <variant type="1606NICT">အလယ်ပိုင်းနောက်ကျသောပြင်သစ်မှ ၁၆၀၆</variant>
- <variant type="1694ACAD">၁၆၉၄ACAD</variant>
- <variant type="AREVELA">အရှေ့ပိုင်းအာမေးနီးယန်း</variant>
- <variant type="BAKU1926">ပေါင်းစပ်ထားသော တူရကီ လက်တင်စကားလုံး</variant>
- <variant type="FONIPA">IPA အသံထွက်</variant>
- <variant type="FONUPA">UPA အသံထွက်</variant>
- <variant type="POSIX">ကွန်ပျူတာ</variant>
- <variant type="REVISED">ပြန်လည်စီစစ်ထားသော ရေးထုံး</variant>
- <variant type="SCOTLAND">စကော့ စံ အင်္ဂလိပ်</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="buddhist" key="calendar">ဗုဒ္ဓ ပြက္ခဒိန်</type>
- <type type="chinese" key="calendar">တရုတ် ပြက္ခဒိန်</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="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">ဟီဗရူး ပြက္ခဒိန်</type>
- <type type="indian" key="calendar">အိန္ဒြိယ အမျိုးသား ပြက္ခဒိန်</type>
- <type type="islamic" key="calendar">အစ္စလာမ် ပြက္ခဒိန်</type>
- <type type="japanese" key="calendar">ဂျပန် ပြက္ခဒိန်</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="mymrshan" key="numbers">ရှမ်းဂဏန်းခြေ</type>
- <type type="orya" key="numbers">ဩရီရာဂဏန်းခြေ</type>
- <type type="phonebook" key="collation">ဖုန်းစာအုပ် အစီအစဉ်</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="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>
- </types>
- <measurementSystemNames>
- <measurementSystemName type="metric">မက်ထရစ်စနစ်</measurementSystemName>
- <measurementSystemName type="UK">ဗြိတိန်စနစ်</measurementSystemName>
- <measurementSystemName type="US">အမေရိကန်စနစ်</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">ဘာသာစကား - {0}</codePattern>
- <codePattern type="script">စာ - {0}</codePattern>
- <codePattern type="territory">နယ်ပယ်ဒေသ - {0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <characters>
- <exemplarCharacters>[\u1036 း \u1037 က ခ ဂ ဃ င စ ဆ ဇ ဈ ဉ ည ဋ ဌ ဍ ဎ ဏ တ ထ ဒ ဓ န ပ ဖ ဗ ဘ မ ယ ျ ရ ြ လ ဝ \u103D သ ဿ ဟ \u103E ဠ အ ဣ ဤ ဥ ဦ ဧ ဩ ဪ ာ ါ \u102D \u102E \u102F \u1030 ေ \u1032 \u1039 \u103A]</exemplarCharacters>
- <exemplarCharacters type="auxiliary">[ၐ ၑ ဢ ၒ ၓ ၔ ၕ ဨ ၖ ၗ \u1058 \u1059]</exemplarCharacters>
- <exemplarCharacters type="index" draft="contributed">[က ခ ဂ ဃ င စ ဆ ဇ ဈ ဉ ည ဋ ဌ ဍ ဎ ဏ တ ထ ဒ ဓ န ပ ဖ ဗ ဘ မ ယ ရ လ ဝ သ ဟ ဠ အ]</exemplarCharacters>
- <exemplarCharacters type="punctuation">[၊ ။ ‘ ’ “ ”]</exemplarCharacters>
- </characters>
- <delimiters>
- <quotationStart>“</quotationStart>
- <quotationEnd>”</quotationEnd>
- <alternateQuotationStart>‘</alternateQuotationStart>
- <alternateQuotationEnd>’</alternateQuotationEnd>
- </delimiters>
- <dates>
- <calendars>
- <calendar type="generic">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, G y MMMM dd</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">E, d</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">E, G y MMM d</dateFormatItem>
- <dateFormatItem id="H">HH</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">M/d</dateFormatItem>
- <dateFormatItem id="MEd">E, M/d</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">MMM d</dateFormatItem>
- <dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
- <dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
- <dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">G y</dateFormatItem>
- <dateFormatItem id="yyyy">G y</dateFormatItem>
- <dateFormatItem id="yyyyM">G y/M</dateFormatItem>
- <dateFormatItem id="yyyyMd">GGGGG y-MM-dd</dateFormatItem>
- <dateFormatItem id="yyyyMEd">E, G y/M/d</dateFormatItem>
- <dateFormatItem id="yyyyMMM">G y MMM</dateFormatItem>
- <dateFormatItem id="yyyyMMMd">G y MMM d</dateFormatItem>
- <dateFormatItem id="yyyyMMMEd">E, G y MMM d</dateFormatItem>
- <dateFormatItem id="yyyyMMMM">G y MMMM</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="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">M-M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">M/d – M/d</greatestDifference>
- <greatestDifference id="M">M/d – M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">EEEE၊ M/d – EEEE၊ M/d</greatestDifference>
- <greatestDifference id="M">EEEE၊ M/d – EEEE၊ M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM – MMM</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၊ EEEE – MMM d၊ EEEE</greatestDifference>
- <greatestDifference id="M">MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">G y-y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">G y/M – y/M</greatestDifference>
- <greatestDifference id="y">G y/M – y/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">G y/M/d – y/M/d</greatestDifference>
- <greatestDifference id="M">G y/M/d – y/M/d</greatestDifference>
- <greatestDifference id="y">G y/M/d – y/M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">EEEE၊ G y/M/d – EEEE၊ y/M/d</greatestDifference>
- <greatestDifference id="M">EEEE၊ G y/M/d – EEEE၊ y/M/d</greatestDifference>
- <greatestDifference id="y">EEEE၊ G y/M/d – EEEE၊ y/M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">G y MMM – y 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၊ EEEE – MMM d၊ EEEE</greatestDifference>
- <greatestDifference id="M">G y၊ MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
- <greatestDifference id="y">G y၊ MMM d၊ EEEE – y၊ MMM d၊ EEEE</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="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="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="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>
- <eraNames>
- <era type="0">ခရစ်တော် မပေါ်မီကာလ</era>
- <era type="1">ခရစ်တော် ပေါ်ထွန်းပြီးကာလ</era>
- </eraNames>
- <eraAbbr>
- <era type="0">ဘီစီ</era>
- <era type="0" alt="variant">ဘီစီအီး</era>
- <era type="1">အေဒီ</era>
- <era type="1" alt="variant">စီအီး</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, y MMMM dd</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>yy/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">E, d</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">E, G y MMM d</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">M/d</dateFormatItem>
- <dateFormatItem id="MEd">E, M/d</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">MMM d</dateFormatItem>
- <dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
- <dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
- <dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">y/M</dateFormatItem>
- <dateFormatItem id="yMd">y-MM-dd</dateFormatItem>
- <dateFormatItem id="yMEd">E, y/M/d</dateFormatItem>
- <dateFormatItem id="yMMM">y MMM</dateFormatItem>
- <dateFormatItem id="yMMMd">y MMM d</dateFormatItem>
- <dateFormatItem id="yMMMEd">E, y MMM d</dateFormatItem>
- <dateFormatItem id="yMMMM">y MMMM</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">M-M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">M/d – M/d</greatestDifference>
- <greatestDifference id="M">M/d – M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">EEEE၊ M/d – EEEE၊ M/d</greatestDifference>
- <greatestDifference id="M">EEEE၊ M/d – EEEE၊ M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM – MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">MMM d – MMM d</greatestDifference>
- <greatestDifference id="M">MMM d – MMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
- <greatestDifference id="M">MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y-y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">y/M – y/M</greatestDifference>
- <greatestDifference id="y">y/M – y/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">y/M/d – y/M/d</greatestDifference>
- <greatestDifference id="M">y/M/d – y/M/d</greatestDifference>
- <greatestDifference id="y">y/M/d – y/M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">EEEE၊ y/M/d – EEEE၊ y/M/d</greatestDifference>
- <greatestDifference id="M">EEEE၊ y/M/d – EEEE၊ y/M/d</greatestDifference>
- <greatestDifference id="y">EEEE၊ y/M/d – EEEE၊ y/M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">y MMM – y 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၊ EEEE – MMM d၊ EEEE</greatestDifference>
- <greatestDifference id="M">y၊ MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
- <greatestDifference id="y">y၊ MMM d၊ EEEE – y၊ MMM d၊ EEEE</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="other">{0}နှစ်အတွင်း</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <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="other">{0}လအတွင်း</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <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="other">{0}ပတ်အတွင်း</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <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>
- <relative type="2">သဘက်ခါ</relative>
- <relativeTime type="future">
- <relativeTimePattern count="other">{0}ရက်အတွင်း</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <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="other">{0}နာရီအတွင်း</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="other">လွန်ခဲ့သော{0}နာရီ</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="minute">
- <displayName>မိနစ်</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="other">{0}မိနစ်အတွင်း</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="other">လွန်ခဲ့သော{0}မိနစ်</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="second">
- <displayName>စက္ကန့်</displayName>
- <relative type="0">ယခု</relative>
- <relativeTime type="future">
- <relativeTimePattern count="other">{0}စက္ကန့်အတွင်း</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="other">လွန်ခဲ့သော{0}စက္ကန့်</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="zone">
- <displayName>ဇုန်</displayName>
- </field>
- </fields>
- <timeZoneNames>
- <hourFormat>+HH:mm;-HH:mm</hourFormat>
- <gmtFormat>ဂရင်းနစ်စံတော်ချိန်{0}</gmtFormat>
- <gmtZeroFormat>ဂရင်းနစ်စံတော်ချိန်</gmtZeroFormat>
- <regionFormat>{0}အချိန်</regionFormat>
- <regionFormat type="daylight">{0} (+1)</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="Lanka">
- <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="Macau">
- <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>mymr</defaultNumberingSystem>
- <otherNumberingSystems>
- <native>mymr</native>
- </otherNumberingSystems>
- <symbols numberSystem="latn">
- <decimal>.</decimal>
- <group>,</group>
- <list>;</list>
- <percentSign>%</percentSign>
- <plusSign>+</plusSign>
- <minusSign>-</minusSign>
- <exponential>E</exponential>
- <superscriptingExponent>×</superscriptingExponent>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>ဂဏန်းမဟုတ်သော</nan>
- </symbols>
- <symbols numberSystem="mymr">
- <list>၊</list>
- </symbols>
- <decimalFormats numberSystem="latn">
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="long">
- <decimalFormat>
- <pattern type="1000" count="other">0ထောင်</pattern>
- <pattern type="10000" count="other">0သောင်း</pattern>
- <pattern type="100000" count="other">0သိန်း</pattern>
- <pattern type="1000000" count="other">0သန်း</pattern>
- <pattern type="10000000" count="other">0ကုဋေ</pattern>
- <pattern type="100000000" count="other">00ကုဋေ</pattern>
- <pattern type="1000000000" count="other">000ကုဋေ</pattern>
- <pattern type="10000000000" count="other">0000ကုဋေ</pattern>
- <pattern type="100000000000" count="other">00000ကုဋေ</pattern>
- <pattern type="1000000000000" count="other">000000ကုဋေ</pattern>
- <pattern type="10000000000000" count="other">0000000ကုဋေ</pattern>
- <pattern type="100000000000000" count="other">0ကောဋိ</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="short">
- <decimalFormat>
- <pattern type="1000" count="other">0ထောင်</pattern>
- <pattern type="10000" count="other">0သောင်း</pattern>
- <pattern type="100000" count="other">0သိန်း</pattern>
- <pattern type="1000000" count="other">0သန်း</pattern>
- <pattern type="10000000" count="other">0ကုဋေ</pattern>
- <pattern type="100000000" count="other">00ကုဋေ</pattern>
- <pattern type="1000000000" count="other">ကုဋေ000</pattern>
- <pattern type="10000000000" count="other">ကုဋေ0000</pattern>
- <pattern type="100000000000" count="other">0000ကုဋေ</pattern>
- <pattern type="1000000000000" count="other">ကုဋေ0သိန်း</pattern>
- <pattern type="10000000000000" count="other">ကုဋေ0သန်း</pattern>
- <pattern type="100000000000000" count="other">0ကောဋိ</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <scientificFormats numberSystem="latn">
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <percentFormats numberSystem="latn">
- <percentFormatLength>
- <percentFormat>
- <pattern>#,##0%</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <currencyFormats numberSystem="latn">
- <currencyFormatLength>
- <currencyFormat type="standard">
- <pattern>¤ #,##0.00</pattern>
- </currencyFormat>
- <currencyFormat type="accounting">
- <pattern>¤ #,##0.00</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="AED">
- <displayName>အာရပ်ဒူဟမ်း</displayName>
- <displayName count="other">အာရပ်ဒူဟမ်း</displayName>
- </currency>
- <currency type="AFN">
- <displayName>အာဖဂန်အာဖဂါနီ</displayName>
- <displayName count="other">အာဖဂန်အာဖဂါနီ</displayName>
- </currency>
- <currency type="ALL">
- <displayName>အယ်လ်ဘီးနီးယားလီခ်</displayName>
- <displayName count="other">အယ်လ်ဘီးနီးယားလီခ်</displayName>
- </currency>
- <currency type="AMD">
- <displayName>အာမေးနီးယားဒရမ်း</displayName>
- <displayName count="other">အာမေးနီးယားဒရမ်း</displayName>
- </currency>
- <currency type="ANG">
- <displayName>နယ်သာလန် အန်တီလန် ဂင်းဒါး</displayName>
- <displayName count="other">နယ်သာလန် အန်တီလန် ဂင်းဒါး</displayName>
- </currency>
- <currency type="AOA">
- <displayName>အင်ဂိုလာ ကန်ဇာ</displayName>
- <displayName count="other">အင်ဂိုလာ ကန်ဇာ</displayName>
- </currency>
- <currency type="ARP">
- <displayName>အာဂျင်တီးနား ပီဆို (၁၉၈၃–၁၉၈၅)</displayName>
- </currency>
- <currency type="ARS">
- <displayName>အာဂျင်တီးနား ပီဆို</displayName>
- <displayName count="other">အာဂျင်တီးနား ပီဆို</displayName>
- </currency>
- <currency type="AUD">
- <displayName>ဩစတြေးလျ ဒေါ်လာ</displayName>
- <displayName count="other">ဩစတြေးလျ ဒေါ်လာ</displayName>
- <symbol>A$</symbol>
- </currency>
- <currency type="AWG">
- <displayName>အရူဘန် ဂင်းဒါး</displayName>
- </currency>
- <currency type="AZN">
- <displayName>အဇာဘိုင်ဂျန်မာနတ်</displayName>
- <displayName count="other">အဇာဘိုင်ဂျန်မာနတ်</displayName>
- </currency>
- <currency type="BAM">
- <displayName>ဘော့စနီးယား နှင့် ဟာဇီဂိုဘီးနားမတ်က်</displayName>
- <displayName count="other">ဘော့စနီးယား နှင့် ဟာဇီဂိုဘီးနားမတ်က်</displayName>
- </currency>
- <currency type="BBD">
- <displayName>ဘာဘဒီယံဒေါ်လာ</displayName>
- <displayName count="other">ဘာဘဒီယံဒေါ်လာ</displayName>
- </currency>
- <currency type="BDT">
- <displayName>ဘင်္ဂလားဒေ့ရှ် တာကာ</displayName>
- <displayName count="other">ဘင်္ဂလားဒေ့ရှ် တာကာ</displayName>
- </currency>
- <currency type="BEF">
- <displayName>ဘယ်လ်ဂျီယမ် ဖရန့်</displayName>
- </currency>
- <currency type="BGN">
- <displayName>ဘူဂေးရီးယားလက်ဖ်</displayName>
- <displayName count="other">ဘူဂေးရီးယားလက်ဖ်</displayName>
- </currency>
- <currency type="BHD">
- <displayName>ဘာရိန်းဒီနား</displayName>
- <displayName count="other">ဘာရိန်းဒီနား</displayName>
- </currency>
- <currency type="BIF">
- <displayName>ဘူရွန်ဒီ ဖရန့်</displayName>
- <displayName count="other">ဘူရွန်ဒီ ဖရန့်</displayName>
- </currency>
- <currency type="BMD">
- <displayName>ဘာမူဒါ ဒေါ်လာ</displayName>
- <displayName count="other">ဘာမူဒါ ဒေါ်လာ</displayName>
- </currency>
- <currency type="BND">
- <displayName>ဘရူနိုင်း ဒေါ်လာ</displayName>
- <displayName count="other">ဘရူနိုင်း ဒေါ်လာ</displayName>
- </currency>
- <currency type="BOB">
- <displayName>ဘိုလီဘီယံ ဘိုလီဘီအားနို</displayName>
- <displayName count="other">ဘိုလီဘီယံ ဘိုလီဘီအားနိုစ်</displayName>
- </currency>
- <currency type="BOP">
- <displayName>ဘိုလီးဘီးယား ပီဆို</displayName>
- </currency>
- <currency type="BRL">
- <displayName>ဘရာဇီး ရီးယဲ</displayName>
- <displayName count="other">ဘရာဇီး ရီးယဲ</displayName>
- <symbol>R$</symbol>
- </currency>
- <currency type="BSD">
- <displayName>ဘဟားမား ဒေါ်လာ</displayName>
- <displayName count="other">ဘဟားမား ဒေါ်လာ</displayName>
- </currency>
- <currency type="BTN">
- <displayName>ဘူတန်အံဂါလ်ထရန်</displayName>
- <displayName count="other">ဘူတန်အံဂါလ်ထရန်</displayName>
- </currency>
- <currency type="BUK">
- <displayName>ဗမာ ကျပ်</displayName>
- </currency>
- <currency type="BWP">
- <displayName>ဘော့စ်ဝါနာ ပုလ</displayName>
- </currency>
- <currency type="BYB">
- <displayName>ဘီလာရုစ် ရူဘယ်အသစ် (၁၉၉၄–၁၉၉၉)</displayName>
- </currency>
- <currency type="BYR">
- <displayName>ဘီလာရုစ် ရူဘယ်</displayName>
- <displayName count="other">ဘီလာရုစ် ရူဘယ်</displayName>
- </currency>
- <currency type="BZD">
- <displayName>ဘေလီဇ် ဒေါ်လာ</displayName>
- <displayName count="other">ဘေလီဇ် ဒေါ်လာ</displayName>
- </currency>
- <currency type="CAD">
- <displayName>ကနေဒါ ဒေါ်လာ</displayName>
- <displayName count="other">ကနေဒါ ဒေါ်လာ</displayName>
- <symbol>CA$</symbol>
- </currency>
- <currency type="CDF">
- <displayName>ကွန်ဂို ဖရန့်</displayName>
- <displayName count="other">ကွန်ဂို ဖရန့်</displayName>
- </currency>
- <currency type="CHF">
- <displayName>ဆွစ် ဖရန့်</displayName>
- <displayName count="other">ဆွစ် ဖရန့်</displayName>
- </currency>
- <currency type="CLP">
- <displayName>ချီလီ ပီဆို</displayName>
- <displayName count="other">ချီလီ ပီဆို</displayName>
- </currency>
- <currency type="CNY">
- <displayName>တရုတ် ယွမ်</displayName>
- <displayName count="other">တရုတ် ယွမ်</displayName>
- <symbol>CN¥</symbol>
- </currency>
- <currency type="COP">
- <displayName>ကိုလံဘီယာ ပီဆို</displayName>
- <displayName count="other">ကိုလံဘီယာ ပီဆို</displayName>
- </currency>
- <currency type="CRC">
- <displayName>ကော့စ်တာရီကာ ခိုလုံး</displayName>
- <displayName count="other">ကော့စ်တာရီကာ ခိုလုံး</displayName>
- </currency>
- <currency type="CUC">
- <displayName draft="contributed">နိုင်ငျံခားငွေလဲလှယ်နိုင်သော ကျူးဘားပီဆို ငွေ။</displayName>
- <displayName count="other" draft="contributed">နိုင်ငျံခားငွေလဲလှယ်နိုင်သော ကျူးဘားပီဆို ငွေ။</displayName>
- </currency>
- <currency type="CUP">
- <displayName>ကျူးဘား ပီဆို</displayName>
- </currency>
- <currency type="CVE">
- <displayName>ခေ့ပ်ဗာဒူ အက်စ်ခူဒို</displayName>
- <displayName count="other">ခေ့ပ်ဗာဒူ အက်စ်ခူဒို</displayName>
- </currency>
- <currency type="CYP">
- <displayName>ဆိုက်ပရက်စ် ပေါင်</displayName>
- </currency>
- <currency type="CZK">
- <displayName>ချက်ခိုရိုနာ</displayName>
- <displayName count="other">ချက်ခိုရိုနာ</displayName>
- </currency>
- <currency type="DEM">
- <displayName>ဂျာမဏီ မတ်</displayName>
- </currency>
- <currency type="DJF">
- <displayName>ဂျီဘူတီ ဖရန့်</displayName>
- <displayName count="other">ဂျီဘူတီ ဖရန့်</displayName>
- </currency>
- <currency type="DKK">
- <displayName>ဒိန်းမတ်ခရိုဏာ</displayName>
- <displayName count="other">ဒိန်းမတ် ခရိုဏာ</displayName>
- </currency>
- <currency type="DOP">
- <displayName>ဒိုမီနီကန် ပီဆို</displayName>
- </currency>
- <currency type="DZD">
- <displayName>အဲလ်ဂျီရီယန် ဒီနာ</displayName>
- <displayName count="other">အဲလ်ဂျီရီယန် ဒီနာ</displayName>
- </currency>
- <currency type="EGP">
- <displayName>အီဂျစ် ပေါင်</displayName>
- <displayName count="other">အီဂျစ် ပေါင်</displayName>
- </currency>
- <currency type="ERN">
- <displayName>အီရီတရီအာနာ့ခ်ဖာ</displayName>
- <displayName count="other">အီရီတရီအာနာ့ခ်ဖာ</displayName>
- </currency>
- <currency type="ESP">
- <displayName>စပိန် ပယ်စေးတာ</displayName>
- </currency>
- <currency type="ETB">
- <displayName>အီသီယိုးပီးယားဘီးယာ</displayName>
- <displayName count="other">အီသီယိုးပီးယားဘီးယာ</displayName>
- </currency>
- <currency type="EUR">
- <displayName>ယူရို</displayName>
- <displayName count="other">ယူရို</displayName>
- <symbol>€</symbol>
- </currency>
- <currency type="FJD">
- <displayName>ဖီဂျီ ဒေါ်လာ</displayName>
- <displayName count="other">ဖီဂျီ ဒေါ်လာ</displayName>
- </currency>
- <currency type="FKP">
- <displayName>ဖောက်ကလန် ကျွန်းစု ပေါင်</displayName>
- <displayName count="other">ဖောက်ကလန် ကျွန်းစု ပေါင်</displayName>
- </currency>
- <currency type="FRF">
- <displayName>ပြင်သစ် ဖရန့်</displayName>
- </currency>
- <currency type="GBP">
- <displayName>ဗြိတိသျှ ပေါင်</displayName>
- <displayName count="other">ဗြိတိသျှ ပေါင်</displayName>
- <symbol>£</symbol>
- </currency>
- <currency type="GEL">
- <displayName>ဂျော်ဂျီယာလားရီ</displayName>
- <displayName count="other">ဂျော်ဂျီယာလားရီ</displayName>
- </currency>
- <currency type="GHS">
- <displayName>ဂါနာ ဆဲဒီ</displayName>
- <displayName count="other">ဂါနာ ဆဲဒီ</displayName>
- </currency>
- <currency type="GIP">
- <displayName>ဂျီဘရော်လ်တာ ပေါင်</displayName>
- </currency>
- <currency type="GMD">
- <displayName>ဂန်ဘီယာ ဒါလာစီ</displayName>
- <displayName count="other">ဂန်ဘီယာ ဒါလာစီ</displayName>
- </currency>
- <currency type="GNF">
- <displayName>ဂီးနီ ဖရန့်</displayName>
- <displayName count="other">ဂီရာနာ ဖရန့်</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>ဂွာတီမာလာ ခက်ဇော်လ်</displayName>
- <displayName count="other">ဂွာတီမာလာ ခက်ဇော်လ်</displayName>
- </currency>
- <currency type="GYD">
- <displayName>ဂူရာနာ ဒေါ်လာ</displayName>
- <displayName count="other">ဂူရာနာ ဒေါ်လာ</displayName>
- </currency>
- <currency type="HKD">
- <displayName>ဟောင်ကောင် ဒေါ်လာ</displayName>
- <symbol>HK$</symbol>
- </currency>
- <currency type="HNL">
- <displayName>ဟွန်ဒူးရပ်စ် လန်းပီးရာ</displayName>
- <displayName count="other">ဟွန်ဒူးရပ်စ် လန်းပီးရာ</displayName>
- </currency>
- <currency type="HRK">
- <displayName>ခရိုအေးရှားခူးနာ</displayName>
- <displayName count="other">ခရိုအေးရှားခူးနာ</displayName>
- </currency>
- <currency type="HTG">
- <displayName>ဟေတီဂူးအော်ဒ်</displayName>
- <displayName count="other">ဟေတီဂူးအော်ဒ်</displayName>
- </currency>
- <currency type="HUF">
- <displayName>ဟန်ဂေရီယံဖော်ရင့်တ်</displayName>
- <displayName count="other">ဟန်ဂေရီယံဖော်ရင့်တ်</displayName>
- </currency>
- <currency type="IDR">
- <displayName>အင်ဒိုနီးရှား ရူပီးယား</displayName>
- <displayName count="other">အင်ဒိုနီးရှား ရူပီးယား</displayName>
- </currency>
- <currency type="ILP">
- <displayName>အစ္စရေး ပေါင်</displayName>
- </currency>
- <currency type="ILS">
- <displayName>အစ္စရေးရှဲကလ်အသစ်</displayName>
- <displayName count="other">အစ္စရေးရှဲကလ်အသစ်</displayName>
- <symbol>₪</symbol>
- </currency>
- <currency type="INR">
- <displayName>အိန္ဒိယ ရူပီး</displayName>
- <displayName count="other">အိန္ဒိယ ရူပီး</displayName>
- <symbol>₹</symbol>
- </currency>
- <currency type="IQD">
- <displayName>အီရပ်ဒီနား</displayName>
- <displayName count="other">အီရပ်ဒီနား</displayName>
- </currency>
- <currency type="IRR">
- <displayName>အီရန်ရီအော်လ်</displayName>
- <displayName count="other">အီရန်ရီအော်လ်</displayName>
- </currency>
- <currency type="ISK">
- <displayName>အိုက်စလန် ခရိုဏာ</displayName>
- <displayName count="other">အိုက်စလန် ခရိုဏာ</displayName>
- </currency>
- <currency type="JMD">
- <displayName>ဂျမေကာ ဒေါ်လာ</displayName>
- </currency>
- <currency type="JOD">
- <displayName>ဂျော်ဒန်ဒီနား</displayName>
- <displayName count="other">ဂျော်ဒန်ဒီနား</displayName>
- </currency>
- <currency type="JPY">
- <displayName>ဂျပန်ယန်း</displayName>
- <displayName count="other">ဂျပန်ယန်း</displayName>
- <symbol>JP¥</symbol>
- </currency>
- <currency type="KES">
- <displayName>ကင်ညာသျှီလင်</displayName>
- <displayName count="other">ကင်ညာသျှီလင်</displayName>
- </currency>
- <currency type="KGS">
- <displayName>ခရူဂစ်စတန်ဆော်မ်</displayName>
- <displayName count="other">ခရူဂစ်စတန်ဆော်မ်</displayName>
- </currency>
- <currency type="KHR">
- <displayName>ကမ္ဘောဒီးယား ရီးယဲ</displayName>
- <displayName count="other">ကမ္ဘောဒီးယား ရီးယဲ</displayName>
- </currency>
- <currency type="KMF">
- <displayName>ကိုမိုရိုစ် ဖရန့်</displayName>
- <displayName count="other">ကိုမိုရိုစ် ဖရန့်</displayName>
- </currency>
- <currency type="KPW">
- <displayName>မြောက်ကိုးရီးယား ဝမ်</displayName>
- <displayName count="other">မြောက်ကိုးရီးယား ဝမ်</displayName>
- </currency>
- <currency type="KRW">
- <displayName>တောင်ကိုးရီးယား ဝမ်</displayName>
- <displayName count="other">တောင်ကိုးရီးယား ဝမ်</displayName>
- <symbol>₩</symbol>
- </currency>
- <currency type="KWD">
- <displayName>ကူဝိတ်ဒီနာ</displayName>
- <displayName count="other">ကူဝိတ်ဒီနာ</displayName>
- </currency>
- <currency type="KYD">
- <displayName>ကေမန် ကျွန်းစု ဒေါ်လာ</displayName>
- <displayName count="other">ကေမန် ကျွန်းစု ဒေါ်လာ</displayName>
- </currency>
- <currency type="KZT">
- <displayName>ခရူဂစ်စတန်ထိန်ဂျီ</displayName>
- <displayName count="other">ခရူဂစ်စတန်ထိန်ဂျီ</displayName>
- </currency>
- <currency type="LAK">
- <displayName>လာအိုခိပ်</displayName>
- <displayName count="other">လာအိုခိပ်</displayName>
- </currency>
- <currency type="LBP">
- <displayName>လက်ဘနွန် ပေါင်</displayName>
- <displayName count="other">လက်ဘနွန် ပေါင်</displayName>
- </currency>
- <currency type="LKR">
- <displayName>သီရိလင်္ကာ ရူပီး</displayName>
- <displayName count="other">သီရိလင်္ကာ ရူပီး</displayName>
- </currency>
- <currency type="LRD">
- <displayName>လိုင်ဘေးရီးယား ဒေါ်လာ</displayName>
- <displayName count="other">လိုင်ဘေးရီးယား ဒေါ်လာ</displayName>
- </currency>
- <currency type="LTL">
- <displayName>လစ်သူယေးနီးယားလီတားစ်</displayName>
- <displayName count="other">လစ်သူယေးနီးယားလီတားစ်</displayName>
- </currency>
- <currency type="LVL">
- <displayName>လတ်ဗီးယားလတ်</displayName>
- <displayName count="other">လတ်ဗီးယားလတ်</displayName>
- </currency>
- <currency type="LYD">
- <displayName>လီဗျာ ဒီနာ</displayName>
- <displayName count="other">လီဗျာ ဒီနာ</displayName>
- </currency>
- <currency type="MAD">
- <displayName>မိုရိုကို ဒရမ်</displayName>
- <displayName count="other">မိုရိုကို ဒရမ်</displayName>
- </currency>
- <currency type="MDL">
- <displayName>မောလ်ဒိုဗာလယ်အို</displayName>
- <displayName count="other">မောလ်ဒိုဗာလယ်အို</displayName>
- </currency>
- <currency type="MGA">
- <displayName draft="contributed">မလာဂစ်စီ အရီရရီ ငွေႀကး။</displayName>
- <displayName count="other" draft="contributed">မလာဂစ်စီ အရီရရီ ငွေႀကး။</displayName>
- </currency>
- <currency type="MKD">
- <displayName>မာစီဒိုးနီးယားဒီနာ</displayName>
- <displayName count="other">မာစီဒိုးနီးယားဒီနာ</displayName>
- </currency>
- <currency type="MMK">
- <displayName>မြန်မာကျပ်</displayName>
- <displayName count="other">မြန်မာကျပ်</displayName>
- <symbol>K</symbol>
- </currency>
- <currency type="MNT">
- <displayName>မွန်ဂိုးလီးယားထူးဂရခ်</displayName>
- <displayName count="other">မွန်ဂိုးလီးယားထူးဂရခ်</displayName>
- </currency>
- <currency type="MOP">
- <displayName>မကာအိုပါတားကား</displayName>
- <displayName count="other">မကာအိုပါတားကား</displayName>
- </currency>
- <currency type="MRO">
- <displayName>မောရီတာနီအာအူဂီးယာ</displayName>
- <displayName count="other">မောရီတာနီအာအူဂီးယာ</displayName>
- </currency>
- <currency type="MUR">
- <displayName>မော်ရေရှားစ် ရူပီ</displayName>
- <displayName count="other">မော်ရေရှားစ် ရူပီ</displayName>
- </currency>
- <currency type="MVR">
- <displayName>မော်လ်ဒိုက်ရူးဖီရာ</displayName>
- <displayName count="other">မော်လ်ဒိုက်ရူးဖီရာ</displayName>
- </currency>
- <currency type="MWK">
- <displayName>မာလာဝီခွါးချာ</displayName>
- <displayName count="other">မာလာဝီခွါးချာ</displayName>
- </currency>
- <currency type="MXN">
- <displayName>မက္ကဆီကို ပီဆို</displayName>
- <displayName count="other">မက္ကဆီကို ပီဆို</displayName>
- <symbol>MX$</symbol>
- </currency>
- <currency type="MYR">
- <displayName>မလေးရှား ရင်းဂစ်</displayName>
- <displayName count="other">မလေးရှား ရင်းဂစ်</displayName>
- </currency>
- <currency type="MZN">
- <displayName>မိုဇန်ဘစ်မက်တီခယ်လ်</displayName>
- <displayName count="other">မိုဇန်ဘစ်မက်တီခယ်လ်</displayName>
- </currency>
- <currency type="NAD">
- <displayName>နမ်မီးဘီးယား ဒေါ်လာ</displayName>
- <displayName count="other">နမ်မီးဘီးယား ဒေါ်လာ</displayName>
- </currency>
- <currency type="NGN">
- <displayName>နိုင်ဂျီးရီးယားနိုင်းရာ</displayName>
- <displayName count="other">နိုင်ဂျီးရီးယားနိုင်းရာ</displayName>
- </currency>
- <currency type="NIO">
- <displayName>နီကာရာဂွာ ခိုးဒိုဘာ</displayName>
- <displayName count="other">နီကာရာဂွာ ခိုးဒိုဘာ</displayName>
- </currency>
- <currency type="NOK">
- <displayName>နော်ဝေ ခရိုဏာ</displayName>
- <displayName count="other">နော်ဝေ ခရိုဏာ</displayName>
- </currency>
- <currency type="NPR">
- <displayName>နီပေါ ရူပီး</displayName>
- <displayName count="other">နီပေါ ရူပီး</displayName>
- </currency>
- <currency type="NZD">
- <displayName>နယူးဇီလန် ဒေါ်လာ</displayName>
- <displayName count="other">နယူးဇီလန် ဒေါ်လာ</displayName>
- <symbol>NZ$</symbol>
- </currency>
- <currency type="OMR">
- <displayName>အိုမန်ရီအော်လ်</displayName>
- <displayName count="other">အိုမန်ရီအော်လ်</displayName>
- </currency>
- <currency type="PAB">
- <displayName>ပနားမား ဘလ်ဘိုးအာ</displayName>
- <displayName count="other">ပနားမား ဘလ်ဘိုးအာ</displayName>
- </currency>
- <currency type="PEN">
- <displayName>ပီရူး နူအီဗိုဆိုးလ်</displayName>
- <displayName count="other">ပီရူး နူအီဗိုဆိုးလ်</displayName>
- </currency>
- <currency type="PGK">
- <displayName>ပါပူရာနယူးဂီနီခီးနာ</displayName>
- <displayName count="other">ပါပူရာနယူးဂီနီခီးနာ</displayName>
- </currency>
- <currency type="PHP">
- <displayName>ဖိလစ်ပိုင် ပီဆို</displayName>
- <displayName count="other">ဖိလစ်ပိုင် ပီဆို</displayName>
- </currency>
- <currency type="PKR">
- <displayName>ပါကစ္စတန် ရူပီး</displayName>
- </currency>
- <currency type="PLN">
- <displayName>ပိုလန် ဇလော့တီ</displayName>
- <displayName count="other">ပိုလန် ဇလော့တီ</displayName>
- </currency>
- <currency type="PYG">
- <displayName>ပါရာဂွေးဂွါးအ်နီး</displayName>
- <displayName count="other">ပါရာဂွေးဂွါးအ်နီး</displayName>
- </currency>
- <currency type="QAR">
- <displayName>ကာတာရီအော်လ်</displayName>
- <displayName count="other">ကာတာရီအော်လ်</displayName>
- </currency>
- <currency type="RON">
- <displayName>ရိုမေးနီယားလယ်အို</displayName>
- <displayName count="other">ရိုမေးနီယားလယ်အို</displayName>
- </currency>
- <currency type="RSD">
- <displayName>ဆားဘီးယားဒယ်နား</displayName>
- <displayName count="other">ဆားဘီးယားဒယ်နား</displayName>
- </currency>
- <currency type="RUB">
- <displayName>ရုရှ ရူဘယ်</displayName>
- </currency>
- <currency type="RUR">
- <displayName>ရုရှ ရူဘယ် (၁၉၉၁–၁၉၉၈)</displayName>
- </currency>
- <currency type="RWF">
- <displayName>ရဝန်ဒါ ဖရန့်</displayName>
- <displayName count="other">ရဝန်ဒါ ဖရန့်</displayName>
- </currency>
- <currency type="SAR">
- <displayName>ဆော်ဒီအာရေးဗီးယားရီယော်လ်</displayName>
- <displayName count="other">ဆော်ဒီအာရေးဗီးယားရီယော်လ်</displayName>
- </currency>
- <currency type="SBD">
- <displayName>ဆော်လမွန်ကျွန်းစု ဒေါ်လာ</displayName>
- <displayName count="other">ဆော်လမွန်ကျွန်းစု ဒေါ်လာ</displayName>
- </currency>
- <currency type="SCR">
- <displayName>ဆေးရှလ်ရူးပီး</displayName>
- <displayName count="other">ဆေးရှလ်ရူးပီး</displayName>
- </currency>
- <currency type="SDG">
- <displayName>ဆူဒန် ပေါင်</displayName>
- <displayName count="other">ဆူဒန် ပေါင်</displayName>
- </currency>
- <currency type="SDP">
- <displayName>ဆူဒန် ပေါင်အဟောင်း</displayName>
- </currency>
- <currency type="SEK">
- <displayName>ဆွီဒင် ခရိုဏာ</displayName>
- <displayName count="other">ဆွီဒင် ခရိုဏာ</displayName>
- </currency>
- <currency type="SGD">
- <displayName>စင်္ကာပူ ဒေါ်လာ</displayName>
- <displayName count="other">စင်္ကာပူ ဒေါ်လာ</displayName>
- </currency>
- <currency type="SHP">
- <displayName>စိန့်ဟဲလီနာ ပေါင်</displayName>
- <displayName count="other">စိန့်ဟဲလီနာ ပေါင်</displayName>
- </currency>
- <currency type="SLL">
- <displayName>ဆီအဲရာ လီအိုနီယန် လီအိုနီ</displayName>
- <displayName count="other">ဆီအဲရာ လီအိုနီယန် လီအိုနီ</displayName>
- </currency>
- <currency type="SOS">
- <displayName>ဆိုမာလီသျှီလင်</displayName>
- <displayName count="other">ဆိုမာလီသျှီလင်</displayName>
- </currency>
- <currency type="SRD">
- <displayName>ဆူရီနိမ်း ဒေါ်လာ</displayName>
- <displayName count="other">ဆူရီနိမ်း ဒေါ်လာ</displayName>
- </currency>
- <currency type="SSP">
- <displayName>တောင်ဆူဒန်ပေါင်</displayName>
- <displayName count="other">တောင်ဆူဒန်ပေါင်</displayName>
- </currency>
- <currency type="STD">
- <displayName>စိန့်တိုမီနှင့်ပရင်စီပ့် ဒိုဘရာ</displayName>
- <displayName count="other">စိန့်တိုမီနှင့်ပရင်စီပ့် ဒိုဘရာ</displayName>
- </currency>
- <currency type="SUR">
- <displayName>ဆိုဗီယက် ရူဗယ်</displayName>
- </currency>
- <currency type="SYP">
- <displayName>ဆီးရီးယား ပေါင်</displayName>
- <displayName count="other">ဆီးရီးယား ပေါင်</displayName>
- </currency>
- <currency type="SZL">
- <displayName>စွာဇီလန်လီလန်းဂီနီ</displayName>
- <displayName count="other">စွာဇီလန်လီလန်းဂီနီ</displayName>
- </currency>
- <currency type="THB">
- <displayName>ထိုင်းဘတ်</displayName>
- <displayName count="other">ထိုင်းဘတ်</displayName>
- <symbol>฿</symbol>
- </currency>
- <currency type="TJS">
- <displayName>တာဂျီကစ္စတန်ဆိုမိုနီ</displayName>
- <displayName count="other">တာဂျီကစ္စတန်ဆိုမိုနီ</displayName>
- </currency>
- <currency type="TMT">
- <displayName>တာခ်မီန့စ်တန်မာနတ်</displayName>
- <displayName count="other">တာခ်မီန့စ်တန်မာနတ်</displayName>
- </currency>
- <currency type="TND">
- <displayName>တူနီရှားဒီနာ</displayName>
- <displayName count="other">တူနီရှားဒီနာ</displayName>
- </currency>
- <currency type="TOP">
- <displayName>တွန်ဂါဗန်ဂါ</displayName>
- <displayName count="other">တွန်ဂါဗန်ဂါ</displayName>
- </currency>
- <currency type="TRL">
- <displayName>ရှေးဟောင်းတူရကီ လိုင်ရာ</displayName>
- </currency>
- <currency type="TRY">
- <displayName>တူရကီ လိုင်ရာ</displayName>
- <displayName count="other">တူရကီ လိုင်ရာ</displayName>
- </currency>
- <currency type="TTD">
- <displayName>ထရိုင်နီဒတ်နှင့်တိုဘာဂိုဒေါ်လာ</displayName>
- <displayName count="other">တရီနာဒတ်နှင့်တိုဘာဂိုဒေါ်လာ</displayName>
- </currency>
- <currency type="TWD">
- <displayName>ထိုင်ဝမ် ဒေါ်လာအသစ်</displayName>
- <displayName count="other">ထိုင်ဝမ် ဒေါ်လာအသစ်</displayName>
- <symbol>NT$</symbol>
- </currency>
- <currency type="TZS">
- <displayName>တန်ဇန်းနီးယားသျှီလင်</displayName>
- <displayName count="other">တန်ဇန်းနီးယားသျှီလင်</displayName>
- </currency>
- <currency type="UAH">
- <displayName>ယူကရိန်း</displayName>
- <displayName count="other">ယ</displayName>
- </currency>
- <currency type="UGX">
- <displayName>ယူဂန္ဓာသျှီလင်</displayName>
- <displayName count="other">ယူဂန္ဓာသျှီလင်</displayName>
- </currency>
- <currency type="USD">
- <displayName>အမေရိကန် ဒေါ်လာ</displayName>
- <displayName count="other">အမေရိကန် ဒေါ်လာ</displayName>
- <symbol>US$</symbol>
- </currency>
- <currency type="USN">
- <displayName>အမေရိကန် ဒေါ်လာ (နောက်နေ့)</displayName>
- </currency>
- <currency type="USS">
- <displayName>အမေရိကန် ဒေါ်လာ (တနေ့တည်း)</displayName>
- </currency>
- <currency type="UYU">
- <displayName>ဥရုဂွေးပီဆို</displayName>
- <displayName count="other">ဥရုဂွေးပီဆို</displayName>
- </currency>
- <currency type="UZS">
- <displayName>ဥဘက်ကစ္စတန်ဆော်မ်</displayName>
- <displayName count="other">ဥဘက်ကစ္စတန်ဆော်မ်</displayName>
- </currency>
- <currency type="VEF">
- <displayName>ဗင်နီဇွဲလား ဘိုလီဗာ</displayName>
- <displayName count="other">ဗင်နီဇွဲလား ဘိုလီဗာ</displayName>
- </currency>
- <currency type="VND">
- <displayName>ဗီယက်နမ် ဒေါင်</displayName>
- <displayName count="other">ဗီယက်နမ် ဒေါင်</displayName>
- <symbol>₫</symbol>
- </currency>
- <currency type="VUV">
- <displayName>ဗာနုအာတူဗားထူ</displayName>
- <displayName count="other">ဗာနုအာတူဗားထူ</displayName>
- </currency>
- <currency type="WST">
- <displayName>စမိုအထားလာ</displayName>
- <displayName count="other">စမိုအထားလာ</displayName>
- </currency>
- <currency type="XAF">
- <displayName>ကင်မရွန်းဖရန့်</displayName>
- <displayName count="other">ကင်မရွန်းဖရန့်</displayName>
- <symbol>FCFA</symbol>
- </currency>
- <currency type="XAG">
- <displayName>ငွေ</displayName>
- </currency>
- <currency type="XAU">
- <displayName>ရွှေ</displayName>
- </currency>
- <currency type="XBB">
- <displayName>ဥရောပငွေကြေးစံနစ်</displayName>
- </currency>
- <currency type="XCD">
- <displayName>အရှေ့ကာရီဘီယံဒေါ်လာ</displayName>
- <displayName count="other">အရှေ့ကာရီဘီယံဒေါ်လာ</displayName>
- <symbol>EC$</symbol>
- </currency>
- <currency type="XDR">
- <displayName>အထူးထုတ်ယူခွင့်</displayName>
- </currency>
- <currency type="XOF">
- <displayName>အိုင်ဗရီးကိုးစ်ဖရန့်</displayName>
- <displayName count="other">အိုင်ဗရီးကိုးစ်ဖရန့်</displayName>
- <symbol>CFA</symbol>
- </currency>
- <currency type="XPF">
- <displayName>XPFဖရန့်</displayName>
- <displayName count="other">XPFဖရန့်</displayName>
- <symbol>CFPF</symbol>
- </currency>
- <currency type="XPT">
- <displayName>ပလက်တီနမ်</displayName>
- </currency>
- <currency type="XTS">
- <displayName>စမ်းသပ် ငွေကြေး ကုဒ်</displayName>
- </currency>
- <currency type="XXX">
- <displayName>မသိသို့မဟုတ်မရှိသောငွေကြေး</displayName>
- <displayName count="other">မသိ သို့မဟုတ် မရှိသော ငွေကြေး</displayName>
- </currency>
- <currency type="YER">
- <displayName>ယီမင်ရီအော်လ်</displayName>
- <displayName count="other">ယီမင်ရီအော်လ်</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>တောင်အဖရိက ရန်း</displayName>
- <displayName count="other">တောင်အဖရိက ရန်း</displayName>
- </currency>
- <currency type="ZMW">
- <displayName>ဇင်ဘာဘွေခွါးချာ</displayName>
- <displayName count="other">ဇင်ဘာဘွေခွါးချာ</displayName>
- </currency>
- <currency type="ZWD">
- <displayName>ဇင်ဘာဘွေ ဒေါ်လာ</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="other">{0} ဆွဲငင်အား</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="other">{0}မိနစ်</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="other">{0}စက္ကန့်</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="other">{0}ဒီဂရီ</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="other">{0}ဧက</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="other">{0} ဟက်တာ</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="other">{0}စတုရန်းပေ</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="other">{0}စတုရန်းကီလိုမီတာ</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="other">{0}စတုရန်းမီတာ</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="other">{0}စတုရန်းမိုင်</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="other">{0}ရက်</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="other">{0}နာရီ</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="other">{0}မီလီစက္ကန့်</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="other">{0} မိနစ်</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="other">{0}လ</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="other">{0} စက္ကန့်</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="other">{0}ပတ်</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="other">{0}နှစ်</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="other">{0} စင်တီမီတာ</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="other">{0} ပေ</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="other">{0} လက်မ</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="other">{0} ကီလိုမီတာ</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="other">{0} အလင်းနှစ်</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="other">{0}မီတာ</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="other">{0} မိုင်</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="other">{0} မီလီမီတာ</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="other">{0} ပီကိုမီတာ</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="other">{0} ကိုက်</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="other">{0} ဂရမ်</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="other">{0}ကီလိုဂရမ်</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="other">{0}အောင်စ</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="other">{0}ပေါင်</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="other">{0}မြင်ကောင်ရေအား</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="other">{0}ကီလိုဝပ်</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="other">{0}ဝပ်</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="other">{0}ဟက်တိုပါစကယ်</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="other">ပွဒါး{0}လက်မ</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="other">{0}မီလီဘား</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="other">တစ်နာရီလျှင်{0}ကီလိုမီတာနှုန်း</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="other">တစ်စက္ကန့်လျှင်{0}မီတာနှုန်း</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="other">တစ်နာရီလျှင်{0}မိုင်နှုန်း</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="other">{0}စင်တီဂရိတ်</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="other">{0}ဖာရင်ဟိုက်</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="other">{0} ကုဗကီလိုမီတာ</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="other">{0}ကုဗမိုင်</unitPattern>
- </unit>
- <unit type="volume-liter">
- <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="other">{0} G</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="other">{0} ac</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="other">{0} ha</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="other">{0} ft²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="other">{0} km²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="other">{0} m²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="other">{0} mi²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="other">{0}ရက်</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="other">{0}နာရီ</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="other">{0} ms</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="other">{0}မိနစ်</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="other">{0}လ</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="other">{0} s</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="other">{0}ပတ်</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="other">{0} y</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="other">{0} cm</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="other">{0} ပေ</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="other">{0} လက်မ</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="other">{0} km</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="other">{0} အလင်းနှစ်</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="other">{0} m</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="other">{0}မိုင်</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="other">{0} mm</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="other">{0} pm</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="other">{0} ကိုက်</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="other">{0} g</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="other">{0} kg</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="other">{0} oz</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="other">{0} lb</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="other">{0} hp</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="other">{0} kW</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="other">{0} W</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="other">{0} hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="other">{0} inHg</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="other">{0} mbar</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="other">{0} km/h</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="other">{0} m/s</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="other">{0} mi/h</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="other">{0}°C</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="other">{0} km³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="other">{0} mi³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="other">{0} l</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="narrow">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="other">{0} G</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="other">{0} ac</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="other">{0} ha</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="other">{0} ft²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="other">{0} km²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="other">{0} m²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="other">{0} mi²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="other">{0}ရက်</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="other">{0}နာရီ</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="other">{0} ms</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="other">{0}မိနစ်</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="other">{0}လ</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="other">{0} s</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="other">{0}ပတ်</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="other">{0} y</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="other">{0} cm</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="other">{0} '</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="other">{0} ″</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="other">{0} km</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="other">{0} အလင်းနှစ်</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="other">{0} m</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="other">{0}မိုင်</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="other">{0} mm</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="other">{0} pm</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="other">{0} ကိုက်</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="other">{0} g</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="other">{0} kg</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="other">{0} oz</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="other">{0} lb</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="other">{0} hp</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="other">{0} kW</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="other">{0} W</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="other">{0} hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="other">{0} inHg</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="other">{0} mbar</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="other">{0} km/h</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="other">{0} m/s</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="other">{0} mi/h</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="other">{0} km³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="other">{0} mi³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="other">{0} l</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>
|