root.xml 146 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
  3. <!-- Copyright © 1991-2013 Unicode, Inc.
  4. CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
  5. For terms of use, see http://www.unicode.org/copyright.html
  6. -->
  7. <ldml>
  8. <identity>
  9. <version number="$Revision: 9737 $"/>
  10. <generation date="$Date: 2014-02-14 16:49:13 -0600 (Fri, 14 Feb 2014) $"/>
  11. <language type="root"/>
  12. </identity>
  13. <localeDisplayNames>
  14. <localeDisplayPattern>
  15. <localePattern>{0} ({1})</localePattern>
  16. <localeSeparator>{0}, {1}</localeSeparator>
  17. <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
  18. </localeDisplayPattern>
  19. <measurementSystemNames>
  20. <measurementSystemName type="metric">Metric</measurementSystemName>
  21. <measurementSystemName type="UK">UK</measurementSystemName>
  22. <measurementSystemName type="US">US</measurementSystemName>
  23. </measurementSystemNames>
  24. <codePatterns>
  25. <codePattern type="language">{0}</codePattern>
  26. <codePattern type="script">{0}</codePattern>
  27. <codePattern type="territory">{0}</codePattern>
  28. </codePatterns>
  29. </localeDisplayNames>
  30. <layout>
  31. <orientation>
  32. <characterOrder>left-to-right</characterOrder>
  33. <lineOrder>top-to-bottom</lineOrder>
  34. </orientation>
  35. </layout>
  36. <characters>
  37. <exemplarCharacters>[]</exemplarCharacters>
  38. <exemplarCharacters type="auxiliary">[]</exemplarCharacters>
  39. <exemplarCharacters type="punctuation">[\- , ; \: ! ? . ( ) \[ \] \{ \}]</exemplarCharacters>
  40. <ellipsis type="final">{0}…</ellipsis>
  41. <ellipsis type="initial">…{0}</ellipsis>
  42. <ellipsis type="medial">{0}…{1}</ellipsis>
  43. <ellipsis type="word-final">{0} …</ellipsis>
  44. <ellipsis type="word-initial">… {0}</ellipsis>
  45. <ellipsis type="word-medial">{0} … {1}</ellipsis>
  46. <moreInformation>?</moreInformation>
  47. </characters>
  48. <delimiters>
  49. <quotationStart>“</quotationStart>
  50. <quotationEnd>”</quotationEnd>
  51. <alternateQuotationStart>‘</alternateQuotationStart>
  52. <alternateQuotationEnd>’</alternateQuotationEnd>
  53. </delimiters>
  54. <dates>
  55. <calendars>
  56. <calendar type="buddhist">
  57. <months>
  58. <alias source="locale" path="../../calendar[@type='gregorian']/months"/>
  59. </months>
  60. <days>
  61. <alias source="locale" path="../../calendar[@type='gregorian']/days"/>
  62. </days>
  63. <quarters>
  64. <alias source="locale" path="../../calendar[@type='gregorian']/quarters"/>
  65. </quarters>
  66. <dayPeriods>
  67. <alias source="locale" path="../../calendar[@type='gregorian']/dayPeriods"/>
  68. </dayPeriods>
  69. <eras>
  70. <eraNames>
  71. <alias source="locale" path="../eraAbbr"/>
  72. </eraNames>
  73. <eraAbbr>
  74. <era type="0">BE</era>
  75. <!-- = 544 BC gregorian. -->
  76. </eraAbbr>
  77. <eraNarrow>
  78. <alias source="locale" path="../eraAbbr"/>
  79. </eraNarrow>
  80. </eras>
  81. <dateFormats>
  82. <alias source="locale" path="../../calendar[@type='generic']/dateFormats"/>
  83. </dateFormats>
  84. <timeFormats>
  85. <alias source="locale" path="../../calendar[@type='gregorian']/timeFormats"/>
  86. </timeFormats>
  87. <dateTimeFormats>
  88. <alias source="locale" path="../../calendar[@type='generic']/dateTimeFormats"/>
  89. </dateTimeFormats>
  90. </calendar>
  91. <calendar type="chinese">
  92. <months>
  93. <monthContext type="format">
  94. <monthWidth type="abbreviated">
  95. <alias source="locale" path="../monthWidth[@type='wide']"/>
  96. </monthWidth>
  97. <monthWidth type="narrow">
  98. <alias source="locale" path="../../monthContext[@type='stand-alone']/monthWidth[@type='narrow']"/>
  99. </monthWidth>
  100. <monthWidth type="wide">
  101. <month type="1">M01</month>
  102. <month type="2">M02</month>
  103. <month type="3">M03</month>
  104. <month type="4">M04</month>
  105. <month type="5">M05</month>
  106. <month type="6">M06</month>
  107. <month type="7">M07</month>
  108. <month type="8">M08</month>
  109. <month type="9">M09</month>
  110. <month type="10">M10</month>
  111. <month type="11">M11</month>
  112. <month type="12">M12</month>
  113. </monthWidth>
  114. </monthContext>
  115. <monthContext type="stand-alone">
  116. <monthWidth type="abbreviated">
  117. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='abbreviated']"/>
  118. </monthWidth>
  119. <monthWidth type="narrow">
  120. <month type="1">1</month>
  121. <month type="2">2</month>
  122. <month type="3">3</month>
  123. <month type="4">4</month>
  124. <month type="5">5</month>
  125. <month type="6">6</month>
  126. <month type="7">7</month>
  127. <month type="8">8</month>
  128. <month type="9">9</month>
  129. <month type="10">10</month>
  130. <month type="11">11</month>
  131. <month type="12">12</month>
  132. </monthWidth>
  133. <monthWidth type="wide">
  134. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='wide']"/>
  135. </monthWidth>
  136. </monthContext>
  137. </months>
  138. <monthPatterns>
  139. <monthPatternContext type="format">
  140. <monthPatternWidth type="abbreviated">
  141. <alias source="locale" path="../monthPatternWidth[@type='wide']"/>
  142. </monthPatternWidth>
  143. <monthPatternWidth type="narrow">
  144. <alias source="locale" path="../../monthPatternContext[@type='stand-alone']/monthPatternWidth[@type='narrow']"/>
  145. </monthPatternWidth>
  146. <monthPatternWidth type="wide">
  147. <monthPattern type="leap">{0}bis</monthPattern>
  148. </monthPatternWidth>
  149. </monthPatternContext>
  150. <monthPatternContext type="numeric">
  151. <monthPatternWidth type="all">
  152. <monthPattern type="leap">{0}bis</monthPattern>
  153. </monthPatternWidth>
  154. </monthPatternContext>
  155. <monthPatternContext type="stand-alone">
  156. <monthPatternWidth type="abbreviated">
  157. <alias source="locale" path="../../monthPatternContext[@type='format']/monthPatternWidth[@type='abbreviated']"/>
  158. </monthPatternWidth>
  159. <monthPatternWidth type="narrow">
  160. <monthPattern type="leap">{0}b</monthPattern>
  161. </monthPatternWidth>
  162. <monthPatternWidth type="wide">
  163. <alias source="locale" path="../../monthPatternContext[@type='format']/monthPatternWidth[@type='wide']"/>
  164. </monthPatternWidth>
  165. </monthPatternContext>
  166. </monthPatterns>
  167. <days>
  168. <alias source="locale" path="../../calendar[@type='gregorian']/days"/>
  169. </days>
  170. <quarters>
  171. <alias source="locale" path="../../calendar[@type='gregorian']/quarters"/>
  172. </quarters>
  173. <dayPeriods>
  174. <alias source="locale" path="../../calendar[@type='gregorian']/dayPeriods"/>
  175. </dayPeriods>
  176. <!-- chinese eras are computed, and don't fall back to gregorian -->
  177. <cyclicNameSets>
  178. <cyclicNameSet type="dayParts">
  179. <cyclicNameContext type="format">
  180. <cyclicNameWidth type="abbreviated">
  181. <cyclicName type="1">zi</cyclicName>
  182. <cyclicName type="2">chou</cyclicName>
  183. <cyclicName type="3">yin</cyclicName>
  184. <cyclicName type="4">mao</cyclicName>
  185. <cyclicName type="5">chen</cyclicName>
  186. <cyclicName type="6">si</cyclicName>
  187. <cyclicName type="7">wu</cyclicName>
  188. <cyclicName type="8">wei</cyclicName>
  189. <cyclicName type="9">shen</cyclicName>
  190. <cyclicName type="10">you</cyclicName>
  191. <cyclicName type="11">xu</cyclicName>
  192. <cyclicName type="12">hai</cyclicName>
  193. </cyclicNameWidth>
  194. <cyclicNameWidth type="narrow">
  195. <alias source="locale" path="../cyclicNameWidth[@type='abbreviated']"/>
  196. </cyclicNameWidth>
  197. <cyclicNameWidth type="wide">
  198. <alias source="locale" path="../cyclicNameWidth[@type='abbreviated']"/>
  199. </cyclicNameWidth>
  200. </cyclicNameContext>
  201. </cyclicNameSet>
  202. <cyclicNameSet type="days">
  203. <alias source="locale" path="../cyclicNameSet[@type='years']"/>
  204. </cyclicNameSet>
  205. <cyclicNameSet type="months">
  206. <alias source="locale" path="../cyclicNameSet[@type='years']"/>
  207. </cyclicNameSet>
  208. <cyclicNameSet type="years">
  209. <cyclicNameContext type="format">
  210. <cyclicNameWidth type="abbreviated">
  211. <cyclicName type="1">jia-zi</cyclicName>
  212. <cyclicName type="2">yi-chou</cyclicName>
  213. <cyclicName type="3">bing-yin</cyclicName>
  214. <cyclicName type="4">ding-mao</cyclicName>
  215. <cyclicName type="5">wu-chen</cyclicName>
  216. <cyclicName type="6">ji-si</cyclicName>
  217. <cyclicName type="7">geng-wu</cyclicName>
  218. <cyclicName type="8">xin-wei</cyclicName>
  219. <cyclicName type="9">ren-shen</cyclicName>
  220. <cyclicName type="10">gui-you</cyclicName>
  221. <cyclicName type="11">jia-xu</cyclicName>
  222. <cyclicName type="12">yi-hai</cyclicName>
  223. <cyclicName type="13">bing-zi</cyclicName>
  224. <cyclicName type="14">ding-chou</cyclicName>
  225. <cyclicName type="15">wu-yin</cyclicName>
  226. <cyclicName type="16">ji-mao</cyclicName>
  227. <cyclicName type="17">geng-chen</cyclicName>
  228. <cyclicName type="18">xin-si</cyclicName>
  229. <cyclicName type="19">ren-wu</cyclicName>
  230. <cyclicName type="20">gui-wei</cyclicName>
  231. <cyclicName type="21">jia-shen</cyclicName>
  232. <cyclicName type="22">yi-you</cyclicName>
  233. <cyclicName type="23">bing-xu</cyclicName>
  234. <cyclicName type="24">ding-hai</cyclicName>
  235. <cyclicName type="25">wu-zi</cyclicName>
  236. <cyclicName type="26">ji-chou</cyclicName>
  237. <cyclicName type="27">geng-yin</cyclicName>
  238. <cyclicName type="28">xin-mao</cyclicName>
  239. <cyclicName type="29">ren-chen</cyclicName>
  240. <cyclicName type="30">gui-si</cyclicName>
  241. <cyclicName type="31">jia-wu</cyclicName>
  242. <cyclicName type="32">yi-wei</cyclicName>
  243. <cyclicName type="33">bing-shen</cyclicName>
  244. <cyclicName type="34">ding-you</cyclicName>
  245. <cyclicName type="35">wu-xu</cyclicName>
  246. <cyclicName type="36">ji-hai</cyclicName>
  247. <cyclicName type="37">geng-zi</cyclicName>
  248. <cyclicName type="38">xin-chou</cyclicName>
  249. <cyclicName type="39">ren-yin</cyclicName>
  250. <cyclicName type="40">gui-mao</cyclicName>
  251. <cyclicName type="41">jia-chen</cyclicName>
  252. <cyclicName type="42">yi-si</cyclicName>
  253. <cyclicName type="43">bing-wu</cyclicName>
  254. <cyclicName type="44">ding-wei</cyclicName>
  255. <cyclicName type="45">wu-shen</cyclicName>
  256. <cyclicName type="46">ji-you</cyclicName>
  257. <cyclicName type="47">geng-xu</cyclicName>
  258. <cyclicName type="48">xin-hai</cyclicName>
  259. <cyclicName type="49">ren-zi</cyclicName>
  260. <cyclicName type="50">gui-chou</cyclicName>
  261. <cyclicName type="51">jia-yin</cyclicName>
  262. <cyclicName type="52">yi-mao</cyclicName>
  263. <cyclicName type="53">bing-chen</cyclicName>
  264. <cyclicName type="54">ding-si</cyclicName>
  265. <cyclicName type="55">wu-wu</cyclicName>
  266. <cyclicName type="56">ji-wei</cyclicName>
  267. <cyclicName type="57">geng-shen</cyclicName>
  268. <cyclicName type="58">xin-you</cyclicName>
  269. <cyclicName type="59">ren-xu</cyclicName>
  270. <cyclicName type="60">gui-hai</cyclicName>
  271. </cyclicNameWidth>
  272. <cyclicNameWidth type="narrow">
  273. <alias source="locale" path="../cyclicNameWidth[@type='abbreviated']"/>
  274. </cyclicNameWidth>
  275. <cyclicNameWidth type="wide">
  276. <alias source="locale" path="../cyclicNameWidth[@type='abbreviated']"/>
  277. </cyclicNameWidth>
  278. </cyclicNameContext>
  279. </cyclicNameSet>
  280. <cyclicNameSet type="zodiacs">
  281. <cyclicNameContext type="format">
  282. <cyclicNameWidth type="abbreviated">
  283. <alias source="locale" path="../../../cyclicNameSet[@type='dayParts']/cyclicNameContext[@type='format']/cyclicNameWidth[@type='abbreviated']"/>
  284. </cyclicNameWidth>
  285. <cyclicNameWidth type="narrow">
  286. <alias source="locale" path="../cyclicNameWidth[@type='abbreviated']"/>
  287. </cyclicNameWidth>
  288. <cyclicNameWidth type="wide">
  289. <alias source="locale" path="../cyclicNameWidth[@type='abbreviated']"/>
  290. </cyclicNameWidth>
  291. </cyclicNameContext>
  292. </cyclicNameSet>
  293. </cyclicNameSets>
  294. <dateFormats>
  295. <dateFormatLength type="full">
  296. <dateFormat>
  297. <pattern>U MMMM d, EEEE</pattern>
  298. </dateFormat>
  299. </dateFormatLength>
  300. <dateFormatLength type="long">
  301. <dateFormat>
  302. <pattern>U MMMM d</pattern>
  303. </dateFormat>
  304. </dateFormatLength>
  305. <dateFormatLength type="medium">
  306. <dateFormat>
  307. <pattern>U MMM d</pattern>
  308. </dateFormat>
  309. </dateFormatLength>
  310. <dateFormatLength type="short">
  311. <dateFormat>
  312. <!-- using y here to be short in locales that may not understand U anyway -->
  313. <pattern>y-MM-dd</pattern>
  314. </dateFormat>
  315. </dateFormatLength>
  316. </dateFormats>
  317. <timeFormats>
  318. <alias source="locale" path="../../calendar[@type='gregorian']/timeFormats"/>
  319. </timeFormats>
  320. <dateTimeFormats>
  321. <dateTimeFormatLength type="full">
  322. <dateTimeFormat>
  323. <pattern>{1} {0}</pattern>
  324. </dateTimeFormat>
  325. </dateTimeFormatLength>
  326. <dateTimeFormatLength type="long">
  327. <dateTimeFormat>
  328. <pattern>{1} {0}</pattern>
  329. </dateTimeFormat>
  330. </dateTimeFormatLength>
  331. <dateTimeFormatLength type="medium">
  332. <dateTimeFormat>
  333. <pattern>{1} {0}</pattern>
  334. </dateTimeFormat>
  335. </dateTimeFormatLength>
  336. <dateTimeFormatLength type="short">
  337. <dateTimeFormat>
  338. <pattern>{1} {0}</pattern>
  339. </dateTimeFormat>
  340. </dateTimeFormatLength>
  341. <availableFormats>
  342. <dateFormatItem id="d">d</dateFormatItem>
  343. <dateFormatItem id="Ed">d, E</dateFormatItem>
  344. <dateFormatItem id="Gy">U</dateFormatItem>
  345. <dateFormatItem id="GyMMM">U MMM</dateFormatItem>
  346. <dateFormatItem id="GyMMMd">U MMM d</dateFormatItem>
  347. <dateFormatItem id="GyMMMEd">U MMM d, E</dateFormatItem>
  348. <dateFormatItem id="h">h a</dateFormatItem>
  349. <dateFormatItem id="H">HH</dateFormatItem>
  350. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  351. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  352. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  353. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  354. <dateFormatItem id="M">L</dateFormatItem>
  355. <dateFormatItem id="Md">MM-dd</dateFormatItem>
  356. <dateFormatItem id="MEd">MM-dd, E</dateFormatItem>
  357. <dateFormatItem id="MMM">LLL</dateFormatItem>
  358. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  359. <dateFormatItem id="MMMEd">MMM d, E</dateFormatItem>
  360. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  361. <dateFormatItem id="y">U</dateFormatItem>
  362. <dateFormatItem id="yMd">y-MM-dd</dateFormatItem>
  363. <dateFormatItem id="yyyy">U</dateFormatItem>
  364. <dateFormatItem id="yyyyM">y-MM</dateFormatItem>
  365. <dateFormatItem id="yyyyMd">y-MM-dd</dateFormatItem>
  366. <dateFormatItem id="yyyyMEd">y-MM-dd, E</dateFormatItem>
  367. <dateFormatItem id="yyyyMMM">U MMM</dateFormatItem>
  368. <dateFormatItem id="yyyyMMMd">U MMM d</dateFormatItem>
  369. <dateFormatItem id="yyyyMMMEd">U MMM d, E</dateFormatItem>
  370. <dateFormatItem id="yyyyQQQ">U QQQ</dateFormatItem>
  371. <dateFormatItem id="yyyyQQQQ">U QQQQ</dateFormatItem>
  372. </availableFormats>
  373. <appendItems>
  374. <appendItem request="Day">{0} ({2}: {1})</appendItem>
  375. <appendItem request="Day-Of-Week">{0} {1}</appendItem>
  376. <appendItem request="Era">{1} {0}</appendItem>
  377. <appendItem request="Hour">{0} ({2}: {1})</appendItem>
  378. <appendItem request="Minute">{0} ({2}: {1})</appendItem>
  379. <appendItem request="Month">{0} ({2}: {1})</appendItem>
  380. <appendItem request="Quarter">{0} ({2}: {1})</appendItem>
  381. <appendItem request="Second">{0} ({2}: {1})</appendItem>
  382. <appendItem request="Timezone">{0} {1}</appendItem>
  383. <appendItem request="Week">{0} ({2}: {1})</appendItem>
  384. <appendItem request="Year">{1} {0}</appendItem>
  385. </appendItems>
  386. <intervalFormats>
  387. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  388. <intervalFormatItem id="d">
  389. <greatestDifference id="d">d–d</greatestDifference>
  390. </intervalFormatItem>
  391. <intervalFormatItem id="h">
  392. <greatestDifference id="a">h a – h a</greatestDifference>
  393. <greatestDifference id="h">h–h a</greatestDifference>
  394. </intervalFormatItem>
  395. <intervalFormatItem id="H">
  396. <greatestDifference id="H">HH–HH</greatestDifference>
  397. </intervalFormatItem>
  398. <intervalFormatItem id="hm">
  399. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  400. <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
  401. <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
  402. </intervalFormatItem>
  403. <intervalFormatItem id="Hm">
  404. <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
  405. <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
  406. </intervalFormatItem>
  407. <intervalFormatItem id="hmv">
  408. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  409. <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
  410. <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
  411. </intervalFormatItem>
  412. <intervalFormatItem id="Hmv">
  413. <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
  414. <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
  415. </intervalFormatItem>
  416. <intervalFormatItem id="hv">
  417. <greatestDifference id="a">h a – h a v</greatestDifference>
  418. <greatestDifference id="h">h–h a v</greatestDifference>
  419. </intervalFormatItem>
  420. <intervalFormatItem id="Hv">
  421. <greatestDifference id="H">HH–HH v</greatestDifference>
  422. </intervalFormatItem>
  423. <intervalFormatItem id="M">
  424. <greatestDifference id="M">MM–MM</greatestDifference>
  425. </intervalFormatItem>
  426. <intervalFormatItem id="Md">
  427. <greatestDifference id="d">MM-dd – MM-dd</greatestDifference>
  428. <greatestDifference id="M">MM-dd – MM-dd</greatestDifference>
  429. </intervalFormatItem>
  430. <intervalFormatItem id="MEd">
  431. <greatestDifference id="d">MM-dd, E – MM-dd, E</greatestDifference>
  432. <greatestDifference id="M">MM-dd, E – MM-dd, E</greatestDifference>
  433. </intervalFormatItem>
  434. <intervalFormatItem id="MMM">
  435. <greatestDifference id="M">LLL–LLL</greatestDifference>
  436. </intervalFormatItem>
  437. <intervalFormatItem id="MMMd">
  438. <greatestDifference id="d">MMM d–d</greatestDifference>
  439. <greatestDifference id="M">MMM d – MMM d</greatestDifference>
  440. </intervalFormatItem>
  441. <intervalFormatItem id="MMMEd">
  442. <greatestDifference id="d">MMM d, E – MMM d, E</greatestDifference>
  443. <greatestDifference id="M">MMM d, E – MMM d, E</greatestDifference>
  444. </intervalFormatItem>
  445. <intervalFormatItem id="y">
  446. <greatestDifference id="y">U–U</greatestDifference>
  447. </intervalFormatItem>
  448. <intervalFormatItem id="yM">
  449. <greatestDifference id="M">y-MM – y-MM</greatestDifference>
  450. <greatestDifference id="y">y-MM – y-MM</greatestDifference>
  451. </intervalFormatItem>
  452. <intervalFormatItem id="yMd">
  453. <greatestDifference id="d">y-MM-dd – y-MM-dd</greatestDifference>
  454. <greatestDifference id="M">y-MM-dd – y-MM-dd</greatestDifference>
  455. <greatestDifference id="y">y-MM-dd – y-MM-dd</greatestDifference>
  456. </intervalFormatItem>
  457. <intervalFormatItem id="yMEd">
  458. <greatestDifference id="d">y-MM-dd, E – y-MM-dd, E</greatestDifference>
  459. <greatestDifference id="M">y-MM-dd, E – y-MM-dd, E</greatestDifference>
  460. <greatestDifference id="y">y-MM-dd, E – y-MM-dd, E</greatestDifference>
  461. </intervalFormatItem>
  462. <intervalFormatItem id="yMMM">
  463. <greatestDifference id="M">U MMM–MMM</greatestDifference>
  464. <greatestDifference id="y">U MMM – U MMM</greatestDifference>
  465. </intervalFormatItem>
  466. <intervalFormatItem id="yMMMd">
  467. <greatestDifference id="d">U MMM d–d</greatestDifference>
  468. <greatestDifference id="M">U MMM d – MMM d</greatestDifference>
  469. <greatestDifference id="y">U MMM d – U MMM d</greatestDifference>
  470. </intervalFormatItem>
  471. <intervalFormatItem id="yMMMEd">
  472. <greatestDifference id="d">U MMM d, E – MMM d, E</greatestDifference>
  473. <greatestDifference id="M">U MMM d, E – MMM d, E</greatestDifference>
  474. <greatestDifference id="y">U MMM d, E – U MMM d, E</greatestDifference>
  475. </intervalFormatItem>
  476. <intervalFormatItem id="yMMMM">
  477. <greatestDifference id="M">U MMMM–MMMM</greatestDifference>
  478. <greatestDifference id="y">U MMMM – U MMMM</greatestDifference>
  479. </intervalFormatItem>
  480. </intervalFormats>
  481. </dateTimeFormats>
  482. </calendar>
  483. <calendar type="coptic">
  484. <months>
  485. <monthContext type="format">
  486. <monthWidth type="abbreviated">
  487. <alias source="locale" path="../monthWidth[@type='wide']"/>
  488. </monthWidth>
  489. <monthWidth type="narrow">
  490. <alias source="locale" path="../../monthContext[@type='stand-alone']/monthWidth[@type='narrow']"/>
  491. </monthWidth>
  492. <monthWidth type="wide">
  493. <month type="1">Tout</month>
  494. <month type="2">Baba</month>
  495. <month type="3">Hator</month>
  496. <month type="4">Kiahk</month>
  497. <month type="5">Toba</month>
  498. <month type="6">Amshir</month>
  499. <month type="7">Baramhat</month>
  500. <month type="8">Baramouda</month>
  501. <month type="9">Bashans</month>
  502. <month type="10">Paona</month>
  503. <month type="11">Epep</month>
  504. <month type="12">Mesra</month>
  505. <month type="13">Nasie</month>
  506. </monthWidth>
  507. </monthContext>
  508. <monthContext type="stand-alone">
  509. <monthWidth type="abbreviated">
  510. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='abbreviated']"/>
  511. </monthWidth>
  512. <monthWidth type="narrow">
  513. <month type="1">1</month>
  514. <month type="2">2</month>
  515. <month type="3">3</month>
  516. <month type="4">4</month>
  517. <month type="5">5</month>
  518. <month type="6">6</month>
  519. <month type="7">7</month>
  520. <month type="8">8</month>
  521. <month type="9">9</month>
  522. <month type="10">10</month>
  523. <month type="11">11</month>
  524. <month type="12">12</month>
  525. <month type="13">13</month>
  526. </monthWidth>
  527. <monthWidth type="wide">
  528. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='wide']"/>
  529. </monthWidth>
  530. </monthContext>
  531. </months>
  532. <days>
  533. <alias source="locale" path="../../calendar[@type='gregorian']/days"/>
  534. </days>
  535. <quarters>
  536. <alias source="locale" path="../../calendar[@type='gregorian']/quarters"/>
  537. </quarters>
  538. <dayPeriods>
  539. <alias source="locale" path="../../calendar[@type='gregorian']/dayPeriods"/>
  540. </dayPeriods>
  541. <eras>
  542. <eraNames>
  543. <alias source="locale" path="../eraAbbr"/>
  544. </eraNames>
  545. <eraAbbr>
  546. <era type="0">ERA0</era>
  547. <era type="1">ERA1</era>
  548. </eraAbbr>
  549. <eraNarrow>
  550. <alias source="locale" path="../eraAbbr"/>
  551. </eraNarrow>
  552. </eras>
  553. <dateFormats>
  554. <alias source="locale" path="../../calendar[@type='generic']/dateFormats"/>
  555. </dateFormats>
  556. <timeFormats>
  557. <alias source="locale" path="../../calendar[@type='gregorian']/timeFormats"/>
  558. </timeFormats>
  559. <dateTimeFormats>
  560. <alias source="locale" path="../../calendar[@type='generic']/dateTimeFormats"/>
  561. </dateTimeFormats>
  562. </calendar>
  563. <calendar type="dangi">
  564. <months>
  565. <alias source="locale" path="../../calendar[@type='chinese']/months"/>
  566. </months>
  567. <monthPatterns>
  568. <alias source="locale" path="../../calendar[@type='chinese']/monthPatterns"/>
  569. </monthPatterns>
  570. <days>
  571. <alias source="locale" path="../../calendar[@type='chinese']/days"/>
  572. </days>
  573. <quarters>
  574. <alias source="locale" path="../../calendar[@type='chinese']/quarters"/>
  575. </quarters>
  576. <dayPeriods>
  577. <alias source="locale" path="../../calendar[@type='chinese']/dayPeriods"/>
  578. </dayPeriods>
  579. <cyclicNameSets>
  580. <alias source="locale" path="../../calendar[@type='chinese']/cyclicNameSets"/>
  581. </cyclicNameSets>
  582. <dateFormats>
  583. <alias source="locale" path="../../calendar[@type='chinese']/dateFormats"/>
  584. </dateFormats>
  585. <timeFormats>
  586. <alias source="locale" path="../../calendar[@type='chinese']/timeFormats"/>
  587. </timeFormats>
  588. <dateTimeFormats>
  589. <alias source="locale" path="../../calendar[@type='chinese']/dateTimeFormats"/>
  590. </dateTimeFormats>
  591. </calendar>
  592. <calendar type="ethiopic">
  593. <months>
  594. <monthContext type="format">
  595. <monthWidth type="abbreviated">
  596. <alias source="locale" path="../monthWidth[@type='wide']"/>
  597. </monthWidth>
  598. <monthWidth type="narrow">
  599. <alias source="locale" path="../../monthContext[@type='stand-alone']/monthWidth[@type='narrow']"/>
  600. </monthWidth>
  601. <monthWidth type="wide">
  602. <month type="1">Meskerem</month>
  603. <month type="2">Tekemt</month>
  604. <month type="3">Hedar</month>
  605. <month type="4">Tahsas</month>
  606. <month type="5">Ter</month>
  607. <month type="6">Yekatit</month>
  608. <month type="7">Megabit</month>
  609. <month type="8">Miazia</month>
  610. <month type="9">Genbot</month>
  611. <month type="10">Sene</month>
  612. <month type="11">Hamle</month>
  613. <month type="12">Nehasse</month>
  614. <month type="13">Pagumen</month>
  615. </monthWidth>
  616. </monthContext>
  617. <monthContext type="stand-alone">
  618. <monthWidth type="abbreviated">
  619. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='abbreviated']"/>
  620. </monthWidth>
  621. <monthWidth type="narrow">
  622. <month type="1">1</month>
  623. <month type="2">2</month>
  624. <month type="3">3</month>
  625. <month type="4">4</month>
  626. <month type="5">5</month>
  627. <month type="6">6</month>
  628. <month type="7">7</month>
  629. <month type="8">8</month>
  630. <month type="9">9</month>
  631. <month type="10">10</month>
  632. <month type="11">11</month>
  633. <month type="12">12</month>
  634. <month type="13">13</month>
  635. </monthWidth>
  636. <monthWidth type="wide">
  637. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='wide']"/>
  638. </monthWidth>
  639. </monthContext>
  640. </months>
  641. <days>
  642. <alias source="locale" path="../../calendar[@type='gregorian']/days"/>
  643. </days>
  644. <quarters>
  645. <alias source="locale" path="../../calendar[@type='gregorian']/quarters"/>
  646. </quarters>
  647. <dayPeriods>
  648. <alias source="locale" path="../../calendar[@type='gregorian']/dayPeriods"/>
  649. </dayPeriods>
  650. <eras>
  651. <eraNames>
  652. <alias source="locale" path="../eraAbbr"/>
  653. </eraNames>
  654. <eraAbbr>
  655. <era type="0">ERA0</era>
  656. <era type="1">ERA1</era>
  657. </eraAbbr>
  658. <eraNarrow>
  659. <alias source="locale" path="../eraAbbr"/>
  660. </eraNarrow>
  661. </eras>
  662. <dateFormats>
  663. <alias source="locale" path="../../calendar[@type='generic']/dateFormats"/>
  664. </dateFormats>
  665. <timeFormats>
  666. <alias source="locale" path="../../calendar[@type='gregorian']/timeFormats"/>
  667. </timeFormats>
  668. <dateTimeFormats>
  669. <alias source="locale" path="../../calendar[@type='generic']/dateTimeFormats"/>
  670. </dateTimeFormats>
  671. </calendar>
  672. <calendar type="ethiopic-amete-alem">
  673. <months>
  674. <alias source="locale" path="../../calendar[@type='ethiopic']/months"/>
  675. </months>
  676. <days>
  677. <alias source="locale" path="../../calendar[@type='ethiopic']/days"/>
  678. </days>
  679. <quarters>
  680. <alias source="locale" path="../../calendar[@type='ethiopic']/quarters"/>
  681. </quarters>
  682. <dayPeriods>
  683. <alias source="locale" path="../../calendar[@type='ethiopic']/dayPeriods"/>
  684. </dayPeriods>
  685. <eras>
  686. <eraNames>
  687. <alias source="locale" path="../eraAbbr"/>
  688. </eraNames>
  689. <eraAbbr>
  690. <era type="0">ERA0</era>
  691. </eraAbbr>
  692. <eraNarrow>
  693. <alias source="locale" path="../eraAbbr"/>
  694. </eraNarrow>
  695. </eras>
  696. <dateFormats>
  697. <alias source="locale" path="../../calendar[@type='ethiopic']/dateFormats"/>
  698. </dateFormats>
  699. <timeFormats>
  700. <alias source="locale" path="../../calendar[@type='ethiopic']/timeFormats"/>
  701. </timeFormats>
  702. <dateTimeFormats>
  703. <alias source="locale" path="../../calendar[@type='ethiopic']/dateTimeFormats"/>
  704. </dateTimeFormats>
  705. </calendar>
  706. <calendar type="generic">
  707. <months>
  708. <monthContext type="format">
  709. <monthWidth type="abbreviated">
  710. <alias source="locale" path="../monthWidth[@type='wide']"/>
  711. </monthWidth>
  712. <monthWidth type="narrow">
  713. <alias source="locale" path="../../monthContext[@type='stand-alone']/monthWidth[@type='narrow']"/>
  714. </monthWidth>
  715. <monthWidth type="wide">
  716. <month type="1">M01</month>
  717. <month type="2">M02</month>
  718. <month type="3">M03</month>
  719. <month type="4">M04</month>
  720. <month type="5">M05</month>
  721. <month type="6">M06</month>
  722. <month type="7">M07</month>
  723. <month type="8">M08</month>
  724. <month type="9">M09</month>
  725. <month type="10">M10</month>
  726. <month type="11">M11</month>
  727. <month type="12">M12</month>
  728. </monthWidth>
  729. </monthContext>
  730. <monthContext type="stand-alone">
  731. <monthWidth type="abbreviated">
  732. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='abbreviated']"/>
  733. </monthWidth>
  734. <monthWidth type="narrow">
  735. <month type="1">1</month>
  736. <month type="2">2</month>
  737. <month type="3">3</month>
  738. <month type="4">4</month>
  739. <month type="5">5</month>
  740. <month type="6">6</month>
  741. <month type="7">7</month>
  742. <month type="8">8</month>
  743. <month type="9">9</month>
  744. <month type="10">10</month>
  745. <month type="11">11</month>
  746. <month type="12">12</month>
  747. </monthWidth>
  748. <monthWidth type="wide">
  749. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='wide']"/>
  750. </monthWidth>
  751. </monthContext>
  752. </months>
  753. <days>
  754. <alias source="locale" path="../../calendar[@type='gregorian']/days"/>
  755. </days>
  756. <quarters>
  757. <alias source="locale" path="../../calendar[@type='gregorian']/quarters"/>
  758. </quarters>
  759. <dayPeriods>
  760. <alias source="locale" path="../../calendar[@type='gregorian']/dayPeriods"/>
  761. </dayPeriods>
  762. <eras>
  763. <eraNames>
  764. <alias source="locale" path="../eraAbbr"/>
  765. </eraNames>
  766. <eraAbbr>
  767. <era type="0">ERA0</era>
  768. <era type="1">ERA1</era>
  769. </eraAbbr>
  770. <eraNarrow>
  771. <alias source="locale" path="../eraAbbr"/>
  772. </eraNarrow>
  773. </eras>
  774. <dateFormats>
  775. <dateFormatLength type="full">
  776. <dateFormat>
  777. <pattern>G y MMMM d, EEEE</pattern>
  778. </dateFormat>
  779. </dateFormatLength>
  780. <dateFormatLength type="long">
  781. <dateFormat>
  782. <pattern>G y MMMM d</pattern>
  783. </dateFormat>
  784. </dateFormatLength>
  785. <dateFormatLength type="medium">
  786. <dateFormat>
  787. <pattern>G y MMM d</pattern>
  788. </dateFormat>
  789. </dateFormatLength>
  790. <dateFormatLength type="short">
  791. <dateFormat>
  792. <pattern>GGGGG y-MM-dd</pattern>
  793. </dateFormat>
  794. </dateFormatLength>
  795. </dateFormats>
  796. <timeFormats>
  797. <alias source="locale" path="../../calendar[@type='gregorian']/timeFormats"/>
  798. </timeFormats>
  799. <dateTimeFormats>
  800. <dateTimeFormatLength type="full">
  801. <dateTimeFormat>
  802. <pattern>{1} {0}</pattern>
  803. </dateTimeFormat>
  804. </dateTimeFormatLength>
  805. <dateTimeFormatLength type="long">
  806. <dateTimeFormat>
  807. <pattern>{1} {0}</pattern>
  808. </dateTimeFormat>
  809. </dateTimeFormatLength>
  810. <dateTimeFormatLength type="medium">
  811. <dateTimeFormat>
  812. <pattern>{1} {0}</pattern>
  813. </dateTimeFormat>
  814. </dateTimeFormatLength>
  815. <dateTimeFormatLength type="short">
  816. <dateTimeFormat>
  817. <pattern>{1} {0}</pattern>
  818. </dateTimeFormat>
  819. </dateTimeFormatLength>
  820. <availableFormats>
  821. <dateFormatItem id="d">d</dateFormatItem>
  822. <dateFormatItem id="Ed">d, E</dateFormatItem>
  823. <dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
  824. <dateFormatItem id="EHm">E HH:mm</dateFormatItem>
  825. <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
  826. <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
  827. <dateFormatItem id="Gy">G y</dateFormatItem>
  828. <dateFormatItem id="GyMMM">G y MMM</dateFormatItem>
  829. <dateFormatItem id="GyMMMd">G y MMM d</dateFormatItem>
  830. <dateFormatItem id="GyMMMEd">G y MMM d, E</dateFormatItem>
  831. <dateFormatItem id="h">h a</dateFormatItem>
  832. <dateFormatItem id="H">HH</dateFormatItem>
  833. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  834. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  835. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  836. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  837. <dateFormatItem id="M">L</dateFormatItem>
  838. <dateFormatItem id="Md">MM-dd</dateFormatItem>
  839. <dateFormatItem id="MEd">MM-dd, E</dateFormatItem>
  840. <dateFormatItem id="MMM">LLL</dateFormatItem>
  841. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  842. <dateFormatItem id="MMMEd">MMM d, E</dateFormatItem>
  843. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  844. <dateFormatItem id="y">G y</dateFormatItem>
  845. <dateFormatItem id="yyyy">G y</dateFormatItem>
  846. <dateFormatItem id="yyyyM">GGGGG y-MM</dateFormatItem>
  847. <dateFormatItem id="yyyyMd">GGGGG y-MM-dd</dateFormatItem>
  848. <dateFormatItem id="yyyyMEd">GGGGG y-MM-dd, E</dateFormatItem>
  849. <dateFormatItem id="yyyyMMM">G y MMM</dateFormatItem>
  850. <dateFormatItem id="yyyyMMMd">G y MMM d</dateFormatItem>
  851. <dateFormatItem id="yyyyMMMEd">G y MMM d, E</dateFormatItem>
  852. <dateFormatItem id="yyyyQQQ">G y QQQ</dateFormatItem>
  853. <dateFormatItem id="yyyyQQQQ">G y QQQQ</dateFormatItem>
  854. </availableFormats>
  855. <appendItems>
  856. <appendItem request="Day">{0} ({2}: {1})</appendItem>
  857. <appendItem request="Day-Of-Week">{0} {1}</appendItem>
  858. <appendItem request="Era">{1} {0}</appendItem>
  859. <appendItem request="Hour">{0} ({2}: {1})</appendItem>
  860. <appendItem request="Minute">{0} ({2}: {1})</appendItem>
  861. <appendItem request="Month">{0} ({2}: {1})</appendItem>
  862. <appendItem request="Quarter">{0} ({2}: {1})</appendItem>
  863. <appendItem request="Second">{0} ({2}: {1})</appendItem>
  864. <appendItem request="Timezone">{0} {1}</appendItem>
  865. <appendItem request="Week">{0} ({2}: {1})</appendItem>
  866. <appendItem request="Year">{1} {0}</appendItem>
  867. </appendItems>
  868. <intervalFormats>
  869. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  870. <intervalFormatItem id="d">
  871. <greatestDifference id="d">d–d</greatestDifference>
  872. </intervalFormatItem>
  873. <intervalFormatItem id="h">
  874. <greatestDifference id="a">h a – h a</greatestDifference>
  875. <greatestDifference id="h">h–h a</greatestDifference>
  876. </intervalFormatItem>
  877. <intervalFormatItem id="H">
  878. <greatestDifference id="H">HH–HH</greatestDifference>
  879. </intervalFormatItem>
  880. <intervalFormatItem id="hm">
  881. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  882. <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
  883. <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
  884. </intervalFormatItem>
  885. <intervalFormatItem id="Hm">
  886. <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
  887. <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
  888. </intervalFormatItem>
  889. <intervalFormatItem id="hmv">
  890. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  891. <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
  892. <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
  893. </intervalFormatItem>
  894. <intervalFormatItem id="Hmv">
  895. <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
  896. <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
  897. </intervalFormatItem>
  898. <intervalFormatItem id="hv">
  899. <greatestDifference id="a">h a – h a v</greatestDifference>
  900. <greatestDifference id="h">h–h a v</greatestDifference>
  901. </intervalFormatItem>
  902. <intervalFormatItem id="Hv">
  903. <greatestDifference id="H">HH–HH v</greatestDifference>
  904. </intervalFormatItem>
  905. <intervalFormatItem id="M">
  906. <greatestDifference id="M">MM–MM</greatestDifference>
  907. </intervalFormatItem>
  908. <intervalFormatItem id="Md">
  909. <greatestDifference id="d">MM-dd – MM-dd</greatestDifference>
  910. <greatestDifference id="M">MM-dd – MM-dd</greatestDifference>
  911. </intervalFormatItem>
  912. <intervalFormatItem id="MEd">
  913. <greatestDifference id="d">MM-dd, E – MM-dd, E</greatestDifference>
  914. <greatestDifference id="M">MM-dd, E – MM-dd, E</greatestDifference>
  915. </intervalFormatItem>
  916. <intervalFormatItem id="MMM">
  917. <greatestDifference id="M">LLL–LLL</greatestDifference>
  918. </intervalFormatItem>
  919. <intervalFormatItem id="MMMd">
  920. <greatestDifference id="d">MMM d–d</greatestDifference>
  921. <greatestDifference id="M">MMM d – MMM d</greatestDifference>
  922. </intervalFormatItem>
  923. <intervalFormatItem id="MMMEd">
  924. <greatestDifference id="d">MMM d, E – MMM d, E</greatestDifference>
  925. <greatestDifference id="M">MMM d, E – MMM d, E</greatestDifference>
  926. </intervalFormatItem>
  927. <intervalFormatItem id="y">
  928. <greatestDifference id="y">G y–y</greatestDifference>
  929. </intervalFormatItem>
  930. <intervalFormatItem id="yM">
  931. <greatestDifference id="M">GGGGG y-MM – y-MM</greatestDifference>
  932. <greatestDifference id="y">GGGGG y-MM – y-MM</greatestDifference>
  933. </intervalFormatItem>
  934. <intervalFormatItem id="yMd">
  935. <greatestDifference id="d">GGGGG y-MM-dd – y-MM-dd</greatestDifference>
  936. <greatestDifference id="M">GGGGG y-MM-dd – y-MM-dd</greatestDifference>
  937. <greatestDifference id="y">GGGGG y-MM-dd – y-MM-dd</greatestDifference>
  938. </intervalFormatItem>
  939. <intervalFormatItem id="yMEd">
  940. <greatestDifference id="d">GGGGG y-MM-dd, E – y-MM-dd, E</greatestDifference>
  941. <greatestDifference id="M">GGGGG y-MM-dd, E – y-MM-dd, E</greatestDifference>
  942. <greatestDifference id="y">GGGGG y-MM-dd, E – y-MM-dd, E</greatestDifference>
  943. </intervalFormatItem>
  944. <intervalFormatItem id="yMMM">
  945. <greatestDifference id="M">G y MMM–MMM</greatestDifference>
  946. <greatestDifference id="y">G y MMM – y MMM</greatestDifference>
  947. </intervalFormatItem>
  948. <intervalFormatItem id="yMMMd">
  949. <greatestDifference id="d">G y MMM d–d</greatestDifference>
  950. <greatestDifference id="M">G y MMM d – MMM d</greatestDifference>
  951. <greatestDifference id="y">G y MMM d – y MMM d</greatestDifference>
  952. </intervalFormatItem>
  953. <intervalFormatItem id="yMMMEd">
  954. <greatestDifference id="d">G y MMM d, E – MMM d, E</greatestDifference>
  955. <greatestDifference id="M">G y MMM d, E – MMM d, E</greatestDifference>
  956. <greatestDifference id="y">G y MMM d, E – y MMM d, E</greatestDifference>
  957. </intervalFormatItem>
  958. <intervalFormatItem id="yMMMM">
  959. <greatestDifference id="M">G y MMMM–MMMM</greatestDifference>
  960. <greatestDifference id="y">G y MMMM – y MMMM</greatestDifference>
  961. </intervalFormatItem>
  962. </intervalFormats>
  963. </dateTimeFormats>
  964. </calendar>
  965. <calendar type="gregorian">
  966. <months>
  967. <monthContext type="format">
  968. <monthWidth type="abbreviated">
  969. <alias source="locale" path="../monthWidth[@type='wide']"/>
  970. </monthWidth>
  971. <monthWidth type="narrow">
  972. <alias source="locale" path="../../monthContext[@type='stand-alone']/monthWidth[@type='narrow']"/>
  973. </monthWidth>
  974. <monthWidth type="wide">
  975. <month type="1">M01</month>
  976. <month type="2">M02</month>
  977. <month type="3">M03</month>
  978. <month type="4">M04</month>
  979. <month type="5">M05</month>
  980. <month type="6">M06</month>
  981. <month type="7">M07</month>
  982. <month type="8">M08</month>
  983. <month type="9">M09</month>
  984. <month type="10">M10</month>
  985. <month type="11">M11</month>
  986. <month type="12">M12</month>
  987. </monthWidth>
  988. </monthContext>
  989. <monthContext type="stand-alone">
  990. <monthWidth type="abbreviated">
  991. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='abbreviated']"/>
  992. </monthWidth>
  993. <monthWidth type="narrow">
  994. <month type="1">1</month>
  995. <month type="2">2</month>
  996. <month type="3">3</month>
  997. <month type="4">4</month>
  998. <month type="5">5</month>
  999. <month type="6">6</month>
  1000. <month type="7">7</month>
  1001. <month type="8">8</month>
  1002. <month type="9">9</month>
  1003. <month type="10">10</month>
  1004. <month type="11">11</month>
  1005. <month type="12">12</month>
  1006. </monthWidth>
  1007. <monthWidth type="wide">
  1008. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='wide']"/>
  1009. </monthWidth>
  1010. </monthContext>
  1011. </months>
  1012. <days>
  1013. <dayContext type="format">
  1014. <dayWidth type="abbreviated">
  1015. <alias source="locale" path="../dayWidth[@type='wide']"/>
  1016. </dayWidth>
  1017. <dayWidth type="narrow">
  1018. <alias source="locale" path="../../dayContext[@type='stand-alone']/dayWidth[@type='narrow']"/>
  1019. </dayWidth>
  1020. <dayWidth type="short">
  1021. <alias source="locale" path="../dayWidth[@type='abbreviated']"/>
  1022. </dayWidth>
  1023. <dayWidth type="wide">
  1024. <day type="sun">Sun</day>
  1025. <day type="mon">Mon</day>
  1026. <day type="tue">Tue</day>
  1027. <day type="wed">Wed</day>
  1028. <day type="thu">Thu</day>
  1029. <day type="fri">Fri</day>
  1030. <day type="sat">Sat</day>
  1031. </dayWidth>
  1032. </dayContext>
  1033. <dayContext type="stand-alone">
  1034. <dayWidth type="abbreviated">
  1035. <alias source="locale" path="../../dayContext[@type='format']/dayWidth[@type='abbreviated']"/>
  1036. </dayWidth>
  1037. <dayWidth type="narrow">
  1038. <day type="sun">S</day>
  1039. <day type="mon">M</day>
  1040. <day type="tue">T</day>
  1041. <day type="wed">W</day>
  1042. <day type="thu">T</day>
  1043. <day type="fri">F</day>
  1044. <day type="sat">S</day>
  1045. </dayWidth>
  1046. <dayWidth type="short">
  1047. <alias source="locale" path="../../dayContext[@type='format']/dayWidth[@type='short']"/>
  1048. </dayWidth>
  1049. <dayWidth type="wide">
  1050. <alias source="locale" path="../../dayContext[@type='format']/dayWidth[@type='wide']"/>
  1051. </dayWidth>
  1052. </dayContext>
  1053. </days>
  1054. <quarters>
  1055. <quarterContext type="format">
  1056. <quarterWidth type="abbreviated">
  1057. <alias source="locale" path="../quarterWidth[@type='wide']"/>
  1058. </quarterWidth>
  1059. <quarterWidth type="narrow">
  1060. <alias source="locale" path="../../quarterContext[@type='stand-alone']/quarterWidth[@type='narrow']"/>
  1061. </quarterWidth>
  1062. <quarterWidth type="wide">
  1063. <quarter type="1">Q1</quarter>
  1064. <quarter type="2">Q2</quarter>
  1065. <quarter type="3">Q3</quarter>
  1066. <quarter type="4">Q4</quarter>
  1067. </quarterWidth>
  1068. </quarterContext>
  1069. <quarterContext type="stand-alone">
  1070. <quarterWidth type="abbreviated">
  1071. <alias source="locale" path="../../quarterContext[@type='format']/quarterWidth[@type='abbreviated']"/>
  1072. </quarterWidth>
  1073. <quarterWidth type="narrow">
  1074. <quarter type="1">1</quarter>
  1075. <quarter type="2">2</quarter>
  1076. <quarter type="3">3</quarter>
  1077. <quarter type="4">4</quarter>
  1078. </quarterWidth>
  1079. <quarterWidth type="wide">
  1080. <alias source="locale" path="../../quarterContext[@type='format']/quarterWidth[@type='wide']"/>
  1081. </quarterWidth>
  1082. </quarterContext>
  1083. </quarters>
  1084. <dayPeriods>
  1085. <dayPeriodContext type="format">
  1086. <dayPeriodWidth type="abbreviated">
  1087. <alias source="locale" path="../dayPeriodWidth[@type='wide']"/>
  1088. </dayPeriodWidth>
  1089. <dayPeriodWidth type="narrow">
  1090. <dayPeriod type="am">a</dayPeriod>
  1091. <dayPeriod type="noon">n</dayPeriod>
  1092. <dayPeriod type="pm">p</dayPeriod>
  1093. </dayPeriodWidth>
  1094. <dayPeriodWidth type="wide">
  1095. <dayPeriod type="am">AM</dayPeriod>
  1096. <dayPeriod type="noon">noon</dayPeriod>
  1097. <dayPeriod type="pm">PM</dayPeriod>
  1098. </dayPeriodWidth>
  1099. </dayPeriodContext>
  1100. <dayPeriodContext type="stand-alone">
  1101. <alias source="locale" path="../dayPeriodContext[@type='format']"/>
  1102. </dayPeriodContext>
  1103. </dayPeriods>
  1104. <eras>
  1105. <eraNames>
  1106. <alias source="locale" path="../eraAbbr"/>
  1107. </eraNames>
  1108. <eraAbbr>
  1109. <era type="0">BCE</era>
  1110. <era type="1">CE</era>
  1111. </eraAbbr>
  1112. <eraNarrow>
  1113. <alias source="locale" path="../eraAbbr"/>
  1114. </eraNarrow>
  1115. </eras>
  1116. <dateFormats>
  1117. <dateFormatLength type="full">
  1118. <dateFormat>
  1119. <pattern>y MMMM d, EEEE</pattern>
  1120. </dateFormat>
  1121. </dateFormatLength>
  1122. <dateFormatLength type="long">
  1123. <dateFormat>
  1124. <pattern>y MMMM d</pattern>
  1125. </dateFormat>
  1126. </dateFormatLength>
  1127. <dateFormatLength type="medium">
  1128. <dateFormat>
  1129. <pattern>y MMM d</pattern>
  1130. </dateFormat>
  1131. </dateFormatLength>
  1132. <dateFormatLength type="short">
  1133. <dateFormat>
  1134. <pattern>y-MM-dd</pattern>
  1135. </dateFormat>
  1136. </dateFormatLength>
  1137. </dateFormats>
  1138. <timeFormats>
  1139. <timeFormatLength type="full">
  1140. <timeFormat>
  1141. <pattern>HH:mm:ss zzzz</pattern>
  1142. </timeFormat>
  1143. </timeFormatLength>
  1144. <timeFormatLength type="long">
  1145. <timeFormat>
  1146. <pattern>HH:mm:ss z</pattern>
  1147. </timeFormat>
  1148. </timeFormatLength>
  1149. <timeFormatLength type="medium">
  1150. <timeFormat>
  1151. <pattern>HH:mm:ss</pattern>
  1152. </timeFormat>
  1153. </timeFormatLength>
  1154. <timeFormatLength type="short">
  1155. <timeFormat>
  1156. <pattern>HH:mm</pattern>
  1157. </timeFormat>
  1158. </timeFormatLength>
  1159. </timeFormats>
  1160. <dateTimeFormats>
  1161. <dateTimeFormatLength type="full">
  1162. <dateTimeFormat>
  1163. <pattern>{1} {0}</pattern>
  1164. </dateTimeFormat>
  1165. </dateTimeFormatLength>
  1166. <dateTimeFormatLength type="long">
  1167. <dateTimeFormat>
  1168. <pattern>{1} {0}</pattern>
  1169. </dateTimeFormat>
  1170. </dateTimeFormatLength>
  1171. <dateTimeFormatLength type="medium">
  1172. <dateTimeFormat>
  1173. <pattern>{1} {0}</pattern>
  1174. </dateTimeFormat>
  1175. </dateTimeFormatLength>
  1176. <dateTimeFormatLength type="short">
  1177. <dateTimeFormat>
  1178. <pattern>{1} {0}</pattern>
  1179. </dateTimeFormat>
  1180. </dateTimeFormatLength>
  1181. <availableFormats>
  1182. <dateFormatItem id="d">d</dateFormatItem>
  1183. <dateFormatItem id="Ed">d, E</dateFormatItem>
  1184. <dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
  1185. <dateFormatItem id="EHm">E HH:mm</dateFormatItem>
  1186. <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
  1187. <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
  1188. <dateFormatItem id="Gy">G y</dateFormatItem>
  1189. <dateFormatItem id="GyMMM">G y MMM</dateFormatItem>
  1190. <dateFormatItem id="GyMMMd">G y MMM d</dateFormatItem>
  1191. <dateFormatItem id="GyMMMEd">G y MMM d, E</dateFormatItem>
  1192. <dateFormatItem id="h">h a</dateFormatItem>
  1193. <dateFormatItem id="H">HH</dateFormatItem>
  1194. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  1195. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  1196. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  1197. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  1198. <dateFormatItem id="M">L</dateFormatItem>
  1199. <dateFormatItem id="Md">MM-dd</dateFormatItem>
  1200. <dateFormatItem id="MEd">MM-dd, E</dateFormatItem>
  1201. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1202. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  1203. <dateFormatItem id="MMMEd">MMM d, E</dateFormatItem>
  1204. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1205. <dateFormatItem id="y">y</dateFormatItem>
  1206. <dateFormatItem id="yM">y-MM</dateFormatItem>
  1207. <dateFormatItem id="yMd">y-MM-dd</dateFormatItem>
  1208. <dateFormatItem id="yMEd">y-MM-dd, E</dateFormatItem>
  1209. <dateFormatItem id="yMMM">y MMM</dateFormatItem>
  1210. <dateFormatItem id="yMMMd">y MMM d</dateFormatItem>
  1211. <dateFormatItem id="yMMMEd">y MMM d, E</dateFormatItem>
  1212. <dateFormatItem id="yQQQ">y QQQ</dateFormatItem>
  1213. <dateFormatItem id="yQQQQ">y QQQQ</dateFormatItem>
  1214. </availableFormats>
  1215. <appendItems>
  1216. <appendItem request="Day">{0} ({2}: {1})</appendItem>
  1217. <appendItem request="Day-Of-Week">{0} {1}</appendItem>
  1218. <appendItem request="Era">{1} {0}</appendItem>
  1219. <appendItem request="Hour">{0} ({2}: {1})</appendItem>
  1220. <appendItem request="Minute">{0} ({2}: {1})</appendItem>
  1221. <appendItem request="Month">{0} ({2}: {1})</appendItem>
  1222. <appendItem request="Quarter">{0} ({2}: {1})</appendItem>
  1223. <appendItem request="Second">{0} ({2}: {1})</appendItem>
  1224. <appendItem request="Timezone">{0} {1}</appendItem>
  1225. <appendItem request="Week">{0} ({2}: {1})</appendItem>
  1226. <appendItem request="Year">{1} {0}</appendItem>
  1227. </appendItems>
  1228. <intervalFormats>
  1229. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  1230. <intervalFormatItem id="d">
  1231. <greatestDifference id="d">d–d</greatestDifference>
  1232. </intervalFormatItem>
  1233. <intervalFormatItem id="h">
  1234. <greatestDifference id="a">h a – h a</greatestDifference>
  1235. <greatestDifference id="h">h–h a</greatestDifference>
  1236. </intervalFormatItem>
  1237. <intervalFormatItem id="H">
  1238. <greatestDifference id="H">HH–HH</greatestDifference>
  1239. </intervalFormatItem>
  1240. <intervalFormatItem id="hm">
  1241. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  1242. <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
  1243. <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
  1244. </intervalFormatItem>
  1245. <intervalFormatItem id="Hm">
  1246. <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
  1247. <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
  1248. </intervalFormatItem>
  1249. <intervalFormatItem id="hmv">
  1250. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  1251. <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
  1252. <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
  1253. </intervalFormatItem>
  1254. <intervalFormatItem id="Hmv">
  1255. <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
  1256. <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
  1257. </intervalFormatItem>
  1258. <intervalFormatItem id="hv">
  1259. <greatestDifference id="a">h a – h a v</greatestDifference>
  1260. <greatestDifference id="h">h–h a v</greatestDifference>
  1261. </intervalFormatItem>
  1262. <intervalFormatItem id="Hv">
  1263. <greatestDifference id="H">HH–HH v</greatestDifference>
  1264. </intervalFormatItem>
  1265. <intervalFormatItem id="M">
  1266. <greatestDifference id="M">MM–MM</greatestDifference>
  1267. </intervalFormatItem>
  1268. <intervalFormatItem id="Md">
  1269. <greatestDifference id="d">MM-dd – MM-dd</greatestDifference>
  1270. <greatestDifference id="M">MM-dd – MM-dd</greatestDifference>
  1271. </intervalFormatItem>
  1272. <intervalFormatItem id="MEd">
  1273. <greatestDifference id="d">MM-dd, E – MM-dd, E</greatestDifference>
  1274. <greatestDifference id="M">MM-dd, E – MM-dd, E</greatestDifference>
  1275. </intervalFormatItem>
  1276. <intervalFormatItem id="MMM">
  1277. <greatestDifference id="M">LLL–LLL</greatestDifference>
  1278. </intervalFormatItem>
  1279. <intervalFormatItem id="MMMd">
  1280. <greatestDifference id="d">MMM d–d</greatestDifference>
  1281. <greatestDifference id="M">MMM d – MMM d</greatestDifference>
  1282. </intervalFormatItem>
  1283. <intervalFormatItem id="MMMEd">
  1284. <greatestDifference id="d">MMM d, E – MMM d, E</greatestDifference>
  1285. <greatestDifference id="M">MMM d, E – MMM d, E</greatestDifference>
  1286. </intervalFormatItem>
  1287. <intervalFormatItem id="y">
  1288. <greatestDifference id="y">y–y</greatestDifference>
  1289. </intervalFormatItem>
  1290. <intervalFormatItem id="yM">
  1291. <greatestDifference id="M">y-MM – y-MM</greatestDifference>
  1292. <greatestDifference id="y">y-MM – y-MM</greatestDifference>
  1293. </intervalFormatItem>
  1294. <intervalFormatItem id="yMd">
  1295. <greatestDifference id="d">y-MM-dd – y-MM-dd</greatestDifference>
  1296. <greatestDifference id="M">y-MM-dd – y-MM-dd</greatestDifference>
  1297. <greatestDifference id="y">y-MM-dd – y-MM-dd</greatestDifference>
  1298. </intervalFormatItem>
  1299. <intervalFormatItem id="yMEd">
  1300. <greatestDifference id="d">y-MM-dd, E – y-MM-dd, E</greatestDifference>
  1301. <greatestDifference id="M">y-MM-dd, E – y-MM-dd, E</greatestDifference>
  1302. <greatestDifference id="y">y-MM-dd, E – y-MM-dd, E</greatestDifference>
  1303. </intervalFormatItem>
  1304. <intervalFormatItem id="yMMM">
  1305. <greatestDifference id="M">y MMM–MMM</greatestDifference>
  1306. <greatestDifference id="y">y MMM – y MMM</greatestDifference>
  1307. </intervalFormatItem>
  1308. <intervalFormatItem id="yMMMd">
  1309. <greatestDifference id="d">y MMM d–d</greatestDifference>
  1310. <greatestDifference id="M">y MMM d – MMM d</greatestDifference>
  1311. <greatestDifference id="y">y MMM d – y MMM d</greatestDifference>
  1312. </intervalFormatItem>
  1313. <intervalFormatItem id="yMMMEd">
  1314. <greatestDifference id="d">y MMM d, E – MMM d, E</greatestDifference>
  1315. <greatestDifference id="M">y MMM d, E – MMM d, E</greatestDifference>
  1316. <greatestDifference id="y">y MMM d, E – y MMM d, E</greatestDifference>
  1317. </intervalFormatItem>
  1318. <intervalFormatItem id="yMMMM">
  1319. <greatestDifference id="M">y MMMM–MMMM</greatestDifference>
  1320. <greatestDifference id="y">y MMMM – y MMMM</greatestDifference>
  1321. </intervalFormatItem>
  1322. </intervalFormats>
  1323. </dateTimeFormats>
  1324. </calendar>
  1325. <calendar type="hebrew">
  1326. <months>
  1327. <monthContext type="format">
  1328. <monthWidth type="abbreviated">
  1329. <alias source="locale" path="../monthWidth[@type='wide']"/>
  1330. </monthWidth>
  1331. <monthWidth type="narrow">
  1332. <alias source="locale" path="../../monthContext[@type='stand-alone']/monthWidth[@type='narrow']"/>
  1333. </monthWidth>
  1334. <monthWidth type="wide">
  1335. <month type="1">Tishri</month>
  1336. <month type="2">Heshvan</month>
  1337. <month type="3">Kislev</month>
  1338. <month type="4">Tevet</month>
  1339. <month type="5">Shevat</month>
  1340. <month type="6">Adar I</month>
  1341. <month type="7">Adar</month>
  1342. <month type="7" yeartype="leap">Adar II</month>
  1343. <month type="8">Nisan</month>
  1344. <month type="9">Iyar</month>
  1345. <month type="10">Sivan</month>
  1346. <month type="11">Tamuz</month>
  1347. <month type="12">Av</month>
  1348. <month type="13">Elul</month>
  1349. </monthWidth>
  1350. </monthContext>
  1351. <monthContext type="stand-alone">
  1352. <monthWidth type="abbreviated">
  1353. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='abbreviated']"/>
  1354. </monthWidth>
  1355. <monthWidth type="narrow">
  1356. <month type="1">1</month>
  1357. <month type="2">2</month>
  1358. <month type="3">3</month>
  1359. <month type="4">4</month>
  1360. <month type="5">5</month>
  1361. <month type="6">6</month>
  1362. <month type="7">7</month>
  1363. <month type="7" yeartype="leap">7</month>
  1364. <month type="8">8</month>
  1365. <month type="9">9</month>
  1366. <month type="10">10</month>
  1367. <month type="11">11</month>
  1368. <month type="12">12</month>
  1369. <month type="13">13</month>
  1370. </monthWidth>
  1371. <monthWidth type="wide">
  1372. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='wide']"/>
  1373. </monthWidth>
  1374. </monthContext>
  1375. </months>
  1376. <days>
  1377. <alias source="locale" path="../../calendar[@type='gregorian']/days"/>
  1378. </days>
  1379. <quarters>
  1380. <alias source="locale" path="../../calendar[@type='gregorian']/quarters"/>
  1381. </quarters>
  1382. <dayPeriods>
  1383. <alias source="locale" path="../../calendar[@type='gregorian']/dayPeriods"/>
  1384. </dayPeriods>
  1385. <eras>
  1386. <eraNames>
  1387. <alias source="locale" path="../eraAbbr"/>
  1388. </eraNames>
  1389. <eraAbbr>
  1390. <era type="0">AM</era>
  1391. <!-- HY = Anno Mundi
  1392. = -180799862400000 milliseconds since 1/1/1970 AD
  1393. -->
  1394. </eraAbbr>
  1395. <eraNarrow>
  1396. <alias source="locale" path="../eraAbbr"/>
  1397. </eraNarrow>
  1398. </eras>
  1399. <dateFormats>
  1400. <alias source="locale" path="../../calendar[@type='generic']/dateFormats"/>
  1401. </dateFormats>
  1402. <timeFormats>
  1403. <alias source="locale" path="../../calendar[@type='gregorian']/timeFormats"/>
  1404. </timeFormats>
  1405. <dateTimeFormats>
  1406. <alias source="locale" path="../../calendar[@type='generic']/dateTimeFormats"/>
  1407. </dateTimeFormats>
  1408. </calendar>
  1409. <calendar type="indian">
  1410. <months>
  1411. <monthContext type="format">
  1412. <monthWidth type="abbreviated">
  1413. <alias source="locale" path="../monthWidth[@type='wide']"/>
  1414. </monthWidth>
  1415. <monthWidth type="narrow">
  1416. <alias source="locale" path="../../monthContext[@type='stand-alone']/monthWidth[@type='narrow']"/>
  1417. </monthWidth>
  1418. <monthWidth type="wide">
  1419. <month type="1">Chaitra</month>
  1420. <month type="2">Vaisakha</month>
  1421. <month type="3">Jyaistha</month>
  1422. <month type="4">Asadha</month>
  1423. <month type="5">Sravana</month>
  1424. <month type="6">Bhadra</month>
  1425. <month type="7">Asvina</month>
  1426. <month type="8">Kartika</month>
  1427. <month type="9">Agrahayana</month>
  1428. <month type="10">Pausa</month>
  1429. <month type="11">Magha</month>
  1430. <month type="12">Phalguna</month>
  1431. </monthWidth>
  1432. </monthContext>
  1433. <monthContext type="stand-alone">
  1434. <monthWidth type="abbreviated">
  1435. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='abbreviated']"/>
  1436. </monthWidth>
  1437. <monthWidth type="narrow">
  1438. <month type="1">1</month>
  1439. <month type="2">2</month>
  1440. <month type="3">3</month>
  1441. <month type="4">4</month>
  1442. <month type="5">5</month>
  1443. <month type="6">6</month>
  1444. <month type="7">7</month>
  1445. <month type="8">8</month>
  1446. <month type="9">9</month>
  1447. <month type="10">10</month>
  1448. <month type="11">11</month>
  1449. <month type="12">12</month>
  1450. </monthWidth>
  1451. <monthWidth type="wide">
  1452. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='wide']"/>
  1453. </monthWidth>
  1454. </monthContext>
  1455. </months>
  1456. <days>
  1457. <alias source="locale" path="../../calendar[@type='gregorian']/days"/>
  1458. </days>
  1459. <quarters>
  1460. <alias source="locale" path="../../calendar[@type='gregorian']/quarters"/>
  1461. </quarters>
  1462. <dayPeriods>
  1463. <alias source="locale" path="../../calendar[@type='gregorian']/dayPeriods"/>
  1464. </dayPeriods>
  1465. <eras>
  1466. <eraNames>
  1467. <alias source="locale" path="../eraAbbr"/>
  1468. </eraNames>
  1469. <eraAbbr>
  1470. <era type="0">Saka</era>
  1471. </eraAbbr>
  1472. <eraNarrow>
  1473. <alias source="locale" path="../eraAbbr"/>
  1474. </eraNarrow>
  1475. </eras>
  1476. <dateFormats>
  1477. <alias source="locale" path="../../calendar[@type='generic']/dateFormats"/>
  1478. </dateFormats>
  1479. <timeFormats>
  1480. <alias source="locale" path="../../calendar[@type='gregorian']/timeFormats"/>
  1481. </timeFormats>
  1482. <dateTimeFormats>
  1483. <alias source="locale" path="../../calendar[@type='generic']/dateTimeFormats"/>
  1484. </dateTimeFormats>
  1485. </calendar>
  1486. <calendar type="islamic">
  1487. <months>
  1488. <monthContext type="format">
  1489. <monthWidth type="abbreviated">
  1490. <month type="1">Muh.</month>
  1491. <month type="2">Saf.</month>
  1492. <month type="3">Rab. I</month>
  1493. <month type="4">Rab. II</month>
  1494. <month type="5">Jum. I</month>
  1495. <month type="6">Jum. II</month>
  1496. <month type="7">Raj.</month>
  1497. <month type="8">Sha.</month>
  1498. <month type="9">Ram.</month>
  1499. <month type="10">Shaw.</month>
  1500. <month type="11">Dhuʻl-Q.</month>
  1501. <month type="12">Dhuʻl-H.</month>
  1502. </monthWidth>
  1503. <monthWidth type="narrow">
  1504. <alias source="locale" path="../../monthContext[@type='stand-alone']/monthWidth[@type='narrow']"/>
  1505. </monthWidth>
  1506. <monthWidth type="wide">
  1507. <month type="1">Muharram</month>
  1508. <month type="2">Safar</month>
  1509. <month type="3">Rabiʻ I</month>
  1510. <month type="4">Rabiʻ II</month>
  1511. <month type="5">Jumada I</month>
  1512. <month type="6">Jumada II</month>
  1513. <month type="7">Rajab</month>
  1514. <month type="8">Shaʻban</month>
  1515. <month type="9">Ramadan</month>
  1516. <month type="10">Shawwal</month>
  1517. <month type="11">Dhuʻl-Qiʻdah</month>
  1518. <month type="12">Dhuʻl-Hijjah</month>
  1519. </monthWidth>
  1520. </monthContext>
  1521. <monthContext type="stand-alone">
  1522. <monthWidth type="abbreviated">
  1523. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='abbreviated']"/>
  1524. </monthWidth>
  1525. <monthWidth type="narrow">
  1526. <month type="1">1</month>
  1527. <month type="2">2</month>
  1528. <month type="3">3</month>
  1529. <month type="4">4</month>
  1530. <month type="5">5</month>
  1531. <month type="6">6</month>
  1532. <month type="7">7</month>
  1533. <month type="8">8</month>
  1534. <month type="9">9</month>
  1535. <month type="10">10</month>
  1536. <month type="11">11</month>
  1537. <month type="12">12</month>
  1538. </monthWidth>
  1539. <monthWidth type="wide">
  1540. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='wide']"/>
  1541. </monthWidth>
  1542. </monthContext>
  1543. </months>
  1544. <days>
  1545. <alias source="locale" path="../../calendar[@type='gregorian']/days"/>
  1546. </days>
  1547. <quarters>
  1548. <alias source="locale" path="../../calendar[@type='gregorian']/quarters"/>
  1549. </quarters>
  1550. <dayPeriods>
  1551. <alias source="locale" path="../../calendar[@type='gregorian']/dayPeriods"/>
  1552. </dayPeriods>
  1553. <eras>
  1554. <eraNames>
  1555. <alias source="locale" path="../eraAbbr"/>
  1556. </eraNames>
  1557. <eraAbbr>
  1558. <era type="0">AH</era>
  1559. <!-- Anno Hijri, = 7/16/622 AD
  1560. = -42521587200000.0 millis since 1/1/1970
  1561. -->
  1562. </eraAbbr>
  1563. <eraNarrow>
  1564. <alias source="locale" path="../eraAbbr"/>
  1565. </eraNarrow>
  1566. </eras>
  1567. <dateFormats>
  1568. <alias source="locale" path="../../calendar[@type='generic']/dateFormats"/>
  1569. </dateFormats>
  1570. <timeFormats>
  1571. <alias source="locale" path="../../calendar[@type='gregorian']/timeFormats"/>
  1572. </timeFormats>
  1573. <dateTimeFormats>
  1574. <alias source="locale" path="../../calendar[@type='generic']/dateTimeFormats"/>
  1575. </dateTimeFormats>
  1576. </calendar>
  1577. <calendar type="islamic-civil">
  1578. <months>
  1579. <alias source="locale" path="../../calendar[@type='islamic']/months"/>
  1580. </months>
  1581. <days>
  1582. <alias source="locale" path="../../calendar[@type='islamic']/days"/>
  1583. </days>
  1584. <quarters>
  1585. <alias source="locale" path="../../calendar[@type='islamic']/quarters"/>
  1586. </quarters>
  1587. <dayPeriods>
  1588. <alias source="locale" path="../../calendar[@type='islamic']/dayPeriods"/>
  1589. </dayPeriods>
  1590. <eras>
  1591. <alias source="locale" path="../../calendar[@type='islamic']/eras"/>
  1592. </eras>
  1593. <dateFormats>
  1594. <alias source="locale" path="../../calendar[@type='islamic']/dateFormats"/>
  1595. </dateFormats>
  1596. <timeFormats>
  1597. <alias source="locale" path="../../calendar[@type='islamic']/timeFormats"/>
  1598. </timeFormats>
  1599. <dateTimeFormats>
  1600. <alias source="locale" path="../../calendar[@type='islamic']/dateTimeFormats"/>
  1601. </dateTimeFormats>
  1602. </calendar>
  1603. <calendar type="islamic-rgsa">
  1604. <months>
  1605. <alias source="locale" path="../../calendar[@type='islamic']/months"/>
  1606. </months>
  1607. <days>
  1608. <alias source="locale" path="../../calendar[@type='islamic']/days"/>
  1609. </days>
  1610. <quarters>
  1611. <alias source="locale" path="../../calendar[@type='islamic']/quarters"/>
  1612. </quarters>
  1613. <dayPeriods>
  1614. <alias source="locale" path="../../calendar[@type='islamic']/dayPeriods"/>
  1615. </dayPeriods>
  1616. <eras>
  1617. <alias source="locale" path="../../calendar[@type='islamic']/eras"/>
  1618. </eras>
  1619. <dateFormats>
  1620. <alias source="locale" path="../../calendar[@type='islamic']/dateFormats"/>
  1621. </dateFormats>
  1622. <timeFormats>
  1623. <alias source="locale" path="../../calendar[@type='islamic']/timeFormats"/>
  1624. </timeFormats>
  1625. <dateTimeFormats>
  1626. <alias source="locale" path="../../calendar[@type='islamic']/dateTimeFormats"/>
  1627. </dateTimeFormats>
  1628. </calendar>
  1629. <calendar type="islamic-tbla">
  1630. <months>
  1631. <alias source="locale" path="../../calendar[@type='islamic']/months"/>
  1632. </months>
  1633. <days>
  1634. <alias source="locale" path="../../calendar[@type='islamic']/days"/>
  1635. </days>
  1636. <quarters>
  1637. <alias source="locale" path="../../calendar[@type='islamic']/quarters"/>
  1638. </quarters>
  1639. <dayPeriods>
  1640. <alias source="locale" path="../../calendar[@type='islamic']/dayPeriods"/>
  1641. </dayPeriods>
  1642. <eras>
  1643. <alias source="locale" path="../../calendar[@type='islamic']/eras"/>
  1644. </eras>
  1645. <dateFormats>
  1646. <alias source="locale" path="../../calendar[@type='islamic']/dateFormats"/>
  1647. </dateFormats>
  1648. <timeFormats>
  1649. <alias source="locale" path="../../calendar[@type='islamic']/timeFormats"/>
  1650. </timeFormats>
  1651. <dateTimeFormats>
  1652. <alias source="locale" path="../../calendar[@type='islamic']/dateTimeFormats"/>
  1653. </dateTimeFormats>
  1654. </calendar>
  1655. <calendar type="islamic-umalqura">
  1656. <months>
  1657. <alias source="locale" path="../../calendar[@type='islamic']/months"/>
  1658. </months>
  1659. <days>
  1660. <alias source="locale" path="../../calendar[@type='islamic']/days"/>
  1661. </days>
  1662. <quarters>
  1663. <alias source="locale" path="../../calendar[@type='islamic']/quarters"/>
  1664. </quarters>
  1665. <dayPeriods>
  1666. <alias source="locale" path="../../calendar[@type='islamic']/dayPeriods"/>
  1667. </dayPeriods>
  1668. <eras>
  1669. <alias source="locale" path="../../calendar[@type='islamic']/eras"/>
  1670. </eras>
  1671. <dateFormats>
  1672. <alias source="locale" path="../../calendar[@type='islamic']/dateFormats"/>
  1673. </dateFormats>
  1674. <timeFormats>
  1675. <alias source="locale" path="../../calendar[@type='islamic']/timeFormats"/>
  1676. </timeFormats>
  1677. <dateTimeFormats>
  1678. <alias source="locale" path="../../calendar[@type='islamic']/dateTimeFormats"/>
  1679. </dateTimeFormats>
  1680. </calendar>
  1681. <calendar type="japanese">
  1682. <months>
  1683. <alias source="locale" path="../../calendar[@type='gregorian']/months"/>
  1684. </months>
  1685. <days>
  1686. <alias source="locale" path="../../calendar[@type='gregorian']/days"/>
  1687. </days>
  1688. <quarters>
  1689. <alias source="locale" path="../../calendar[@type='gregorian']/quarters"/>
  1690. </quarters>
  1691. <dayPeriods>
  1692. <alias source="locale" path="../../calendar[@type='gregorian']/dayPeriods"/>
  1693. </dayPeriods>
  1694. <eras>
  1695. <eraNames>
  1696. <alias source="locale" path="../eraAbbr"/>
  1697. </eraNames>
  1698. <eraAbbr>
  1699. <!-- These eras are numbered according to the data used
  1700. by the ICU Japanese Calendar.
  1701. search for 'ERAS ='
  1702. -->
  1703. <era type="0">Taika (645-650)</era>
  1704. <era type="1">Hakuchi (650-671)</era>
  1705. <era type="2">Hakuhō (672-686)</era>
  1706. <era type="3">Shuchō (686-701)</era>
  1707. <era type="4">Taihō (701-704)</era>
  1708. <era type="5">Keiun (704-708)</era>
  1709. <era type="6">Wadō (708-715)</era>
  1710. <era type="7">Reiki (715-717)</era>
  1711. <era type="8">Yōrō (717-724)</era>
  1712. <era type="9">Jinki (724-729)</era>
  1713. <era type="10">Tempyō (729-749)</era>
  1714. <era type="11">Tempyō-kampō (749-749)</era>
  1715. <era type="12">Tempyō-shōhō (749-757)</era>
  1716. <era type="13">Tempyō-hōji (757-765)</era>
  1717. <era type="14">Temphō-jingo (765-767)</era>
  1718. <era type="15">Jingo-keiun (767-770)</era>
  1719. <era type="16">Hōki (770-780)</era>
  1720. <era type="17">Ten-ō (781-782)</era>
  1721. <era type="18">Enryaku (782-806)</era>
  1722. <era type="19">Daidō (806-810)</era>
  1723. <era type="20">Kōnin (810-824)</era>
  1724. <era type="21">Tenchō (824-834)</era>
  1725. <era type="22">Jōwa (834-848)</era>
  1726. <era type="23">Kajō (848-851)</era>
  1727. <era type="24">Ninju (851-854)</era>
  1728. <era type="25">Saiko (854-857)</era>
  1729. <era type="26">Tennan (857-859)</era>
  1730. <era type="27">Jōgan (859-877)</era>
  1731. <era type="28">Genkei (877-885)</era>
  1732. <era type="29">Ninna (885-889)</era>
  1733. <era type="30">Kampyō (889-898)</era>
  1734. <era type="31">Shōtai (898-901)</era>
  1735. <era type="32">Engi (901-923)</era>
  1736. <era type="33">Enchō (923-931)</era>
  1737. <era type="34">Shōhei (931-938)</era>
  1738. <era type="35">Tengyō (938-947)</era>
  1739. <era type="36">Tenryaku (947-957)</era>
  1740. <era type="37">Tentoku (957-961)</era>
  1741. <era type="38">Ōwa (961-964)</era>
  1742. <era type="39">Kōhō (964-968)</era>
  1743. <era type="40">Anna (968-970)</era>
  1744. <era type="41">Tenroku (970-973)</era>
  1745. <era type="42">Ten-en (973-976)</era>
  1746. <era type="43">Jōgen (976-978)</era>
  1747. <era type="44">Tengen (978-983)</era>
  1748. <era type="45">Eikan (983-985)</era>
  1749. <era type="46">Kanna (985-987)</era>
  1750. <era type="47">Ei-en (987-989)</era>
  1751. <era type="48">Eiso (989-990)</era>
  1752. <era type="49">Shōryaku (990-995)</era>
  1753. <era type="50">Chōtoku (995-999)</era>
  1754. <era type="51">Chōhō (999-1004)</era>
  1755. <era type="52">Kankō (1004-1012)</era>
  1756. <era type="53">Chōwa (1012-1017)</era>
  1757. <era type="54">Kannin (1017-1021)</era>
  1758. <era type="55">Jian (1021-1024)</era>
  1759. <era type="56">Manju (1024-1028)</era>
  1760. <era type="57">Chōgen (1028-1037)</era>
  1761. <era type="58">Chōryaku (1037-1040)</era>
  1762. <era type="59">Chōkyū (1040-1044)</era>
  1763. <era type="60">Kantoku (1044-1046)</era>
  1764. <era type="61">Eishō (1046-1053)</era>
  1765. <era type="62">Tengi (1053-1058)</era>
  1766. <era type="63">Kōhei (1058-1065)</era>
  1767. <era type="64">Jiryaku (1065-1069)</era>
  1768. <era type="65">Enkyū (1069-1074)</era>
  1769. <era type="66">Shōho (1074-1077)</era>
  1770. <era type="67">Shōryaku (1077-1081)</era>
  1771. <era type="68">Eiho (1081-1084)</era>
  1772. <era type="69">Ōtoku (1084-1087)</era>
  1773. <era type="70">Kanji (1087-1094)</era>
  1774. <era type="71">Kaho (1094-1096)</era>
  1775. <era type="72">Eichō (1096-1097)</era>
  1776. <era type="73">Shōtoku (1097-1099)</era>
  1777. <era type="74">Kōwa (1099-1104)</era>
  1778. <era type="75">Chōji (1104-1106)</era>
  1779. <era type="76">Kashō (1106-1108)</era>
  1780. <era type="77">Tennin (1108-1110)</era>
  1781. <era type="78">Ten-ei (1110-1113)</era>
  1782. <era type="79">Eikyū (1113-1118)</era>
  1783. <era type="80">Gen-ei (1118-1120)</era>
  1784. <era type="81">Hoan (1120-1124)</era>
  1785. <era type="82">Tenji (1124-1126)</era>
  1786. <era type="83">Daiji (1126-1131)</era>
  1787. <era type="84">Tenshō (1131-1132)</era>
  1788. <era type="85">Chōshō (1132-1135)</era>
  1789. <era type="86">Hoen (1135-1141)</era>
  1790. <era type="87">Eiji (1141-1142)</era>
  1791. <era type="88">Kōji (1142-1144)</era>
  1792. <era type="89">Tenyō (1144-1145)</era>
  1793. <era type="90">Kyūan (1145-1151)</era>
  1794. <era type="91">Ninpei (1151-1154)</era>
  1795. <era type="92">Kyūju (1154-1156)</era>
  1796. <era type="93">Hogen (1156-1159)</era>
  1797. <era type="94">Heiji (1159-1160)</era>
  1798. <era type="95">Eiryaku (1160-1161)</era>
  1799. <era type="96">Ōho (1161-1163)</era>
  1800. <era type="97">Chōkan (1163-1165)</era>
  1801. <era type="98">Eiman (1165-1166)</era>
  1802. <era type="99">Nin-an (1166-1169)</era>
  1803. <era type="100">Kaō (1169-1171)</era>
  1804. <era type="101">Shōan (1171-1175)</era>
  1805. <era type="102">Angen (1175-1177)</era>
  1806. <era type="103">Jishō (1177-1181)</era>
  1807. <era type="104">Yōwa (1181-1182)</era>
  1808. <era type="105">Juei (1182-1184)</era>
  1809. <era type="106">Genryuku (1184-1185)</era>
  1810. <era type="107">Bunji (1185-1190)</era>
  1811. <era type="108">Kenkyū (1190-1199)</era>
  1812. <era type="109">Shōji (1199-1201)</era>
  1813. <era type="110">Kennin (1201-1204)</era>
  1814. <era type="111">Genkyū (1204-1206)</era>
  1815. <era type="112">Ken-ei (1206-1207)</era>
  1816. <era type="113">Shōgen (1207-1211)</era>
  1817. <era type="114">Kenryaku (1211-1213)</era>
  1818. <era type="115">Kenpō (1213-1219)</era>
  1819. <era type="116">Shōkyū (1219-1222)</era>
  1820. <era type="117">Jōō (1222-1224)</era>
  1821. <era type="118">Gennin (1224-1225)</era>
  1822. <era type="119">Karoku (1225-1227)</era>
  1823. <era type="120">Antei (1227-1229)</era>
  1824. <era type="121">Kanki (1229-1232)</era>
  1825. <era type="122">Jōei (1232-1233)</era>
  1826. <era type="123">Tempuku (1233-1234)</era>
  1827. <era type="124">Bunryaku (1234-1235)</era>
  1828. <era type="125">Katei (1235-1238)</era>
  1829. <era type="126">Ryakunin (1238-1239)</era>
  1830. <era type="127">En-ō (1239-1240)</era>
  1831. <era type="128">Ninji (1240-1243)</era>
  1832. <era type="129">Kangen (1243-1247)</era>
  1833. <era type="130">Hōji (1247-1249)</era>
  1834. <era type="131">Kenchō (1249-1256)</era>
  1835. <era type="132">Kōgen (1256-1257)</era>
  1836. <era type="133">Shōka (1257-1259)</era>
  1837. <era type="134">Shōgen (1259-1260)</era>
  1838. <era type="135">Bun-ō (1260-1261)</era>
  1839. <era type="136">Kōchō (1261-1264)</era>
  1840. <era type="137">Bun-ei (1264-1275)</era>
  1841. <era type="138">Kenji (1275-1278)</era>
  1842. <era type="139">Kōan (1278-1288)</era>
  1843. <era type="140">Shōō (1288-1293)</era>
  1844. <era type="141">Einin (1293-1299)</era>
  1845. <era type="142">Shōan (1299-1302)</era>
  1846. <era type="143">Kengen (1302-1303)</era>
  1847. <era type="144">Kagen (1303-1306)</era>
  1848. <era type="145">Tokuji (1306-1308)</era>
  1849. <era type="146">Enkei (1308-1311)</era>
  1850. <era type="147">Ōchō (1311-1312)</era>
  1851. <era type="148">Shōwa (1312-1317)</era>
  1852. <era type="149">Bunpō (1317-1319)</era>
  1853. <era type="150">Genō (1319-1321)</era>
  1854. <era type="151">Genkyō (1321-1324)</era>
  1855. <era type="152">Shōchū (1324-1326)</era>
  1856. <era type="153">Kareki (1326-1329)</era>
  1857. <era type="154">Gentoku (1329-1331)</era>
  1858. <era type="155">Genkō (1331-1334)</era>
  1859. <era type="156">Kemmu (1334-1336)</era>
  1860. <era type="157">Engen (1336-1340)</era>
  1861. <era type="158">Kōkoku (1340-1346)</era>
  1862. <era type="159">Shōhei (1346-1370)</era>
  1863. <era type="160">Kentoku (1370-1372)</era>
  1864. <era type="161">Bunchū (1372-1375)</era>
  1865. <era type="162">Tenju (1375-1379)</era>
  1866. <era type="163">Kōryaku (1379-1381)</era>
  1867. <era type="164">Kōwa (1381-1384)</era>
  1868. <era type="165">Genchū (1384-1392)</era>
  1869. <era type="166">Meitoku (1384-1387)</era>
  1870. <era type="167">Kakei (1387-1389)</era>
  1871. <era type="168">Kōō (1389-1390)</era>
  1872. <era type="169">Meitoku (1390-1394)</era>
  1873. <era type="170">Ōei (1394-1428)</era>
  1874. <era type="171">Shōchō (1428-1429)</era>
  1875. <era type="172">Eikyō (1429-1441)</era>
  1876. <era type="173">Kakitsu (1441-1444)</era>
  1877. <era type="174">Bun-an (1444-1449)</era>
  1878. <era type="175">Hōtoku (1449-1452)</era>
  1879. <era type="176">Kyōtoku (1452-1455)</era>
  1880. <era type="177">Kōshō (1455-1457)</era>
  1881. <era type="178">Chōroku (1457-1460)</era>
  1882. <era type="179">Kanshō (1460-1466)</era>
  1883. <era type="180">Bunshō (1466-1467)</era>
  1884. <era type="181">Ōnin (1467-1469)</era>
  1885. <era type="182">Bunmei (1469-1487)</era>
  1886. <era type="183">Chōkyō (1487-1489)</era>
  1887. <era type="184">Entoku (1489-1492)</era>
  1888. <era type="185">Meiō (1492-1501)</era>
  1889. <era type="186">Bunki (1501-1504)</era>
  1890. <era type="187">Eishō (1504-1521)</era>
  1891. <era type="188">Taiei (1521-1528)</era>
  1892. <era type="189">Kyōroku (1528-1532)</era>
  1893. <era type="190">Tenmon (1532-1555)</era>
  1894. <era type="191">Kōji (1555-1558)</era>
  1895. <era type="192">Eiroku (1558-1570)</era>
  1896. <era type="193">Genki (1570-1573)</era>
  1897. <era type="194">Tenshō (1573-1592)</era>
  1898. <era type="195">Bunroku (1592-1596)</era>
  1899. <era type="196">Keichō (1596-1615)</era>
  1900. <era type="197">Genwa (1615-1624)</era>
  1901. <era type="198">Kan-ei (1624-1644)</era>
  1902. <era type="199">Shōho (1644-1648)</era>
  1903. <era type="200">Keian (1648-1652)</era>
  1904. <era type="201">Shōō (1652-1655)</era>
  1905. <era type="202">Meiryaku (1655-1658)</era>
  1906. <era type="203">Manji (1658-1661)</era>
  1907. <era type="204">Kanbun (1661-1673)</era>
  1908. <era type="205">Enpō (1673-1681)</era>
  1909. <era type="206">Tenwa (1681-1684)</era>
  1910. <era type="207">Jōkyō (1684-1688)</era>
  1911. <era type="208">Genroku (1688-1704)</era>
  1912. <era type="209">Hōei (1704-1711)</era>
  1913. <era type="210">Shōtoku (1711-1716)</era>
  1914. <era type="211">Kyōhō (1716-1736)</era>
  1915. <era type="212">Genbun (1736-1741)</era>
  1916. <era type="213">Kanpō (1741-1744)</era>
  1917. <era type="214">Enkyō (1744-1748)</era>
  1918. <era type="215">Kan-en (1748-1751)</era>
  1919. <era type="216">Hōryaku (1751-1764)</era>
  1920. <era type="217">Meiwa (1764-1772)</era>
  1921. <era type="218">An-ei (1772-1781)</era>
  1922. <era type="219">Tenmei (1781-1789)</era>
  1923. <era type="220">Kansei (1789-1801)</era>
  1924. <era type="221">Kyōwa (1801-1804)</era>
  1925. <era type="222">Bunka (1804-1818)</era>
  1926. <era type="223">Bunsei (1818-1830)</era>
  1927. <era type="224">Tenpō (1830-1844)</era>
  1928. <era type="225">Kōka (1844-1848)</era>
  1929. <era type="226">Kaei (1848-1854)</era>
  1930. <era type="227">Ansei (1854-1860)</era>
  1931. <era type="228">Man-en (1860-1861)</era>
  1932. <era type="229">Bunkyū (1861-1864)</era>
  1933. <era type="230">Genji (1864-1865)</era>
  1934. <era type="231">Keiō (1865-1868)</era>
  1935. <era type="232">Meiji</era>
  1936. <era type="233">Taishō</era>
  1937. <era type="234">Shōwa</era>
  1938. <era type="235">Heisei</era>
  1939. </eraAbbr>
  1940. <eraNarrow>
  1941. <era type="0">Taika (645-650)</era>
  1942. <era type="1">Hakuchi (650-671)</era>
  1943. <era type="2">Hakuhō (672-686)</era>
  1944. <era type="3">Shuchō (686-701)</era>
  1945. <era type="4">Taihō (701-704)</era>
  1946. <era type="5">Keiun (704-708)</era>
  1947. <era type="6">Wadō (708-715)</era>
  1948. <era type="7">Reiki (715-717)</era>
  1949. <era type="8">Yōrō (717-724)</era>
  1950. <era type="9">Jinki (724-729)</era>
  1951. <era type="10">Tempyō (729-749)</era>
  1952. <era type="11">Tempyō-kampō (749-749)</era>
  1953. <era type="12">Tempyō-shōhō (749-757)</era>
  1954. <era type="13">Tempyō-hōji (757-765)</era>
  1955. <era type="14">Temphō-jingo (765-767)</era>
  1956. <era type="15">Jingo-keiun (767-770)</era>
  1957. <era type="16">Hōki (770-780)</era>
  1958. <era type="17">Ten-ō (781-782)</era>
  1959. <era type="18">Enryaku (782-806)</era>
  1960. <era type="19">Daidō (806-810)</era>
  1961. <era type="20">Kōnin (810-824)</era>
  1962. <era type="21">Tenchō (824-834)</era>
  1963. <era type="22">Jōwa (834-848)</era>
  1964. <era type="23">Kajō (848-851)</era>
  1965. <era type="24">Ninju (851-854)</era>
  1966. <era type="25">Saiko (854-857)</era>
  1967. <era type="26">Tennan (857-859)</era>
  1968. <era type="27">Jōgan (859-877)</era>
  1969. <era type="28">Genkei (877-885)</era>
  1970. <era type="29">Ninna (885-889)</era>
  1971. <era type="30">Kampyō (889-898)</era>
  1972. <era type="31">Shōtai (898-901)</era>
  1973. <era type="32">Engi (901-923)</era>
  1974. <era type="33">Enchō (923-931)</era>
  1975. <era type="34">Shōhei (931-938)</era>
  1976. <era type="35">Tengyō (938-947)</era>
  1977. <era type="36">Tenryaku (947-957)</era>
  1978. <era type="37">Tentoku (957-961)</era>
  1979. <era type="38">Ōwa (961-964)</era>
  1980. <era type="39">Kōhō (964-968)</era>
  1981. <era type="40">Anna (968-970)</era>
  1982. <era type="41">Tenroku (970-973)</era>
  1983. <era type="42">Ten-en (973-976)</era>
  1984. <era type="43">Jōgen (976-978)</era>
  1985. <era type="44">Tengen (978-983)</era>
  1986. <era type="45">Eikan (983-985)</era>
  1987. <era type="46">Kanna (985-987)</era>
  1988. <era type="47">Ei-en (987-989)</era>
  1989. <era type="48">Eiso (989-990)</era>
  1990. <era type="49">Shōryaku (990-995)</era>
  1991. <era type="50">Chōtoku (995-999)</era>
  1992. <era type="51">Chōhō (999-1004)</era>
  1993. <era type="52">Kankō (1004-1012)</era>
  1994. <era type="53">Chōwa (1012-1017)</era>
  1995. <era type="54">Kannin (1017-1021)</era>
  1996. <era type="55">Jian (1021-1024)</era>
  1997. <era type="56">Manju (1024-1028)</era>
  1998. <era type="57">Chōgen (1028-1037)</era>
  1999. <era type="58">Chōryaku (1037-1040)</era>
  2000. <era type="59">Chōkyū (1040-1044)</era>
  2001. <era type="60">Kantoku (1044-1046)</era>
  2002. <era type="61">Eishō (1046-1053)</era>
  2003. <era type="62">Tengi (1053-1058)</era>
  2004. <era type="63">Kōhei (1058-1065)</era>
  2005. <era type="64">Jiryaku (1065-1069)</era>
  2006. <era type="65">Enkyū (1069-1074)</era>
  2007. <era type="66">Shōho (1074-1077)</era>
  2008. <era type="67">Shōryaku (1077-1081)</era>
  2009. <era type="68">Eiho (1081-1084)</era>
  2010. <era type="69">Ōtoku (1084-1087)</era>
  2011. <era type="70">Kanji (1087-1094)</era>
  2012. <era type="71">Kaho (1094-1096)</era>
  2013. <era type="72">Eichō (1096-1097)</era>
  2014. <era type="73">Shōtoku (1097-1099)</era>
  2015. <era type="74">Kōwa (1099-1104)</era>
  2016. <era type="75">Chōji (1104-1106)</era>
  2017. <era type="76">Kashō (1106-1108)</era>
  2018. <era type="77">Tennin (1108-1110)</era>
  2019. <era type="78">Ten-ei (1110-1113)</era>
  2020. <era type="79">Eikyū (1113-1118)</era>
  2021. <era type="80">Gen-ei (1118-1120)</era>
  2022. <era type="81">Hoan (1120-1124)</era>
  2023. <era type="82">Tenji (1124-1126)</era>
  2024. <era type="83">Daiji (1126-1131)</era>
  2025. <era type="84">Tenshō (1131-1132)</era>
  2026. <era type="85">Chōshō (1132-1135)</era>
  2027. <era type="86">Hoen (1135-1141)</era>
  2028. <era type="87">Eiji (1141-1142)</era>
  2029. <era type="88">Kōji (1142-1144)</era>
  2030. <era type="89">Tenyō (1144-1145)</era>
  2031. <era type="90">Kyūan (1145-1151)</era>
  2032. <era type="91">Ninpei (1151-1154)</era>
  2033. <era type="92">Kyūju (1154-1156)</era>
  2034. <era type="93">Hogen (1156-1159)</era>
  2035. <era type="94">Heiji (1159-1160)</era>
  2036. <era type="95">Eiryaku (1160-1161)</era>
  2037. <era type="96">Ōho (1161-1163)</era>
  2038. <era type="97">Chōkan (1163-1165)</era>
  2039. <era type="98">Eiman (1165-1166)</era>
  2040. <era type="99">Nin-an (1166-1169)</era>
  2041. <era type="100">Kaō (1169-1171)</era>
  2042. <era type="101">Shōan (1171-1175)</era>
  2043. <era type="102">Angen (1175-1177)</era>
  2044. <era type="103">Jishō (1177-1181)</era>
  2045. <era type="104">Yōwa (1181-1182)</era>
  2046. <era type="105">Juei (1182-1184)</era>
  2047. <era type="106">Genryuku (1184-1185)</era>
  2048. <era type="107">Bunji (1185-1190)</era>
  2049. <era type="108">Kenkyū (1190-1199)</era>
  2050. <era type="109">Shōji (1199-1201)</era>
  2051. <era type="110">Kennin (1201-1204)</era>
  2052. <era type="111">Genkyū (1204-1206)</era>
  2053. <era type="112">Ken-ei (1206-1207)</era>
  2054. <era type="113">Shōgen (1207-1211)</era>
  2055. <era type="114">Kenryaku (1211-1213)</era>
  2056. <era type="115">Kenpō (1213-1219)</era>
  2057. <era type="116">Shōkyū (1219-1222)</era>
  2058. <era type="117">Jōō (1222-1224)</era>
  2059. <era type="118">Gennin (1224-1225)</era>
  2060. <era type="119">Karoku (1225-1227)</era>
  2061. <era type="120">Antei (1227-1229)</era>
  2062. <era type="121">Kanki (1229-1232)</era>
  2063. <era type="122">Jōei (1232-1233)</era>
  2064. <era type="123">Tempuku (1233-1234)</era>
  2065. <era type="124">Bunryaku (1234-1235)</era>
  2066. <era type="125">Katei (1235-1238)</era>
  2067. <era type="126">Ryakunin (1238-1239)</era>
  2068. <era type="127">En-ō (1239-1240)</era>
  2069. <era type="128">Ninji (1240-1243)</era>
  2070. <era type="129">Kangen (1243-1247)</era>
  2071. <era type="130">Hōji (1247-1249)</era>
  2072. <era type="131">Kenchō (1249-1256)</era>
  2073. <era type="132">Kōgen (1256-1257)</era>
  2074. <era type="133">Shōka (1257-1259)</era>
  2075. <era type="134">Shōgen (1259-1260)</era>
  2076. <era type="135">Bun-ō (1260-1261)</era>
  2077. <era type="136">Kōchō (1261-1264)</era>
  2078. <era type="137">Bun-ei (1264-1275)</era>
  2079. <era type="138">Kenji (1275-1278)</era>
  2080. <era type="139">Kōan (1278-1288)</era>
  2081. <era type="140">Shōō (1288-1293)</era>
  2082. <era type="141">Einin (1293-1299)</era>
  2083. <era type="142">Shōan (1299-1302)</era>
  2084. <era type="143">Kengen (1302-1303)</era>
  2085. <era type="144">Kagen (1303-1306)</era>
  2086. <era type="145">Tokuji (1306-1308)</era>
  2087. <era type="146">Enkei (1308-1311)</era>
  2088. <era type="147">Ōchō (1311-1312)</era>
  2089. <era type="148">Shōwa (1312-1317)</era>
  2090. <era type="149">Bunpō (1317-1319)</era>
  2091. <era type="150">Genō (1319-1321)</era>
  2092. <era type="151">Genkyō (1321-1324)</era>
  2093. <era type="152">Shōchū (1324-1326)</era>
  2094. <era type="153">Kareki (1326-1329)</era>
  2095. <era type="154">Gentoku (1329-1331)</era>
  2096. <era type="155">Genkō (1331-1334)</era>
  2097. <era type="156">Kemmu (1334-1336)</era>
  2098. <era type="157">Engen (1336-1340)</era>
  2099. <era type="158">Kōkoku (1340-1346)</era>
  2100. <era type="159">Shōhei (1346-1370)</era>
  2101. <era type="160">Kentoku (1370-1372)</era>
  2102. <era type="161">Bunchũ (1372-1375)</era>
  2103. <era type="162">Tenju (1375-1379)</era>
  2104. <era type="163">Kōryaku (1379-1381)</era>
  2105. <era type="164">Kōwa (1381-1384)</era>
  2106. <era type="165">Genchũ (1384-1392)</era>
  2107. <era type="166">Meitoku (1384-1387)</era>
  2108. <era type="167">Kakei (1387-1389)</era>
  2109. <era type="168">Kōō (1389-1390)</era>
  2110. <era type="169">Meitoku (1390-1394)</era>
  2111. <era type="170">Ōei (1394-1428)</era>
  2112. <era type="171">Shōchō (1428-1429)</era>
  2113. <era type="172">Eikyō (1429-1441)</era>
  2114. <era type="173">Kakitsu (1441-1444)</era>
  2115. <era type="174">Bun-an (1444-1449)</era>
  2116. <era type="175">Hōtoku (1449-1452)</era>
  2117. <era type="176">Kyōtoku (1452-1455)</era>
  2118. <era type="177">Kōshō (1455-1457)</era>
  2119. <era type="178">Chōroku (1457-1460)</era>
  2120. <era type="179">Kanshō (1460-1466)</era>
  2121. <era type="180">Bunshō (1466-1467)</era>
  2122. <era type="181">Ōnin (1467-1469)</era>
  2123. <era type="182">Bunmei (1469-1487)</era>
  2124. <era type="183">Chōkyō (1487-1489)</era>
  2125. <era type="184">Entoku (1489-1492)</era>
  2126. <era type="185">Meiō (1492-1501)</era>
  2127. <era type="186">Bunki (1501-1504)</era>
  2128. <era type="187">Eishō (1504-1521)</era>
  2129. <era type="188">Taiei (1521-1528)</era>
  2130. <era type="189">Kyōroku (1528-1532)</era>
  2131. <era type="190">Tenmon (1532-1555)</era>
  2132. <era type="191">Kōji (1555-1558)</era>
  2133. <era type="192">Eiroku (1558-1570)</era>
  2134. <era type="193">Genki (1570-1573)</era>
  2135. <era type="194">Tenshō (1573-1592)</era>
  2136. <era type="195">Bunroku (1592-1596)</era>
  2137. <era type="196">Keichō (1596-1615)</era>
  2138. <era type="197">Genwa (1615-1624)</era>
  2139. <era type="198">Kan-ei (1624-1644)</era>
  2140. <era type="199">Shōho (1644-1648)</era>
  2141. <era type="200">Keian (1648-1652)</era>
  2142. <era type="201">Shōō (1652-1655)</era>
  2143. <era type="202">Meiryaku (1655-1658)</era>
  2144. <era type="203">Manji (1658-1661)</era>
  2145. <era type="204">Kanbun (1661-1673)</era>
  2146. <era type="205">Enpō (1673-1681)</era>
  2147. <era type="206">Tenwa (1681-1684)</era>
  2148. <era type="207">Jōkyō (1684-1688)</era>
  2149. <era type="208">Genroku (1688-1704)</era>
  2150. <era type="209">Hōei (1704-1711)</era>
  2151. <era type="210">Shōtoku (1711-1716)</era>
  2152. <era type="211">Kyōhō (1716-1736)</era>
  2153. <era type="212">Genbun (1736-1741)</era>
  2154. <era type="213">Kanpō (1741-1744)</era>
  2155. <era type="214">Enkyō (1744-1748)</era>
  2156. <era type="215">Kan-en (1748-1751)</era>
  2157. <era type="216">Hōryaku (1751-1764)</era>
  2158. <era type="217">Meiwa (1764-1772)</era>
  2159. <era type="218">An-ei (1772-1781)</era>
  2160. <era type="219">Tenmei (1781-1789)</era>
  2161. <era type="220">Kansei (1789-1801)</era>
  2162. <era type="221">Kyōwa (1801-1804)</era>
  2163. <era type="222">Bunka (1804-1818)</era>
  2164. <era type="223">Bunsei (1818-1830)</era>
  2165. <era type="224">Tenpō (1830-1844)</era>
  2166. <era type="225">Kōka (1844-1848)</era>
  2167. <era type="226">Kaei (1848-1854)</era>
  2168. <era type="227">Ansei (1854-1860)</era>
  2169. <era type="228">Man-en (1860-1861)</era>
  2170. <era type="229">Bunkyū (1861-1864)</era>
  2171. <era type="230">Genji (1864-1865)</era>
  2172. <era type="231">Keiō (1865-1868)</era>
  2173. <era type="232">M</era>
  2174. <era type="233">T</era>
  2175. <era type="234">S</era>
  2176. <era type="235">H</era>
  2177. </eraNarrow>
  2178. </eras>
  2179. <dateFormats>
  2180. <alias source="locale" path="../../calendar[@type='generic']/dateFormats"/>
  2181. </dateFormats>
  2182. <timeFormats>
  2183. <alias source="locale" path="../../calendar[@type='gregorian']/timeFormats"/>
  2184. </timeFormats>
  2185. <dateTimeFormats>
  2186. <alias source="locale" path="../../calendar[@type='generic']/dateTimeFormats"/>
  2187. </dateTimeFormats>
  2188. </calendar>
  2189. <calendar type="persian">
  2190. <months>
  2191. <monthContext type="format">
  2192. <monthWidth type="abbreviated">
  2193. <alias source="locale" path="../monthWidth[@type='wide']"/>
  2194. </monthWidth>
  2195. <monthWidth type="narrow">
  2196. <alias source="locale" path="../../monthContext[@type='stand-alone']/monthWidth[@type='narrow']"/>
  2197. </monthWidth>
  2198. <monthWidth type="wide">
  2199. <month type="1">Farvardin</month>
  2200. <month type="2">Ordibehesht</month>
  2201. <month type="3">Khordad</month>
  2202. <month type="4">Tir</month>
  2203. <month type="5">Mordad</month>
  2204. <month type="6">Shahrivar</month>
  2205. <month type="7">Mehr</month>
  2206. <month type="8">Aban</month>
  2207. <month type="9">Azar</month>
  2208. <month type="10">Dey</month>
  2209. <month type="11">Bahman</month>
  2210. <month type="12">Esfand</month>
  2211. </monthWidth>
  2212. </monthContext>
  2213. <monthContext type="stand-alone">
  2214. <monthWidth type="abbreviated">
  2215. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='abbreviated']"/>
  2216. </monthWidth>
  2217. <monthWidth type="narrow">
  2218. <month type="1">1</month>
  2219. <month type="2">2</month>
  2220. <month type="3">3</month>
  2221. <month type="4">4</month>
  2222. <month type="5">5</month>
  2223. <month type="6">6</month>
  2224. <month type="7">7</month>
  2225. <month type="8">8</month>
  2226. <month type="9">9</month>
  2227. <month type="10">10</month>
  2228. <month type="11">11</month>
  2229. <month type="12">12</month>
  2230. </monthWidth>
  2231. <monthWidth type="wide">
  2232. <alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='wide']"/>
  2233. </monthWidth>
  2234. </monthContext>
  2235. </months>
  2236. <days>
  2237. <alias source="locale" path="../../calendar[@type='gregorian']/days"/>
  2238. </days>
  2239. <quarters>
  2240. <alias source="locale" path="../../calendar[@type='gregorian']/quarters"/>
  2241. </quarters>
  2242. <dayPeriods>
  2243. <alias source="locale" path="../../calendar[@type='gregorian']/dayPeriods"/>
  2244. </dayPeriods>
  2245. <eras>
  2246. <eraNames>
  2247. <alias source="locale" path="../eraAbbr"/>
  2248. </eraNames>
  2249. <eraAbbr>
  2250. <era type="0">AP</era>
  2251. </eraAbbr>
  2252. <eraNarrow>
  2253. <alias source="locale" path="../eraAbbr"/>
  2254. </eraNarrow>
  2255. </eras>
  2256. <dateFormats>
  2257. <alias source="locale" path="../../calendar[@type='generic']/dateFormats"/>
  2258. </dateFormats>
  2259. <timeFormats>
  2260. <alias source="locale" path="../../calendar[@type='gregorian']/timeFormats"/>
  2261. </timeFormats>
  2262. <dateTimeFormats>
  2263. <alias source="locale" path="../../calendar[@type='generic']/dateTimeFormats"/>
  2264. </dateTimeFormats>
  2265. </calendar>
  2266. <calendar type="roc">
  2267. <months>
  2268. <alias source="locale" path="../../calendar[@type='gregorian']/months"/>
  2269. </months>
  2270. <days>
  2271. <alias source="locale" path="../../calendar[@type='gregorian']/days"/>
  2272. </days>
  2273. <quarters>
  2274. <alias source="locale" path="../../calendar[@type='gregorian']/quarters"/>
  2275. </quarters>
  2276. <dayPeriods>
  2277. <alias source="locale" path="../../calendar[@type='gregorian']/dayPeriods"/>
  2278. </dayPeriods>
  2279. <eras>
  2280. <eraNames>
  2281. <alias source="locale" path="../eraAbbr"/>
  2282. </eraNames>
  2283. <!-- = 1912 AD gregorian. See: http://en.wikipedia.org/wiki/Minguo_calendar -->
  2284. <eraAbbr>
  2285. <era type="0">Before R.O.C.</era>
  2286. <era type="1">R.O.C.</era>
  2287. </eraAbbr>
  2288. <eraNarrow>
  2289. <alias source="locale" path="../eraAbbr"/>
  2290. </eraNarrow>
  2291. </eras>
  2292. <dateFormats>
  2293. <alias source="locale" path="../../calendar[@type='generic']/dateFormats"/>
  2294. </dateFormats>
  2295. <timeFormats>
  2296. <alias source="locale" path="../../calendar[@type='gregorian']/timeFormats"/>
  2297. </timeFormats>
  2298. <dateTimeFormats>
  2299. <alias source="locale" path="../../calendar[@type='generic']/dateTimeFormats"/>
  2300. </dateTimeFormats>
  2301. </calendar>
  2302. </calendars>
  2303. <fields>
  2304. <field type="era">
  2305. <displayName>Era</displayName>
  2306. </field>
  2307. <field type="year">
  2308. <displayName>Year</displayName>
  2309. <relative type="-1">last year</relative>
  2310. <relative type="0">this year</relative>
  2311. <relative type="1">next year</relative>
  2312. <relativeTime type="future">
  2313. <relativeTimePattern count="other">+{0} y</relativeTimePattern>
  2314. </relativeTime>
  2315. <relativeTime type="past">
  2316. <relativeTimePattern count="other">-{0} y</relativeTimePattern>
  2317. </relativeTime>
  2318. </field>
  2319. <field type="month">
  2320. <displayName>Month</displayName>
  2321. <relative type="-1">last month</relative>
  2322. <relative type="0">this month</relative>
  2323. <relative type="1">next month</relative>
  2324. <relativeTime type="future">
  2325. <relativeTimePattern count="other">+{0} m</relativeTimePattern>
  2326. </relativeTime>
  2327. <relativeTime type="past">
  2328. <relativeTimePattern count="other">-{0} m</relativeTimePattern>
  2329. </relativeTime>
  2330. </field>
  2331. <field type="week">
  2332. <displayName>Week</displayName>
  2333. <relative type="-1">last week</relative>
  2334. <relative type="0">this week</relative>
  2335. <relative type="1">next week</relative>
  2336. <relativeTime type="future">
  2337. <relativeTimePattern count="other">+{0} w</relativeTimePattern>
  2338. </relativeTime>
  2339. <relativeTime type="past">
  2340. <relativeTimePattern count="other">-{0} w</relativeTimePattern>
  2341. </relativeTime>
  2342. </field>
  2343. <field type="day">
  2344. <displayName>Day</displayName>
  2345. <relative type="-1">yesterday</relative>
  2346. <relative type="0">today</relative>
  2347. <relative type="1">tomorrow</relative>
  2348. <relativeTime type="future">
  2349. <relativeTimePattern count="other">+{0} d</relativeTimePattern>
  2350. </relativeTime>
  2351. <relativeTime type="past">
  2352. <relativeTimePattern count="other">-{0} d</relativeTimePattern>
  2353. </relativeTime>
  2354. </field>
  2355. <field type="weekday">
  2356. <displayName>Day of the Week</displayName>
  2357. </field>
  2358. <field type="sun">
  2359. <relative type="-1">last Sunday</relative>
  2360. <relative type="0">this Sunday</relative>
  2361. <relative type="1">next Sunday</relative>
  2362. </field>
  2363. <field type="mon">
  2364. <relative type="-1">last Monday</relative>
  2365. <relative type="0">this Monday</relative>
  2366. <relative type="1">next Monday</relative>
  2367. </field>
  2368. <field type="tue">
  2369. <relative type="-1">last Tuesday</relative>
  2370. <relative type="0">this Tuesday</relative>
  2371. <relative type="1">next Tuesday</relative>
  2372. </field>
  2373. <field type="wed">
  2374. <relative type="-1">last Wednesday</relative>
  2375. <relative type="0">this Wednesday</relative>
  2376. <relative type="1">next Wednesday</relative>
  2377. </field>
  2378. <field type="thu">
  2379. <relative type="-1">last Thursday</relative>
  2380. <relative type="0">this Thursday</relative>
  2381. <relative type="1">next Thursday</relative>
  2382. </field>
  2383. <field type="fri">
  2384. <relative type="-1">last Friday</relative>
  2385. <relative type="0">this Friday</relative>
  2386. <relative type="1">next Friday</relative>
  2387. </field>
  2388. <field type="sat">
  2389. <relative type="-1">last Saturday</relative>
  2390. <relative type="0">this Saturday</relative>
  2391. <relative type="1">next Saturday</relative>
  2392. </field>
  2393. <field type="dayperiod">
  2394. <displayName>Dayperiod</displayName>
  2395. </field>
  2396. <field type="hour">
  2397. <displayName>Hour</displayName>
  2398. <relativeTime type="future">
  2399. <relativeTimePattern count="other">+{0} h</relativeTimePattern>
  2400. </relativeTime>
  2401. <relativeTime type="past">
  2402. <relativeTimePattern count="other">-{0} h</relativeTimePattern>
  2403. </relativeTime>
  2404. </field>
  2405. <field type="minute">
  2406. <displayName>Minute</displayName>
  2407. <relativeTime type="future">
  2408. <relativeTimePattern count="other">+{0} min</relativeTimePattern>
  2409. </relativeTime>
  2410. <relativeTime type="past">
  2411. <relativeTimePattern count="other">-{0} min</relativeTimePattern>
  2412. </relativeTime>
  2413. </field>
  2414. <field type="second">
  2415. <displayName>Second</displayName>
  2416. <relative type="0">now</relative>
  2417. <relativeTime type="future">
  2418. <relativeTimePattern count="other">+{0} s</relativeTimePattern>
  2419. </relativeTime>
  2420. <relativeTime type="past">
  2421. <relativeTimePattern count="other">-{0} s</relativeTimePattern>
  2422. </relativeTime>
  2423. </field>
  2424. <field type="zone">
  2425. <displayName>Zone</displayName>
  2426. </field>
  2427. </fields>
  2428. <timeZoneNames>
  2429. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  2430. <gmtFormat>GMT{0}</gmtFormat>
  2431. <gmtZeroFormat>GMT</gmtZeroFormat>
  2432. <regionFormat>{0}</regionFormat>
  2433. <regionFormat type="daylight">{0} (+1)</regionFormat>
  2434. <regionFormat type="standard">{0} (+0)</regionFormat>
  2435. <fallbackFormat>{1} ({0})</fallbackFormat>
  2436. <zone type="Etc/Unknown">
  2437. <exemplarCity>Unknown</exemplarCity>
  2438. </zone>
  2439. <zone type="Antarctica/DumontDUrville">
  2440. <exemplarCity>Dumont d’Urville</exemplarCity>
  2441. </zone>
  2442. <zone type="America/St_Barthelemy">
  2443. <exemplarCity>St. Barthelemy</exemplarCity>
  2444. </zone>
  2445. <zone type="America/Coral_Harbour">
  2446. <exemplarCity>Atikokan</exemplarCity>
  2447. </zone>
  2448. <zone type="America/St_Johns">
  2449. <exemplarCity>St. John’s</exemplarCity>
  2450. </zone>
  2451. <zone type="Africa/Asmera">
  2452. <exemplarCity>Asmara</exemplarCity>
  2453. </zone>
  2454. <zone type="Pacific/Truk">
  2455. <exemplarCity>Chuuk</exemplarCity>
  2456. </zone>
  2457. <zone type="Pacific/Ponape">
  2458. <exemplarCity>Pohnpei</exemplarCity>
  2459. </zone>
  2460. <zone type="Atlantic/Faeroe">
  2461. <exemplarCity>Faroe</exemplarCity>
  2462. </zone>
  2463. <zone type="America/Godthab">
  2464. <exemplarCity>Nuuk</exemplarCity>
  2465. </zone>
  2466. <zone type="America/Scoresbysund">
  2467. <exemplarCity>Ittoqqortoormiit</exemplarCity>
  2468. </zone>
  2469. <zone type="Asia/Calcutta">
  2470. <exemplarCity>Kolkata</exemplarCity>
  2471. </zone>
  2472. <zone type="America/St_Kitts">
  2473. <exemplarCity>St. Kitts</exemplarCity>
  2474. </zone>
  2475. <zone type="America/St_Lucia">
  2476. <exemplarCity>St. Lucia</exemplarCity>
  2477. </zone>
  2478. <zone type="Asia/Katmandu">
  2479. <exemplarCity>Kathmandu</exemplarCity>
  2480. </zone>
  2481. <zone type="Atlantic/St_Helena">
  2482. <exemplarCity>St. Helena</exemplarCity>
  2483. </zone>
  2484. <zone type="America/Lower_Princes">
  2485. <exemplarCity>Lower Prince's Quarter</exemplarCity>
  2486. </zone>
  2487. <zone type="America/North_Dakota/Beulah">
  2488. <exemplarCity>Beulah, North Dakota</exemplarCity>
  2489. </zone>
  2490. <zone type="America/North_Dakota/New_Salem">
  2491. <exemplarCity>New Salem, North Dakota</exemplarCity>
  2492. </zone>
  2493. <zone type="America/North_Dakota/Center">
  2494. <exemplarCity>Center, North Dakota</exemplarCity>
  2495. </zone>
  2496. <zone type="America/Indiana/Vincennes">
  2497. <exemplarCity>Vincennes, Indiana</exemplarCity>
  2498. </zone>
  2499. <zone type="America/Indiana/Petersburg">
  2500. <exemplarCity>Petersburg, Indiana</exemplarCity>
  2501. </zone>
  2502. <zone type="America/Indiana/Tell_City">
  2503. <exemplarCity>Tell City, Indiana</exemplarCity>
  2504. </zone>
  2505. <zone type="America/Indiana/Knox">
  2506. <exemplarCity>Knox, Indiana</exemplarCity>
  2507. </zone>
  2508. <zone type="America/Indiana/Winamac">
  2509. <exemplarCity>Winamac, Indiana</exemplarCity>
  2510. </zone>
  2511. <zone type="America/Indiana/Marengo">
  2512. <exemplarCity>Marengo, Indiana</exemplarCity>
  2513. </zone>
  2514. <zone type="America/Indiana/Vevay">
  2515. <exemplarCity>Vevay, Indiana</exemplarCity>
  2516. </zone>
  2517. <zone type="America/Kentucky/Monticello">
  2518. <exemplarCity>Monticello, Kentucky</exemplarCity>
  2519. </zone>
  2520. <zone type="America/St_Vincent">
  2521. <exemplarCity>St. Vincent</exemplarCity>
  2522. </zone>
  2523. <zone type="America/St_Thomas">
  2524. <exemplarCity>St. Thomas</exemplarCity>
  2525. </zone>
  2526. <zone type="Asia/Saigon">
  2527. <exemplarCity>Ho Chi Minh</exemplarCity>
  2528. </zone>
  2529. </timeZoneNames>
  2530. </dates>
  2531. <numbers>
  2532. <defaultNumberingSystem>latn</defaultNumberingSystem>
  2533. <otherNumberingSystems>
  2534. <native>latn</native>
  2535. </otherNumberingSystems>
  2536. <symbols>
  2537. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2538. </symbols>
  2539. <symbols numberSystem="arab">
  2540. <decimal>٫</decimal>
  2541. <group>٬</group>
  2542. <list>؛</list>
  2543. <percentSign>٪</percentSign>
  2544. <plusSign>‏+</plusSign> <!-- includes RLM before sign -->
  2545. <minusSign>‏-</minusSign> <!-- includes RLM before sign (002D) -->
  2546. <exponential>اس</exponential>
  2547. <superscriptingExponent>×</superscriptingExponent>
  2548. <perMille>؉</perMille>
  2549. <infinity>∞</infinity>
  2550. <nan>NaN</nan>
  2551. </symbols>
  2552. <symbols numberSystem="arabext">
  2553. <decimal>٫</decimal>
  2554. <group>٬</group>
  2555. <list>؛</list>
  2556. <percentSign>٪</percentSign>
  2557. <plusSign>‎+‎</plusSign> <!-- includes LRM before and after sign -->
  2558. <minusSign>‎-‎</minusSign> <!-- includes LRM before and after sign (002D) -->
  2559. <exponential>×۱۰^</exponential>
  2560. <superscriptingExponent>×</superscriptingExponent>
  2561. <perMille>؉</perMille>
  2562. <infinity>∞</infinity>
  2563. <nan>NaN</nan>
  2564. </symbols>
  2565. <symbols numberSystem="bali">
  2566. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2567. </symbols>
  2568. <symbols numberSystem="beng">
  2569. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2570. </symbols>
  2571. <symbols numberSystem="brah">
  2572. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2573. </symbols>
  2574. <symbols numberSystem="cakm">
  2575. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2576. </symbols>
  2577. <symbols numberSystem="cham">
  2578. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2579. </symbols>
  2580. <symbols numberSystem="deva">
  2581. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2582. </symbols>
  2583. <symbols numberSystem="fullwide">
  2584. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2585. </symbols>
  2586. <symbols numberSystem="gujr">
  2587. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2588. </symbols>
  2589. <symbols numberSystem="guru">
  2590. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2591. </symbols>
  2592. <symbols numberSystem="hanidec">
  2593. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2594. </symbols>
  2595. <symbols numberSystem="java">
  2596. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2597. </symbols>
  2598. <symbols numberSystem="kali">
  2599. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2600. </symbols>
  2601. <symbols numberSystem="khmr">
  2602. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2603. </symbols>
  2604. <symbols numberSystem="knda">
  2605. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2606. </symbols>
  2607. <symbols numberSystem="lana">
  2608. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2609. </symbols>
  2610. <symbols numberSystem="lanatham">
  2611. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2612. </symbols>
  2613. <symbols numberSystem="laoo">
  2614. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2615. </symbols>
  2616. <symbols numberSystem="latn">
  2617. <decimal>.</decimal>
  2618. <group>,</group>
  2619. <list>;</list>
  2620. <percentSign>%</percentSign>
  2621. <plusSign>+</plusSign>
  2622. <minusSign>-</minusSign>
  2623. <exponential>E</exponential>
  2624. <superscriptingExponent>×</superscriptingExponent>
  2625. <perMille>‰</perMille>
  2626. <infinity>∞</infinity>
  2627. <nan>NaN</nan>
  2628. </symbols>
  2629. <symbols numberSystem="lepc">
  2630. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2631. </symbols>
  2632. <symbols numberSystem="limb">
  2633. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2634. </symbols>
  2635. <symbols numberSystem="mlym">
  2636. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2637. </symbols>
  2638. <symbols numberSystem="mong">
  2639. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2640. </symbols>
  2641. <symbols numberSystem="mtei">
  2642. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2643. </symbols>
  2644. <symbols numberSystem="mymr">
  2645. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2646. </symbols>
  2647. <symbols numberSystem="mymrshan">
  2648. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2649. </symbols>
  2650. <symbols numberSystem="nkoo">
  2651. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2652. </symbols>
  2653. <symbols numberSystem="olck">
  2654. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2655. </symbols>
  2656. <symbols numberSystem="orya">
  2657. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2658. </symbols>
  2659. <symbols numberSystem="osma">
  2660. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2661. </symbols>
  2662. <symbols numberSystem="saur">
  2663. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2664. </symbols>
  2665. <symbols numberSystem="shrd">
  2666. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2667. </symbols>
  2668. <symbols numberSystem="sora">
  2669. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2670. </symbols>
  2671. <symbols numberSystem="sund">
  2672. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2673. </symbols>
  2674. <symbols numberSystem="takr">
  2675. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2676. </symbols>
  2677. <symbols numberSystem="talu">
  2678. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2679. </symbols>
  2680. <symbols numberSystem="tamldec">
  2681. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2682. </symbols>
  2683. <symbols numberSystem="telu">
  2684. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2685. </symbols>
  2686. <symbols numberSystem="thai">
  2687. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2688. </symbols>
  2689. <symbols numberSystem="tibt">
  2690. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2691. </symbols>
  2692. <symbols numberSystem="vaii">
  2693. <alias source="locale" path="../symbols[@numberSystem='latn']"/>
  2694. </symbols>
  2695. <decimalFormats>
  2696. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2697. </decimalFormats>
  2698. <decimalFormats numberSystem="arab">
  2699. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2700. </decimalFormats>
  2701. <decimalFormats numberSystem="arabext">
  2702. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2703. </decimalFormats>
  2704. <decimalFormats numberSystem="bali">
  2705. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2706. </decimalFormats>
  2707. <decimalFormats numberSystem="beng">
  2708. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2709. </decimalFormats>
  2710. <decimalFormats numberSystem="brah">
  2711. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2712. </decimalFormats>
  2713. <decimalFormats numberSystem="cakm">
  2714. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2715. </decimalFormats>
  2716. <decimalFormats numberSystem="cham">
  2717. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2718. </decimalFormats>
  2719. <decimalFormats numberSystem="deva">
  2720. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2721. </decimalFormats>
  2722. <decimalFormats numberSystem="fullwide">
  2723. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2724. </decimalFormats>
  2725. <decimalFormats numberSystem="gujr">
  2726. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2727. </decimalFormats>
  2728. <decimalFormats numberSystem="guru">
  2729. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2730. </decimalFormats>
  2731. <decimalFormats numberSystem="hanidec">
  2732. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2733. </decimalFormats>
  2734. <decimalFormats numberSystem="java">
  2735. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2736. </decimalFormats>
  2737. <decimalFormats numberSystem="kali">
  2738. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2739. </decimalFormats>
  2740. <decimalFormats numberSystem="khmr">
  2741. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2742. </decimalFormats>
  2743. <decimalFormats numberSystem="knda">
  2744. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2745. </decimalFormats>
  2746. <decimalFormats numberSystem="lana">
  2747. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2748. </decimalFormats>
  2749. <decimalFormats numberSystem="lanatham">
  2750. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2751. </decimalFormats>
  2752. <decimalFormats numberSystem="laoo">
  2753. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2754. </decimalFormats>
  2755. <decimalFormats numberSystem="latn">
  2756. <decimalFormatLength>
  2757. <decimalFormat>
  2758. <pattern>#,##0.###</pattern>
  2759. </decimalFormat>
  2760. </decimalFormatLength>
  2761. <decimalFormatLength type="long">
  2762. <alias source="locale" path="../decimalFormatLength[@type='short']"/>
  2763. </decimalFormatLength>
  2764. <decimalFormatLength type="short">
  2765. <decimalFormat>
  2766. <pattern type="1000" count="other">0K</pattern>
  2767. <pattern type="10000" count="other">00K</pattern>
  2768. <pattern type="100000" count="other">000K</pattern>
  2769. <pattern type="1000000" count="other">0M</pattern>
  2770. <pattern type="10000000" count="other">00M</pattern>
  2771. <pattern type="100000000" count="other">000M</pattern>
  2772. <pattern type="1000000000" count="other">0G</pattern>
  2773. <pattern type="10000000000" count="other">00G</pattern>
  2774. <pattern type="100000000000" count="other">000G</pattern>
  2775. <pattern type="1000000000000" count="other">0T</pattern>
  2776. <pattern type="10000000000000" count="other">00T</pattern>
  2777. <pattern type="100000000000000" count="other">000T</pattern>
  2778. </decimalFormat>
  2779. </decimalFormatLength>
  2780. </decimalFormats>
  2781. <decimalFormats numberSystem="lepc">
  2782. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2783. </decimalFormats>
  2784. <decimalFormats numberSystem="limb">
  2785. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2786. </decimalFormats>
  2787. <decimalFormats numberSystem="mlym">
  2788. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2789. </decimalFormats>
  2790. <decimalFormats numberSystem="mong">
  2791. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2792. </decimalFormats>
  2793. <decimalFormats numberSystem="mtei">
  2794. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2795. </decimalFormats>
  2796. <decimalFormats numberSystem="mymr">
  2797. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2798. </decimalFormats>
  2799. <decimalFormats numberSystem="mymrshan">
  2800. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2801. </decimalFormats>
  2802. <decimalFormats numberSystem="nkoo">
  2803. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2804. </decimalFormats>
  2805. <decimalFormats numberSystem="olck">
  2806. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2807. </decimalFormats>
  2808. <decimalFormats numberSystem="orya">
  2809. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2810. </decimalFormats>
  2811. <decimalFormats numberSystem="osma">
  2812. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2813. </decimalFormats>
  2814. <decimalFormats numberSystem="saur">
  2815. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2816. </decimalFormats>
  2817. <decimalFormats numberSystem="shrd">
  2818. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2819. </decimalFormats>
  2820. <decimalFormats numberSystem="sora">
  2821. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2822. </decimalFormats>
  2823. <decimalFormats numberSystem="sund">
  2824. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2825. </decimalFormats>
  2826. <decimalFormats numberSystem="takr">
  2827. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2828. </decimalFormats>
  2829. <decimalFormats numberSystem="talu">
  2830. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2831. </decimalFormats>
  2832. <decimalFormats numberSystem="tamldec">
  2833. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2834. </decimalFormats>
  2835. <decimalFormats numberSystem="telu">
  2836. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2837. </decimalFormats>
  2838. <decimalFormats numberSystem="thai">
  2839. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2840. </decimalFormats>
  2841. <decimalFormats numberSystem="tibt">
  2842. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2843. </decimalFormats>
  2844. <decimalFormats numberSystem="vaii">
  2845. <alias source="locale" path="../decimalFormats[@numberSystem='latn']"/>
  2846. </decimalFormats>
  2847. <scientificFormats>
  2848. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2849. </scientificFormats>
  2850. <scientificFormats numberSystem="arab">
  2851. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2852. </scientificFormats>
  2853. <scientificFormats numberSystem="arabext">
  2854. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2855. </scientificFormats>
  2856. <scientificFormats numberSystem="bali">
  2857. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2858. </scientificFormats>
  2859. <scientificFormats numberSystem="beng">
  2860. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2861. </scientificFormats>
  2862. <scientificFormats numberSystem="brah">
  2863. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2864. </scientificFormats>
  2865. <scientificFormats numberSystem="cakm">
  2866. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2867. </scientificFormats>
  2868. <scientificFormats numberSystem="cham">
  2869. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2870. </scientificFormats>
  2871. <scientificFormats numberSystem="deva">
  2872. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2873. </scientificFormats>
  2874. <scientificFormats numberSystem="fullwide">
  2875. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2876. </scientificFormats>
  2877. <scientificFormats numberSystem="gujr">
  2878. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2879. </scientificFormats>
  2880. <scientificFormats numberSystem="guru">
  2881. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2882. </scientificFormats>
  2883. <scientificFormats numberSystem="hanidec">
  2884. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2885. </scientificFormats>
  2886. <scientificFormats numberSystem="java">
  2887. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2888. </scientificFormats>
  2889. <scientificFormats numberSystem="kali">
  2890. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2891. </scientificFormats>
  2892. <scientificFormats numberSystem="khmr">
  2893. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2894. </scientificFormats>
  2895. <scientificFormats numberSystem="knda">
  2896. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2897. </scientificFormats>
  2898. <scientificFormats numberSystem="lana">
  2899. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2900. </scientificFormats>
  2901. <scientificFormats numberSystem="lanatham">
  2902. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2903. </scientificFormats>
  2904. <scientificFormats numberSystem="laoo">
  2905. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2906. </scientificFormats>
  2907. <scientificFormats numberSystem="latn">
  2908. <scientificFormatLength>
  2909. <scientificFormat>
  2910. <pattern>#E0</pattern>
  2911. </scientificFormat>
  2912. </scientificFormatLength>
  2913. </scientificFormats>
  2914. <scientificFormats numberSystem="lepc">
  2915. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2916. </scientificFormats>
  2917. <scientificFormats numberSystem="limb">
  2918. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2919. </scientificFormats>
  2920. <scientificFormats numberSystem="mlym">
  2921. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2922. </scientificFormats>
  2923. <scientificFormats numberSystem="mong">
  2924. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2925. </scientificFormats>
  2926. <scientificFormats numberSystem="mtei">
  2927. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2928. </scientificFormats>
  2929. <scientificFormats numberSystem="mymr">
  2930. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2931. </scientificFormats>
  2932. <scientificFormats numberSystem="mymrshan">
  2933. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2934. </scientificFormats>
  2935. <scientificFormats numberSystem="nkoo">
  2936. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2937. </scientificFormats>
  2938. <scientificFormats numberSystem="olck">
  2939. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2940. </scientificFormats>
  2941. <scientificFormats numberSystem="orya">
  2942. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2943. </scientificFormats>
  2944. <scientificFormats numberSystem="osma">
  2945. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2946. </scientificFormats>
  2947. <scientificFormats numberSystem="saur">
  2948. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2949. </scientificFormats>
  2950. <scientificFormats numberSystem="shrd">
  2951. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2952. </scientificFormats>
  2953. <scientificFormats numberSystem="sora">
  2954. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2955. </scientificFormats>
  2956. <scientificFormats numberSystem="sund">
  2957. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2958. </scientificFormats>
  2959. <scientificFormats numberSystem="takr">
  2960. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2961. </scientificFormats>
  2962. <scientificFormats numberSystem="talu">
  2963. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2964. </scientificFormats>
  2965. <scientificFormats numberSystem="tamldec">
  2966. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2967. </scientificFormats>
  2968. <scientificFormats numberSystem="telu">
  2969. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2970. </scientificFormats>
  2971. <scientificFormats numberSystem="thai">
  2972. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2973. </scientificFormats>
  2974. <scientificFormats numberSystem="tibt">
  2975. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2976. </scientificFormats>
  2977. <scientificFormats numberSystem="vaii">
  2978. <alias source="locale" path="../scientificFormats[@numberSystem='latn']"/>
  2979. </scientificFormats>
  2980. <percentFormats>
  2981. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  2982. </percentFormats>
  2983. <percentFormats numberSystem="arab">
  2984. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  2985. </percentFormats>
  2986. <percentFormats numberSystem="arabext">
  2987. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  2988. </percentFormats>
  2989. <percentFormats numberSystem="bali">
  2990. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  2991. </percentFormats>
  2992. <percentFormats numberSystem="beng">
  2993. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  2994. </percentFormats>
  2995. <percentFormats numberSystem="brah">
  2996. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  2997. </percentFormats>
  2998. <percentFormats numberSystem="cakm">
  2999. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3000. </percentFormats>
  3001. <percentFormats numberSystem="cham">
  3002. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3003. </percentFormats>
  3004. <percentFormats numberSystem="deva">
  3005. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3006. </percentFormats>
  3007. <percentFormats numberSystem="fullwide">
  3008. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3009. </percentFormats>
  3010. <percentFormats numberSystem="gujr">
  3011. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3012. </percentFormats>
  3013. <percentFormats numberSystem="guru">
  3014. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3015. </percentFormats>
  3016. <percentFormats numberSystem="hanidec">
  3017. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3018. </percentFormats>
  3019. <percentFormats numberSystem="java">
  3020. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3021. </percentFormats>
  3022. <percentFormats numberSystem="kali">
  3023. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3024. </percentFormats>
  3025. <percentFormats numberSystem="khmr">
  3026. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3027. </percentFormats>
  3028. <percentFormats numberSystem="knda">
  3029. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3030. </percentFormats>
  3031. <percentFormats numberSystem="lana">
  3032. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3033. </percentFormats>
  3034. <percentFormats numberSystem="lanatham">
  3035. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3036. </percentFormats>
  3037. <percentFormats numberSystem="laoo">
  3038. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3039. </percentFormats>
  3040. <percentFormats numberSystem="latn">
  3041. <percentFormatLength>
  3042. <percentFormat>
  3043. <pattern>#,##0%</pattern>
  3044. </percentFormat>
  3045. </percentFormatLength>
  3046. </percentFormats>
  3047. <percentFormats numberSystem="lepc">
  3048. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3049. </percentFormats>
  3050. <percentFormats numberSystem="limb">
  3051. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3052. </percentFormats>
  3053. <percentFormats numberSystem="mlym">
  3054. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3055. </percentFormats>
  3056. <percentFormats numberSystem="mong">
  3057. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3058. </percentFormats>
  3059. <percentFormats numberSystem="mtei">
  3060. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3061. </percentFormats>
  3062. <percentFormats numberSystem="mymr">
  3063. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3064. </percentFormats>
  3065. <percentFormats numberSystem="mymrshan">
  3066. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3067. </percentFormats>
  3068. <percentFormats numberSystem="nkoo">
  3069. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3070. </percentFormats>
  3071. <percentFormats numberSystem="olck">
  3072. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3073. </percentFormats>
  3074. <percentFormats numberSystem="orya">
  3075. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3076. </percentFormats>
  3077. <percentFormats numberSystem="osma">
  3078. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3079. </percentFormats>
  3080. <percentFormats numberSystem="saur">
  3081. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3082. </percentFormats>
  3083. <percentFormats numberSystem="shrd">
  3084. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3085. </percentFormats>
  3086. <percentFormats numberSystem="sora">
  3087. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3088. </percentFormats>
  3089. <percentFormats numberSystem="sund">
  3090. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3091. </percentFormats>
  3092. <percentFormats numberSystem="takr">
  3093. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3094. </percentFormats>
  3095. <percentFormats numberSystem="talu">
  3096. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3097. </percentFormats>
  3098. <percentFormats numberSystem="tamldec">
  3099. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3100. </percentFormats>
  3101. <percentFormats numberSystem="telu">
  3102. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3103. </percentFormats>
  3104. <percentFormats numberSystem="thai">
  3105. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3106. </percentFormats>
  3107. <percentFormats numberSystem="tibt">
  3108. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3109. </percentFormats>
  3110. <percentFormats numberSystem="vaii">
  3111. <alias source="locale" path="../percentFormats[@numberSystem='latn']"/>
  3112. </percentFormats>
  3113. <currencyFormats>
  3114. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3115. </currencyFormats>
  3116. <currencyFormats numberSystem="arab">
  3117. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3118. </currencyFormats>
  3119. <currencyFormats numberSystem="arabext">
  3120. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3121. </currencyFormats>
  3122. <currencyFormats numberSystem="bali">
  3123. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3124. </currencyFormats>
  3125. <currencyFormats numberSystem="beng">
  3126. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3127. </currencyFormats>
  3128. <currencyFormats numberSystem="brah">
  3129. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3130. </currencyFormats>
  3131. <currencyFormats numberSystem="cakm">
  3132. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3133. </currencyFormats>
  3134. <currencyFormats numberSystem="cham">
  3135. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3136. </currencyFormats>
  3137. <currencyFormats numberSystem="deva">
  3138. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3139. </currencyFormats>
  3140. <currencyFormats numberSystem="fullwide">
  3141. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3142. </currencyFormats>
  3143. <currencyFormats numberSystem="gujr">
  3144. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3145. </currencyFormats>
  3146. <currencyFormats numberSystem="guru">
  3147. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3148. </currencyFormats>
  3149. <currencyFormats numberSystem="hanidec">
  3150. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3151. </currencyFormats>
  3152. <currencyFormats numberSystem="java">
  3153. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3154. </currencyFormats>
  3155. <currencyFormats numberSystem="kali">
  3156. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3157. </currencyFormats>
  3158. <currencyFormats numberSystem="khmr">
  3159. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3160. </currencyFormats>
  3161. <currencyFormats numberSystem="knda">
  3162. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3163. </currencyFormats>
  3164. <currencyFormats numberSystem="lana">
  3165. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3166. </currencyFormats>
  3167. <currencyFormats numberSystem="lanatham">
  3168. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3169. </currencyFormats>
  3170. <currencyFormats numberSystem="laoo">
  3171. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3172. </currencyFormats>
  3173. <currencyFormats numberSystem="latn">
  3174. <currencySpacing>
  3175. <beforeCurrency>
  3176. <currencyMatch>[:^S:]</currencyMatch>
  3177. <surroundingMatch>[:digit:]</surroundingMatch>
  3178. <insertBetween> </insertBetween>
  3179. </beforeCurrency>
  3180. <afterCurrency>
  3181. <currencyMatch>[:^S:]</currencyMatch>
  3182. <surroundingMatch>[:digit:]</surroundingMatch>
  3183. <insertBetween> </insertBetween>
  3184. </afterCurrency>
  3185. </currencySpacing>
  3186. <currencyFormatLength>
  3187. <currencyFormat type="standard">
  3188. <pattern>¤ #,##0.00</pattern>
  3189. </currencyFormat>
  3190. <currencyFormat type="accounting">
  3191. <alias source="locale" path="../currencyFormat[@type='standard']"/>
  3192. </currencyFormat>
  3193. </currencyFormatLength>
  3194. <unitPattern count="other">{0} {1}</unitPattern>
  3195. </currencyFormats>
  3196. <currencyFormats numberSystem="lepc">
  3197. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3198. </currencyFormats>
  3199. <currencyFormats numberSystem="limb">
  3200. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3201. </currencyFormats>
  3202. <currencyFormats numberSystem="mlym">
  3203. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3204. </currencyFormats>
  3205. <currencyFormats numberSystem="mong">
  3206. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3207. </currencyFormats>
  3208. <currencyFormats numberSystem="mtei">
  3209. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3210. </currencyFormats>
  3211. <currencyFormats numberSystem="mymr">
  3212. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3213. </currencyFormats>
  3214. <currencyFormats numberSystem="mymrshan">
  3215. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3216. </currencyFormats>
  3217. <currencyFormats numberSystem="nkoo">
  3218. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3219. </currencyFormats>
  3220. <currencyFormats numberSystem="olck">
  3221. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3222. </currencyFormats>
  3223. <currencyFormats numberSystem="orya">
  3224. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3225. </currencyFormats>
  3226. <currencyFormats numberSystem="osma">
  3227. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3228. </currencyFormats>
  3229. <currencyFormats numberSystem="saur">
  3230. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3231. </currencyFormats>
  3232. <currencyFormats numberSystem="shrd">
  3233. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3234. </currencyFormats>
  3235. <currencyFormats numberSystem="sora">
  3236. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3237. </currencyFormats>
  3238. <currencyFormats numberSystem="sund">
  3239. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3240. </currencyFormats>
  3241. <currencyFormats numberSystem="takr">
  3242. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3243. </currencyFormats>
  3244. <currencyFormats numberSystem="talu">
  3245. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3246. </currencyFormats>
  3247. <currencyFormats numberSystem="tamldec">
  3248. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3249. </currencyFormats>
  3250. <currencyFormats numberSystem="telu">
  3251. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3252. </currencyFormats>
  3253. <currencyFormats numberSystem="thai">
  3254. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3255. </currencyFormats>
  3256. <currencyFormats numberSystem="tibt">
  3257. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3258. </currencyFormats>
  3259. <currencyFormats numberSystem="vaii">
  3260. <alias source="locale" path="../currencyFormats[@numberSystem='latn']"/>
  3261. </currencyFormats>
  3262. <currencies>
  3263. <currency type="ARS">
  3264. <symbol alt="narrow">$</symbol>
  3265. </currency>
  3266. <currency type="AUD">
  3267. <symbol>A$</symbol>
  3268. <symbol alt="narrow">$</symbol>
  3269. </currency>
  3270. <currency type="BBD">
  3271. <symbol alt="narrow">$</symbol>
  3272. </currency>
  3273. <currency type="BDT">
  3274. <symbol alt="narrow">৳</symbol>
  3275. </currency>
  3276. <currency type="BMD">
  3277. <symbol alt="narrow">$</symbol>
  3278. </currency>
  3279. <currency type="BND">
  3280. <symbol alt="narrow">$</symbol>
  3281. </currency>
  3282. <currency type="BRL">
  3283. <symbol>R$</symbol>
  3284. <symbol alt="narrow">R$</symbol>
  3285. </currency>
  3286. <currency type="BSD">
  3287. <symbol alt="narrow">$</symbol>
  3288. </currency>
  3289. <currency type="BYR">
  3290. <symbol alt="narrow">р.</symbol>
  3291. </currency>
  3292. <currency type="BZD">
  3293. <symbol alt="narrow">$</symbol>
  3294. </currency>
  3295. <currency type="CAD">
  3296. <symbol>CA$</symbol>
  3297. <symbol alt="narrow">$</symbol>
  3298. </currency>
  3299. <currency type="CLP">
  3300. <symbol alt="narrow">$</symbol>
  3301. </currency>
  3302. <currency type="CNY">
  3303. <symbol>CN¥</symbol>
  3304. <symbol alt="narrow">¥</symbol>
  3305. </currency>
  3306. <currency type="COP">
  3307. <symbol alt="narrow">$</symbol>
  3308. </currency>
  3309. <currency type="CRC">
  3310. <symbol alt="narrow">₡</symbol>
  3311. </currency>
  3312. <currency type="CUP">
  3313. <symbol alt="narrow">$</symbol>
  3314. </currency>
  3315. <currency type="DOP">
  3316. <symbol alt="narrow">$</symbol>
  3317. </currency>
  3318. <currency type="ESP">
  3319. <symbol alt="narrow">₧</symbol>
  3320. </currency>
  3321. <currency type="EUR">
  3322. <symbol>€</symbol>
  3323. <symbol alt="narrow">€</symbol>
  3324. </currency>
  3325. <currency type="FJD">
  3326. <symbol alt="narrow">$</symbol>
  3327. </currency>
  3328. <currency type="GBP">
  3329. <symbol>£</symbol>
  3330. <symbol alt="narrow">£</symbol>
  3331. </currency>
  3332. <currency type="GHS">
  3333. <symbol alt="narrow">₵</symbol>
  3334. </currency>
  3335. <currency type="GIP">
  3336. <symbol alt="narrow">£</symbol>
  3337. </currency>
  3338. <currency type="GYD">
  3339. <symbol alt="narrow">$</symbol>
  3340. </currency>
  3341. <currency type="HKD">
  3342. <symbol>HK$</symbol>
  3343. <symbol alt="narrow">$</symbol>
  3344. </currency>
  3345. <currency type="ILS">
  3346. <symbol>₪</symbol>
  3347. <symbol alt="narrow">₪</symbol>
  3348. </currency>
  3349. <currency type="INR">
  3350. <symbol>₹</symbol>
  3351. <symbol alt="narrow">₹</symbol>
  3352. </currency>
  3353. <currency type="JMD">
  3354. <symbol alt="narrow">$</symbol>
  3355. </currency>
  3356. <currency type="JPY">
  3357. <symbol>JP¥</symbol>
  3358. <symbol alt="narrow">¥</symbol>
  3359. </currency>
  3360. <currency type="KHR">
  3361. <symbol alt="narrow">៛</symbol>
  3362. </currency>
  3363. <currency type="KRW">
  3364. <symbol>₩</symbol>
  3365. <symbol alt="narrow">₩</symbol>
  3366. </currency>
  3367. <currency type="KYD">
  3368. <symbol alt="narrow">$</symbol>
  3369. </currency>
  3370. <currency type="KZT">
  3371. <symbol alt="narrow">₸</symbol>
  3372. </currency>
  3373. <currency type="LAK">
  3374. <symbol alt="narrow">₭</symbol>
  3375. </currency>
  3376. <currency type="LRD">
  3377. <symbol alt="narrow">$</symbol>
  3378. </currency>
  3379. <currency type="MNT">
  3380. <symbol alt="narrow">₮</symbol>
  3381. </currency>
  3382. <currency type="MXN">
  3383. <symbol>MX$</symbol>
  3384. <symbol alt="narrow">$</symbol>
  3385. </currency>
  3386. <currency type="NAD">
  3387. <symbol alt="narrow">$</symbol>
  3388. </currency>
  3389. <currency type="NGN">
  3390. <symbol alt="narrow">₦</symbol>
  3391. </currency>
  3392. <currency type="NZD">
  3393. <symbol>NZ$</symbol>
  3394. <symbol alt="narrow">$</symbol>
  3395. </currency>
  3396. <currency type="PHP">
  3397. <symbol alt="narrow">₱</symbol>
  3398. </currency>
  3399. <currency type="PYG">
  3400. <symbol alt="narrow">₲</symbol>
  3401. </currency>
  3402. <currency type="RUR">
  3403. <symbol alt="narrow">р.</symbol>
  3404. </currency>
  3405. <currency type="SBD">
  3406. <symbol alt="narrow">$</symbol>
  3407. </currency>
  3408. <currency type="SGD">
  3409. <symbol alt="narrow">$</symbol>
  3410. </currency>
  3411. <currency type="SRD">
  3412. <symbol alt="narrow">$</symbol>
  3413. </currency>
  3414. <currency type="SSP">
  3415. <symbol alt="narrow">£</symbol>
  3416. </currency>
  3417. <currency type="THB">
  3418. <symbol>฿</symbol>
  3419. <symbol alt="narrow">฿</symbol>
  3420. </currency>
  3421. <currency type="TRY">
  3422. <symbol alt="narrow">₺</symbol>
  3423. <symbol alt="variant">TL</symbol>
  3424. </currency>
  3425. <currency type="TTD">
  3426. <symbol alt="narrow">$</symbol>
  3427. </currency>
  3428. <currency type="TWD">
  3429. <symbol>NT$</symbol>
  3430. <symbol alt="narrow">NT$</symbol>
  3431. </currency>
  3432. <currency type="UAH">
  3433. <symbol alt="narrow">₴</symbol>
  3434. </currency>
  3435. <currency type="USD">
  3436. <symbol>US$</symbol>
  3437. <symbol alt="narrow">$</symbol>
  3438. </currency>
  3439. <currency type="UYU">
  3440. <symbol alt="narrow">$</symbol>
  3441. </currency>
  3442. <currency type="VND">
  3443. <symbol>₫</symbol>
  3444. <symbol alt="narrow">₫</symbol>
  3445. </currency>
  3446. <currency type="XAF">
  3447. <symbol>FCFA</symbol>
  3448. </currency>
  3449. <currency type="XCD">
  3450. <symbol>EC$</symbol>
  3451. </currency>
  3452. <currency type="XOF">
  3453. <symbol>CFA</symbol>
  3454. </currency>
  3455. <currency type="XPF">
  3456. <symbol>CFPF</symbol>
  3457. </currency>
  3458. </currencies>
  3459. <miscPatterns numberSystem="arab">
  3460. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3461. </miscPatterns>
  3462. <miscPatterns numberSystem="arabext">
  3463. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3464. </miscPatterns>
  3465. <miscPatterns numberSystem="bali">
  3466. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3467. </miscPatterns>
  3468. <miscPatterns numberSystem="beng">
  3469. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3470. </miscPatterns>
  3471. <miscPatterns numberSystem="brah">
  3472. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3473. </miscPatterns>
  3474. <miscPatterns numberSystem="cakm">
  3475. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3476. </miscPatterns>
  3477. <miscPatterns numberSystem="cham">
  3478. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3479. </miscPatterns>
  3480. <miscPatterns numberSystem="deva">
  3481. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3482. </miscPatterns>
  3483. <miscPatterns numberSystem="fullwide">
  3484. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3485. </miscPatterns>
  3486. <miscPatterns numberSystem="gujr">
  3487. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3488. </miscPatterns>
  3489. <miscPatterns numberSystem="guru">
  3490. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3491. </miscPatterns>
  3492. <miscPatterns numberSystem="hanidec">
  3493. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3494. </miscPatterns>
  3495. <miscPatterns numberSystem="java">
  3496. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3497. </miscPatterns>
  3498. <miscPatterns numberSystem="kali">
  3499. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3500. </miscPatterns>
  3501. <miscPatterns numberSystem="khmr">
  3502. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3503. </miscPatterns>
  3504. <miscPatterns numberSystem="knda">
  3505. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3506. </miscPatterns>
  3507. <miscPatterns numberSystem="lana">
  3508. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3509. </miscPatterns>
  3510. <miscPatterns numberSystem="lanatham">
  3511. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3512. </miscPatterns>
  3513. <miscPatterns numberSystem="laoo">
  3514. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3515. </miscPatterns>
  3516. <miscPatterns numberSystem="latn">
  3517. <pattern type="atLeast">⩾{0}</pattern>
  3518. <pattern type="range">{0}–{1}</pattern>
  3519. </miscPatterns>
  3520. <miscPatterns numberSystem="lepc">
  3521. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3522. </miscPatterns>
  3523. <miscPatterns numberSystem="limb">
  3524. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3525. </miscPatterns>
  3526. <miscPatterns numberSystem="mlym">
  3527. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3528. </miscPatterns>
  3529. <miscPatterns numberSystem="mong">
  3530. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3531. </miscPatterns>
  3532. <miscPatterns numberSystem="mtei">
  3533. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3534. </miscPatterns>
  3535. <miscPatterns numberSystem="mymr">
  3536. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3537. </miscPatterns>
  3538. <miscPatterns numberSystem="mymrshan">
  3539. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3540. </miscPatterns>
  3541. <miscPatterns numberSystem="nkoo">
  3542. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3543. </miscPatterns>
  3544. <miscPatterns numberSystem="olck">
  3545. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3546. </miscPatterns>
  3547. <miscPatterns numberSystem="orya">
  3548. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3549. </miscPatterns>
  3550. <miscPatterns numberSystem="osma">
  3551. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3552. </miscPatterns>
  3553. <miscPatterns numberSystem="saur">
  3554. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3555. </miscPatterns>
  3556. <miscPatterns numberSystem="shrd">
  3557. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3558. </miscPatterns>
  3559. <miscPatterns numberSystem="sora">
  3560. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3561. </miscPatterns>
  3562. <miscPatterns numberSystem="sund">
  3563. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3564. </miscPatterns>
  3565. <miscPatterns numberSystem="takr">
  3566. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3567. </miscPatterns>
  3568. <miscPatterns numberSystem="talu">
  3569. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3570. </miscPatterns>
  3571. <miscPatterns numberSystem="tamldec">
  3572. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3573. </miscPatterns>
  3574. <miscPatterns numberSystem="telu">
  3575. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3576. </miscPatterns>
  3577. <miscPatterns numberSystem="thai">
  3578. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3579. </miscPatterns>
  3580. <miscPatterns numberSystem="tibt">
  3581. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3582. </miscPatterns>
  3583. <miscPatterns numberSystem="vaii">
  3584. <alias source="locale" path="../miscPatterns[@numberSystem='latn']"/>
  3585. </miscPatterns>
  3586. </numbers>
  3587. <units>
  3588. <unitLength type="long">
  3589. <alias source="locale" path="../unitLength[@type='short']"/>
  3590. </unitLength>
  3591. <unitLength type="short">
  3592. <compoundUnit type="per">
  3593. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  3594. </compoundUnit>
  3595. <unit type="acceleration-g-force">
  3596. <unitPattern count="other">{0} G</unitPattern>
  3597. </unit>
  3598. <unit type="angle-arc-minute">
  3599. <unitPattern count="other">{0}′</unitPattern>
  3600. </unit>
  3601. <unit type="angle-arc-second">
  3602. <unitPattern count="other">{0}″</unitPattern>
  3603. </unit>
  3604. <unit type="angle-degree">
  3605. <unitPattern count="other">{0}°</unitPattern>
  3606. </unit>
  3607. <unit type="area-acre">
  3608. <unitPattern count="other">{0} ac</unitPattern>
  3609. </unit>
  3610. <unit type="area-hectare">
  3611. <unitPattern count="other">{0} ha</unitPattern>
  3612. </unit>
  3613. <unit type="area-square-foot">
  3614. <unitPattern count="other">{0} ft²</unitPattern>
  3615. </unit>
  3616. <unit type="area-square-kilometer">
  3617. <unitPattern count="other">{0} km²</unitPattern>
  3618. </unit>
  3619. <unit type="area-square-meter">
  3620. <unitPattern count="other">{0} m²</unitPattern>
  3621. </unit>
  3622. <unit type="area-square-mile">
  3623. <unitPattern count="other">{0} mi²</unitPattern>
  3624. </unit>
  3625. <unit type="duration-day">
  3626. <unitPattern count="other">{0} d</unitPattern>
  3627. </unit>
  3628. <unit type="duration-hour">
  3629. <unitPattern count="other">{0} h</unitPattern>
  3630. </unit>
  3631. <unit type="duration-millisecond">
  3632. <unitPattern count="other">{0} ms</unitPattern>
  3633. </unit>
  3634. <unit type="duration-minute">
  3635. <unitPattern count="other">{0} min</unitPattern>
  3636. </unit>
  3637. <unit type="duration-month">
  3638. <unitPattern count="other">{0} m</unitPattern>
  3639. </unit>
  3640. <unit type="duration-second">
  3641. <unitPattern count="other">{0} s</unitPattern>
  3642. </unit>
  3643. <unit type="duration-week">
  3644. <unitPattern count="other">{0} w</unitPattern>
  3645. </unit>
  3646. <unit type="duration-year">
  3647. <unitPattern count="other">{0} y</unitPattern>
  3648. </unit>
  3649. <unit type="length-centimeter">
  3650. <unitPattern count="other">{0} cm</unitPattern>
  3651. </unit>
  3652. <unit type="length-foot">
  3653. <unitPattern count="other">{0} ft</unitPattern>
  3654. </unit>
  3655. <unit type="length-inch">
  3656. <unitPattern count="other">{0} in</unitPattern>
  3657. </unit>
  3658. <unit type="length-kilometer">
  3659. <unitPattern count="other">{0} km</unitPattern>
  3660. </unit>
  3661. <unit type="length-light-year">
  3662. <unitPattern count="other">{0} ly</unitPattern>
  3663. </unit>
  3664. <unit type="length-meter">
  3665. <unitPattern count="other">{0} m</unitPattern>
  3666. </unit>
  3667. <unit type="length-mile">
  3668. <unitPattern count="other">{0} mi</unitPattern>
  3669. </unit>
  3670. <unit type="length-millimeter">
  3671. <unitPattern count="other">{0} mm</unitPattern>
  3672. </unit>
  3673. <unit type="length-picometer">
  3674. <unitPattern count="other">{0} pm</unitPattern>
  3675. </unit>
  3676. <unit type="length-yard">
  3677. <unitPattern count="other">{0} yd</unitPattern>
  3678. </unit>
  3679. <unit type="mass-gram">
  3680. <unitPattern count="other">{0} g</unitPattern>
  3681. </unit>
  3682. <unit type="mass-kilogram">
  3683. <unitPattern count="other">{0} kg</unitPattern>
  3684. </unit>
  3685. <unit type="mass-ounce">
  3686. <unitPattern count="other">{0} oz</unitPattern>
  3687. </unit>
  3688. <unit type="mass-pound">
  3689. <unitPattern count="other">{0} lb</unitPattern>
  3690. </unit>
  3691. <unit type="power-horsepower">
  3692. <unitPattern count="other">{0} hp</unitPattern>
  3693. </unit>
  3694. <unit type="power-kilowatt">
  3695. <unitPattern count="other">{0} kW</unitPattern>
  3696. </unit>
  3697. <unit type="power-watt">
  3698. <unitPattern count="other">{0} W</unitPattern>
  3699. </unit>
  3700. <unit type="pressure-hectopascal">
  3701. <unitPattern count="other">{0} hPa</unitPattern>
  3702. </unit>
  3703. <unit type="pressure-inch-hg">
  3704. <unitPattern count="other">{0} inHg</unitPattern>
  3705. </unit>
  3706. <unit type="pressure-millibar">
  3707. <unitPattern count="other">{0} mbar</unitPattern>
  3708. </unit>
  3709. <unit type="speed-kilometer-per-hour">
  3710. <unitPattern count="other">{0} km/h</unitPattern>
  3711. </unit>
  3712. <unit type="speed-meter-per-second">
  3713. <unitPattern count="other">{0} m/s</unitPattern>
  3714. </unit>
  3715. <unit type="speed-mile-per-hour">
  3716. <unitPattern count="other">{0} mi/h</unitPattern>
  3717. </unit>
  3718. <unit type="temperature-celsius">
  3719. <unitPattern count="other">{0}°C</unitPattern>
  3720. </unit>
  3721. <unit type="temperature-fahrenheit">
  3722. <unitPattern count="other">{0}°F</unitPattern>
  3723. </unit>
  3724. <unit type="volume-cubic-kilometer">
  3725. <unitPattern count="other">{0} km³</unitPattern>
  3726. </unit>
  3727. <unit type="volume-cubic-mile">
  3728. <unitPattern count="other">{0} mi³</unitPattern>
  3729. </unit>
  3730. <unit type="volume-liter">
  3731. <unitPattern count="other">{0} l</unitPattern>
  3732. </unit>
  3733. </unitLength>
  3734. <unitLength type="narrow">
  3735. <alias source="locale" path="../unitLength[@type='short']"/>
  3736. </unitLength>
  3737. <durationUnit type="hm">
  3738. <durationUnitPattern>h:mm</durationUnitPattern> <!-- 33:59 -->
  3739. </durationUnit>
  3740. <durationUnit type="hms">
  3741. <durationUnitPattern>h:mm:ss</durationUnitPattern> <!-- 33:04:59 -->
  3742. </durationUnit>
  3743. <durationUnit type="ms">
  3744. <durationUnitPattern>m:ss</durationUnitPattern> <!-- 33:59 -->
  3745. </durationUnit>
  3746. </units>
  3747. <listPatterns>
  3748. <listPattern>
  3749. <listPatternPart type="start">{0}, {1}</listPatternPart>
  3750. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  3751. <listPatternPart type="end">{0}, {1}</listPatternPart>
  3752. <listPatternPart type="2">{0}, {1}</listPatternPart>
  3753. </listPattern>
  3754. <listPattern type="unit">
  3755. <alias source="locale" path="../listPattern[@type='unit-short']"/>
  3756. </listPattern>
  3757. <listPattern type="unit-narrow">
  3758. <alias source="locale" path="../listPattern[@type='unit-short']"/>
  3759. </listPattern>
  3760. <listPattern type="unit-short">
  3761. <alias source="locale" path="../listPattern"/>
  3762. </listPattern>
  3763. </listPatterns>
  3764. <posix>
  3765. <messages>
  3766. <yesstr>yes:y</yesstr>
  3767. <nostr>no:n</nostr>
  3768. </messages>
  3769. </posix>
  3770. </ldml>