root.xml 123 KB

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