| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE ldml SYSTEM "http://www.unicode.org/cldr/dtd/1.6/ldml.dtd">
- <ldml>
- <identity>
- <version number="$Revision: 1.111 $"/>
- <generation date="$Date: 2008/06/26 03:47:58 $"/>
- <language type="th"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>, </localeSeparator>
- </localeDisplayPattern>
- <languages>
- <language type="aa">อะฟาร์</language>
- <language type="ab">แอบกาเซีย</language>
- <language type="ace">อาเจะห์</language>
- <language type="ach">อาโคลิ</language>
- <language type="ada">อาดางมี</language>
- <language type="ady">อะดีเกยา</language>
- <language type="ae">อาเวสทาน</language>
- <language type="af">แอฟริกา</language>
- <language type="afa">อาฟโร-เอเชียติก</language>
- <language type="afh">อาฟริฮิลิ</language>
- <language type="ain">ไอนุ</language>
- <language type="ak">อาคาน</language>
- <language type="akk">อัคคาเดีย</language>
- <language type="ale">อลิอุต</language>
- <language type="alg">ภาษาอาลงเควียน</language>
- <language type="alt">อัลไตใต้</language>
- <language type="am">อัมฮาริก</language>
- <language type="an">อารากอน</language>
- <language type="ang">อังกฤษโบราณ</language>
- <language type="anp">อังคิกา</language>
- <language type="apa">ภาษาอาปาเช่</language>
- <language type="ar">อาหรับ</language>
- <language type="arc">อราเมอิก</language>
- <language type="arn">อาราคาเนียน</language>
- <language type="arp">อาราพาโฮ</language>
- <language type="art">ภาษาประดิษฐ์</language>
- <language type="arw">อาราวัก</language>
- <language type="as">อัสสัม</language>
- <language type="ast">อัสตูเรียส</language>
- <language type="ath">ภาษาอาธาพาสกาน</language>
- <language type="aus">ภาษาออสเตรเลีย</language>
- <language type="av">อาวาริก</language>
- <language type="awa">อวาธี</language>
- <language type="ay">ไอย์มารา</language>
- <language type="az">อาเซอร์ไบจาน</language>
- <language type="ba">บัชคีร์</language>
- <language type="bad">บันดา</language>
- <language type="bai">ภาษาบามิเลค</language>
- <language type="bal">บาลูชิ</language>
- <language type="ban">บาหลี</language>
- <language type="bas">บาสา</language>
- <language type="bat">ภาษาบอลติก</language>
- <language type="be">เบลารุส</language>
- <language type="bej">เบจา</language>
- <language type="bem">เบมบา</language>
- <language type="ber">เบอร์เบอร์</language>
- <language type="bg">บัลแกเรีย</language>
- <language type="bh">พิหาร</language>
- <language type="bho">ภจบุรี</language>
- <language type="bi">บิสลามา</language>
- <language type="bik">บิกอล</language>
- <language type="bin">บินี</language>
- <language type="bla">สิกสิกา</language>
- <language type="bm">บามบารา</language>
- <language type="bn">เบงกาลี</language>
- <language type="bnt">บันตู</language>
- <language type="bo">ทิเบต</language>
- <language type="br">เบรตัน</language>
- <language type="bra">บราจ</language>
- <language type="bs">บอสเนีย</language>
- <language type="btk">บาตัก</language>
- <language type="bua">บูเรียต</language>
- <language type="bug">บูกิส</language>
- <language type="byn">บลิน</language>
- <language type="ca">คาตาลัน</language>
- <language type="cad">คัดโด</language>
- <language type="cai">ภาษาอเมริกันอินเดียนกลาง</language>
- <language type="car">คาริบ</language>
- <language type="cau">ภาษาคอเคเซียน</language>
- <language type="ce">เชเชน</language>
- <language type="ceb">เซบู</language>
- <language type="cel">ภาษาเซลติก</language>
- <language type="ch">ชามอร์โร</language>
- <language type="chb">ชิบชา</language>
- <language type="chg">ชากาไท</language>
- <language type="chk">ชูกิส</language>
- <language type="chm">มาริ</language>
- <language type="chn">ชินุคจาร์กอน</language>
- <language type="cho">ชอกทาว</language>
- <language type="chp">ชิเพวยัน</language>
- <language type="chr">เชอโรกี</language>
- <language type="chy">เชเยน</language>
- <language type="cmc">ภาษาชามิก</language>
- <language type="co">คอร์ซิกา</language>
- <language type="cop">คอปติก</language>
- <language type="cpe">ครีโอเลสและพิกกินส์ที่มาจากอังกฤษอื่นๆ</language>
- <language type="cpf">ครีโอเลสและพิกกินส์ที่มาจากฝรั่งเศสอื่นๆ</language>
- <language type="cpp">ครีโอเลสและพิกกินส์ที่มาจากโปรตุเกสอื่นๆ</language>
- <language type="cr">ครี</language>
- <language type="crh">ตุรกีไครเมีย</language>
- <language type="crp">คริโอลหรือพิดจิน</language>
- <language type="cs">เช็ก</language>
- <language type="csb">คาซูเบียน</language>
- <language type="cu">เชอร์ชสลาวิก</language>
- <language type="cus">ภาษาคูชิทิก</language>
- <language type="cv">ชูวาส</language>
- <language type="cy">เวลส์</language>
- <language type="da">เดนมาร์ก</language>
- <language type="dak">ดาโกทา</language>
- <language type="dar">ดาร์จวา</language>
- <language type="day">ดายัก</language>
- <language type="de">เยอรมัน</language>
- <language type="de_AT">เยอรมัน - ออสเตรีย</language>
- <language type="de_CH">เยอรมันสูง (สวิส)</language>
- <language type="del">เดลาแวร์</language>
- <language type="den">สลาฟ</language>
- <language type="dgr">ดอจริบ</language>
- <language type="din">ดินกา</language>
- <language type="doi">ดอจริ</language>
- <language type="dra">ภาษาดราวิเดียน</language>
- <language type="dsb">ซอร์เบียนต่ำ</language>
- <language type="dua">ดัวลา</language>
- <language type="dum">ดัตช์กลาง</language>
- <language type="dv">ดิเวฮิ</language>
- <language type="dyu">ดิวลา</language>
- <language type="dz">ดซองคา</language>
- <language type="ee">เอเว</language>
- <language type="efi">อีฟิก</language>
- <language type="egy">อียิปต์โบราณ</language>
- <language type="eka">อีกาจุก</language>
- <language type="el">กรีก</language>
- <language type="elx">อีลาไมต์</language>
- <language type="en">อังกฤษ</language>
- <language type="en_AU">อังกฤษ - ออสเตรเลีย</language>
- <language type="en_CA">อังกฤษ - แคนาดา</language>
- <language type="en_GB">อังกฤษ - สหราชอาณาจักร</language>
- <language type="en_US">อังกฤษ - อเมริกัน</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="ewo">อีวันโด</language>
- <language type="fa">เปอร์เซีย</language>
- <language type="fan">ฟาง</language>
- <language type="fat">ฟันติ</language>
- <language type="ff">ฟูลาฮ์</language>
- <language type="fi">ฟินแลนด์</language>
- <language type="fil">ฟิลิปปินส์</language>
- <language type="fiu">ฟินโน-อักเรียน</language>
- <language type="fj">ฟิจิ</language>
- <language type="fo">ฟาโรส</language>
- <language type="fon">ฟอน</language>
- <language type="fr">ฝรั่งเศส</language>
- <language type="fr_CH">ฝรั่งเศส (สวิส)</language>
- <language type="frm">ฝรั่งเศสกลาง</language>
- <language type="fro">ฝรั่งเศสโบราณ</language>
- <language type="frr">ฟริเซียนเหนือ</language>
- <language type="frs">ฟริเซียนตะวันออก</language>
- <language type="fur">เฟรียเลียน</language>
- <language type="fy">ฟริเซียนตะวันตก</language>
- <language type="ga">ไอริช</language>
- <language type="gaa">กา</language>
- <language type="gay">กาโย</language>
- <language type="gba">กบายา</language>
- <language type="gd">สก็อตส์เกลิค</language>
- <language type="gem">ภาษาเจอร์เมนิก</language>
- <language type="gez">กีซ</language>
- <language type="gil">กิลเบอร์ทิส</language>
- <language type="gl">กาลิเซีย</language>
- <language type="gmh">เยอรมันสูงกลาง</language>
- <language type="gn">กัวรานี</language>
- <language type="goh">เยอรมันสูงโบราณ</language>
- <language type="gon">กอนดิ</language>
- <language type="gor">กอรอนทาโล</language>
- <language type="got">โกธิก</language>
- <language type="grb">เกรโบ</language>
- <language type="grc">กรีกโบราณ</language>
- <language type="gsw">เยอรมันสวิส</language>
- <language type="gu">คุชราต</language>
- <language type="gv">มานซ์</language>
- <language type="gwi">กวิชอิน</language>
- <language type="ha">โฮซา</language>
- <language type="hai">ไฮดา</language>
- <language type="haw">ฮาวาย</language>
- <language type="he">ฮิบรู</language>
- <language type="hi">ฮินดี</language>
- <language type="hil">ไฮลิเกนอน</language>
- <language type="him">ฮิมาชาลิ</language>
- <language type="hit">ฮิตไตท์</language>
- <language type="hmn">ม้ง</language>
- <language type="ho">ฮิริโมทุ</language>
- <language type="hr">โครเอเชีย</language>
- <language type="hsb">ซอร์เบียนบน</language>
- <language type="ht">เฮติ</language>
- <language type="hu">ฮังการี</language>
- <language type="hup">ฮูพา</language>
- <language type="hy">อาร์เมเนีย</language>
- <language type="hz">เฮเรโร</language>
- <language type="ia">ภาษากลางที่ใช้ในการสื่อสารระหว่างประเทศ</language>
- <language type="iba">อิบาน</language>
- <language type="id">อินโดนีเชีย</language>
- <language type="ie">อินเตอร์ลิงค์</language>
- <language type="ig">อิกโบ</language>
- <language type="ii">เสฉวนยิ</language>
- <language type="ijo">อิโจ</language>
- <language type="ik">ไอนูเปียก</language>
- <language type="ilo">อิโลโก</language>
- <language type="inc">ภาษาอินดิก</language>
- <language type="ine">ภาษาอินโด-ยูโรเปียน</language>
- <language type="inh">อิงกุช</language>
- <language type="io">อิโด</language>
- <language type="ira">อิหร่าน</language>
- <language type="iro">ภาษาอิโรกัวเอียน</language>
- <language type="is">ไอซแลนดิก</language>
- <language type="it">อิตาลี</language>
- <language type="iu">ไอนุกติตัท</language>
- <language type="ja">ญี่ปุ่น</language>
- <language type="jbo">โลจบัน</language>
- <language type="jpr">ยิว-เปอร์เซีย</language>
- <language type="jrb">ยิว-อาหรับ</language>
- <language type="jv">ชวา</language>
- <language type="ka">จอร์เจีย</language>
- <language type="kaa">การา-กาลพาก</language>
- <language type="kab">กาไบล</language>
- <language type="kac">กะฉิ่น</language>
- <language type="kam">คัมบา</language>
- <language type="kar">กะเหรี่ยง</language>
- <language type="kaw">กาวิ</language>
- <language type="kbd">คาร์บาเดีย</language>
- <language type="kfo">โคโร</language>
- <language type="kg">คองโก</language>
- <language type="kha">คาสิ</language>
- <language type="khi">ภาษาคอยสัน</language>
- <language type="kho">คอทานิส</language>
- <language type="ki">กิกุยุ</language>
- <language type="kj">กวนยามา</language>
- <language type="kk">คาซัค</language>
- <language type="kl">กรีนแลนด์ดิค</language>
- <language type="km">เขมร</language>
- <language type="kmb">คิมบุนดู</language>
- <language type="kn">กันนาดา</language>
- <language type="ko">เกาหลี</language>
- <language type="kok">กอนกานี</language>
- <language type="kos">กอสราเอียน</language>
- <language type="kpe">กเปลเล</language>
- <language type="kr">คานูรี</language>
- <language type="krc">คาราไช-บัลการ์</language>
- <language type="kro">กรุ</language>
- <language type="kru">กุรุก</language>
- <language type="ks">กัศมีร์</language>
- <language type="ku">เคิร์ด</language>
- <language type="kum">กุมิก</language>
- <language type="kut">กุเทไน</language>
- <language type="kv">โกมิ</language>
- <language type="kw">คอร์นิส</language>
- <language type="ky">เคอร์กิซ</language>
- <language type="la">ละติน</language>
- <language type="lad">ลาดิโน</language>
- <language type="lah">ลาฮ์นดา</language>
- <language type="lam">แลมบา</language>
- <language type="lb">ลักเซมเบิร์ก</language>
- <language type="lez">เลซเกียน</language>
- <language type="lg">กานดา</language>
- <language type="li">ลิมเบิร์ก</language>
- <language type="ln">ลิงกาลา</language>
- <language type="lo">ลาว</language>
- <language type="lol">มองโก</language>
- <language type="loz">โลซิ</language>
- <language type="lt">ลิทัวเนีย</language>
- <language type="lu">ลูบา-กาตองกา</language>
- <language type="lua">ลูบา-ลูลัว</language>
- <language type="lui">ลุยเซโน</language>
- <language type="lun">ลันดา</language>
- <language type="luo">ลัว</language>
- <language type="lus">ลูไช</language>
- <language type="lv">ลัตเวีย</language>
- <language type="mad">มาดูริส</language>
- <language type="mag">มากาฮิ</language>
- <language type="mai">ไมถิลี</language>
- <language type="mak">มากาซาร์</language>
- <language type="man">แมนดินโก</language>
- <language type="map">ออสโทรนีเซีย</language>
- <language type="mas">มาไซ</language>
- <language type="mdf">มอกชา</language>
- <language type="mdr">มานดาร์</language>
- <language type="men">เมนเด</language>
- <language type="mg">มาลากาซี</language>
- <language type="mga">ไอริชกลาง</language>
- <language type="mh">มาร์แชลลิส</language>
- <language type="mi">เมารี</language>
- <language type="mic">มิกแมก</language>
- <language type="min">มินางกาเบา</language>
- <language type="mis">ภาษาอื่นๆ</language>
- <language type="mk">มาซิโดเนีย</language>
- <language type="mkh">ภาษามอญ-เขมร</language>
- <language type="ml">มาลายาลัม</language>
- <language type="mn">มองโกล</language>
- <language type="mnc">แมนจู</language>
- <language type="mni">มณีปุริ</language>
- <language type="mno">ภาษามาโนโบ</language>
- <language type="mo">โมดาเวีย</language>
- <language type="moh">โมฮอว์ก</language>
- <language type="mos">มอสสิ</language>
- <language type="mr">มาราที</language>
- <language type="ms">มลายู</language>
- <language type="mt">มอลตา</language>
- <language type="mul">หลายภาษา</language>
- <language type="mun">ภาษามันดา</language>
- <language type="mus">ครีก</language>
- <language type="mwl">มิรันดีส</language>
- <language type="mwr">มาร์วารี</language>
- <language type="my">พม่า</language>
- <language type="myn">ภาษามายัน</language>
- <language type="myv">อิร์ซยา</language>
- <language type="na">นอรู</language>
- <language type="nah">นาฮวตล์</language>
- <language type="nai">อเมริกันอินเดียนเหนืออื่นๆ</language>
- <language type="nap">เนียโพลิแทน</language>
- <language type="nb">นอร์เวย์บอกมอล</language>
- <language type="nd">เอ็นเดเบลีเหนือ</language>
- <language type="nds">เยอรมันตอนเหนือ</language>
- <language type="ne">เนปาล</language>
- <language type="new">เนวาริ</language>
- <language type="ng">ดองกา</language>
- <language type="nia">เนีส</language>
- <language type="nic">ภาษาไนเจอร์-กอร์โดฟาเนียน</language>
- <language type="niu">ไนอีน</language>
- <language type="nl">ดัตช์</language>
- <language type="nl_BE">เฟลมิช</language>
- <language type="nn">นอร์เวย์ไนนอรส์ก</language>
- <language type="no">นอร์เวย์</language>
- <language type="nog">โนไก</language>
- <language type="non">นอร์สโบราณ</language>
- <language type="nqo">เอ็นโก</language>
- <language type="nr">เอ็นเดเบลีใต้</language>
- <language type="nso">โซโทเหนือ</language>
- <language type="nub">ภาษานูเบียน</language>
- <language type="nv">นาวาโฮ</language>
- <language type="nwc">เนวาริคลาสสิก</language>
- <language type="ny">เนียนจา; ชิเชวา; เชวา</language>
- <language type="nym">เนียมเวซี</language>
- <language type="nyn">เนียโกเล</language>
- <language type="nyo">เนียโร</language>
- <language type="nzi">นซิมา</language>
- <language type="oc">อ็อกซิตัน</language>
- <language type="oj">โอจิบเว</language>
- <language type="om">โอโรโม</language>
- <language type="or">โอริยา</language>
- <language type="os">ออสเซทิก</language>
- <language type="osa">โอซาเก</language>
- <language type="ota">ตุรกีออตโดมัน</language>
- <language type="oto">ภาษาโอโทเมียน</language>
- <language type="pa">ปัญจาบ</language>
- <language type="paa">ภาษาปาปวน</language>
- <language type="pag">พันกาซินัน</language>
- <language type="pal">พาฮลาวิ</language>
- <language type="pam">พามพานกา</language>
- <language type="pap">พาเพียเมนโท</language>
- <language type="pau">พาลาอวน</language>
- <language type="peo">เปอร์เซียโบราณ</language>
- <language type="phi">ภาษาฟิลิปปิน</language>
- <language type="phn">ฟินิเชียน</language>
- <language type="pi">บาลี</language>
- <language type="pl">โปแลนด์</language>
- <language type="pon">โพฮ์นเพเอียน</language>
- <language type="pra">ภาษาปรากฤต</language>
- <language type="pro">โพรเวนคอลโบราณ</language>
- <language type="ps">พาชตู</language>
- <language type="pt">โปรตุเกส</language>
- <language type="pt_BR">โปรตุเกส - บราซิล</language>
- <language type="pt_PT">โปรตุเกส (ไอบีเรีย)</language>
- <language type="qu">เกซัว</language>
- <language type="raj">ราจาสธานิ</language>
- <language type="rap">ราพานุย</language>
- <language type="rar">ราโรท็องกัน</language>
- <language type="rm">เรโต-โรแมนซ์</language>
- <language type="rn">คิรันดี</language>
- <language type="ro">โรมาเนีย</language>
- <language type="roa">ภาษาโรมานซ์</language>
- <language type="rom">โรมานี</language>
- <language type="root">ราก</language>
- <language type="ru">รัสเซีย</language>
- <language type="rup">อาโรมาเนียน</language>
- <language type="rw">คินยาร์วันดา</language>
- <language type="sa">สันสกฤต</language>
- <language type="sad">ซันดาเว</language>
- <language type="sah">ยากุต</language>
- <language type="sai">ภาษาอเมริกันอินเดียนใต้</language>
- <language type="sal">ภาษาซาลิชัน</language>
- <language type="sam">ซามาริทันอราเมอิก</language>
- <language type="sas">ซาซัก</language>
- <language type="sat">สันตาลี</language>
- <language type="sc">ซาร์ดิเนีย</language>
- <language type="scn">ซิซิเลียน</language>
- <language type="sco">สกอตส์</language>
- <language type="sd">สินธุ</language>
- <language type="se">ซามิเหนือ</language>
- <language type="sel">เซลกุป</language>
- <language type="sem">ภาษาเซมิติก</language>
- <language type="sg">แซงโก</language>
- <language type="sga">ไอริชโบราณ</language>
- <language type="sgn">ภาษาสัญญาณ</language>
- <language type="sh">เซอร์โบ-โครเอเชีย</language>
- <language type="shn">ชาน</language>
- <language type="si">สิงหล</language>
- <language type="sid">ซิดาโม</language>
- <language type="sio">ภาษาซิอวน</language>
- <language type="sit">ภาษาซิโน-ทิเบตัน</language>
- <language type="sk">สโลวัก</language>
- <language type="sl">สโลวีเนีย</language>
- <language type="sla">ภาษาสลาวิก</language>
- <language type="sm">ซามัว</language>
- <language type="sma">ซามิใต้</language>
- <language type="smi">ภาษาซามิ</language>
- <language type="smj">ลูลซามิ</language>
- <language type="smn">อินาริซามิ</language>
- <language type="sms">สกอลตซามิ</language>
- <language type="sn">โชนา</language>
- <language type="snk">โซนินเก</language>
- <language type="so">โซมาลี</language>
- <language type="sog">ซอจเดียน</language>
- <language type="son">ซองไฮ</language>
- <language type="sq">แอลเบเนีย</language>
- <language type="sr">เซอร์เบีย</language>
- <language type="srn">ซรานานทองโก</language>
- <language type="srr">เซเรอร์</language>
- <language type="ss">สวาติ</language>
- <language type="ssa">ภาษานิโล-ซาฮารัน</language>
- <language type="st">โซโทใต้</language>
- <language type="su">ซุนดา</language>
- <language type="suk">ซุกุมา</language>
- <language type="sus">ซูซู</language>
- <language type="sux">สุเมเรียน</language>
- <language type="sv">สวีเดน</language>
- <language type="sw">สวาฮีลี</language>
- <language type="syr">ไซเรียก</language>
- <language type="ta">ทมิฬ</language>
- <language type="tai">ภาษาไท</language>
- <language type="te">เตลูกู</language>
- <language type="tem">ทิมเน</language>
- <language type="ter">เทเรโน</language>
- <language type="tet">เตตุม</language>
- <language type="tg">ทาจิก</language>
- <language type="th">ไทย</language>
- <language type="ti">ทิกรินยา</language>
- <language type="tig">ทิจเร</language>
- <language type="tiv">ทิฟ</language>
- <language type="tk">เติร์ก</language>
- <language type="tkl">โทเคลัว</language>
- <language type="tl">ตากาล็อก</language>
- <language type="tlh">คลินกอน</language>
- <language type="tli">ทลิงกิต</language>
- <language type="tmh">ทามาเชก</language>
- <language type="tn">สวานา</language>
- <language type="to">ตองกา</language>
- <language type="tog">ตองกา - ไนซา</language>
- <language type="tpi">ท็อกพิซิน</language>
- <language type="tr">ตุรกี</language>
- <language type="ts">ซองกา</language>
- <language type="tsi">ซิมเชียน</language>
- <language type="tt">ตาตาร์</language>
- <language type="tum">ทุมบูกา</language>
- <language type="tup">ภาษาทุพิ</language>
- <language type="tut">ภาษาอัลตาอิก</language>
- <language type="tvl">ตูวาลู</language>
- <language type="tw">ทวิ</language>
- <language type="ty">ตาฮิเตียน</language>
- <language type="tyv">ทูวิเนียน</language>
- <language type="udm">อัดมาร์ต</language>
- <language type="ug">อุยกัว</language>
- <language type="uga">ยูการิติก</language>
- <language type="uk">ยูเครน</language>
- <language type="umb">อุมบุนดู</language>
- <language type="und">ไม่มีข้อมูล</language>
- <language type="ur">อูรดู</language>
- <language type="uz">อุซเบก</language>
- <language type="vai">ไว</language>
- <language type="ve">เวนดา</language>
- <language type="vi">เวียดนาม</language>
- <language type="vo">โวลาพุก</language>
- <language type="vot">โวทิก</language>
- <language type="wa">วอลลูน</language>
- <language type="wak">ภาษาวากาชาน</language>
- <language type="wal">วาลาโม</language>
- <language type="war">วาเรย์</language>
- <language type="was">วาโช</language>
- <language type="wen">ภาษาซอร์เบียน</language>
- <language type="wo">โวลอฟ</language>
- <language type="xal">กาลมิก</language>
- <language type="xh">โซสา</language>
- <language type="yao">เย้า</language>
- <language type="yap">แยป</language>
- <language type="yi">ยิดดิช</language>
- <language type="yo">โยรูบา</language>
- <language type="ypk">ภาษายูพิก</language>
- <language type="za">จวง</language>
- <language type="zap">ซาโปเทก</language>
- <language type="zen">เซนากา</language>
- <language type="zh">จีน</language>
- <language type="zh_Hans">จีนประยุกต์</language>
- <language type="zh_Hant">จีนดั้งเดิม</language>
- <language type="znd">ซานเด</language>
- <language type="zu">ซูลู</language>
- <language type="zun">ซูนิ</language>
- <language type="zxx">ไม่มีข้อมูลภาษา</language>
- </languages>
- <scripts>
- <script type="Arab">อาหรับ</script>
- <script type="Armn">อาร์เมเนีย</script>
- <script type="Avst">อเวสตัน</script>
- <script type="Bali">บาหลี</script>
- <script type="Batk">บาตัก</script>
- <script type="Beng">เบงกาลี</script>
- <script type="Blis">บลิสซิมโบลส์</script>
- <script type="Bopo">โบโพโมโฟ</script>
- <script type="Brah">บรามี</script>
- <script type="Brai">เบรลล์</script>
- <script type="Bugi">บูกิส</script>
- <script type="Buhd">บูฮิด</script>
- <script type="Cans">สัญลักษณ์ชนเผ่าพื้นเมืองแคนาดา</script>
- <script type="Cari">คาเรีย</script>
- <script type="Cham">จาม</script>
- <script type="Cher">เชอโรกี</script>
- <script type="Cirt">เซิร์ต</script>
- <script type="Copt">คอปติก</script>
- <script type="Cprt">ไซเปรียท</script>
- <script type="Cyrl">ซีริลลิก</script>
- <script type="Cyrs">ซีริลลิกโบสถ์สลาโวนิกโบราณ</script>
- <script type="Deva">เทวนาครี</script>
- <script type="Dsrt">เดเซเรท</script>
- <script type="Egyd">ดีโมติกอียิปต์</script>
- <script type="Egyh">เฮียราติกอียิปต์</script>
- <script type="Egyp">เฮียโรกลิฟส์อียิปต์</script>
- <script type="Ethi">เอธิโอเปีย</script>
- <script type="Geok">คัตซูรี - อาซอมทัฟรูลีและนูสคูรี</script>
- <script type="Geor">จอร์เจีย</script>
- <script type="Glag">กลาโกลิติก</script>
- <script type="Goth">โกธิก</script>
- <script type="Grek">กรีก</script>
- <script type="Gujr">คุชราต</script>
- <script type="Guru">เกอร์มูคิ</script>
- <script type="Hang">ฮันกูล</script>
- <script type="Hani">ฮั่น</script>
- <script type="Hano">ฮานูโนโอ</script>
- <script type="Hans">ฮั่นประยุกต์</script>
- <script type="Hant">ฮั่นดั้งเดิม</script>
- <script type="Hebr">ฮีบรู</script>
- <script type="Hira">ฮิรางานะ</script>
- <script type="Hmng">พาฮาวมอง</script>
- <script type="Hrkt">กาตะงานะหรือฮิรางานะ</script>
- <script type="Hung">ฮังการีโบราณ</script>
- <script type="Inds">อินดัส - ฮารัปพัน</script>
- <script type="Ital">อิตาลีโบราณ</script>
- <script type="Java">ชวา</script>
- <script type="Jpan">ญี่ปุ่น</script>
- <script type="Kali">คยาห์</script>
- <script type="Kana">กาตะกานะ</script>
- <script type="Khar">คาโรสติ</script>
- <script type="Khmr">เขมร</script>
- <script type="Knda">กันนาดา</script>
- <script type="Kore">เกาหลี</script>
- <script type="Lana">ล้านนา</script>
- <script type="Laoo">ลาว</script>
- <script type="Latf">ลาติน - ฟรังเตอร์</script>
- <script type="Latg">ลาติน - แกลิก</script>
- <script type="Latn">ลาติน</script>
- <script type="Lepc">เลปชา</script>
- <script type="Limb">ลิมบู</script>
- <script type="Lina">ลีเนียร์เอ</script>
- <script type="Linb">ลีเนียร์บี</script>
- <script type="Lyci">ไลเซีย</script>
- <script type="Lydi">ลีเดีย</script>
- <script type="Mand">แมนแดน</script>
- <script type="Maya">มายันฮีโรกลิฟส์</script>
- <script type="Mero">เมโรติก</script>
- <script type="Mlym">มาลายาลัม</script>
- <script type="Mong">มองโกเลีย</script>
- <script type="Moon">มูน</script>
- <script type="Mtei">มีเตยมาเยก</script>
- <script type="Mymr">พม่า</script>
- <script type="Nkoo">เอ็นโก</script>
- <script type="Ogam">โอคัม</script>
- <script type="Orkh">ออร์คอน</script>
- <script type="Orya">โอริยา</script>
- <script type="Osma">ออสมันยา</script>
- <script type="Perm">เปอร์มิกโบราณ</script>
- <script type="Phag">ฟากส์-พา</script>
- <script type="Phlv">บุ๊กปะห์ลาวี</script>
- <script type="Phnx">ฟินิเชียน</script>
- <script type="Plrd">สัทศาสตร์พอลลาร์ด</script>
- <script type="Qaai">อินเฮอริต</script>
- <script type="Rjng">รจัง</script>
- <script type="Roro">รองโกรองโก</script>
- <script type="Runr">รูนิก</script>
- <script type="Samr">ซามาริทัน</script>
- <script type="Sara">ซาราทิ</script>
- <script type="Shaw">ชาเวียน</script>
- <script type="Sinh">สิงหล</script>
- <script type="Sund">ซุนดา</script>
- <script type="Sylo">ไซโลทินากรี</script>
- <script type="Syrc">ซีเรียค</script>
- <script type="Syre">ซีเรึยคเอสทราจีโล</script>
- <script type="Syrj">ซีเรียคตะวันตก</script>
- <script type="Syrn">ซีเรียคตะวันออก</script>
- <script type="Tagb">ตักบันวา</script>
- <script type="Tale">ไทเล</script>
- <script type="Talu">ไทลื้อใหม่</script>
- <script type="Taml">ทมิฬ</script>
- <script type="Telu">เทลูกู</script>
- <script type="Teng">เทงวอร์</script>
- <script type="Tfng">ทิฟินาค</script>
- <script type="Tglg">ตากาล็อก</script>
- <script type="Thaa">ทานา</script>
- <script type="Thai">ไทย</script>
- <script type="Tibt">ทิเบต</script>
- <script type="Ugar">ยูการิติก</script>
- <script type="Vaii">ไว</script>
- <script type="Visp">คำพูดที่มองเห็นได้</script>
- <script type="Xpeo">เปอร์เซียโบราณ</script>
- <script type="Xsux">อักษรรูปลิ่มสุเมเรีย-อัคคาเดีย</script>
- <script type="Yiii">ยิ</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">แอฟริกาใต้ [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="062">เอเชียกลางตอนใต้</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="172">เครือรัฐอิสระ</territory>
- <territory type="419">ละตินอเมริกาและคาริบเบียน</territory>
- <territory type="830">หมู่เกาะแชนเนล</territory>
- <territory type="AD">อันดอร์รา</territory>
- <territory type="AE">สหรัฐอาหรับเอมิเรตส์</territory>
- <territory type="AF">อัฟกานิสถาน</territory>
- <territory type="AG">แอนติกาและบาร์บูดา</territory>
- <territory type="AI">แองกวิลลา</territory>
- <territory type="AL">แอลเบเนีย</territory>
- <territory type="AM">อาร์เมเนีย</territory>
- <territory type="AN">เนเธอร์แลนด์แอนทิลลิส</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="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="CF">สาธารณรัฐแอฟริกากลาง</territory>
- <territory type="CG">คองโก-บราซซาวิล</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="CR">คอสตาริกา</territory>
- <territory type="CS">เซอร์เบียและมอนเตเนโกร</territory>
- <territory type="CU">คิวบา</territory>
- <territory type="CV">เคปเวิร์ด</territory>
- <territory type="CX">เกาะคริสต์มาส</territory>
- <territory type="CY">ไซปรัส</territory>
- <territory type="CZ">สาธารณรัฐเช็ก</territory>
- <territory type="DE">เยอรมนี</territory>
- <territory type="DJ">จิบูตี</territory>
- <territory type="DK">เดนมาร์ก</territory>
- <territory type="DM">โดมินิกา</territory>
- <territory type="DO">สาธารณรัฐโดมินิกัน</territory>
- <territory type="DZ">แอลจีเรีย</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="FI">ฟินแลนด์</territory>
- <territory type="FJ">ฟิจิ</territory>
- <territory type="FK">หมู่เกาะฟอล์กแลนด์</territory>
- <territory type="FM">ไมโครนีเซีย</territory>
- <territory type="FO">หมู่เกาะฟาโร</territory>
- <territory type="FR">ฝรั่งเศส</territory>
- <territory type="GA">กาบอง</territory>
- <territory type="GB">สหราชอาณาจักร</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="HM">เกาะเฮิร์ดและหมู่เกาะแมกดอนัลด์</territory>
- <territory type="HN">ฮอนดูรัส</territory>
- <territory type="HR">โครเอเชีย</territory>
- <territory type="HT">เฮติ</territory>
- <territory type="HU">ฮังการี</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="ML">มาลี</territory>
- <territory type="MM">พม่า</territory>
- <territory type="MN">มองโกเลีย</territory>
- <territory type="MO">มาเก๊า</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="PT">โปรตุเกส</territory>
- <territory type="PW">ปาเลา</territory>
- <territory type="PY">ปารากวัย</territory>
- <territory type="QA">กาตาร์</territory>
- <territory type="QO">เอาต์ไลอิงโอเชียเนีย</territory>
- <territory type="QU">สหภาพยุโรป</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="ST">เซาตูเมและปรินซิปี</territory>
- <territory type="SV">เอลซัลวาดอร์</territory>
- <territory type="SY">ซีเรีย</territory>
- <territory type="SZ">สวาซิแลนด์</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="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="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">เยอรมันออร์โธกราฟีปี 1996</variant>
- <variant type="AREVELA">อาร์เมเนียตะวันออก</variant>
- <variant type="AREVMDA">อาร์เมเนียตะวันตก</variant>
- <variant type="FONIPA">สัทอักษรสากล</variant>
- <variant type="NEDIS">ภาษาพื้นเมืองนาทิโซเน</variant>
- <variant type="POLYTON">โพลีโทนิก</variant>
- <variant type="POSIX">คอมพิวเตอร์</variant>
- <variant type="REVISED">ออร์โธกราฟิปรับปรุง</variant>
- <variant type="ROZAJ">เรเซียน</variant>
- <variant type="SAAHO">ซาโฮ</variant>
- </variants>
- <keys>
- <key type="calendar">ปฏิทิน</key>
- <key type="collation">การเรียงลำดับ</key>
- <key type="currency">เงินตรา</key>
- </keys>
- <types>
- <type type="big5han" key="collation">เรียงตามอักษรจีนดั้งเดิม</type>
- <type type="buddhist" key="calendar">ปฏิทินพุทธ</type>
- <type type="chinese" key="calendar">ปฏิทินจีน</type>
- <type type="direct" key="collation">เรียงตามลำดับโดยตรง</type>
- <type type="gb2312han" key="collation">เรียงตามอักษรจีนประยุกต์</type>
- <type type="gregorian" key="calendar">ปฏิทินเกรกอเรียน</type>
- <type type="hebrew" key="calendar">ปฏิทินฮิบรู</type>
- <type type="indian" key="calendar">ปฏิทินแห่งชาติอินเดีย</type>
- <type type="islamic" key="calendar">ปฏิทินอิสลาม</type>
- <type type="islamic-civil" key="calendar">ปฏิทินอิสลามซีวิล</type>
- <type type="japanese" key="calendar">ปฏิทินญี่ปุ่น</type>
- <type type="phonebook" key="collation">เรียงตามสมุดโทรศัพท์</type>
- <type type="pinyin" key="collation">เรียงตามการถอดเสียงภาษาจีน</type>
- <type type="roc" key="calendar">ปฏิทินไต้หวัน</type>
- <type type="stroke" key="collation">เรียงตามการลากเส้น</type>
- <type type="traditional" key="collation">เรียงตามแบบดั้งเดิม</type>
- </types>
- <measurementSystemNames>
- <measurementSystemName type="US">อเมริกัน</measurementSystemName>
- <measurementSystemName type="metric">เมตริก</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">{0}</codePattern>
- <codePattern type="script">{0}</codePattern>
- <codePattern type="territory">{0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <characters>
- <exemplarCharacters>[ฯ ๆ ๎ ็-ํ ก-ฮ ะ-ฺ เ-ๅ]</exemplarCharacters>
- <exemplarCharacters type="auxiliary">[\u200B a e g m n p q t]</exemplarCharacters>
- </characters>
- <delimiters>
- <quotationStart>'</quotationStart>
- <quotationEnd>'</quotationEnd>
- <alternateQuotationStart>"</alternateQuotationStart>
- <alternateQuotationEnd>"</alternateQuotationEnd>
- </delimiters>
- <dates>
- <localizedPatternChars>GanjkHmsSEDFwWxhKzAeugXZvcL</localizedPatternChars>
- <calendars>
- <default choice="buddhist"/>
- <calendar type="buddhist">
- <eras>
- <eraAbbr>
- <era type="0">พ.ศ.</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEEที่ d MMMM G yyyy</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d MMMM yyyy</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>d MMM yyyy</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>d/M/yyyy</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>H นาฬิกา m นาที ss วินาที</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>H นาฬิกา m นาที</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>H:mm:ss</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>H:mm</pattern>
- </timeFormat>
- </timeFormatLength>
- </timeFormats>
- <dateTimeFormats>
- <dateTimeFormatLength>
- <dateTimeFormat>
- <pattern>{1}, {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="yyMM">M/yyyy</dateFormatItem>
- <dateFormatItem id="yyMMM">MMM yyyy</dateFormatItem>
- </availableFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="chinese">
- <am>ก่อนเที่ยง</am>
- <pm>หลังเที่ยง</pm>
- </calendar>
- <calendar type="coptic">
- <am>ก่อนเที่ยง</am>
- <pm>หลังเที่ยง</pm>
- </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="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>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">อา.</day>
- <day type="mon">จ.</day>
- <day type="tue">อ.</day>
- <day type="wed">พ.</day>
- <day type="thu">พฤ.</day>
- <day type="fri">ศ.</day>
- <day type="sat">ส.</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="thu">พฤ</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="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>
- </dayContext>
- </days>
- <quarters>
- <quarterContext type="format">
- <quarterWidth type="abbreviated">
- <quarter type="1">Q1</quarter>
- <quarter type="2">Q2</quarter>
- <quarter type="3">Q3</quarter>
- <quarter type="4">Q4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">ไตรมาส 1</quarter>
- <quarter type="2">ไตรมาส 2</quarter>
- <quarter type="3">ไตรมาส 3</quarter>
- <quarter type="4">ไตรมาส 4</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <am>ก่อนเที่ยง</am>
- <pm>หลังเที่ยง</pm>
- <eras>
- <eraNames>
- <era type="0">ปีก่อนคริสต์ศักราชที่</era>
- <era type="1">คริสต์ศักราช</era>
- </eraNames>
- <eraAbbr>
- <era type="0">ปีก่อน ค.ศ. ที่</era>
- <era type="1">ค.ศ.</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEEที่ d MMMM G yyyy</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d MMMM yyyy</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>d MMM yyyy</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>d/M/yyyy</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>H นาฬิกา m นาที ss วินาที v</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>H นาฬิกา m นาที ss วินาที z</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>H:mm:ss</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>H:mm</pattern>
- </timeFormat>
- </timeFormatLength>
- </timeFormats>
- <dateTimeFormats>
- <dateTimeFormatLength>
- <dateTimeFormat>
- <pattern>{1}, {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="HHmm">HH:mm</dateFormatItem>
- <dateFormatItem id="HHmmss">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="Hm">H:mm</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="MEd">E, d-M</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
- <dateFormatItem id="MMMMEd">E d MMMM</dateFormatItem>
- <dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
- <dateFormatItem id="MMMd">d MMM</dateFormatItem>
- <dateFormatItem id="Md">d/M</dateFormatItem>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="mmss">mm:ss</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">yyyy</dateFormatItem>
- <dateFormatItem id="yM">M/yyyy</dateFormatItem>
- <dateFormatItem id="yMEd">EEE d/M/yyyy</dateFormatItem>
- <dateFormatItem id="yMMM">MMM yyyy</dateFormatItem>
- <dateFormatItem id="yMMMEd">EEE d MMM yyyy</dateFormatItem>
- <dateFormatItem id="yMMMM">MMMM yyyy</dateFormatItem>
- <dateFormatItem id="yQ">Q yyyy</dateFormatItem>
- <dateFormatItem id="yQQQ">QQQ yyyy</dateFormatItem>
- <dateFormatItem id="yyQ">Q yy</dateFormatItem>
- <dateFormatItem id="yyyyM">M/yyyy</dateFormatItem>
- <dateFormatItem id="yyyyMMMM">MMMM yyyy</dateFormatItem>
- </availableFormats>
- <intervalFormats>
- <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M-M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="M">E d/M – E d/M</greatestDifference>
- <greatestDifference id="d">E d – E d/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">LLL-LLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="M">E d MMM – E d MMM</greatestDifference>
- <greatestDifference id="d">E d – E d MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMM">
- <greatestDifference id="M">LLLL-LLLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="M">d MMM – d MMM</greatestDifference>
- <greatestDifference id="d">d – d MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="M">d/M - d/M</greatestDifference>
- <greatestDifference id="d">d/M - d/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d-d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="h">H-H</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="h">H:mm-H:mm</greatestDifference>
- <greatestDifference id="m">H:mm-H:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y-y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">M–M/yy</greatestDifference>
- <greatestDifference id="y">M/yyyy - M/yyyy</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="M">E d/M/yy – E d/M/yy</greatestDifference>
- <greatestDifference id="d">E d – E d/M/yy</greatestDifference>
- <greatestDifference id="y">E d/M/yy – E d/M/yy</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">MMM-MMM yyyy</greatestDifference>
- <greatestDifference id="y">MMM yyyy - MMM yyyy</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="M">E d MMM – E d MMM yyyy</greatestDifference>
- <greatestDifference id="d">E d – E d MMM yyyy</greatestDifference>
- <greatestDifference id="y">E d MMM yyyy – E d MMM yyyy</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">M–M/yyyy</greatestDifference>
- <greatestDifference id="y">M/yyyy – M/yyyy</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="M">d MMM – d MMM yyyy</greatestDifference>
- <greatestDifference id="d">d–d MMM yyyy</greatestDifference>
- <greatestDifference id="y">d MMM yyyy – d MMM yyyy</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="M">d/M/yy – d/M/yy</greatestDifference>
- <greatestDifference id="d">d-d/M/yy</greatestDifference>
- <greatestDifference id="y">d/M/yy – d/M/yy</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- <fields>
- <field type="era">
- <displayName>สมัย</displayName>
- </field>
- <field type="year">
- <displayName>ปี</displayName>
- </field>
- <field type="month">
- <displayName>เดือน</displayName>
- </field>
- <field type="week">
- <displayName>สัปดาห์</displayName>
- </field>
- <field type="day">
- <displayName>วัน</displayName>
- <relative type="0">วันนี้</relative>
- <relative type="1">พรุ่งนี้</relative>
- <relative type="2">มะรืนนี้</relative>
- <relative type="3">สามวันถัดไป</relative>
- <relative type="-1">เมื่อวานนี้</relative>
- <relative type="-2">เมื่อวานซืน</relative>
- <relative type="-3">สามวันก่อนหน้า</relative>
- </field>
- <field type="weekday">
- <displayName>วันในสัปดาห์</displayName>
- </field>
- <field type="dayperiod">
- <displayName>ช่วงวัน</displayName>
- </field>
- <field type="hour">
- <displayName>ชั่วโมง</displayName>
- </field>
- <field type="minute">
- <displayName>นาที</displayName>
- </field>
- <field type="second">
- <displayName>วินาที</displayName>
- </field>
- <field type="zone">
- <displayName>เขต</displayName>
- </field>
- </fields>
- </calendar>
- <calendar type="islamic">
- <am>ก่อนเที่ยง</am>
- <pm>หลังเที่ยง</pm>
- </calendar>
- <calendar type="japanese">
- <am>ก่อนเที่ยง</am>
- <pm>หลังเที่ยง</pm>
- </calendar>
- <calendar type="persian">
- <am>ก่อนเที่ยง</am>
- <pm>หลังเที่ยง</pm>
- </calendar>
- </calendars>
- <timeZoneNames>
- <hourFormat>+HHmm;-HHmm</hourFormat>
- <gmtFormat>GMT{0}</gmtFormat>
- <regionFormat>{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/South_Pole">
- <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/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="Australia/Lord_Howe">
- <exemplarCity>ลอร์ดโฮวี</exemplarCity>
- </zone>
- <zone type="America/Aruba">
- <exemplarCity>อารูบา</exemplarCity>
- </zone>
- <zone type="Asia/Baku">
- <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="Atlantic/Bermuda">
- <exemplarCity>เบอร์มิวดา</exemplarCity>
- </zone>
- <zone type="Asia/Brunei">
- <exemplarCity>บรูไนดารุสซาลาม</exemplarCity>
- </zone>
- <zone type="America/La_Paz">
- <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/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="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/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/Montreal">
- <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="Pacific/Easter">
- <exemplarCity>อีสเตอร์</exemplarCity>
- </zone>
- <zone type="America/Santiago">
- <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="Indian/Christmas">
- <exemplarCity>คริสต์มาส</exemplarCity>
- </zone>
- <zone type="Asia/Nicosia">
- <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="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="Europe/Paris">
- <exemplarCity>ปารีส</exemplarCity>
- </zone>
- <zone type="Africa/Libreville">
- <exemplarCity>ลีเบรอวิล</exemplarCity>
- </zone>
- <zone type="Europe/London">
- <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="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="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">
- <exemplarCity>ดับบลิน</exemplarCity>
- </zone>
- <zone type="Asia/Jerusalem">
- <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="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="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="Africa/Tripoli">
- <exemplarCity>ตรีโปลี</exemplarCity>
- </zone>
- <zone type="Africa/Casablanca">
- <exemplarCity>คาสซาบลางก้า</exemplarCity>
- </zone>
- <zone type="Europe/Monaco">
- <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="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="America/Tijuana">
- <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/Monterrey">
- <exemplarCity>มอนเตร์เรย์</exemplarCity>
- </zone>
- <zone type="America/Mexico_City">
- <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="Africa/Lagos">
- <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="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/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/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/Sakhalin">
- <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="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="Arctic/Longyearbyen">
- <exemplarCity>ลองเยียร์เบียน</exemplarCity>
- </zone>
- <zone type="Africa/Freetown">
- <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/Sao_Tome">
- <exemplarCity>ซาโอโตเมะ</exemplarCity>
- </zone>
- <zone type="America/El_Salvador">
- <exemplarCity>เอลซัลวาดอร์</exemplarCity>
- </zone>
- <zone type="Asia/Damascus">
- <exemplarCity>ดามัสกัส</exemplarCity>
- </zone>
- <zone type="Africa/Mbabane">
- <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="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/Juneau">
- <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/Shiprock">
- <exemplarCity>ชิปร็อก</exemplarCity>
- </zone>
- <zone type="America/Denver">
- <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="America/St_Vincent">
- <exemplarCity>เซนต์วินเซนต์</exemplarCity>
- </zone>
- <zone type="America/Caracas">
- <exemplarCity>คาราคัส</exemplarCity>
- </zone>
- <zone type="America/St_Thomas">
- <exemplarCity>เซนต์โธมัส</exemplarCity>
- </zone>
- <zone type="Asia/Saigon">
- <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="Acre">
- <long>
- <standard>เวลาอาเกร</standard>
- <daylight>เวลาฤดูร้อนอาเกร</daylight>
- </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>
- <standard>เวลาแอฟริกาตะวันตก</standard>
- <daylight>เวลาฤดูร้อนแอฟริกาตะวันตก</daylight>
- </long>
- </metazone>
- <metazone type="Alaska">
- <long>
- <generic>เวลาอะแลสกา</generic>
- <standard>เวลามาตรฐานอะแลสกา</standard>
- </long>
- </metazone>
- <metazone type="Alaska_Hawaii">
- <long>
- <standard>เวลามาตรฐานอะแลสกา-ฮาวาย</standard>
- </long>
- </metazone>
- <metazone type="Amazon">
- <long>
- <standard>เวลาอะเมซอน</standard>
- <daylight>เวลาฤดูร้อนอะเมซอน</daylight>
- </long>
- </metazone>
- <metazone type="America_Central">
- <long>
- <generic>เวลากลาง</generic>
- <standard>เวลามาตรฐานกลาง</standard>
- </long>
- </metazone>
- <metazone type="America_Eastern">
- <long>
- <generic>เวลาตะวันออก</generic>
- <standard>เวลามาตรฐานตะวันออก</standard>
- </long>
- </metazone>
- <metazone type="America_Pacific">
- <long>
- <generic>เวลาแปซิฟิค</generic>
- <standard>เวลามาตรฐานแปซิฟิค</standard>
- </long>
- </metazone>
- <metazone type="Aqtau">
- <long>
- <standard>เวลาอัคตาอู</standard>
- <daylight>เวลาฤดูร้อนอัคตาอู</daylight>
- </long>
- <short>
- <standard>AQTT (อัคตาอู)</standard>
- <daylight>AQTST (อัคตาอู)</daylight>
- </short>
- </metazone>
- <metazone type="Arabian">
- <long>
- <generic>เวลาอาระเบีย</generic>
- <standard>เวลามาตรฐานอาระเบีย</standard>
- </long>
- <short>
- <standard>AST (อาระเบีย)</standard>
- <daylight>ADT (อาระเบีย)</daylight>
- </short>
- </metazone>
- <metazone type="Argentina">
- <long>
- <standard>เวลาอาร์เจนตินา</standard>
- <daylight>เวลาฤดูร้อนอาร์เจนตินา</daylight>
- </long>
- </metazone>
- <metazone type="Argentina_Western">
- <long>
- <standard>เวลาอาร์เจนตินาตะวันตก</standard>
- </long>
- </metazone>
- <metazone type="Armenia">
- <long>
- <standard>เวลาอาร์เมเนีย</standard>
- <daylight>เวลาฤดูร้อนอาร์เมเนีย</daylight>
- </long>
- <short>
- <standard>AMT (อาร์เมเนีย)</standard>
- <daylight>AMST (อาร์เมเนีย)</daylight>
- </short>
- </metazone>
- <metazone type="Atlantic">
- <long>
- <generic>เวลาแอตแลนติก</generic>
- <standard>เวลามาตรฐานแอตแลนติก</standard>
- </long>
- </metazone>
- <metazone type="Australia_Central">
- <long>
- <generic>เวลาออสเตรเลียกลาง</generic>
- <standard>เวลามาตรฐานออสเตรเลียกลาง</standard>
- </long>
- </metazone>
- <metazone type="Australia_Eastern">
- <long>
- <generic>เวลาออสเตรเลียตะวันออก</generic>
- <standard>เวลามาตรฐานออสเตรเลียตะวันออก</standard>
- </long>
- </metazone>
- <metazone type="Australia_Western">
- <long>
- <generic>เวลาออสเตรเลียตะวันตก</generic>
- <standard>เวลามาตรฐานออสเตรเลียตะวันตก</standard>
- </long>
- </metazone>
- <metazone type="Azores">
- <long>
- <standard>เวลาฤดูร้อนอาโซเรช</standard>
- <daylight>เวลาฤดูร้อนอาโซเรช</daylight>
- </long>
- </metazone>
- <metazone type="Baku">
- <long>
- <standard>เวลาบากู</standard>
- <daylight>เวลาฤดูร้อนบากู</daylight>
- </long>
- </metazone>
- <metazone type="Bangladesh">
- <long>
- <standard>เวลาบังกลาเทศ</standard>
- </long>
- </metazone>
- <metazone type="Bering">
- <long>
- <generic>เวลาเบริง</generic>
- <standard>เวลามาตรฐานเบริง</standard>
- </long>
- <short>
- <standard>BST (เบริง)</standard>
- <daylight>BDT (เบริง)</daylight>
- </short>
- </metazone>
- <metazone type="Bhutan">
- <long>
- <standard>เวลาภูฏาน</standard>
- </long>
- </metazone>
- <metazone type="Borneo">
- <long>
- <standard>เวลาบอร์เนียว</standard>
- <daylight>เวลาฤดูร้อนบอร์เนียว</daylight>
- </long>
- </metazone>
- <metazone type="Brasilia">
- <long>
- <standard>เวลาบราซิเลีย</standard>
- <daylight>เวลาฤดูร้อนบราซิเลีย</daylight>
- </long>
- </metazone>
- <metazone type="Chamorro">
- <long>
- <standard>เวลามาตรฐานชามอร์โร</standard>
- </long>
- </metazone>
- <metazone type="Chile">
- <long>
- <standard>เวลาชิลี</standard>
- <daylight>เวลาฤดูร้อนชิลี</daylight>
- </long>
- </metazone>
- <metazone type="China">
- <long>
- <standard>เวลามาตรฐานจีน</standard>
- </long>
- <short>
- <standard>CST (จีน)</standard>
- <daylight>CDT (จีน)</daylight>
- </short>
- </metazone>
- <metazone type="Dushanbe">
- <long>
- <standard>เวลาดูชานเบ</standard>
- <daylight>เวลาฤดูร้อนดูชานเบ</daylight>
- </long>
- </metazone>
- <metazone type="East_Timor">
- <long>
- <standard>เวลาติมอร์ตะวันออก</standard>
- </long>
- </metazone>
- <metazone type="Ecuador">
- <long>
- <standard>เวลาเอกวาดอร์</standard>
- </long>
- </metazone>
- <metazone type="Europe_Central">
- <long>
- <standard>เวลายุโรปกลาง</standard>
- <daylight>เวลาฤดูร้อนยุโรปกลาง</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Eastern">
- <long>
- <standard>เวลายุโรปตะวันออก</standard>
- <daylight>เวลาฤดูร¹อนยุโรปตะวันออก</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Western">
- <long>
- <standard>เวลายุโรปตะวันตก</standard>
- <daylight>เวลาฤดูร้อนยุโรปตะวันตก</daylight>
- </long>
- </metazone>
- <metazone type="GMT">
- <long>
- <standard>เวลามาตรฐานกรีนิช</standard>
- </long>
- </metazone>
- <metazone type="Galapagos">
- <long>
- <standard>เวลากาลาปาโกส</standard>
- </long>
- </metazone>
- <metazone type="Georgia">
- <long>
- <standard>เวลาจอร์เจีย</standard>
- <daylight>เวลาฤดูร้อนจอร์เจีย</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Central">
- <long>
- <standard>เวลากรีนแลนด์กลาง</standard>
- <daylight>เวลาฤดูร้อนกรีนแลนด์กลาง</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Eastern">
- <long>
- <standard>เวลากรีนแลนด์ตะวันออก</standard>
- <daylight>เวลาฤดูร้อนกรีนแลนด์ตะวันออก</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Western">
- <long>
- <standard>เวลากรีนแลนด์ตะวันตก</standard>
- <daylight>เวลาฤดูร้อนกรีนแลนด์ตะวันตก</daylight>
- </long>
- </metazone>
- <metazone type="Guam">
- <long>
- <standard>เวลามาตรฐานกวม</standard>
- </long>
- <short>
- <standard>GST (กวม)</standard>
- </short>
- </metazone>
- <metazone type="India">
- <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="Israel">
- <long>
- <standard>เวล¥ามาตรฐานอิสราเอล</standard>
- </long>
- <short>
- <standard>IST (อิสราเอล)</standard>
- </short>
- </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>
- </long>
- </metazone>
- <metazone type="Kwajalein">
- <long>
- <standard>เวลาควาจาเลน</standard>
- </long>
- </metazone>
- <metazone type="Macau">
- <long>
- <standard>เวลามาเก๊า</standard>
- <daylight>เวลาฤดูร้อนมาเก๊า</daylight>
- </long>
- </metazone>
- <metazone type="Malaya">
- <long>
- <standard>เวลามาลายา</standard>
- </long>
- </metazone>
- <metazone type="Malaysia">
- <long>
- <standard>เวลามาเลเซีย</standard>
- </long>
- </metazone>
- <metazone type="Marshall_Islands">
- <long>
- <standard>เวลาหมู่เกาะมาร์แชลล์</standard>
- </long>
- </metazone>
- <metazone type="Mongolia">
- <long>
- <standard>เวลาอูลานบาตอร์</standard>
- <daylight>เวลาฤดูร้อนอูลานบาตอร์</daylight>
- </long>
- </metazone>
- <metazone type="New_Zealand">
- <long>
- <generic>เวลานิวซีแลนด์</generic>
- <standard>เวลามาตรฐานนิวซีแลนด์</standard>
- </long>
- </metazone>
- <metazone type="Newfoundland">
- <long>
- <generic>เวลานิวฟันด์แลนด์</generic>
- <standard>เวลามาตรฐานนิวฟันด์แลนด์</standard>
- </long>
- </metazone>
- <metazone type="North_Mariana">
- <long>
- <standard>เวลาหมู่เกาะมาเรียนาเหนือ</standard>
- </long>
- </metazone>
- <metazone type="Pakistan">
- <long>
- <standard>เวลาปากีสถาน</standard>
- <daylight>เวลาฤดูร้อนปากีสถาน</daylight>
- </long>
- </metazone>
- <metazone type="Pierre_Miquelon">
- <long>
- <generic>ปีแยร์และมีเกอลง</generic>
- <standard>เวลามาตรฐานปีแยร์และมีเกอลง</standard>
- </long>
- </metazone>
- <metazone type="Qyzylorda">
- <long>
- <standard>เวลาคืยซิลออร์ดา</standard>
- <daylight>เวลาฤดูร้อนคืยซิลออร์ดา</daylight>
- </long>
- </metazone>
- <metazone type="Samara">
- <long>
- <standard>เวลาซามารา</standard>
- <daylight>เวลาฤดูร้อนซามารา</daylight>
- </long>
- </metazone>
- <metazone type="Samarkand">
- <long>
- <standard>เวลาซามาร์คันด์</standard>
- <daylight>เวลาฤดูร้อนซามาร์คันด์</daylight>
- </long>
- <short>
- <standard>SAMT (ซามาร์คันด์)</standard>
- <daylight>SAMST (ซามาร์คันด์)</daylight>
- </short>
- </metazone>
- <metazone type="Samoa">
- <long>
- <standard>เวลามาตรฐานซามัว</standard>
- </long>
- </metazone>
- <metazone type="Suriname">
- <long>
- <standard>เวลาซูรินาเม</standard>
- </long>
- </metazone>
- <metazone type="Sverdlovsk">
- <long>
- <standard>เวลาสเวียร์ดลอฟสค์</standard>
- <daylight>เวลาฤดูร้อนสเวียร์ดลอฟสค์</daylight>
- </long>
- </metazone>
- <metazone type="Tajikistan">
- <long>
- <standard>เวลาทาจิกิสถาน</standard>
- </long>
- </metazone>
- <metazone type="Tashkent">
- <long>
- <daylight>เวลาฤดูร้อนทาชเคนต์</daylight>
- </long>
- </metazone>
- <metazone type="Tbilisi">
- <long>
- <standard>เวลาทบิลิซิ</standard>
- <daylight>เวลาฤดูร้อนทบิลิซิ</daylight>
- </long>
- </metazone>
- <metazone type="Turkey">
- <long>
- <standard>เวลาตุรกี</standard>
- <daylight>เวลาฤดูร้อนตุรกี</daylight>
- </long>
- </metazone>
- <metazone type="Turkmenistan">
- <long>
- <standard>เวลาเติร์กเมนิสถาน</standard>
- <daylight>เวลาฤดูร้อนเติร์กเมนิสถาน</daylight>
- </long>
- </metazone>
- <metazone type="Uzbekistan">
- <long>
- <standard>เวลาอุซเบกิสถาน</standard>
- <daylight>เวลาฤดูร้อนอุซเบกิสถาน</daylight>
- </long>
- </metazone>
- <metazone type="Yekaterinburg">
- <long>
- <standard>เวลาเยคาเตรินบูร์ก</standard>
- <daylight>เวลาฤดูร้อนเยคาเตรินบูร์ก</daylight>
- </long>
- </metazone>
- <metazone type="Yerevan">
- <long>
- <standard>เวลาเยเรวาน</standard>
- <daylight>เวลาฤดูร้อนเยเรวาน</daylight>
- </long>
- </metazone>
- <metazone type="Yukon">
- <long>
- <generic>เวลายูคอน</generic>
- <standard>เวลามาตรฐานยูคอน</standard>
- </long>
- </metazone>
- </timeZoneNames>
- </dates>
- <numbers>
- <symbols>
- <decimal>.</decimal>
- <group>,</group>
- <list>;</list>
- <percentSign>%</percentSign>
- <nativeZeroDigit>0</nativeZeroDigit>
- <patternDigit>#</patternDigit>
- <plusSign>+</plusSign>
- <minusSign>-</minusSign>
- <exponential>E</exponential>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>NaN</nan>
- </symbols>
- <decimalFormats>
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <scientificFormats>
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <percentFormats>
- <percentFormatLength>
- <percentFormat>
- <pattern>#,##0%</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <currencyFormats>
- <currencyFormatLength>
- <currencyFormat>
- <pattern>¤#,##0.00;¤-#,##0.00</pattern>
- </currencyFormat>
- </currencyFormatLength>
- </currencyFormats>
- <currencies>
- <currency type="ADP">
- <displayName>เปเซตาอันดอร์รา</displayName>
- </currency>
- <currency type="AED">
- <displayName>ดีแรห์มสหรัฐอาหรับเอมิเรตส์</displayName>
- </currency>
- <currency type="AFA">
- <displayName>อัฟกานี (1927-2002)</displayName>
- </currency>
- <currency type="AFN">
- <displayName>อัฟกานี</displayName>
- </currency>
- <currency type="ALL">
- <displayName>เลกอัลบาเนีย</displayName>
- </currency>
- <currency type="AMD">
- <displayName>ดรัมอาเมเนีย</displayName>
- </currency>
- <currency type="ANG">
- <displayName>กิลเดอร์เนเธอร์แลนด์แอนทิลลิส</displayName>
- </currency>
- <currency type="AOA">
- <displayName>กวานซาแองโกลา</displayName>
- </currency>
- <currency type="AOK">
- <displayName>กวานซาแองโกลา (1977-1990)</displayName>
- </currency>
- <currency type="AON">
- <displayName>นิวกวานซาแองโกลา (1990-2000)</displayName>
- </currency>
- <currency type="AOR">
- <displayName>กวานซารีจัสทาโดแองโกลา (1995-1999)</displayName>
- </currency>
- <currency type="ARA">
- <displayName>ออสตรัลอาร์เจนตินา</displayName>
- </currency>
- <currency type="ARP">
- <displayName>เปโซอาร์เจนติน่า (1983-1985)</displayName>
- </currency>
- <currency type="ARS">
- <displayName>เปโซอาร์เจนติน่า</displayName>
- <symbol>Arg$</symbol>
- </currency>
- <currency type="ATS">
- <displayName>ชิลลิงออสเตรีย</displayName>
- </currency>
- <currency type="AUD">
- <displayName>ดอลลาร์ออสเตรเลีย</displayName>
- <symbol>$A</symbol>
- </currency>
- <currency type="AWG">
- <displayName>กิลเดอร์อารูบา</displayName>
- </currency>
- <currency type="AZM">
- <displayName>มานัตอาเซอร์ไบจัน</displayName>
- </currency>
- <currency type="AZN">
- <displayName>มานัตอาเซอร์ไบจาน</displayName>
- </currency>
- <currency type="BAD">
- <displayName>ดีนาร์บอสเนีย-เฮอร์เซโกวีนา</displayName>
- </currency>
- <currency type="BAM">
- <displayName>มาร์กบอสเนีย-เฮอร์เซโกวีนา</displayName>
- </currency>
- <currency type="BBD">
- <displayName>ดอลลาร์บาร์เบโดส</displayName>
- </currency>
- <currency type="BDT">
- <displayName>ตากาบังกลาเทศ</displayName>
- </currency>
- <currency type="BEC">
- <displayName>ฟรังก์เบลเยียม (เปลี่ยนแปลงได้)</displayName>
- </currency>
- <currency type="BEF">
- <displayName>ฟรังก์เบลเยียม</displayName>
- </currency>
- <currency type="BEL">
- <displayName>ฟรังก์เบลเยียม (การเงิน)</displayName>
- </currency>
- <currency type="BGL">
- <displayName>ฮาร์ดลีฟบัลแกเรีย</displayName>
- </currency>
- <currency type="BGN">
- <displayName>นิวลีฟบัลแกเรีย</displayName>
- </currency>
- <currency type="BHD">
- <displayName>ดีนาร์บาห์เรน</displayName>
- </currency>
- <currency type="BIF">
- <displayName>ฟรังก์บุรุนดี</displayName>
- </currency>
- <currency type="BMD">
- <displayName>ดอลลาร์เบอร์มิวดา</displayName>
- </currency>
- <currency type="BND">
- <displayName>ดอลลาร์บรูไน</displayName>
- </currency>
- <currency type="BOB">
- <displayName>โบลิเวียโน</displayName>
- </currency>
- <currency type="BOP">
- <displayName>เปโซโบลิเวีย</displayName>
- </currency>
- <currency type="BOV">
- <displayName>มฟดอลโบลิเวีย</displayName>
- </currency>
- <currency type="BRB">
- <displayName>ครูเซโรโนโวบราซิล (1967-1986)</displayName>
- </currency>
- <currency type="BRC">
- <displayName>ครูซาโดบราซิล</displayName>
- </currency>
- <currency type="BRE">
- <displayName>ครูเซโรบราซิล (1990-1993)</displayName>
- </currency>
- <currency type="BRL">
- <displayName>รีล</displayName>
- <symbol>R$</symbol>
- </currency>
- <currency type="BRN">
- <displayName>ครูซาโดโนโวบราซิล</displayName>
- </currency>
- <currency type="BRR">
- <displayName>ครูเซโรบราซิล</displayName>
- </currency>
- <currency type="BSD">
- <displayName>ดอลลาร์บาฮามาส</displayName>
- </currency>
- <currency type="BTN">
- <displayName>กัลทรัมภูฏาน</displayName>
- </currency>
- <currency type="BUK">
- <displayName>จ๊าดพม่า</displayName>
- </currency>
- <currency type="BWP">
- <displayName>พูลาบอตสวานา</displayName>
- </currency>
- <currency type="BYB">
- <displayName>นิวรูเบิลเบลารัสเซีย (1994-1999)</displayName>
- </currency>
- <currency type="BYR">
- <displayName>รูเบิลเบลารุส</displayName>
- </currency>
- <currency type="BZD">
- <displayName>ดอลลาร์เบลีซ</displayName>
- </currency>
- <currency type="CAD">
- <displayName>ดอลลาร์แคนาดา</displayName>
- <symbol>Can$</symbol>
- </currency>
- <currency type="CDF">
- <displayName>ฟรังก์คองโก</displayName>
- </currency>
- <currency type="CHE">
- <displayName>ยูโรดับเบิลยูไออาร์</displayName>
- </currency>
- <currency type="CHF">
- <displayName>ฟรังก์สวิส</displayName>
- </currency>
- <currency type="CHW">
- <displayName>ฟรังก์ดับเบิลยูไออาร์</displayName>
- </currency>
- <currency type="CLF">
- <displayName>ฟูเมนโตชิลี</displayName>
- </currency>
- <currency type="CLP">
- <displayName>เปโซชิลี</displayName>
- <symbol>Ch$</symbol>
- </currency>
- <currency type="CNY">
- <displayName>หยวนเหรินเหมินบี้</displayName>
- <symbol>¥</symbol>
- </currency>
- <currency type="COP">
- <displayName>เปโซโคลัมเบีย</displayName>
- </currency>
- <currency type="COU">
- <displayName>วาเลอร์รีล</displayName>
- </currency>
- <currency type="CRC">
- <displayName>โคลอนคอสตาริกา</displayName>
- </currency>
- <currency type="CSD">
- <displayName>ดีนาร์เซอร์เบียเก่า</displayName>
- </currency>
- <currency type="CSK">
- <displayName>ฮาร์ดโครูนาเช็กโกสโลวัก</displayName>
- </currency>
- <currency type="CUP">
- <displayName>เปโซคิวบา</displayName>
- </currency>
- <currency type="CVE">
- <displayName>เคปเวอร์เดอร์เอสคูโด</displayName>
- </currency>
- <currency type="CYP">
- <displayName>ปอนด์ไซปรัส</displayName>
- </currency>
- <currency type="CZK">
- <displayName>โครูนาสาธารณรัฐเช็ก</displayName>
- </currency>
- <currency type="DDM">
- <displayName>ออสต์มาร์กเยอรมันตะวันออก</displayName>
- </currency>
- <currency type="DEM">
- <displayName>มาร์กเยอรมนี</displayName>
- </currency>
- <currency type="DJF">
- <displayName>ฟรังก์จิบูตี</displayName>
- </currency>
- <currency type="DKK">
- <displayName>โครนเดนมาร์ก</displayName>
- </currency>
- <currency type="DOP">
- <displayName>เปโซโดมินิกา</displayName>
- </currency>
- <currency type="DZD">
- <displayName>ดีนาร์แอลจีเรีย</displayName>
- </currency>
- <currency type="ECS">
- <displayName>ซูเกรเอกวาดอร์</displayName>
- </currency>
- <currency type="ECV">
- <displayName>วาเลอร์คอนสแตนต์เอกวาดอร์</displayName>
- </currency>
- <currency type="EEK">
- <displayName>ครูนเอสโตเนีย</displayName>
- </currency>
- <currency type="EGP">
- <displayName>ปอนด์อียิปต์</displayName>
- </currency>
- <currency type="EQE">
- <displayName>เอ็กเวเล</displayName>
- </currency>
- <currency type="ERN">
- <displayName>นากฟาเอริเทรีย</displayName>
- </currency>
- <currency type="ESA">
- <displayName>เปเซตาสเปน (บัญชี)</displayName>
- </currency>
- <currency type="ESB">
- <displayName>เปเซตาสเปน (บัญชีที่เปลี่ยนแปลงได้)</displayName>
- </currency>
- <currency type="ESP">
- <displayName>เปเซตาสเปน</displayName>
- </currency>
- <currency type="ETB">
- <displayName>เบอรร์เอธิโอเปีย</displayName>
- </currency>
- <currency type="EUR">
- <displayName>ยูโร</displayName>
- <symbol>€</symbol>
- </currency>
- <currency type="FIM">
- <displayName>มาร์กกาฟินแลนด์</displayName>
- </currency>
- <currency type="FJD">
- <displayName>ดอลลาร์ฟิจิ</displayName>
- <symbol>F$</symbol>
- </currency>
- <currency type="FKP">
- <displayName>ปอนด์เกาะฟอล์กแลนด์</displayName>
- </currency>
- <currency type="FRF">
- <displayName>ฟรังก์ฝรั่งเศส</displayName>
- </currency>
- <currency type="GBP">
- <displayName>ปอนด์สเตอร์ลิงอังกฤษ</displayName>
- <symbol>\u00A3</symbol>
- </currency>
- <currency type="GEK">
- <displayName>คูปอนลาริตจอร์เจีย</displayName>
- </currency>
- <currency type="GEL">
- <displayName>ลารีจอร์เจีย</displayName>
- </currency>
- <currency type="GHC">
- <displayName>เซดีกานา</displayName>
- </currency>
- <currency type="GIP">
- <displayName>ปอนด์ยิบรอลตาร์</displayName>
- </currency>
- <currency type="GMD">
- <displayName>ดาลาซีแกมเบีย</displayName>
- </currency>
- <currency type="GNF">
- <displayName>ฟรังก์กินี</displayName>
- </currency>
- <currency type="GNS">
- <displayName>ไซลีกินี</displayName>
- </currency>
- <currency type="GQE">
- <displayName>เอ็กเวเลกินีนาอิเควทอเรียลกินี</displayName>
- </currency>
- <currency type="GRD">
- <displayName>ดรัชมากรีก</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>เควตซัลกัวเตมาลา</displayName>
- </currency>
- <currency type="GWE">
- <displayName>เอสคูโดกินีโปรตุเกส</displayName>
- </currency>
- <currency type="GWP">
- <displayName>เปโซกีนีบิสเซา</displayName>
- </currency>
- <currency type="GYD">
- <displayName>ดอลลาร์กายอานา</displayName>
- </currency>
- <currency type="HKD">
- <displayName>เหรียญฮ่องกง</displayName>
- <symbol>HK$</symbol>
- </currency>
- <currency type="HNL">
- <displayName>เลมปิราฮอดูรัส</displayName>
- </currency>
- <currency type="HRD">
- <displayName>ดีนาร์โครเอเชีย</displayName>
- </currency>
- <currency type="HRK">
- <displayName>คูนาโครเอเชีย</displayName>
- </currency>
- <currency type="HTG">
- <displayName>กอร์ดเฮติ</displayName>
- </currency>
- <currency type="HUF">
- <displayName>ฟอรินต์ฮังการี</displayName>
- </currency>
- <currency type="IDR">
- <displayName>รูเปียอินโดนีเซีย</displayName>
- <symbol>Rp</symbol>
- </currency>
- <currency type="IEP">
- <displayName>ปอนด์ไอริช</displayName>
- <symbol>IR\u00A3</symbol>
- </currency>
- <currency type="ILP">
- <displayName>ปอนด์อิสราเอล</displayName>
- </currency>
- <currency type="ILS">
- <displayName>เชเกลอิสราเอล</displayName>
- </currency>
- <currency type="INR">
- <displayName>รูปีอินเดีย</displayName>
- <symbol>0≤Rs.|1≤Re.|1<Rs.</symbol>
- </currency>
- <currency type="IQD">
- <displayName>ดีนาร์อิรัก</displayName>
- </currency>
- <currency type="IRR">
- <displayName>เรียลอิหร่าน</displayName>
- </currency>
- <currency type="ISK">
- <displayName>โครนาไอซ์แลนด์</displayName>
- </currency>
- <currency type="ITL">
- <displayName>ลีราอิตาลี</displayName>
- </currency>
- <currency type="JMD">
- <displayName>ดอลลาร์จาเมกา</displayName>
- </currency>
- <currency type="JOD">
- <displayName>ดีนาร์จอร์แดน</displayName>
- </currency>
- <currency type="JPY">
- <displayName>เยน</displayName>
- <symbol>\u00A5</symbol>
- </currency>
- <currency type="KES">
- <displayName>ชิลลิ่งเคนยา</displayName>
- </currency>
- <currency type="KGS">
- <displayName>ซอมคีร์กีซสถาน</displayName>
- </currency>
- <currency type="KHR">
- <displayName>เรียลกัมพูชา</displayName>
- </currency>
- <currency type="KMF">
- <displayName>ฟรังก์คอโมโรส</displayName>
- </currency>
- <currency type="KPW">
- <displayName>วอนเกาหลีเหนือ</displayName>
- </currency>
- <currency type="KRW">
- <displayName>วอนเกาหลีใต้</displayName>
- </currency>
- <currency type="KWD">
- <displayName>ดีนาร์คูเวต</displayName>
- </currency>
- <currency type="KYD">
- <displayName>ดอลลาร์ห¡ู่เกาะเคย์แมน</displayName>
- </currency>
- <currency type="KZT">
- <displayName>เทนจ์คาซัคสถาน</displayName>
- </currency>
- <currency type="LAK">
- <displayName>กีบลาว</displayName>
- </currency>
- <currency type="LBP">
- <displayName>ปอนด์เลบานอน</displayName>
- </currency>
- <currency type="LKR">
- <displayName>รูปีศรีลังกา</displayName>
- </currency>
- <currency type="LRD">
- <displayName>ดอลลาร์ไลบีเรีย</displayName>
- </currency>
- <currency type="LSL">
- <displayName>โลตีเลโซโท</displayName>
- </currency>
- <currency type="LSM">
- <displayName>มาโลตี</displayName>
- </currency>
- <currency type="LTL">
- <displayName>ลีตาลิทัวเนีย</displayName>
- </currency>
- <currency type="LTT">
- <displayName>ทาโลนัสลิทัวเนีย</displayName>
- </currency>
- <currency type="LUC">
- <displayName>คอนเวอร์ทิเบิลฟรังก์ลักเซมเบิร์ก</displayName>
- </currency>
- <currency type="LUF">
- <displayName>ฟรังก์ลักเซมเบิร์ก</displayName>
- </currency>
- <currency type="LUL">
- <displayName>ไฟแนลเชียลฟรังก์ลักเซมเบิร์ก</displayName>
- </currency>
- <currency type="LVL">
- <displayName>ลัตส์ลัตเวีย</displayName>
- </currency>
- <currency type="LVR">
- <displayName>รูเบิลลัตเวีย</displayName>
- </currency>
- <currency type="LYD">
- <displayName>ดีนาร์ลิเบีย</displayName>
- </currency>
- <currency type="MAD">
- <displayName>ดีแรห์มโมร็อกโก</displayName>
- </currency>
- <currency type="MAF">
- <displayName>ฟรังก์โมร็อกโก</displayName>
- </currency>
- <currency type="MDL">
- <displayName>ลิวมอลโดวาน</displayName>
- </currency>
- <currency type="MGA">
- <displayName>อาเรียรีมาดากัสการ์</displayName>
- </currency>
- <currency type="MGF">
- <displayName>ฟรังก์มาดากัสการ์</displayName>
- </currency>
- <currency type="MKD">
- <displayName>ดีนาร์มาซิโดเนีย</displayName>
- </currency>
- <currency type="MLF">
- <displayName>ฟรังก์มาลี</displayName>
- </currency>
- <currency type="MMK">
- <displayName>จัคพม่า</displayName>
- </currency>
- <currency type="MNT">
- <displayName>ตูกริกมองโกเลีย</displayName>
- </currency>
- <currency type="MOP">
- <displayName>ปาตากามาเก๊า</displayName>
- </currency>
- <currency type="MRO">
- <displayName>ออกิวยามอริเตเนีย</displayName>
- </currency>
- <currency type="MTL">
- <displayName>ลีรามอลตา</displayName>
- </currency>
- <currency type="MTP">
- <displayName>ปอนด์มอลตา</displayName>
- </currency>
- <currency type="MUR">
- <displayName>รูปีมอริเชียส</displayName>
- </currency>
- <currency type="MVR">
- <displayName>รูฟิยาเกาะมัลดีฟส์</displayName>
- </currency>
- <currency type="MWK">
- <displayName>ควาชามาลาวี</displayName>
- </currency>
- <currency type="MXN">
- <displayName>เปโซแม็กซิโก</displayName>
- <symbol>MEX$</symbol>
- </currency>
- <currency type="MXP">
- <displayName>ซิลเวอรืเม็กซิโก (1861-1992)</displayName>
- </currency>
- <currency type="MXV">
- <displayName>อินเวอร์เซียนเม็กซิโก</displayName>
- </currency>
- <currency type="MYR">
- <displayName>ริงกิตมาเลเซีย</displayName>
- <symbol>RM</symbol>
- </currency>
- <currency type="MZE">
- <displayName>เอสคูโดโมซัมบิก</displayName>
- </currency>
- <currency type="MZM">
- <displayName>เมทิคัลโมซัมบิก</displayName>
- </currency>
- <currency type="MZN">
- <displayName>เมติคัลโมซัมบิก</displayName>
- </currency>
- <currency type="NAD">
- <displayName>ดอลลาร์นามิเบีย</displayName>
- </currency>
- <currency type="NGN">
- <displayName>ไนราไนจีเรีย</displayName>
- </currency>
- <currency type="NIC">
- <displayName>คอร์โดบานิการากัว</displayName>
- </currency>
- <currency type="NIO">
- <displayName>คอร์โดบาโอโรนิการากัว</displayName>
- </currency>
- <currency type="NLG">
- <displayName>กิลเดอร์เนเธอร์แลนด์</displayName>
- </currency>
- <currency type="NOK">
- <displayName>โครนนอร์เวย์</displayName>
- </currency>
- <currency type="NPR">
- <displayName>รูปีเนปาล</displayName>
- </currency>
- <currency type="NZD">
- <displayName>ดอลลาร์นิวซีแลนด์</displayName>
- <symbol>$NZ</symbol>
- </currency>
- <currency type="OMR">
- <displayName>เรียลโอมาน</displayName>
- </currency>
- <currency type="PAB">
- <displayName>บัลบัวปานามา</displayName>
- </currency>
- <currency type="PEI">
- <displayName>อินตีเปรู</displayName>
- </currency>
- <currency type="PEN">
- <displayName>ซอลนูโวเปรู</displayName>
- </currency>
- <currency type="PES">
- <displayName>ซอลเปรู</displayName>
- </currency>
- <currency type="PGK">
- <displayName>กีนาปาปัวนิวกีนี</displayName>
- </currency>
- <currency type="PHP">
- <displayName>เปโซฟิลิปปินส์</displayName>
- </currency>
- <currency type="PKR">
- <displayName>รูปีปากีสถาน</displayName>
- <symbol>Pra</symbol>
- </currency>
- <currency type="PLN">
- <displayName>ซลอตีโปแลนด์</displayName>
- </currency>
- <currency type="PLZ">
- <displayName>ซวอตีโปแลนด์ (1950-1995)</displayName>
- </currency>
- <currency type="PTE">
- <displayName>เอสคูโดโปรตุเกส</displayName>
- </currency>
- <currency type="PYG">
- <displayName>กวารานีปารากวัย</displayName>
- </currency>
- <currency type="QAR">
- <displayName>เรียลกาตาร์</displayName>
- </currency>
- <currency type="RHD">
- <displayName>ดอลลาร์โรดีเซีย</displayName>
- </currency>
- <currency type="ROL">
- <displayName>ลิวโรมาเนียเก่า</displayName>
- </currency>
- <currency type="RON">
- <displayName>ลิวโรมาเนีย</displayName>
- </currency>
- <currency type="RSD">
- <displayName>ดีนาร์เซอร์เบีย</displayName>
- </currency>
- <currency type="RUB">
- <displayName>รูเบิลรัสเซีย</displayName>
- <symbol>RUB</symbol>
- </currency>
- <currency type="RUR">
- <displayName>รูเบิลรัสเซีย (1991-1998)</displayName>
- </currency>
- <currency type="RWF">
- <displayName>ฟรังก์รวันดา</displayName>
- </currency>
- <currency type="SAR">
- <displayName>เรียลซาอุดิอาระเบีย</displayName>
- </currency>
- <currency type="SBD">
- <displayName>ดอลลาร์เกาะโซโลมอน</displayName>
- </currency>
- <currency type="SCR">
- <displayName>รูปีเซเชลส์</displayName>
- </currency>
- <currency type="SDD">
- <displayName>ดีนาร์ซูดาน</displayName>
- </currency>
- <currency type="SDP">
- <displayName>ปอนด์ซูดาน</displayName>
- </currency>
- <currency type="SEK">
- <displayName>โครนาสวีเดน</displayName>
- </currency>
- <currency type="SGD">
- <displayName>ดอลลาร์สิงคโปร์</displayName>
- <symbol>S$</symbol>
- </currency>
- <currency type="SHP">
- <displayName>ปอนด์เซนต์เฮเลนา</displayName>
- </currency>
- <currency type="SIT">
- <displayName>ทอลาร์สโลวีเนีย</displayName>
- </currency>
- <currency type="SKK">
- <displayName>โครูนาสโลวัก</displayName>
- </currency>
- <currency type="SLL">
- <displayName>ลีโอนเซียร์ราลีโอน</displayName>
- </currency>
- <currency type="SOS">
- <displayName>ชิลลิงโซมาเลีย</displayName>
- </currency>
- <currency type="SRD">
- <displayName>ดอลลาร์ซูรินาเม</displayName>
- </currency>
- <currency type="SRG">
- <displayName>กิลเดอร์สุรินัม</displayName>
- </currency>
- <currency type="STD">
- <displayName>ดอบราเซาตูเมและปรินซิปี</displayName>
- </currency>
- <currency type="SUR">
- <displayName>รูเบิลโซเวียต</displayName>
- </currency>
- <currency type="SVC">
- <displayName>โคลอนเอลซัลวาดอร์</displayName>
- </currency>
- <currency type="SYP">
- <displayName>ปอนด์ซีเรีย</displayName>
- </currency>
- <currency type="SZL">
- <displayName>ลิลันกีนีสวาซิแลนด์</displayName>
- </currency>
- <currency type="THB">
- <displayName>บาท</displayName>
- <symbol>฿</symbol>
- </currency>
- <currency type="TJR">
- <displayName>รูเบิลทาจิกิสถาน</displayName>
- </currency>
- <currency type="TJS">
- <displayName>โซโมนีทาจิกิสถาน</displayName>
- </currency>
- <currency type="TMM">
- <displayName>มานัตเติร์กเมนิสถาน</displayName>
- </currency>
- <currency type="TND">
- <displayName>ดีนาร์ตูนิเซีย</displayName>
- </currency>
- <currency type="TOP">
- <displayName>ปาอังกาตองกา</displayName>
- </currency>
- <currency type="TPE">
- <displayName>เอสคูโดติมอร์</displayName>
- </currency>
- <currency type="TRL">
- <displayName>ลีราตุรกี</displayName>
- </currency>
- <currency type="TRY">
- <displayName>ตุรกี ลีร่า ใหม่</displayName>
- </currency>
- <currency type="TTD">
- <displayName>ดอลลาร์ตรินิแดดและโตเบโก</displayName>
- </currency>
- <currency type="TWD">
- <displayName>ดอลลาร์ไต้หวัน</displayName>
- </currency>
- <currency type="TZS">
- <displayName>ชิลลิงแทนซาเนีย</displayName>
- </currency>
- <currency type="UAH">
- <displayName>ฮรีฟเนียยูเครน</displayName>
- </currency>
- <currency type="UAK">
- <displayName>คาร์โบวาเนตซ์ยูเครน</displayName>
- </currency>
- <currency type="UGS">
- <displayName>ซิลลิ่งอูกันดา (1966-1987)</displayName>
- </currency>
- <currency type="UGX">
- <displayName>ชิลลิงยูกันดา</displayName>
- </currency>
- <currency type="USD">
- <displayName>ดอลลาร์สหรัฐ</displayName>
- <symbol>US$</symbol>
- </currency>
- <currency type="USN">
- <displayName>ดอลลาร์สหรัฐ (วันถัดไป)</displayName>
- </currency>
- <currency type="USS">
- <displayName>ดอลลาร์สหรัฐ (วันเดียวกัน)</displayName>
- </currency>
- <currency type="UYP">
- <displayName>เปโซอุรุกวัย (1975-1993)</displayName>
- </currency>
- <currency type="UYU">
- <displayName>เปโซอุรุกวัย</displayName>
- </currency>
- <currency type="UZS">
- <displayName>ซัมอุซเบกิสถาน</displayName>
- </currency>
- <currency type="VEB">
- <displayName>โบลิวาร์เวเนซุเอลา</displayName>
- </currency>
- <currency type="VEF">
- <displayName>ฟูร์เตโบลีวาร์เวเนซุเอลา</displayName>
- </currency>
- <currency type="VND">
- <displayName>ดองเวียดนาม</displayName>
- </currency>
- <currency type="VUV">
- <displayName>วาตูวานูอาตู</displayName>
- </currency>
- <currency type="WST">
- <displayName>ทาลาซามัวตะวันตก</displayName>
- </currency>
- <currency type="XAF">
- <displayName>ฟรังก์เซฟาธนาคารรัฐแอฟริกากลาง</displayName>
- </currency>
- <currency type="XAG">
- <displayName>เงิน</displayName>
- </currency>
- <currency type="XAU">
- <displayName>ทอง</displayName>
- </currency>
- <currency type="XBA">
- <displayName>หน่วยคอมโพสิตยุโรป</displayName>
- </currency>
- <currency type="XBB">
- <displayName>หน่วยโมเนทารียุโรป</displayName>
- </currency>
- <currency type="XBC">
- <displayName>หน่วยบัญชียุโรป [XBC]</displayName>
- </currency>
- <currency type="XBD">
- <displayName>หน่วยบัญชียุโรป [XBD]</displayName>
- </currency>
- <currency type="XCD">
- <displayName>ดอลลาร์แคริบเบียนตะวันออก</displayName>
- </currency>
- <currency type="XEU">
- <displayName>หน่วยสกุลเงินยุโรป</displayName>
- </currency>
- <currency type="XFO">
- <displayName>ฟรังก์ทองฝรั่งเศส</displayName>
- </currency>
- <currency type="XFU">
- <displayName>ฟรังก์ยูไอซีฝรั่งเศส</displayName>
- </currency>
- <currency type="XOF">
- <displayName>ฟรังก์เซฟาธนาคารกลางรัฐแอฟริกาตะวันตก</displayName>
- </currency>
- <currency type="XPD">
- <displayName>พัลลาดีม</displayName>
- </currency>
- <currency type="XPF">
- <displayName>ฟรังก์ซีเอฟพี</displayName>
- </currency>
- <currency type="XPT">
- <displayName>แพลตินัม</displayName>
- </currency>
- <currency type="XRE">
- <displayName>กองทุนไรเน็ต</displayName>
- </currency>
- <currency type="XTS">
- <displayName>รหัสทดสอบสกุลเงิน</displayName>
- </currency>
- <currency type="XXX">
- <displayName>ไม่มีหน่วยเงินตรา</displayName>
- <symbol>XXX</symbol>
- </currency>
- <currency type="YDD">
- <displayName>ดีนาร์เยเมน</displayName>
- </currency>
- <currency type="YER">
- <displayName>เรียลเยเมน</displayName>
- </currency>
- <currency type="YUD">
- <displayName>ฮาร์ดดีนาร์ยูโกสลาเวีย</displayName>
- </currency>
- <currency type="YUM">
- <displayName>โนวิย์ดีนาร์ยูโกสลาเวีย</displayName>
- </currency>
- <currency type="YUN">
- <displayName>ดีนาร์ยูโกสลาเวีย</displayName>
- </currency>
- <currency type="ZAL">
- <displayName>แรนด์แอฟริกาใต้ (การเงิน)</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>แรนด์แอฟริกาใต้</displayName>
- </currency>
- <currency type="ZMK">
- <displayName>กวาชาแซมเบีย</displayName>
- </currency>
- <currency type="ZRN">
- <displayName>นิวแซร์คองโก</displayName>
- </currency>
- <currency type="ZRZ">
- <displayName>แซร์คองโก</displayName>
- </currency>
- <currency type="ZWD">
- <displayName>ดอลลาร์ซิมบับเว</displayName>
- </currency>
- </currencies>
- </numbers>
- <units>
- <unit type="day">
- <unitPattern count="other">{0} วัน</unitPattern>
- </unit>
- <unit type="hour">
- <unitPattern count="other">{0} ชั่วโมง</unitPattern>
- </unit>
- <unit type="minute">
- <unitPattern count="other">{0} นาที</unitPattern>
- </unit>
- <unit type="month">
- <unitPattern count="other">{0} เดือน</unitPattern>
- </unit>
- <unit type="second">
- <unitPattern count="other">{0} วินาที</unitPattern>
- </unit>
- <unit type="week">
- <unitPattern count="other">{0} สัปดาห์</unitPattern>
- </unit>
- <unit type="year">
- <unitPattern count="other">{0} ปี</unitPattern>
- </unit>
- </units>
- <posix>
- <messages>
- <yesstr>ใช่</yesstr>
- <nostr>ไม่</nostr>
- </messages>
- </posix>
- </ldml>
|