eu.xml 157 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137
  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: 9791 $"/>
  10. <generation date="$Date: 2014-02-25 15:16:49 -0600 (Tue, 25 Feb 2014) $"/>
  11. <language type="eu"/>
  12. </identity>
  13. <localeDisplayNames>
  14. <localeDisplayPattern>
  15. <localePattern>{0} ({1})</localePattern>
  16. <localeSeparator>{0}, {1}</localeSeparator>
  17. <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
  18. </localeDisplayPattern>
  19. <languages>
  20. <language type="ab">abkhazera</language>
  21. <language type="ach">Acholiera</language>
  22. <language type="af">afrikaansa</language>
  23. <language type="ak">Akanera</language>
  24. <language type="am">amharera</language>
  25. <language type="ar">arabiera</language>
  26. <language type="ar_001">arabiera moderno estandarra</language>
  27. <language type="as">assamera</language>
  28. <language type="ay">aimara</language>
  29. <language type="az">azerbaijanera</language>
  30. <language type="az" alt="short">azeriera</language>
  31. <language type="be">bielorrusiera</language>
  32. <language type="bem">Bembera</language>
  33. <language type="bg">bulgariera</language>
  34. <language type="bn">bengalera</language>
  35. <language type="bo">tibetera</language>
  36. <language type="br">Bretoiera</language>
  37. <language type="bs">bosniera</language>
  38. <language type="ca">katalana</language>
  39. <language type="chr">Txerokiera</language>
  40. <language type="ckb">Soraniera</language>
  41. <language type="co">Korsikera</language>
  42. <language type="cs">txekiera</language>
  43. <language type="cy">galesera</language>
  44. <language type="da">daniera</language>
  45. <language type="de">alemana</language>
  46. <language type="de_CH">aleman garaia (Suitza)</language>
  47. <language type="dv">divehiera</language>
  48. <language type="dz">dzongkha</language>
  49. <language type="ee">Eweera</language>
  50. <language type="efi">efikera</language>
  51. <language type="el">greziera</language>
  52. <language type="en">ingelesa</language>
  53. <language type="en_US">ingelesa (AEB)</language>
  54. <language type="eo">esperantoa</language>
  55. <language type="es">espainiera</language>
  56. <language type="es_ES">espainiera (Europa)</language>
  57. <language type="et">estoniera</language>
  58. <language type="eu">euskara</language>
  59. <language type="fa">persiera</language>
  60. <language type="fi">finlandiera</language>
  61. <language type="fil">tagaloga</language>
  62. <language type="fj">fijiera</language>
  63. <language type="fo">faroera</language>
  64. <language type="fr">frantsesa</language>
  65. <language type="fy">frisiera</language>
  66. <language type="ga">gaelikoa</language>
  67. <language type="gaa">Ga</language>
  68. <language type="gd">eskoziako gaelikoa</language>
  69. <language type="gl">galiziera</language>
  70. <language type="gn">guaraniera</language>
  71. <language type="gsw">alemana (Suitza)</language>
  72. <language type="gu">gujaratera</language>
  73. <language type="ha">hausa</language>
  74. <language type="haw">hawaiiera</language>
  75. <language type="he">hebreera</language>
  76. <language type="hi">hindia</language>
  77. <language type="hr">kroaziera</language>
  78. <language type="ht">haitiera</language>
  79. <language type="hu">hungariera</language>
  80. <language type="hy">armeniera</language>
  81. <language type="ia">Interlingua</language>
  82. <language type="id">indonesiera</language>
  83. <language type="ie">interlingue</language>
  84. <language type="ig">igboera</language>
  85. <language type="is">islandiera</language>
  86. <language type="it">italiera</language>
  87. <language type="ja">japoniera</language>
  88. <language type="jv">javera</language>
  89. <language type="ka">georgiera</language>
  90. <language type="kg">Kikongoa</language>
  91. <language type="kk">kazakhera</language>
  92. <language type="km">khemerera</language>
  93. <language type="kn">kannadera</language>
  94. <language type="ko">koreera</language>
  95. <language type="ks">kashmirera</language>
  96. <language type="ku">kurduera</language>
  97. <language type="ky">kirgizera</language>
  98. <language type="la">latina</language>
  99. <language type="lb">luxenburgera</language>
  100. <language type="lg">Gandera</language>
  101. <language type="ln">lingala</language>
  102. <language type="lo">laosera</language>
  103. <language type="loz">Loziera</language>
  104. <language type="lt">lituaniera</language>
  105. <language type="lua">Luba-lulua</language>
  106. <language type="lv">letoniera</language>
  107. <language type="mfe">Mauritaniako kreolera</language>
  108. <language type="mg">malagasyera</language>
  109. <language type="mi">maoriera</language>
  110. <language type="mk">mazedoniera</language>
  111. <language type="ml">malayalamera</language>
  112. <language type="mn">mongoliera</language>
  113. <language type="mr">marathera</language>
  114. <language type="ms">malaysiera</language>
  115. <language type="mt">maltera</language>
  116. <language type="mul">hizkuntza anitzak</language>
  117. <language type="my">burmatarra</language>
  118. <language type="nb">bokmala (Norvegia)</language>
  119. <language type="nd">iparraldeko ndebeleera</language>
  120. <language type="ne">nepalera</language>
  121. <language type="nl">nederlandera</language>
  122. <language type="nl_BE">flandriera</language>
  123. <language type="nn">nynorsk norvegiera</language>
  124. <language type="no">norvegiera</language>
  125. <language type="nso">pediera</language>
  126. <language type="ny">nyanja</language>
  127. <language type="nyn">Ankolera</language>
  128. <language type="oc">Okzitaniera</language>
  129. <language type="om">Oromoera</language>
  130. <language type="or">oriyera</language>
  131. <language type="os">osetiera</language>
  132. <language type="pa">punjabera</language>
  133. <language type="pl">poloniera</language>
  134. <language type="ps">paxtuera</language>
  135. <language type="ps" alt="variant">pashtoera</language>
  136. <language type="pt">portugesa</language>
  137. <language type="pt_PT">portugesa (Europa)</language>
  138. <language type="qu">quechuera</language>
  139. <language type="rm">erromantxera</language>
  140. <language type="rn">rundiera</language>
  141. <language type="ro">errumaniera</language>
  142. <language type="ru">errusiera</language>
  143. <language type="rw">kinyaruanda</language>
  144. <language type="sa">sanskritoa</language>
  145. <language type="sd">sindhia</language>
  146. <language type="se">iparraldeko samiera</language>
  147. <language type="sg">sangoera</language>
  148. <language type="sh">serbokroaziera</language>
  149. <language type="si">sinhala</language>
  150. <language type="sk">eslovakiera</language>
  151. <language type="sl">esloveniera</language>
  152. <language type="sm">samoera</language>
  153. <language type="sn">shonera</language>
  154. <language type="so">somaliera</language>
  155. <language type="sq">albaniera</language>
  156. <language type="sr">serbiera</language>
  157. <language type="ss">swatiera</language>
  158. <language type="st">hegoaldeko sothoera</language>
  159. <language type="su">sundanera</language>
  160. <language type="sv">suediera</language>
  161. <language type="sw">swahili</language>
  162. <language type="ta">tamilera</language>
  163. <language type="te">teluguera</language>
  164. <language type="tet">tetuma</language>
  165. <language type="tg">tajikistanera</language>
  166. <language type="th">thailandiera</language>
  167. <language type="ti">tigriñera</language>
  168. <language type="tk">turkmeniera</language>
  169. <language type="tl">tagalog</language>
  170. <language type="tlh">Klingonera</language>
  171. <language type="tn">tswanera</language>
  172. <language type="to">tongera</language>
  173. <language type="tpi">tok pisina</language>
  174. <language type="tr">turkiera</language>
  175. <language type="ts">tsongera</language>
  176. <language type="tt">tatarera</language>
  177. <language type="tum">Tumbukera</language>
  178. <language type="tw">twia</language>
  179. <language type="ty">tahitiera</language>
  180. <language type="ug">uigurrera</language>
  181. <language type="uk">ukrainera</language>
  182. <language type="und">hizkuntza ezezaguna</language>
  183. <language type="ur">urdua</language>
  184. <language type="uz">uzbekera</language>
  185. <language type="ve">vendera</language>
  186. <language type="vi">vietnamera</language>
  187. <language type="wo">wolofera</language>
  188. <language type="xh">xhosera</language>
  189. <language type="yi">Jiddisha</language>
  190. <language type="yo">yorubera</language>
  191. <language type="zgh">tamazight estandarra</language>
  192. <language type="zh">txinera</language>
  193. <language type="zh_Hans">txinera soildua</language>
  194. <language type="zh_Hant">txinera tradizionala</language>
  195. <language type="zu">zuluera</language>
  196. <language type="zxx">ez dago eduki linguistikorik</language>
  197. </languages>
  198. <scripts>
  199. <script type="Arab">arabiarra</script>
  200. <script type="Arab" alt="variant">persiar-arabiarra</script>
  201. <script type="Armn">armeniera</script>
  202. <script type="Beng">bengalera</script>
  203. <script type="Bopo">bopomofoa</script>
  204. <script type="Brai">braillea</script>
  205. <script type="Cyrl">zirilikoa</script>
  206. <script type="Deva">devanagaria</script>
  207. <script type="Ethi">etiopiarra</script>
  208. <script type="Geor">georgiera</script>
  209. <script type="Grek">greziera</script>
  210. <script type="Gujr">gujaratera</script>
  211. <script type="Guru">gurmukhia</script>
  212. <script type="Hang">hangula</script>
  213. <script type="Hani">idazkera txinatarra</script>
  214. <script type="Hans">sinplifikatua</script>
  215. <script type="Hans" alt="stand-alone">idazkera txinatar sinplifikatua</script>
  216. <script type="Hant">tradizionala</script>
  217. <script type="Hant" alt="stand-alone">idazkera txinatar tradizionala</script>
  218. <script type="Hebr">hebreera</script>
  219. <script type="Hira">hiragana</script>
  220. <script type="Jpan">japoniera</script>
  221. <script type="Kana">katakana</script>
  222. <script type="Khmr">khemerera</script>
  223. <script type="Knda">kannadera</script>
  224. <script type="Kore">koreera</script>
  225. <script type="Laoo">laosera</script>
  226. <script type="Latn">latina</script>
  227. <script type="Mlym">malayalamera</script>
  228. <script type="Mong">mongoliera</script>
  229. <script type="Mymr">birmaniera</script>
  230. <script type="Orya">oriya</script>
  231. <script type="Sinh">sinhala</script>
  232. <script type="Taml">tamilera</script>
  233. <script type="Telu">teluguera</script>
  234. <script type="Thaa">thaana</script>
  235. <script type="Thai">thailandiera</script>
  236. <script type="Tibt">tibetera</script>
  237. <script type="Zsym">ikurrak</script>
  238. <script type="Zxxx">idatzi gabea</script>
  239. <script type="Zyyy">ohikoa</script>
  240. <script type="Zzzz">idazkera ezezaguna</script>
  241. </scripts>
  242. <territories>
  243. <territory type="001">Mundua</territory>
  244. <territory type="002">Afrika</territory>
  245. <territory type="003">Ipar Amerika</territory>
  246. <territory type="005">Hego Amerika</territory>
  247. <territory type="009">Ozeania</territory>
  248. <territory type="011">Afrika mendebaldea</territory>
  249. <territory type="013">Erdialdeko Amerika</territory>
  250. <territory type="014">Afrika ekialdea</territory>
  251. <territory type="015">Afrika iparraldea</territory>
  252. <territory type="017">Erdialdeko Afrika</territory>
  253. <territory type="018">Afrika hegoaldea</territory>
  254. <territory type="019">Amerika</territory>
  255. <territory type="021">Amerika iparraldea</territory>
  256. <territory type="029">Karibea</territory>
  257. <territory type="030">Asia ekialdea</territory>
  258. <territory type="034">Asia hegoaldea</territory>
  259. <territory type="035">Asia hego-ekialdea</territory>
  260. <territory type="039">Europa hegoaldea</territory>
  261. <territory type="053">Australasia</territory>
  262. <territory type="054">Melanesia</territory>
  263. <territory type="057">Mikronesia eskualdea</territory>
  264. <territory type="061">Polinesia</territory>
  265. <territory type="142">Asia</territory>
  266. <territory type="143">Asia erdialdea</territory>
  267. <territory type="145">Asia mendebaldea</territory>
  268. <territory type="150">Europa</territory>
  269. <territory type="151">Europa ekialdea</territory>
  270. <territory type="154">Europa iparraldea</territory>
  271. <territory type="155">Europa mendebaldea</territory>
  272. <territory type="419">Latinoamerika</territory>
  273. <territory type="AC">Ascension uhartea</territory>
  274. <territory type="AD">Andorra</territory>
  275. <territory type="AE">Arabiar Emirrerri Batuak</territory>
  276. <territory type="AF">Afganistan</territory>
  277. <territory type="AG">Antigua eta Barbuda</territory>
  278. <territory type="AI">Angila</territory>
  279. <territory type="AL">Albania</territory>
  280. <territory type="AM">Armenia</territory>
  281. <territory type="AN">Holandarren Antillak</territory>
  282. <territory type="AO">Angola</territory>
  283. <territory type="AQ">Antartika</territory>
  284. <territory type="AR">Argentina</territory>
  285. <territory type="AS">Amerikar Samoa</territory>
  286. <territory type="AT">Austria</territory>
  287. <territory type="AU">Australia</territory>
  288. <territory type="AW">Aruba</territory>
  289. <territory type="AX">Aland uharteak</territory>
  290. <territory type="AZ">Azerbaijan</territory>
  291. <territory type="BA">Bosnia-Herzegovina</territory>
  292. <territory type="BB">Barbados</territory>
  293. <territory type="BD">Bangladesh</territory>
  294. <territory type="BE">Belgika</territory>
  295. <territory type="BF">Burkina Faso</territory>
  296. <territory type="BG">Bulgaria</territory>
  297. <territory type="BH">Bahrain</territory>
  298. <territory type="BI">Burundi</territory>
  299. <territory type="BJ">Benin</territory>
  300. <territory type="BL">San Bartolome</territory>
  301. <territory type="BM">Bermuda</territory>
  302. <territory type="BN">Brunei</territory>
  303. <territory type="BO">Bolivia</territory>
  304. <territory type="BQ">Karibeko Herbehereak</territory>
  305. <territory type="BR">Brasil</territory>
  306. <territory type="BS">Bahamak</territory>
  307. <territory type="BT">Bhutan</territory>
  308. <territory type="BV">Bouvet Uhartea</territory>
  309. <territory type="BW">Botswana</territory>
  310. <territory type="BY">Bielorrusia</territory>
  311. <territory type="BZ">Belize</territory>
  312. <territory type="CA">Kanada</territory>
  313. <territory type="CC">Cocos (Keeling) uharteak</territory>
  314. <territory type="CD">Kongoko Errepublika Demokratikoa</territory>
  315. <territory type="CD" alt="variant">Kongo (KED)</territory>
  316. <territory type="CF">Afrika Erdiko Errepublika</territory>
  317. <territory type="CG">Kongo (Brazzaville)</territory>
  318. <territory type="CG" alt="variant">Kongo (errepublika)</territory>
  319. <territory type="CH">Suitza</territory>
  320. <territory type="CI">Boli Kosta</territory>
  321. <territory type="CK">Cook uharteak</territory>
  322. <territory type="CL">Txile</territory>
  323. <territory type="CM">Kamerun</territory>
  324. <territory type="CN">Txina</territory>
  325. <territory type="CO">Kolonbia</territory>
  326. <territory type="CP">Clipperton uhartea</territory>
  327. <territory type="CR">Costa Rica</territory>
  328. <territory type="CU">Kuba</territory>
  329. <territory type="CV">Cabo Verde</territory>
  330. <territory type="CW">Curaçao</territory>
  331. <territory type="CX">Christmas uhartea</territory>
  332. <territory type="CY">Zipre</territory>
  333. <territory type="CZ">Txekiar Errepublika</territory>
  334. <territory type="DE">Alemania</territory>
  335. <territory type="DG">Diego Garcia</territory>
  336. <territory type="DJ">Djibuti</territory>
  337. <territory type="DK">Danimarka</territory>
  338. <territory type="DM">Dominika</territory>
  339. <territory type="DO">Dominikar Errepublika</territory>
  340. <territory type="DZ">Aljeria</territory>
  341. <territory type="EA">Ceuta eta Melilla</territory>
  342. <territory type="EC">Ekuador</territory>
  343. <territory type="EE">Estonia</territory>
  344. <territory type="EG">Egipto</territory>
  345. <territory type="EH">Mendebaldeko Sahara</territory>
  346. <territory type="ER">Eritrea</territory>
  347. <territory type="ES">Espainia</territory>
  348. <territory type="ET">Etiopia</territory>
  349. <territory type="EU">Europar Batasuna</territory>
  350. <territory type="FI">Finlandia</territory>
  351. <territory type="FJ">Fiji</territory>
  352. <territory type="FK">Malvinak</territory>
  353. <territory type="FK" alt="variant">Falkland uharteak (Malvina uharteak)</territory>
  354. <territory type="FM">Mikronesia</territory>
  355. <territory type="FO">Faroe uharteak</territory>
  356. <territory type="FR">Frantzia</territory>
  357. <territory type="GA">Gabon</territory>
  358. <territory type="GB">Erresuma Batua</territory>
  359. <territory type="GD">Grenada</territory>
  360. <territory type="GE">Georgia</territory>
  361. <territory type="GF">Guyana Frantsesa</territory>
  362. <territory type="GG">Guernsey</territory>
  363. <territory type="GH">Ghana</territory>
  364. <territory type="GI">Gibraltar</territory>
  365. <territory type="GL">Groenlandia</territory>
  366. <territory type="GM">Gambia</territory>
  367. <territory type="GN">Ginea</territory>
  368. <territory type="GP">Guadalupe</territory>
  369. <territory type="GQ">Ekuatore Ginea</territory>
  370. <territory type="GR">Grezia</territory>
  371. <territory type="GS">Hegoaldeko Georgia eta Hegoaldeko Sandwich uharteak</territory>
  372. <territory type="GT">Guatemala</territory>
  373. <territory type="GU">Guam</territory>
  374. <territory type="GW">Ginea-Bissau</territory>
  375. <territory type="GY">Guyana</territory>
  376. <territory type="HK">Hong Kong AEB Txina</territory>
  377. <territory type="HK" alt="short">Hong Kong</territory>
  378. <territory type="HM">Heard eta McDonald uharteak</territory>
  379. <territory type="HN">Honduras</territory>
  380. <territory type="HR">Kroazia</territory>
  381. <territory type="HT">Haiti</territory>
  382. <territory type="HU">Hungaria</territory>
  383. <territory type="IC">Kanariak</territory>
  384. <territory type="ID">Indonesia</territory>
  385. <territory type="IE">Irlanda</territory>
  386. <territory type="IL">Israel</territory>
  387. <territory type="IM">Man uhartea</territory>
  388. <territory type="IN">India</territory>
  389. <territory type="IO">Indiako Ozeanoko lurralde britainiarra</territory>
  390. <territory type="IQ">Irak</territory>
  391. <territory type="IR">Iran</territory>
  392. <territory type="IS">Islandia</territory>
  393. <territory type="IT">Italia</territory>
  394. <territory type="JE">Jersey</territory>
  395. <territory type="JM">Jamaika</territory>
  396. <territory type="JO">Jordania</territory>
  397. <territory type="JP">Japonia</territory>
  398. <territory type="KE">Kenya</territory>
  399. <territory type="KG">Kirgizistan</territory>
  400. <territory type="KH">Kanbodia</territory>
  401. <territory type="KI">Kiribati</territory>
  402. <territory type="KM">Komoreak</territory>
  403. <territory type="KN">Saint Kitts eta Nevis</territory>
  404. <territory type="KP">Ipar Korea</territory>
  405. <territory type="KR">Hego Korea</territory>
  406. <territory type="KW">Kuwait</territory>
  407. <territory type="KY">Kaiman uharteak</territory>
  408. <territory type="KZ">Kazakhstan</territory>
  409. <territory type="LA">Laos</territory>
  410. <territory type="LB">Libano</territory>
  411. <territory type="LC">Santa Luzia</territory>
  412. <territory type="LI">Liechtenstein</territory>
  413. <territory type="LK">Sri Lanka</territory>
  414. <territory type="LR">Liberia</territory>
  415. <territory type="LS">Lesotho</territory>
  416. <territory type="LT">Lituania</territory>
  417. <territory type="LU">Luxenburgo</territory>
  418. <territory type="LV">Letonia</territory>
  419. <territory type="LY">Libia</territory>
  420. <territory type="MA">Maroko</territory>
  421. <territory type="MC">Monako</territory>
  422. <territory type="MD">Moldavia</territory>
  423. <territory type="ME">Montenegro</territory>
  424. <territory type="MF">Saint Martin</territory>
  425. <territory type="MG">Madagaskar</territory>
  426. <territory type="MH">Marshall uharteak</territory>
  427. <territory type="MK">Mazedonia</territory>
  428. <territory type="MK" alt="variant">Mazedonia (Mazedoniako Yugoslaviar Errepublika ohia)</territory>
  429. <territory type="ML">Mali</territory>
  430. <territory type="MM">Myanmar</territory>
  431. <territory type="MN">Mongolia</territory>
  432. <territory type="MO">Macau AEB Txina</territory>
  433. <territory type="MO" alt="short">Macau</territory>
  434. <territory type="MP">Iparraldeko Mariana uharteak</territory>
  435. <territory type="MQ">Martinika</territory>
  436. <territory type="MR">Mauritania</territory>
  437. <territory type="MS">Montserrat</territory>
  438. <territory type="MT">Malta</territory>
  439. <territory type="MU">Maurizio</territory>
  440. <territory type="MV">Maldivak</territory>
  441. <territory type="MW">Malawi</territory>
  442. <territory type="MX">Mexiko</territory>
  443. <territory type="MY">Malaysia</territory>
  444. <territory type="MZ">Mozambike</territory>
  445. <territory type="NA">Namibia</territory>
  446. <territory type="NC">Kaledonia Berria</territory>
  447. <territory type="NE">Niger</territory>
  448. <territory type="NF">Norfolk uhartea</territory>
  449. <territory type="NG">Nigeria</territory>
  450. <territory type="NI">Nikaragua</territory>
  451. <territory type="NL">Herbehereak</territory>
  452. <territory type="NO">Norvegia</territory>
  453. <territory type="NP">Nepal</territory>
  454. <territory type="NR">Nauru</territory>
  455. <territory type="NU">Niue</territory>
  456. <territory type="NZ">Zeelanda Berria</territory>
  457. <territory type="OM">Oman</territory>
  458. <territory type="PA">Panama</territory>
  459. <territory type="PE">Peru</territory>
  460. <territory type="PF">Polinesia Frantsesa</territory>
  461. <territory type="PG">Papua Ginea Berria</territory>
  462. <territory type="PH">Filipinak</territory>
  463. <territory type="PK">Pakistan</territory>
  464. <territory type="PL">Polonia</territory>
  465. <territory type="PM">Saint-Pierre eta Mikelune</territory>
  466. <territory type="PN">Pitcairn uharteak</territory>
  467. <territory type="PR">Puerto Rico</territory>
  468. <territory type="PS">Palestinako Lurraldeak</territory>
  469. <territory type="PS" alt="short">Palestina</territory>
  470. <territory type="PT">Portugal</territory>
  471. <territory type="PW">Palau</territory>
  472. <territory type="PY">Paraguai</territory>
  473. <territory type="QA">Qatar</territory>
  474. <territory type="QO">Mugaz kanpoko Ozeania</territory>
  475. <territory type="RE">Reunion</territory>
  476. <territory type="RO">Errumania</territory>
  477. <territory type="RS">Serbia</territory>
  478. <territory type="RU">Errusia</territory>
  479. <territory type="RW">Ruanda</territory>
  480. <territory type="SA">Saudi Arabia</territory>
  481. <territory type="SB">Salomon uharteak</territory>
  482. <territory type="SC">Seychelleak</territory>
  483. <territory type="SD">Sudan</territory>
  484. <territory type="SE">Suedia</territory>
  485. <territory type="SG">Singapur</territory>
  486. <territory type="SH">Saint Helena</territory>
  487. <territory type="SI">Eslovenia</territory>
  488. <territory type="SJ">Svalbard eta Jan Mayen uharteak</territory>
  489. <territory type="SK">Eslovakia</territory>
  490. <territory type="SL">Sierra Leona</territory>
  491. <territory type="SM">San Marino</territory>
  492. <territory type="SN">Senegal</territory>
  493. <territory type="SO">Somalia</territory>
  494. <territory type="SR">Surinam</territory>
  495. <territory type="SS">Hego Sudan</territory>
  496. <territory type="ST">Sao Tome eta Principe</territory>
  497. <territory type="SV">El Salvador</territory>
  498. <territory type="SX">Sint Maarten</territory>
  499. <territory type="SY">Siria</territory>
  500. <territory type="SZ">Swazilandia</territory>
  501. <territory type="TA">Tristan da Cunha</territory>
  502. <territory type="TC">Turk eta Caicos uharteak</territory>
  503. <territory type="TD">Txad</territory>
  504. <territory type="TF">Hegoaldeko lurralde frantsesak</territory>
  505. <territory type="TG">Togo</territory>
  506. <territory type="TH">Thailandia</territory>
  507. <territory type="TJ">Tadjikistan</territory>
  508. <territory type="TK">Tokelau</territory>
  509. <territory type="TL">Ekialdeko Timor</territory>
  510. <territory type="TL" alt="variant">Timor ekialdea</territory>
  511. <territory type="TM">Turkmenistan</territory>
  512. <territory type="TN">Tunisia</territory>
  513. <territory type="TO">Tonga</territory>
  514. <territory type="TR">Turkia</territory>
  515. <territory type="TT">Trinidad eta Tobago</territory>
  516. <territory type="TV">Tuvalu</territory>
  517. <territory type="TW">Taiwan</territory>
  518. <territory type="TZ">Tanzania</territory>
  519. <territory type="UA">Ukraina</territory>
  520. <territory type="UG">Uganda</territory>
  521. <territory type="UM">Ameriketako Estatu Batuetako Kanpoaldeko Uharte Txikiak</territory>
  522. <territory type="US">Ameriketako Estatu Batuak</territory>
  523. <territory type="US" alt="short">AEB</territory>
  524. <territory type="UY">Uruguai</territory>
  525. <territory type="UZ">Uzbekistan</territory>
  526. <territory type="VA">Vatikano Hiria</territory>
  527. <territory type="VC">Saint Vincent eta Grenadinak</territory>
  528. <territory type="VE">Venezuela</territory>
  529. <territory type="VG">Birjina uharte britainiarrak</territory>
  530. <territory type="VI">Birjina uharte amerikarrak</territory>
  531. <territory type="VN">Vietnam</territory>
  532. <territory type="VU">Vanuatu</territory>
  533. <territory type="WF">Wallis eta Futuna</territory>
  534. <territory type="WS">Samoa</territory>
  535. <territory type="XK">Kosovo</territory>
  536. <territory type="YE">Yemen</territory>
  537. <territory type="YT">Mayotte</territory>
  538. <territory type="ZA">Hegoafrika</territory>
  539. <territory type="ZM">Zambia</territory>
  540. <territory type="ZW">Zimbabwe</territory>
  541. <territory type="ZZ">Eskualde ezezaguna</territory>
  542. </territories>
  543. <variants>
  544. <variant type="POLYTON">POLITON</variant>
  545. <variant type="REVISED">BERRIKUSIA</variant>
  546. <variant type="SAAHO">SAHO</variant>
  547. <variant type="SCOTLAND">ESKOZIAR INGELESA</variant>
  548. <variant type="VALENCIA">VALENTZIERA</variant>
  549. </variants>
  550. <keys>
  551. <key type="calendar">Egutegia</key>
  552. <key type="colAlternate">Egin ez ikusi ikurren ordenari</key>
  553. <key type="colBackwards">Azentuen alderantzizko ordena</key>
  554. <key type="colCaseFirst">Maiuskula/Minuskula ordena</key>
  555. <key type="colCaseLevel">Maiuskulak eta minuskulak bereizten dituen ordena</key>
  556. <key type="colHiraganaQuaternary">Kana ordena</key>
  557. <key type="collation">Ordenatzeko irizpidea</key>
  558. <key type="colNormalization">Araututako ordena</key>
  559. <key type="colNumeric">Zenbakizko ordena</key>
  560. <key type="colStrength">Ordenaren sendotasuna</key>
  561. <key type="currency">Moneta</key>
  562. <key type="numbers">Zenbakiak</key>
  563. <key type="timezone">Ordu-zona</key>
  564. <key type="va">Eskualdeko ezarpenen aldaera</key>
  565. <key type="variableTop">Ordenatu ikur gisa</key>
  566. <key type="x">Erabilera pribatua</key>
  567. </keys>
  568. <types>
  569. <type type="arab" key="numbers">Digitu arabiar-hindikoak</type>
  570. <type type="arabext" key="numbers">Digitu arabiar-hindiko hedatuak</type>
  571. <type type="armn" key="numbers">Zenbaki armeniarrak</type>
  572. <type type="armnlow" key="numbers">Zenbaki armeniarrak minuskulaz</type>
  573. <type type="beng" key="numbers">Digitu bengalarrak</type>
  574. <type type="big5han" key="collation">Txinera tradizionalaren alfabetoa-Big5</type>
  575. <type type="buddhist" key="calendar">Egutegi budista</type>
  576. <type type="chinese" key="calendar">Txinatar egutegia</type>
  577. <type type="coptic" key="calendar">Egutegi coptiarra</type>
  578. <type type="deva" key="numbers">Digitu devanagariak</type>
  579. <type type="dictionary" key="collation">Hurrenkera alfabetikoa</type>
  580. <type type="ducet" key="collation">Unicode hurrenkera lehenetsia</type>
  581. <type type="ethi" key="numbers">Zenbaki etiopiarrak</type>
  582. <type type="ethiopic" key="calendar">Egutegi etiopiarra</type>
  583. <type type="ethiopic-amete-alem" key="calendar">Amete Alem egutegi etiopiarra</type>
  584. <type type="finance" key="numbers">Finantza-zenbakiak</type>
  585. <type type="fullwide" key="numbers">Zabalera osoko digituak</type>
  586. <type type="gb2312han" key="collation">Txinera sinplifikatuaren alfabetoa -GB2312</type>
  587. <type type="geor" key="numbers">Zenbaki georgiarrak</type>
  588. <type type="gregorian" key="calendar">Egutegi gregoriarra</type>
  589. <type type="grek" key="numbers">Zenbaki grekoak</type>
  590. <type type="greklow" key="numbers">Zenbaki grekoak minuskulaz</type>
  591. <type type="gujr" key="numbers">Digitu gujaratarrak</type>
  592. <type type="guru" key="numbers">Digitu gurmukhiak</type>
  593. <type type="hanidec" key="numbers">Zenbaki hamartar txinatarrak</type>
  594. <type type="hans" key="numbers">Zenbaki txinatar sinplifikatuak</type>
  595. <type type="hansfin" key="numbers">Finantzetarako zenbaki txinatar sinplifikatuak</type>
  596. <type type="hant" key="numbers">Zenbaki txinatar tradizionalak</type>
  597. <type type="hantfin" key="numbers">Finantzetarako zenbaki txinatar tradizionalak</type>
  598. <type type="hebr" key="numbers">Zenbaki hebrearrak</type>
  599. <type type="hebrew" key="calendar">Hebrear egutegia</type>
  600. <type type="identical" key="colStrength">Ordenatu guztiak</type>
  601. <type type="indian" key="calendar">Indiar egutegia</type>
  602. <type type="islamic" key="calendar">Islamiar egutegia</type>
  603. <type type="islamic-civil" key="calendar">Islamiar egutegi zibila</type>
  604. <type type="japanese" key="calendar">Japoniar egutegia</type>
  605. <type type="jpan" key="numbers">Zenbaki japoniarrak</type>
  606. <type type="jpanfin" key="numbers">Finantzetarako zenbaki japoniarrak</type>
  607. <type type="khmr" key="numbers">Digitu khmerarrak</type>
  608. <type type="knda" key="numbers">Digitu kannadarrak</type>
  609. <type type="laoo" key="numbers">Digitu laostarrak</type>
  610. <type type="latn" key="numbers">Digitu mendebaldarrak</type>
  611. <type type="lower" key="colCaseFirst">Ordenatu minuskulak lehenik</type>
  612. <type type="mlym" key="numbers">Digitu malayalamarrak</type>
  613. <type type="mong" key="numbers">Digitu mongoliarrak</type>
  614. <type type="mymr" key="numbers">Digitu birmaniarrak</type>
  615. <type type="native" key="numbers">Zenbaki-sistema</type>
  616. <type type="no" key="colBackwards">Ordenatu azentuak modu normalean</type>
  617. <type type="no" key="colCaseFirst">Ordenatu maiuskulak modu normalean</type>
  618. <type type="no" key="colCaseLevel">Ordenatu maiuskulak eta minuskulak bereizi gabe</type>
  619. <type type="no" key="colHiraganaQuaternary">Ordenatu kanak bereizita</type>
  620. <type type="no" key="colNormalization">Ordenatu arauak kontuan hartu gabe</type>
  621. <type type="no" key="colNumeric">Ordenatu digituak banaka</type>
  622. <type type="non-ignorable" key="colAlternate">Ordenatu ikurrak</type>
  623. <type type="orya" key="numbers">Digitu oriyarrak</type>
  624. <type type="persian" key="calendar">Egutegi persiarra</type>
  625. <type type="phonebook" key="collation">Telefonoen zerrenda</type>
  626. <type type="phonetic" key="collation">Ordenatzeko irizpide fonetikoa</type>
  627. <type type="pinyin" key="collation">Pinyin hurrenkera</type>
  628. <type type="primary" key="colStrength">Ordenatu oinarrizko hizkiak soilik</type>
  629. <type type="quaternary" key="colStrength">Ordenatu azentuak / maiuskula eta minuskulak / zabalera / kanak</type>
  630. <type type="reformed" key="collation">Erreformaren araberako hurrenkera</type>
  631. <type type="roc" key="calendar">Txinako Errepublikako egutegia</type>
  632. <type type="roman" key="numbers">Zenbaki erromatarrak</type>
  633. <type type="romanlow" key="numbers">Zenbaki erromatarrak minuskulaz</type>
  634. <type type="search" key="collation">Bilaketa orokorra</type>
  635. <type type="searchjl" key="collation">Bilatu hangularen lehen kontsonantearen arabera</type>
  636. <type type="secondary" key="colStrength">Ordenatu azentuak</type>
  637. <type type="shifted" key="colAlternate">Ordenatu ikurrei ez ikusi eginda</type>
  638. <type type="standard" key="collation">Ordenatzeko irizpide estandarra</type>
  639. <type type="stroke" key="collation">Tarteen araberako hurrenkera</type>
  640. <type type="taml" key="numbers">Zenbaki tamilar tradizionalak</type>
  641. <type type="tamldec" key="numbers">Digitu tamilarrak</type>
  642. <type type="telu" key="numbers">Digitu teluguarrak</type>
  643. <type type="tertiary" key="colStrength">Ordenatu azentuak / maiuskula eta minuskulak / zabalera</type>
  644. <type type="thai" key="numbers">Digitu thailandiarrak</type>
  645. <type type="tibt" key="numbers">Digitu tibetarrak</type>
  646. <type type="traditional" key="collation">Tradizionala</type>
  647. <type type="traditional" key="numbers">Zenbaki tradizionalak</type>
  648. <type type="unihan" key="collation">Radical trazuen hurrenkera</type>
  649. <type type="upper" key="colCaseFirst">Ordenatu maiuskulak lehenik</type>
  650. <type type="vaii" key="numbers">Vai digituak</type>
  651. <type type="yes" key="colBackwards">Ordenatu azentuak alderantziz</type>
  652. <type type="yes" key="colCaseLevel">Ordenatu maiuskulak eta minuskulak bereizita</type>
  653. <type type="yes" key="colHiraganaQuaternary">Ordenatu kanak desberdin</type>
  654. <type type="yes" key="colNormalization">Ordenatu Unicode arauen arabera</type>
  655. <type type="yes" key="colNumeric">Ordenatu digituak zenbakien arabera</type>
  656. </types>
  657. <transformNames>
  658. <transformName type="BGN">BGN bihurketa</transformName>
  659. <transformName type="Numeric">Zenbakizko bihurketa</transformName>
  660. <transformName type="Tone">Tonu-bihurketa</transformName>
  661. <transformName type="UNGEGN">UNGEGN bihurketa</transformName>
  662. <transformName type="x-Accents">Azentu-bihurketa</transformName>
  663. <transformName type="x-Fullwidth">Zabalera osoko karaktere-bihurketa</transformName>
  664. <transformName type="x-Halfwidth">Zabalera erdiko karaktere-bihurketa</transformName>
  665. <transformName type="x-Jamo">Jamo-bihurketa</transformName>
  666. <transformName type="x-Pinyin">Pinyina</transformName>
  667. <transformName type="x-Publishing">Argitalpen-bihurketa</transformName>
  668. </transformNames>
  669. <measurementSystemNames>
  670. <measurementSystemName type="metric">Sistema metrikoa</measurementSystemName>
  671. <measurementSystemName type="UK">Erresuma Batuko sistema</measurementSystemName>
  672. <measurementSystemName type="US">AEBetako sistema</measurementSystemName>
  673. </measurementSystemNames>
  674. <codePatterns>
  675. <codePattern type="language">{0}</codePattern>
  676. <codePattern type="script">{0}</codePattern>
  677. <codePattern type="territory">{0}</codePattern>
  678. </codePatterns>
  679. </localeDisplayNames>
  680. <characters>
  681. <exemplarCharacters>[a b c ç d e f g h i j k l m n ñ o p q r s t u v w x y z]</exemplarCharacters>
  682. <exemplarCharacters type="auxiliary">[á à ă â å ä ã ā æ ç é è ĕ ê ë ē í ì ĭ î ï ī ñ ó ò ŏ ô ö ø ō œ ú ù ŭ û ü ū ÿ]</exemplarCharacters>
  683. <exemplarCharacters type="index">[A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]</exemplarCharacters>
  684. <ellipsis type="final">{0}…</ellipsis>
  685. <ellipsis type="initial">…{0}</ellipsis>
  686. <ellipsis type="medial">{0}…{1}</ellipsis>
  687. <ellipsis type="word-final">{0}…</ellipsis>
  688. <ellipsis type="word-initial">…{0}</ellipsis>
  689. <ellipsis type="word-medial">{0}…{1}</ellipsis>
  690. <moreInformation>?</moreInformation>
  691. </characters>
  692. <delimiters>
  693. <quotationStart>«</quotationStart>
  694. <quotationEnd>»</quotationEnd>
  695. <alternateQuotationStart>“</alternateQuotationStart>
  696. <alternateQuotationEnd>”</alternateQuotationEnd>
  697. </delimiters>
  698. <dates>
  699. <calendars>
  700. <calendar type="buddhist">
  701. <eras>
  702. <eraAbbr>
  703. <era type="0">BG</era>
  704. </eraAbbr>
  705. </eras>
  706. </calendar>
  707. <calendar type="generic">
  708. <dateFormats>
  709. <dateFormatLength type="full">
  710. <dateFormat>
  711. <pattern>G. 'aroko' y. 'urteko' MMMM d, EEEE</pattern>
  712. </dateFormat>
  713. </dateFormatLength>
  714. <dateFormatLength type="long">
  715. <dateFormat>
  716. <pattern>G. 'aroko' y. 'urteko' MMMM d</pattern>
  717. </dateFormat>
  718. </dateFormatLength>
  719. <dateFormatLength type="medium">
  720. <dateFormat>
  721. <pattern>G. 'aroko' y('e')'ko' MMM d</pattern>
  722. </dateFormat>
  723. </dateFormatLength>
  724. <dateFormatLength type="short">
  725. <dateFormat>
  726. <pattern>GGGGG y-MM-dd</pattern>
  727. </dateFormat>
  728. </dateFormatLength>
  729. </dateFormats>
  730. <dateTimeFormats>
  731. <dateTimeFormatLength type="full">
  732. <dateTimeFormat>
  733. <pattern>{1} {0}</pattern>
  734. </dateTimeFormat>
  735. </dateTimeFormatLength>
  736. <dateTimeFormatLength type="long">
  737. <dateTimeFormat>
  738. <pattern>{1} {0}</pattern>
  739. </dateTimeFormat>
  740. </dateTimeFormatLength>
  741. <dateTimeFormatLength type="medium">
  742. <dateTimeFormat>
  743. <pattern>{1} {0}</pattern>
  744. </dateTimeFormat>
  745. </dateTimeFormatLength>
  746. <dateTimeFormatLength type="short">
  747. <dateTimeFormat>
  748. <pattern>{1} {0}</pattern>
  749. </dateTimeFormat>
  750. </dateTimeFormatLength>
  751. <availableFormats>
  752. <dateFormatItem id="d">d</dateFormatItem>
  753. <dateFormatItem id="Ed">d, EEEE</dateFormatItem>
  754. <dateFormatItem id="Gy">G. 'aroko' y. 'urtea'</dateFormatItem>
  755. <dateFormatItem id="GyMMM">G. 'aroko' y('e')'ko' MMMM</dateFormatItem>
  756. <dateFormatItem id="GyMMMd">G. 'aroko' y('e')'ko' MMMM d</dateFormatItem>
  757. <dateFormatItem id="GyMMMEd">G. 'aroko' y('e')'ko' MMMM d, EEEE</dateFormatItem>
  758. <dateFormatItem id="H">HH</dateFormatItem>
  759. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  760. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  761. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  762. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  763. <dateFormatItem id="M">L</dateFormatItem>
  764. <dateFormatItem id="Md">MM/dd</dateFormatItem>
  765. <dateFormatItem id="MEd">MM/dd, EEEE</dateFormatItem>
  766. <dateFormatItem id="MMM">LLL</dateFormatItem>
  767. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  768. <dateFormatItem id="MMMEd">MMM d, EEEE</dateFormatItem>
  769. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  770. <dateFormatItem id="y">y</dateFormatItem>
  771. <dateFormatItem id="yM">y/MM</dateFormatItem>
  772. <dateFormatItem id="yMd">y/MM/dd</dateFormatItem>
  773. <dateFormatItem id="yMEd">y/MM/dd, EEEE</dateFormatItem>
  774. <dateFormatItem id="yMMM">y('e')'ko' MMMM</dateFormatItem>
  775. <dateFormatItem id="yMMMd">y('e')'ko' MMMM d</dateFormatItem>
  776. <dateFormatItem id="yMMMEd">y('e')'ko' MMMM d, EEEE</dateFormatItem>
  777. <dateFormatItem id="yQQQ">y QQQ</dateFormatItem>
  778. <dateFormatItem id="yQQQQ">y('e')'ko' QQQQ</dateFormatItem>
  779. <dateFormatItem id="yyyy">G y</dateFormatItem>
  780. <dateFormatItem id="yyyyM">G y/MM</dateFormatItem>
  781. <dateFormatItem id="yyyyMd">G y/MM/dd</dateFormatItem>
  782. <dateFormatItem id="yyyyMEd">G y/MM/dd, EEEE</dateFormatItem>
  783. <dateFormatItem id="yyyyMMM">G y MMM</dateFormatItem>
  784. <dateFormatItem id="yyyyMMMd">G y MMM d</dateFormatItem>
  785. <dateFormatItem id="yyyyMMMEd">G y MMM d, EEEE</dateFormatItem>
  786. <dateFormatItem id="yyyyMMMM">G y('e')'ko' MMMM</dateFormatItem>
  787. <dateFormatItem id="yyyyMMMMd">G y('e')'ko' MMMM d</dateFormatItem>
  788. <dateFormatItem id="yyyyMMMMEd">G y('e')'ko' MMMM d, EEEE</dateFormatItem>
  789. <dateFormatItem id="yyyyQQQ">G y QQQ</dateFormatItem>
  790. <dateFormatItem id="yyyyQQQQ">G y('e')'ko' QQQQ</dateFormatItem>
  791. </availableFormats>
  792. <intervalFormats>
  793. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  794. <intervalFormatItem id="d">
  795. <greatestDifference id="d">dd–dd</greatestDifference>
  796. </intervalFormatItem>
  797. <intervalFormatItem id="h">
  798. <greatestDifference id="a">h a – h a</greatestDifference>
  799. <greatestDifference id="h">h–h a</greatestDifference>
  800. </intervalFormatItem>
  801. <intervalFormatItem id="H">
  802. <greatestDifference id="H">HH–HH</greatestDifference>
  803. </intervalFormatItem>
  804. <intervalFormatItem id="hm">
  805. <greatestDifference id="a">:h:mm a – h:mm a</greatestDifference>
  806. <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
  807. <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
  808. </intervalFormatItem>
  809. <intervalFormatItem id="Hm">
  810. <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
  811. <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
  812. </intervalFormatItem>
  813. <intervalFormatItem id="hmv">
  814. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  815. <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
  816. <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
  817. </intervalFormatItem>
  818. <intervalFormatItem id="Hmv">
  819. <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
  820. <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
  821. </intervalFormatItem>
  822. <intervalFormatItem id="hv">
  823. <greatestDifference id="a">h a – h a v</greatestDifference>
  824. <greatestDifference id="h">h–h a v</greatestDifference>
  825. </intervalFormatItem>
  826. <intervalFormatItem id="Hv">
  827. <greatestDifference id="H">HH–HH v</greatestDifference>
  828. </intervalFormatItem>
  829. <intervalFormatItem id="M">
  830. <greatestDifference id="M">MM–MM</greatestDifference>
  831. </intervalFormatItem>
  832. <intervalFormatItem id="Md">
  833. <greatestDifference id="d">MM/dd – MM/dd</greatestDifference>
  834. <greatestDifference id="M">MM/dd – MM/dd</greatestDifference>
  835. </intervalFormatItem>
  836. <intervalFormatItem id="MEd">
  837. <greatestDifference id="d">MM/dd, EEEE – MM/dd, EEEE</greatestDifference>
  838. <greatestDifference id="M">MM/dd, EEEE – MM/dd, EEEE</greatestDifference>
  839. </intervalFormatItem>
  840. <intervalFormatItem id="MMM">
  841. <greatestDifference id="M">MMM–MMM</greatestDifference>
  842. </intervalFormatItem>
  843. <intervalFormatItem id="MMMd">
  844. <greatestDifference id="d">MMMM d–d</greatestDifference>
  845. <greatestDifference id="M">MMMM d – MMMM d</greatestDifference>
  846. </intervalFormatItem>
  847. <intervalFormatItem id="MMMEd">
  848. <greatestDifference id="d">MMMM d, EEEE – MMMM d, EEEE</greatestDifference>
  849. <greatestDifference id="M">MMMM d, EEEE – MMMM d, EEEE</greatestDifference>
  850. </intervalFormatItem>
  851. <intervalFormatItem id="y">
  852. <greatestDifference id="y">G y–y</greatestDifference>
  853. </intervalFormatItem>
  854. <intervalFormatItem id="yM">
  855. <greatestDifference id="M">G y/MM – y/MM</greatestDifference>
  856. <greatestDifference id="y">G y/MM – y/MM</greatestDifference>
  857. </intervalFormatItem>
  858. <intervalFormatItem id="yMd">
  859. <greatestDifference id="d">G y/MM/dd – y/MM/dd</greatestDifference>
  860. <greatestDifference id="M">G y/MM/dd – y/MM/dd</greatestDifference>
  861. <greatestDifference id="y">G y/MM/dd – y/MM/dd</greatestDifference>
  862. </intervalFormatItem>
  863. <intervalFormatItem id="yMEd">
  864. <greatestDifference id="d">G y/MM/dd, EEEE – y/MM/dd, EEEE</greatestDifference>
  865. <greatestDifference id="M">G y/MM/dd, EEEE – y/MM/dd, EEEE</greatestDifference>
  866. <greatestDifference id="y">G y/MM/dd, EEEE – y/MM/dd, EEEE</greatestDifference>
  867. </intervalFormatItem>
  868. <intervalFormatItem id="yMMM">
  869. <greatestDifference id="M">G y('e')'ko' MMMM–MMMM</greatestDifference>
  870. <greatestDifference id="y">G y('e')'ko' MMMM – y('e')'ko' MMMM</greatestDifference>
  871. </intervalFormatItem>
  872. <intervalFormatItem id="yMMMd">
  873. <greatestDifference id="d">G y('e')'ko' MMMM dd–dd</greatestDifference>
  874. <greatestDifference id="M">G y('e')'ko' MMMM dd – MMMM dd</greatestDifference>
  875. <greatestDifference id="y">G y('e')'ko' MMMM dd – y('e')'ko' MMMM dd</greatestDifference>
  876. </intervalFormatItem>
  877. <intervalFormatItem id="yMMMEd">
  878. <greatestDifference id="d">G y('e')'ko' MMMM dd, EEEE – MMMM dd, EEEE</greatestDifference>
  879. <greatestDifference id="M">G y('e')'ko' MMMM dd, EEEE – MMMM dd, EEEE</greatestDifference>
  880. <greatestDifference id="y">G y('e')'ko' MMMM dd, EEEE – MMMM dd, EEEE</greatestDifference>
  881. </intervalFormatItem>
  882. <intervalFormatItem id="yMMMM">
  883. <greatestDifference id="M">G y('e')'ko' MMMM – MMMM</greatestDifference>
  884. <greatestDifference id="y">G y('e')'ko' MMMM – y('e')'ko' MMMM</greatestDifference>
  885. </intervalFormatItem>
  886. </intervalFormats>
  887. </dateTimeFormats>
  888. </calendar>
  889. <calendar type="gregorian">
  890. <months>
  891. <monthContext type="format">
  892. <monthWidth type="abbreviated">
  893. <month type="1">urt.</month>
  894. <month type="2">ots.</month>
  895. <month type="3">mar.</month>
  896. <month type="4">api.</month>
  897. <month type="5">mai.</month>
  898. <month type="6">eka.</month>
  899. <month type="7">uzt.</month>
  900. <month type="8">abu.</month>
  901. <month type="9">ira.</month>
  902. <month type="10">urr.</month>
  903. <month type="11">aza.</month>
  904. <month type="12">abe.</month>
  905. </monthWidth>
  906. <monthWidth type="narrow">
  907. <month type="1">U</month>
  908. <month type="2">O</month>
  909. <month type="3">M</month>
  910. <month type="4">A</month>
  911. <month type="5">M</month>
  912. <month type="6">E</month>
  913. <month type="7">U</month>
  914. <month type="8">A</month>
  915. <month type="9">I</month>
  916. <month type="10">U</month>
  917. <month type="11">A</month>
  918. <month type="12">A</month>
  919. </monthWidth>
  920. <monthWidth type="wide">
  921. <month type="1">urtarrilak</month>
  922. <month type="2">otsailak</month>
  923. <month type="3">martxoak</month>
  924. <month type="4">apirilak</month>
  925. <month type="5">maiatzak</month>
  926. <month type="6">ekainak</month>
  927. <month type="7">uztailak</month>
  928. <month type="8">abuztuak</month>
  929. <month type="9">irailak</month>
  930. <month type="10">urriak</month>
  931. <month type="11">azaroak</month>
  932. <month type="12">abenduak</month>
  933. </monthWidth>
  934. </monthContext>
  935. <monthContext type="stand-alone">
  936. <monthWidth type="abbreviated">
  937. <month type="1">urt.</month>
  938. <month type="2">ots.</month>
  939. <month type="3">mar.</month>
  940. <month type="4">api.</month>
  941. <month type="5">mai.</month>
  942. <month type="6">eka.</month>
  943. <month type="7">uzt.</month>
  944. <month type="8">abu.</month>
  945. <month type="9">ira.</month>
  946. <month type="10">urr.</month>
  947. <month type="11">aza.</month>
  948. <month type="12">abe.</month>
  949. </monthWidth>
  950. <monthWidth type="narrow">
  951. <month type="1">U</month>
  952. <month type="2">O</month>
  953. <month type="3">M</month>
  954. <month type="4">A</month>
  955. <month type="5">M</month>
  956. <month type="6">E</month>
  957. <month type="7">U</month>
  958. <month type="8">A</month>
  959. <month type="9">I</month>
  960. <month type="10">U</month>
  961. <month type="11">A</month>
  962. <month type="12">A</month>
  963. </monthWidth>
  964. <monthWidth type="wide">
  965. <month type="1">urtarrila</month>
  966. <month type="2">otsaila</month>
  967. <month type="3">martxoa</month>
  968. <month type="4">apirila</month>
  969. <month type="5">maiatza</month>
  970. <month type="6">ekaina</month>
  971. <month type="7">uztaila</month>
  972. <month type="8">abuztua</month>
  973. <month type="9">iraila</month>
  974. <month type="10">urria</month>
  975. <month type="11">azaroa</month>
  976. <month type="12">abendua</month>
  977. </monthWidth>
  978. </monthContext>
  979. </months>
  980. <days>
  981. <dayContext type="format">
  982. <dayWidth type="abbreviated">
  983. <day type="sun">ig.</day>
  984. <day type="mon">al.</day>
  985. <day type="tue">ar.</day>
  986. <day type="wed">az.</day>
  987. <day type="thu">og.</day>
  988. <day type="fri">or.</day>
  989. <day type="sat">lr.</day>
  990. </dayWidth>
  991. <dayWidth type="narrow">
  992. <day type="sun">I</day>
  993. <day type="mon">A</day>
  994. <day type="tue">A</day>
  995. <day type="wed">A</day>
  996. <day type="thu">O</day>
  997. <day type="fri">O</day>
  998. <day type="sat">L</day>
  999. </dayWidth>
  1000. <dayWidth type="short">
  1001. <day type="sun">ig.</day>
  1002. <day type="mon">al.</day>
  1003. <day type="tue">ar.</day>
  1004. <day type="wed">az.</day>
  1005. <day type="thu">og.</day>
  1006. <day type="fri">or.</day>
  1007. <day type="sat">lr.</day>
  1008. </dayWidth>
  1009. <dayWidth type="wide">
  1010. <day type="sun">igandea</day>
  1011. <day type="mon">astelehena</day>
  1012. <day type="tue">asteartea</day>
  1013. <day type="wed">asteazkena</day>
  1014. <day type="thu">osteguna</day>
  1015. <day type="fri">ostirala</day>
  1016. <day type="sat">larunbata</day>
  1017. </dayWidth>
  1018. </dayContext>
  1019. <dayContext type="stand-alone">
  1020. <dayWidth type="abbreviated">
  1021. <day type="sun">ig.</day>
  1022. <day type="mon">al.</day>
  1023. <day type="tue">ar.</day>
  1024. <day type="wed">az.</day>
  1025. <day type="thu">og.</day>
  1026. <day type="fri">or.</day>
  1027. <day type="sat">lr.</day>
  1028. </dayWidth>
  1029. <dayWidth type="narrow">
  1030. <day type="sun">I</day>
  1031. <day type="mon">A</day>
  1032. <day type="tue">A</day>
  1033. <day type="wed">A</day>
  1034. <day type="thu">O</day>
  1035. <day type="fri">O</day>
  1036. <day type="sat">L</day>
  1037. </dayWidth>
  1038. <dayWidth type="short">
  1039. <day type="sun">ig.</day>
  1040. <day type="mon">al.</day>
  1041. <day type="tue">ar.</day>
  1042. <day type="wed">az.</day>
  1043. <day type="thu">og.</day>
  1044. <day type="fri">or.</day>
  1045. <day type="sat">lr.</day>
  1046. </dayWidth>
  1047. <dayWidth type="wide">
  1048. <day type="sun">igandea</day>
  1049. <day type="mon">astelehena</day>
  1050. <day type="tue">asteartea</day>
  1051. <day type="wed">asteazkena</day>
  1052. <day type="thu">osteguna</day>
  1053. <day type="fri">ostirala</day>
  1054. <day type="sat">larunbata</day>
  1055. </dayWidth>
  1056. </dayContext>
  1057. </days>
  1058. <quarters>
  1059. <quarterContext type="format">
  1060. <quarterWidth type="abbreviated">
  1061. <quarter type="1">1Hh</quarter>
  1062. <quarter type="2">2Hh</quarter>
  1063. <quarter type="3">3Hh</quarter>
  1064. <quarter type="4">4Hh</quarter>
  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. <quarter type="1">1. hiruhilekoa</quarter>
  1074. <quarter type="2">2. hiruhilekoa</quarter>
  1075. <quarter type="3">3. hiruhilekoa</quarter>
  1076. <quarter type="4">4. hiruhilekoa</quarter>
  1077. </quarterWidth>
  1078. </quarterContext>
  1079. <quarterContext type="stand-alone">
  1080. <quarterWidth type="abbreviated">
  1081. <quarter type="1">1Hh</quarter>
  1082. <quarter type="2">2Hh</quarter>
  1083. <quarter type="3">3Hh</quarter>
  1084. <quarter type="4">4Hh</quarter>
  1085. </quarterWidth>
  1086. <quarterWidth type="narrow">
  1087. <quarter type="1">1</quarter>
  1088. <quarter type="2">2</quarter>
  1089. <quarter type="3">3</quarter>
  1090. <quarter type="4">4</quarter>
  1091. </quarterWidth>
  1092. <quarterWidth type="wide">
  1093. <quarter type="1">1. hiruhilekoa</quarter>
  1094. <quarter type="2">2. hiruhilekoa</quarter>
  1095. <quarter type="3">3. hiruhilekoa</quarter>
  1096. <quarter type="4">4. hiruhilekoa</quarter>
  1097. </quarterWidth>
  1098. </quarterContext>
  1099. </quarters>
  1100. <dayPeriods>
  1101. <dayPeriodContext type="format">
  1102. <dayPeriodWidth type="abbreviated">
  1103. <dayPeriod type="am">AM</dayPeriod>
  1104. <dayPeriod type="pm">PM</dayPeriod>
  1105. </dayPeriodWidth>
  1106. <dayPeriodWidth type="narrow">
  1107. <dayPeriod type="am">a</dayPeriod>
  1108. <dayPeriod type="pm">p</dayPeriod>
  1109. </dayPeriodWidth>
  1110. <dayPeriodWidth type="wide">
  1111. <dayPeriod type="am">AM</dayPeriod>
  1112. <dayPeriod type="pm">PM</dayPeriod>
  1113. </dayPeriodWidth>
  1114. </dayPeriodContext>
  1115. </dayPeriods>
  1116. <eras>
  1117. <eraAbbr>
  1118. <era type="0">K.a.</era>
  1119. <era type="1">K.o.</era>
  1120. </eraAbbr>
  1121. </eras>
  1122. <dateFormats>
  1123. <dateFormatLength type="full">
  1124. <dateFormat>
  1125. <pattern>y('e')'ko' MMMM d, EEEE</pattern>
  1126. </dateFormat>
  1127. </dateFormatLength>
  1128. <dateFormatLength type="long">
  1129. <dateFormat>
  1130. <pattern>y('e')'ko' MMMM d</pattern>
  1131. </dateFormat>
  1132. </dateFormatLength>
  1133. <dateFormatLength type="medium">
  1134. <dateFormat>
  1135. <pattern>y MMM d</pattern>
  1136. </dateFormat>
  1137. </dateFormatLength>
  1138. <dateFormatLength type="short">
  1139. <dateFormat>
  1140. <pattern>y-MM-dd</pattern>
  1141. </dateFormat>
  1142. </dateFormatLength>
  1143. </dateFormats>
  1144. <timeFormats>
  1145. <timeFormatLength type="full">
  1146. <timeFormat>
  1147. <pattern>HH:mm:ss zzzz</pattern>
  1148. </timeFormat>
  1149. </timeFormatLength>
  1150. <timeFormatLength type="long">
  1151. <timeFormat>
  1152. <pattern>HH:mm:ss z</pattern>
  1153. </timeFormat>
  1154. </timeFormatLength>
  1155. <timeFormatLength type="medium">
  1156. <timeFormat>
  1157. <pattern>HH:mm:ss</pattern>
  1158. </timeFormat>
  1159. </timeFormatLength>
  1160. <timeFormatLength type="short">
  1161. <timeFormat>
  1162. <pattern>HH:mm</pattern>
  1163. </timeFormat>
  1164. </timeFormatLength>
  1165. </timeFormats>
  1166. <dateTimeFormats>
  1167. <dateTimeFormatLength type="full">
  1168. <dateTimeFormat>
  1169. <pattern>{1} {0}</pattern>
  1170. </dateTimeFormat>
  1171. </dateTimeFormatLength>
  1172. <dateTimeFormatLength type="long">
  1173. <dateTimeFormat>
  1174. <pattern>{1} {0}</pattern>
  1175. </dateTimeFormat>
  1176. </dateTimeFormatLength>
  1177. <dateTimeFormatLength type="medium">
  1178. <dateTimeFormat>
  1179. <pattern>{1} {0}</pattern>
  1180. </dateTimeFormat>
  1181. </dateTimeFormatLength>
  1182. <dateTimeFormatLength type="short">
  1183. <dateTimeFormat>
  1184. <pattern>{1} {0}</pattern>
  1185. </dateTimeFormat>
  1186. </dateTimeFormatLength>
  1187. <availableFormats>
  1188. <dateFormatItem id="d">d</dateFormatItem>
  1189. <dateFormatItem id="Ed">d, E</dateFormatItem>
  1190. <dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
  1191. <dateFormatItem id="EHm">E HH:mm</dateFormatItem>
  1192. <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
  1193. <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
  1194. <dateFormatItem id="Gy">G y</dateFormatItem>
  1195. <dateFormatItem id="GyMMM">G y. 'urteko' MMM</dateFormatItem>
  1196. <dateFormatItem id="GyMMMd">G y. 'urteko' MMM d</dateFormatItem>
  1197. <dateFormatItem id="GyMMMEd">G y. 'urteko' MMM d, E</dateFormatItem>
  1198. <dateFormatItem id="h">h a</dateFormatItem>
  1199. <dateFormatItem id="H">HH</dateFormatItem>
  1200. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  1201. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  1202. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  1203. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  1204. <dateFormatItem id="M">L</dateFormatItem>
  1205. <dateFormatItem id="Md">M/d</dateFormatItem>
  1206. <dateFormatItem id="MEd">M/d, E</dateFormatItem>
  1207. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1208. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  1209. <dateFormatItem id="MMMEd">MMM d, E</dateFormatItem>
  1210. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1211. <dateFormatItem id="y">y</dateFormatItem>
  1212. <dateFormatItem id="yM">y/M</dateFormatItem>
  1213. <dateFormatItem id="yMd">y/M/d</dateFormatItem>
  1214. <dateFormatItem id="yMEd">y/M/d, E</dateFormatItem>
  1215. <dateFormatItem id="yMMM">y MMM</dateFormatItem>
  1216. <dateFormatItem id="yMMMd">y MMM d</dateFormatItem>
  1217. <dateFormatItem id="yMMMEd">y MMM d, E</dateFormatItem>
  1218. <dateFormatItem id="yMMMM">y('e')'ko' MMMM</dateFormatItem>
  1219. <dateFormatItem id="yMMMMd">y('e')'ko' MMMM d</dateFormatItem>
  1220. <dateFormatItem id="yMMMMEd">y('e')'ko' MMMM d, E</dateFormatItem>
  1221. <dateFormatItem id="yQQQ">y('e')'ko' QQQ</dateFormatItem>
  1222. <dateFormatItem id="yQQQQ">y('e')'ko' QQQQ</dateFormatItem>
  1223. </availableFormats>
  1224. <appendItems>
  1225. <appendItem request="Timezone">{0} ({1})</appendItem>
  1226. </appendItems>
  1227. <intervalFormats>
  1228. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  1229. <intervalFormatItem id="d">
  1230. <greatestDifference id="d">d–d</greatestDifference>
  1231. </intervalFormatItem>
  1232. <intervalFormatItem id="h">
  1233. <greatestDifference id="a">h a – h a</greatestDifference>
  1234. <greatestDifference id="h">h–h a</greatestDifference>
  1235. </intervalFormatItem>
  1236. <intervalFormatItem id="H">
  1237. <greatestDifference id="H">HH–HH</greatestDifference>
  1238. </intervalFormatItem>
  1239. <intervalFormatItem id="hm">
  1240. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  1241. <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
  1242. <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
  1243. </intervalFormatItem>
  1244. <intervalFormatItem id="Hm">
  1245. <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
  1246. <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
  1247. </intervalFormatItem>
  1248. <intervalFormatItem id="hmv">
  1249. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  1250. <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
  1251. <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
  1252. </intervalFormatItem>
  1253. <intervalFormatItem id="Hmv">
  1254. <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
  1255. <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
  1256. </intervalFormatItem>
  1257. <intervalFormatItem id="hv">
  1258. <greatestDifference id="a">h a – h a v</greatestDifference>
  1259. <greatestDifference id="h">h–h a v</greatestDifference>
  1260. </intervalFormatItem>
  1261. <intervalFormatItem id="Hv">
  1262. <greatestDifference id="H">HH–HH v</greatestDifference>
  1263. </intervalFormatItem>
  1264. <intervalFormatItem id="M">
  1265. <greatestDifference id="M">M–M</greatestDifference>
  1266. </intervalFormatItem>
  1267. <intervalFormatItem id="Md">
  1268. <greatestDifference id="d">M/d – M/d</greatestDifference>
  1269. <greatestDifference id="M">M/d – M/d</greatestDifference>
  1270. </intervalFormatItem>
  1271. <intervalFormatItem id="MEd">
  1272. <greatestDifference id="d">M/d, E – M/d, E</greatestDifference>
  1273. <greatestDifference id="M">M/d, E – M/d, E</greatestDifference>
  1274. </intervalFormatItem>
  1275. <intervalFormatItem id="MMM">
  1276. <greatestDifference id="M">MMM–MMM</greatestDifference>
  1277. </intervalFormatItem>
  1278. <intervalFormatItem id="MMMd">
  1279. <greatestDifference id="d">MMM d–d</greatestDifference>
  1280. <greatestDifference id="M">MMM d – MMM d</greatestDifference>
  1281. </intervalFormatItem>
  1282. <intervalFormatItem id="MMMEd">
  1283. <greatestDifference id="d">MMM d, E – MMM d, E</greatestDifference>
  1284. <greatestDifference id="M">MMM d, E – MMM d, E</greatestDifference>
  1285. </intervalFormatItem>
  1286. <intervalFormatItem id="y">
  1287. <greatestDifference id="y">y–y</greatestDifference>
  1288. </intervalFormatItem>
  1289. <intervalFormatItem id="yM">
  1290. <greatestDifference id="M">y/M – y/M</greatestDifference>
  1291. <greatestDifference id="y">y/M – y/M</greatestDifference>
  1292. </intervalFormatItem>
  1293. <intervalFormatItem id="yMd">
  1294. <greatestDifference id="d">y/M/d – y/M/d</greatestDifference>
  1295. <greatestDifference id="M">y/M/d – y/M/d</greatestDifference>
  1296. <greatestDifference id="y">y/M/d – y/M/d</greatestDifference>
  1297. </intervalFormatItem>
  1298. <intervalFormatItem id="yMEd">
  1299. <greatestDifference id="d">y/M/d, E – y/M/d, E</greatestDifference>
  1300. <greatestDifference id="M">y/M/d, E – y/M/d, E</greatestDifference>
  1301. <greatestDifference id="y">y/M/d, E – y/M/d, E</greatestDifference>
  1302. </intervalFormatItem>
  1303. <intervalFormatItem id="yMMM">
  1304. <greatestDifference id="M">y('e')'ko' MMM–MMM</greatestDifference>
  1305. <greatestDifference id="y">y('e')'ko' MMM – y('e')'ko' MMM</greatestDifference>
  1306. </intervalFormatItem>
  1307. <intervalFormatItem id="yMMMd">
  1308. <greatestDifference id="d">y('e')'ko' MMM d–d</greatestDifference>
  1309. <greatestDifference id="M">y('e')'ko' MMM d – MMM d</greatestDifference>
  1310. <greatestDifference id="y">y('e')'ko' MMM d – y('e')'ko' MMM d</greatestDifference>
  1311. </intervalFormatItem>
  1312. <intervalFormatItem id="yMMMEd">
  1313. <greatestDifference id="d">y('e')'ko' MMM d, E – y('e')'ko' MMM d, E</greatestDifference>
  1314. <greatestDifference id="M">y('e')'ko' MMM d, E – MMM d, E</greatestDifference>
  1315. <greatestDifference id="y">y('e')'ko' MMM d, E – y('e')'ko' MMM d, E</greatestDifference>
  1316. </intervalFormatItem>
  1317. <intervalFormatItem id="yMMMM">
  1318. <greatestDifference id="M">y('e')'ko' MMMM–MMMM</greatestDifference>
  1319. <greatestDifference id="y">y('e')'ko' MMMM – y('e')'ko' MMMM</greatestDifference>
  1320. </intervalFormatItem>
  1321. </intervalFormats>
  1322. </dateTimeFormats>
  1323. </calendar>
  1324. <calendar type="roc">
  1325. <eras>
  1326. <eraAbbr>
  1327. <era type="0">R.O.C. aurretik</era>
  1328. <era type="1">R.O.C.</era>
  1329. </eraAbbr>
  1330. </eras>
  1331. </calendar>
  1332. </calendars>
  1333. <fields>
  1334. <field type="era">
  1335. <displayName>Aroa</displayName>
  1336. </field>
  1337. <field type="year">
  1338. <displayName>Urtea</displayName>
  1339. <relative type="-1">aurreko urtea</relative>
  1340. <relative type="0">aurten</relative>
  1341. <relative type="1">hurrengo urtea</relative>
  1342. <relativeTime type="future">
  1343. <relativeTimePattern count="one">{0} urte barru</relativeTimePattern>
  1344. <relativeTimePattern count="other">{0} urte barru</relativeTimePattern>
  1345. </relativeTime>
  1346. <relativeTime type="past">
  1347. <relativeTimePattern count="one">Duela {0} urte</relativeTimePattern>
  1348. <relativeTimePattern count="other">Duela {0} urte</relativeTimePattern>
  1349. </relativeTime>
  1350. </field>
  1351. <field type="month">
  1352. <displayName>Hilabetea</displayName>
  1353. <relative type="-1">aurreko hilabetea</relative>
  1354. <relative type="0">hilabete hau</relative>
  1355. <relative type="1">hurrengo hilabetea</relative>
  1356. <relativeTime type="future">
  1357. <relativeTimePattern count="one">{0} hilabete barru</relativeTimePattern>
  1358. <relativeTimePattern count="other">{0} hilabete barru</relativeTimePattern>
  1359. </relativeTime>
  1360. <relativeTime type="past">
  1361. <relativeTimePattern count="one">Duela {0} hilabete</relativeTimePattern>
  1362. <relativeTimePattern count="other">Duela {0} hilabete</relativeTimePattern>
  1363. </relativeTime>
  1364. </field>
  1365. <field type="week">
  1366. <displayName>Astea</displayName>
  1367. <relative type="-1">aurreko astea</relative>
  1368. <relative type="0">aste hau</relative>
  1369. <relative type="1">hurrengo astea</relative>
  1370. <relativeTime type="future">
  1371. <relativeTimePattern count="one">{0} aste barru</relativeTimePattern>
  1372. <relativeTimePattern count="other">{0} aste barru</relativeTimePattern>
  1373. </relativeTime>
  1374. <relativeTime type="past">
  1375. <relativeTimePattern count="one">Duela {0} aste</relativeTimePattern>
  1376. <relativeTimePattern count="other">Duela {0} aste</relativeTimePattern>
  1377. </relativeTime>
  1378. </field>
  1379. <field type="day">
  1380. <displayName>Eguna</displayName>
  1381. <relative type="-2">herenegun</relative>
  1382. <relative type="-1">atzo</relative>
  1383. <relative type="0">gaur</relative>
  1384. <relative type="1">bihar</relative>
  1385. <relative type="2">etzi</relative>
  1386. <relativeTime type="future">
  1387. <relativeTimePattern count="one">{0} egun barru</relativeTimePattern>
  1388. <relativeTimePattern count="other">{0} egun barru</relativeTimePattern>
  1389. </relativeTime>
  1390. <relativeTime type="past">
  1391. <relativeTimePattern count="one">Duela {0} egun</relativeTimePattern>
  1392. <relativeTimePattern count="other">Duela {0} egun</relativeTimePattern>
  1393. </relativeTime>
  1394. </field>
  1395. <field type="weekday">
  1396. <displayName>Asteguna</displayName>
  1397. </field>
  1398. <field type="sun">
  1399. <relative type="-1">aurreko igandea</relative>
  1400. <relative type="0">igande hau</relative>
  1401. <relative type="1">hurrengo igandea</relative>
  1402. </field>
  1403. <field type="mon">
  1404. <relative type="-1">aurreko astelehena</relative>
  1405. <relative type="0">astelehen hau</relative>
  1406. <relative type="1">hurrengo astelehena</relative>
  1407. </field>
  1408. <field type="tue">
  1409. <relative type="-1">aurreko asteartea</relative>
  1410. <relative type="0">astearte hau</relative>
  1411. <relative type="1">hurrengo asteartea</relative>
  1412. </field>
  1413. <field type="wed">
  1414. <relative type="-1">aurreko asteazkena</relative>
  1415. <relative type="0">asteazken hau</relative>
  1416. <relative type="1">hurrengo asteazkena</relative>
  1417. </field>
  1418. <field type="thu">
  1419. <relative type="-1">aurreko osteguna</relative>
  1420. <relative type="0">ostegun hau</relative>
  1421. <relative type="1">hurrengo osteguna</relative>
  1422. </field>
  1423. <field type="fri">
  1424. <relative type="-1">aurreko ostirala</relative>
  1425. <relative type="0">ostiral hau</relative>
  1426. <relative type="1">hurrengo ostirala</relative>
  1427. </field>
  1428. <field type="sat">
  1429. <relative type="-1">aurreko larunbata</relative>
  1430. <relative type="0">larunbat hau</relative>
  1431. <relative type="1">hurrengo larunbata</relative>
  1432. </field>
  1433. <field type="dayperiod">
  1434. <displayName>AM//PM</displayName>
  1435. </field>
  1436. <field type="hour">
  1437. <displayName>Ordua</displayName>
  1438. <relativeTime type="future">
  1439. <relativeTimePattern count="one">{0} ordu barru</relativeTimePattern>
  1440. <relativeTimePattern count="other">{0} ordu barru</relativeTimePattern>
  1441. </relativeTime>
  1442. <relativeTime type="past">
  1443. <relativeTimePattern count="one">Duela {0} ordu</relativeTimePattern>
  1444. <relativeTimePattern count="other">Duela {0} ordu</relativeTimePattern>
  1445. </relativeTime>
  1446. </field>
  1447. <field type="minute">
  1448. <displayName>Minutua</displayName>
  1449. <relativeTime type="future">
  1450. <relativeTimePattern count="one">{0} minutu barru</relativeTimePattern>
  1451. <relativeTimePattern count="other">{0} minutu barru</relativeTimePattern>
  1452. </relativeTime>
  1453. <relativeTime type="past">
  1454. <relativeTimePattern count="one">Duela {0} minutu</relativeTimePattern>
  1455. <relativeTimePattern count="other">Duela {0} minutu</relativeTimePattern>
  1456. </relativeTime>
  1457. </field>
  1458. <field type="second">
  1459. <displayName>Segundoa</displayName>
  1460. <relative type="0">orain</relative>
  1461. <relativeTime type="future">
  1462. <relativeTimePattern count="one">{0} segundo barru</relativeTimePattern>
  1463. <relativeTimePattern count="other">{0} segundo barru</relativeTimePattern>
  1464. </relativeTime>
  1465. <relativeTime type="past">
  1466. <relativeTimePattern count="one">Duela {0} segundo</relativeTimePattern>
  1467. <relativeTimePattern count="other">Duela {0} segundo</relativeTimePattern>
  1468. </relativeTime>
  1469. </field>
  1470. <field type="zone">
  1471. <displayName>Ordu-zona</displayName>
  1472. </field>
  1473. </fields>
  1474. <timeZoneNames>
  1475. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  1476. <gmtFormat>GMT{0}</gmtFormat>
  1477. <gmtZeroFormat>GMT</gmtZeroFormat>
  1478. <regionFormat>{0}</regionFormat>
  1479. <regionFormat type="daylight">{0} (udako ordua)</regionFormat>
  1480. <regionFormat type="standard">{0} (ordu estandarra)</regionFormat>
  1481. <fallbackFormat>{1} ({0})</fallbackFormat>
  1482. <zone type="Etc/Unknown">
  1483. <exemplarCity>Hiri ezezaguna</exemplarCity>
  1484. </zone>
  1485. <zone type="Europe/Tirane">
  1486. <exemplarCity>Tirana</exemplarCity>
  1487. </zone>
  1488. <zone type="Antarctica/DumontDUrville">
  1489. <exemplarCity>Dumont d’Urville</exemplarCity>
  1490. </zone>
  1491. <zone type="Europe/Vienna">
  1492. <exemplarCity>Viena</exemplarCity>
  1493. </zone>
  1494. <zone type="Australia/Adelaide">
  1495. <exemplarCity>Adelaida</exemplarCity>
  1496. </zone>
  1497. <zone type="Europe/Brussels">
  1498. <exemplarCity>Brusela</exemplarCity>
  1499. </zone>
  1500. <zone type="America/St_Barthelemy">
  1501. <exemplarCity>Saint Barthélemy</exemplarCity>
  1502. </zone>
  1503. <zone type="America/Coral_Harbour">
  1504. <exemplarCity>Atikokan</exemplarCity>
  1505. </zone>
  1506. <zone type="America/St_Johns">
  1507. <exemplarCity>St. John's</exemplarCity>
  1508. </zone>
  1509. <zone type="Atlantic/Cape_Verde">
  1510. <exemplarCity>Cabo Verde</exemplarCity>
  1511. </zone>
  1512. <zone type="America/Curacao">
  1513. <exemplarCity>Curaçao</exemplarCity>
  1514. </zone>
  1515. <zone type="Europe/Prague">
  1516. <exemplarCity>Praga</exemplarCity>
  1517. </zone>
  1518. <zone type="Europe/Copenhagen">
  1519. <exemplarCity>Kopenhage</exemplarCity>
  1520. </zone>
  1521. <zone type="America/Dominica">
  1522. <exemplarCity>Dominika</exemplarCity>
  1523. </zone>
  1524. <zone type="Africa/Algiers">
  1525. <exemplarCity>Aljer</exemplarCity>
  1526. </zone>
  1527. <zone type="Pacific/Galapagos">
  1528. <exemplarCity>Galapagoak</exemplarCity>
  1529. </zone>
  1530. <zone type="Africa/Cairo">
  1531. <exemplarCity>Kairo</exemplarCity>
  1532. </zone>
  1533. <zone type="Africa/Asmera">
  1534. <exemplarCity>Asmara</exemplarCity>
  1535. </zone>
  1536. <zone type="Atlantic/Canary">
  1537. <exemplarCity>Kanariak</exemplarCity>
  1538. </zone>
  1539. <zone type="Europe/Madrid">
  1540. <exemplarCity>Madril</exemplarCity>
  1541. </zone>
  1542. <zone type="Africa/Addis_Ababa">
  1543. <exemplarCity>Addis Abeba</exemplarCity>
  1544. </zone>
  1545. <zone type="Pacific/Truk">
  1546. <exemplarCity>Chuuk</exemplarCity>
  1547. </zone>
  1548. <zone type="Pacific/Ponape">
  1549. <exemplarCity>Pohnpei</exemplarCity>
  1550. </zone>
  1551. <zone type="Atlantic/Faeroe">
  1552. <exemplarCity>Faroe</exemplarCity>
  1553. </zone>
  1554. <zone type="Europe/London">
  1555. <long>
  1556. <daylight>Londresko udako ordua</daylight>
  1557. </long>
  1558. <exemplarCity>Londres</exemplarCity>
  1559. </zone>
  1560. <zone type="America/Godthab">
  1561. <exemplarCity>Nuuk</exemplarCity>
  1562. </zone>
  1563. <zone type="America/Scoresbysund">
  1564. <exemplarCity>Ittoqqortoormiit</exemplarCity>
  1565. </zone>
  1566. <zone type="America/Guadeloupe">
  1567. <exemplarCity>Guadalupe</exemplarCity>
  1568. </zone>
  1569. <zone type="Europe/Athens">
  1570. <exemplarCity>Atenas</exemplarCity>
  1571. </zone>
  1572. <zone type="Europe/Dublin">
  1573. <long>
  1574. <daylight>Dublingo udako ordua</daylight>
  1575. </long>
  1576. </zone>
  1577. <zone type="Europe/Isle_of_Man">
  1578. <exemplarCity>Man uhartea</exemplarCity>
  1579. </zone>
  1580. <zone type="Asia/Calcutta">
  1581. <exemplarCity>Kolkata</exemplarCity>
  1582. </zone>
  1583. <zone type="Europe/Rome">
  1584. <exemplarCity>Erroma</exemplarCity>
  1585. </zone>
  1586. <zone type="America/Jamaica">
  1587. <exemplarCity>Jamaika</exemplarCity>
  1588. </zone>
  1589. <zone type="Asia/Tokyo">
  1590. <exemplarCity>Tokio</exemplarCity>
  1591. </zone>
  1592. <zone type="America/St_Kitts">
  1593. <exemplarCity>St. Kitts</exemplarCity>
  1594. </zone>
  1595. <zone type="Asia/Seoul">
  1596. <exemplarCity>Seul</exemplarCity>
  1597. </zone>
  1598. <zone type="America/St_Lucia">
  1599. <exemplarCity>St. Lucia</exemplarCity>
  1600. </zone>
  1601. <zone type="Europe/Luxembourg">
  1602. <exemplarCity>Luxenburgo</exemplarCity>
  1603. </zone>
  1604. <zone type="Europe/Monaco">
  1605. <exemplarCity>Monako</exemplarCity>
  1606. </zone>
  1607. <zone type="Asia/Rangoon">
  1608. <exemplarCity>Rangun</exemplarCity>
  1609. </zone>
  1610. <zone type="Asia/Ulaanbaatar">
  1611. <exemplarCity>Ulan Bator</exemplarCity>
  1612. </zone>
  1613. <zone type="America/Martinique">
  1614. <exemplarCity>Martinika</exemplarCity>
  1615. </zone>
  1616. <zone type="Indian/Mauritius">
  1617. <exemplarCity>Maurizio</exemplarCity>
  1618. </zone>
  1619. <zone type="Indian/Maldives">
  1620. <exemplarCity>Maldivak</exemplarCity>
  1621. </zone>
  1622. <zone type="America/Mexico_City">
  1623. <exemplarCity>Mexico Hiria</exemplarCity>
  1624. </zone>
  1625. <zone type="Asia/Katmandu">
  1626. <exemplarCity>Kathmandu</exemplarCity>
  1627. </zone>
  1628. <zone type="Europe/Warsaw">
  1629. <exemplarCity>Varsovia</exemplarCity>
  1630. </zone>
  1631. <zone type="America/Miquelon">
  1632. <exemplarCity>Mikelune</exemplarCity>
  1633. </zone>
  1634. <zone type="Atlantic/Azores">
  1635. <exemplarCity>Azoreak</exemplarCity>
  1636. </zone>
  1637. <zone type="Europe/Lisbon">
  1638. <exemplarCity>Lisboa</exemplarCity>
  1639. </zone>
  1640. <zone type="America/Asuncion">
  1641. <exemplarCity>Asunción</exemplarCity>
  1642. </zone>
  1643. <zone type="Europe/Bucharest">
  1644. <exemplarCity>Bukarest</exemplarCity>
  1645. </zone>
  1646. <zone type="Europe/Belgrade">
  1647. <exemplarCity>Belgrado</exemplarCity>
  1648. </zone>
  1649. <zone type="Europe/Moscow">
  1650. <exemplarCity>Mosku</exemplarCity>
  1651. </zone>
  1652. <zone type="Asia/Singapore">
  1653. <exemplarCity>Singapur</exemplarCity>
  1654. </zone>
  1655. <zone type="Atlantic/St_Helena">
  1656. <exemplarCity>St. Helena</exemplarCity>
  1657. </zone>
  1658. <zone type="Africa/Sao_Tome">
  1659. <exemplarCity>São Tomé</exemplarCity>
  1660. </zone>
  1661. <zone type="America/Lower_Princes">
  1662. <exemplarCity>Lower Prince's Quarter</exemplarCity>
  1663. </zone>
  1664. <zone type="Asia/Damascus">
  1665. <exemplarCity>Damasko</exemplarCity>
  1666. </zone>
  1667. <zone type="America/North_Dakota/Beulah">
  1668. <exemplarCity>Beulah, Ipar Dakota</exemplarCity>
  1669. </zone>
  1670. <zone type="America/North_Dakota/New_Salem">
  1671. <exemplarCity>New Salem, Ipar Dakota</exemplarCity>
  1672. </zone>
  1673. <zone type="America/North_Dakota/Center">
  1674. <exemplarCity>Erdialdea, Ipar Dakota</exemplarCity>
  1675. </zone>
  1676. <zone type="America/Indiana/Vincennes">
  1677. <exemplarCity>Vincennes, Indiana</exemplarCity>
  1678. </zone>
  1679. <zone type="America/Indiana/Petersburg">
  1680. <exemplarCity>Petersburg, Indiana</exemplarCity>
  1681. </zone>
  1682. <zone type="America/Indiana/Tell_City">
  1683. <exemplarCity>Tell City, Indiana</exemplarCity>
  1684. </zone>
  1685. <zone type="America/Indiana/Knox">
  1686. <exemplarCity>Knox, Indiana</exemplarCity>
  1687. </zone>
  1688. <zone type="America/Indiana/Winamac">
  1689. <exemplarCity>Winamac, Indiana</exemplarCity>
  1690. </zone>
  1691. <zone type="America/Indiana/Marengo">
  1692. <exemplarCity>Marengo, Indiana</exemplarCity>
  1693. </zone>
  1694. <zone type="America/Indiana/Vevay">
  1695. <exemplarCity>Vevay, Indiana</exemplarCity>
  1696. </zone>
  1697. <zone type="America/Kentucky/Monticello">
  1698. <exemplarCity>Monticello, Kentucky</exemplarCity>
  1699. </zone>
  1700. <zone type="Europe/Vatican">
  1701. <exemplarCity>Vaticano Hiria</exemplarCity>
  1702. </zone>
  1703. <zone type="America/St_Vincent">
  1704. <exemplarCity>St. Vincent</exemplarCity>
  1705. </zone>
  1706. <zone type="America/St_Thomas">
  1707. <exemplarCity>St. Thomas</exemplarCity>
  1708. </zone>
  1709. <zone type="Asia/Saigon">
  1710. <exemplarCity>Ho Chi Minh</exemplarCity>
  1711. </zone>
  1712. <zone type="Africa/Johannesburg">
  1713. <exemplarCity>Johannesburgo</exemplarCity>
  1714. </zone>
  1715. <metazone type="Afghanistan">
  1716. <long>
  1717. <standard>Afganistango ordua</standard>
  1718. </long>
  1719. </metazone>
  1720. <metazone type="Africa_Central">
  1721. <long>
  1722. <standard>Afrika erdialdeko ordua</standard>
  1723. </long>
  1724. </metazone>
  1725. <metazone type="Africa_Eastern">
  1726. <long>
  1727. <standard>Afrika ekialdeko ordua</standard>
  1728. </long>
  1729. </metazone>
  1730. <metazone type="Africa_Southern">
  1731. <long>
  1732. <standard>Afrika hegoaldeko ordua</standard>
  1733. </long>
  1734. </metazone>
  1735. <metazone type="Africa_Western">
  1736. <long>
  1737. <generic>Afrika mendebaldeko ordua</generic>
  1738. <standard>Afrika mendebaldeko ordu estandarra</standard>
  1739. <daylight>Afrika mendebaldeko udako ordua</daylight>
  1740. </long>
  1741. </metazone>
  1742. <metazone type="Alaska">
  1743. <long>
  1744. <generic>Alaskako ordua</generic>
  1745. <standard>Alaskako ordu estandarra</standard>
  1746. <daylight>Alaskako udako ordua</daylight>
  1747. </long>
  1748. </metazone>
  1749. <metazone type="Amazon">
  1750. <long>
  1751. <generic>Amazoniako ordua</generic>
  1752. <standard>Amazoniako ordu estandarra</standard>
  1753. <daylight>Amazoniako udako ordua</daylight>
  1754. </long>
  1755. </metazone>
  1756. <metazone type="America_Central">
  1757. <long>
  1758. <generic>Ipar Amerikako erdialdeko ordua</generic>
  1759. <standard>Ipar Amerikako erdialdeko ordu estandarra</standard>
  1760. <daylight>Ipar Amerikako erdialdeko udako ordua</daylight>
  1761. </long>
  1762. </metazone>
  1763. <metazone type="America_Eastern">
  1764. <long>
  1765. <generic>Ipar Amerikako ekialdeko ordua</generic>
  1766. <standard>Ipar Amerikako ekialdeko ordu estandarra</standard>
  1767. <daylight>Ipar Amerikako ekialdeko udako ordua</daylight>
  1768. </long>
  1769. </metazone>
  1770. <metazone type="America_Mountain">
  1771. <long>
  1772. <generic>Ipar Amerikako mendialdeko ordua</generic>
  1773. <standard>Ipar Amerikako mendialdeko ordu estandarra</standard>
  1774. <daylight>Ipar Amerikako mendialdeko udako ordua</daylight>
  1775. </long>
  1776. </metazone>
  1777. <metazone type="America_Pacific">
  1778. <long>
  1779. <generic>Ipar Amerikako Pazifikoko ordua</generic>
  1780. <standard>Ipar Amerikako Pazifikoko ordu estandarra</standard>
  1781. <daylight>Ipar Amerikako Pazifikoko udako ordua</daylight>
  1782. </long>
  1783. </metazone>
  1784. <metazone type="Anadyr">
  1785. <long>
  1786. <generic>Anadyrreko ordua</generic>
  1787. <standard>Anadyrreko ordu estandarra</standard>
  1788. <daylight>Anadyrreko udako ordua</daylight>
  1789. </long>
  1790. </metazone>
  1791. <metazone type="Arabian">
  1792. <long>
  1793. <generic>Arabiako ordua</generic>
  1794. <standard>Arabiako ordu estandarra</standard>
  1795. <daylight>Arabiako udako ordua</daylight>
  1796. </long>
  1797. </metazone>
  1798. <metazone type="Argentina">
  1799. <long>
  1800. <generic>Argentinako ordua</generic>
  1801. <standard>Argentinako ordu estandarra</standard>
  1802. <daylight>Argentinako udako ordua</daylight>
  1803. </long>
  1804. </metazone>
  1805. <metazone type="Argentina_Western">
  1806. <long>
  1807. <generic>Argentina mendebaldeko ordua</generic>
  1808. <standard>Argentina mendebaldeko ordu estandarra</standard>
  1809. <daylight>Argentina mendebaldeko udako ordua</daylight>
  1810. </long>
  1811. </metazone>
  1812. <metazone type="Armenia">
  1813. <long>
  1814. <generic>Armeniako ordua</generic>
  1815. <standard>Armeniako ordu estandarra</standard>
  1816. <daylight>Armeniako udako ordua</daylight>
  1817. </long>
  1818. </metazone>
  1819. <metazone type="Atlantic">
  1820. <long>
  1821. <generic>Atlantikoko ordua</generic>
  1822. <standard>Atlantikoko ordu estandarra</standard>
  1823. <daylight>Atlantikoko udako ordua</daylight>
  1824. </long>
  1825. </metazone>
  1826. <metazone type="Australia_Central">
  1827. <long>
  1828. <generic>Australia erdialdeko ordua</generic>
  1829. <standard>Australia erdialdeko ordu estandarra</standard>
  1830. <daylight>Australia erdialdeko udako ordua</daylight>
  1831. </long>
  1832. </metazone>
  1833. <metazone type="Australia_CentralWestern">
  1834. <long>
  1835. <generic>Australia erdi-mendebaldeko ordua</generic>
  1836. <standard>Australia erdi-mendebaldeko ordu estandarra</standard>
  1837. <daylight>Australia erdi-mendebaldeko udako ordua</daylight>
  1838. </long>
  1839. </metazone>
  1840. <metazone type="Australia_Eastern">
  1841. <long>
  1842. <generic>Australia ekialdeko ordua</generic>
  1843. <standard>Australia ekialdeko ordu estandarra</standard>
  1844. <daylight>Australia ekialdeko udako ordua</daylight>
  1845. </long>
  1846. </metazone>
  1847. <metazone type="Australia_Western">
  1848. <long>
  1849. <generic>Australia mendebaldeko ordua</generic>
  1850. <standard>Australia mendebaldeko ordu estandarra</standard>
  1851. <daylight>Australia mendebaldeko udako ordua</daylight>
  1852. </long>
  1853. </metazone>
  1854. <metazone type="Azerbaijan">
  1855. <long>
  1856. <generic>Azerbaijango ordua</generic>
  1857. <standard>Azerbaijango ordu estandarra</standard>
  1858. <daylight>Azerbaijango udako ordua</daylight>
  1859. </long>
  1860. </metazone>
  1861. <metazone type="Azores">
  1862. <long>
  1863. <generic>Azoreetako ordua</generic>
  1864. <standard>Azoreetako ordu estandarra</standard>
  1865. <daylight>Azoreetako udako ordua</daylight>
  1866. </long>
  1867. </metazone>
  1868. <metazone type="Bangladesh">
  1869. <long>
  1870. <generic>Bangladesheko ordua</generic>
  1871. <standard>Bangladesheko ordu estandarra</standard>
  1872. <daylight>Bangladesheko udako ordua</daylight>
  1873. </long>
  1874. </metazone>
  1875. <metazone type="Bhutan">
  1876. <long>
  1877. <standard>Bhutango ordua</standard>
  1878. </long>
  1879. </metazone>
  1880. <metazone type="Bolivia">
  1881. <long>
  1882. <standard>Boliviako ordua</standard>
  1883. </long>
  1884. </metazone>
  1885. <metazone type="Brasilia">
  1886. <long>
  1887. <generic>Brasiliako ordua</generic>
  1888. <standard>Brasiliako ordu estandarra</standard>
  1889. <daylight>Brasiliako udako ordua</daylight>
  1890. </long>
  1891. </metazone>
  1892. <metazone type="Brunei">
  1893. <long>
  1894. <standard>Brunei Darussalamgo ordua</standard>
  1895. </long>
  1896. </metazone>
  1897. <metazone type="Cape_Verde">
  1898. <long>
  1899. <generic>Cabo Verdeko ordua</generic>
  1900. <standard>Cabo Verdeko ordu estandarra</standard>
  1901. <daylight>Cabo Verdeko udako ordua</daylight>
  1902. </long>
  1903. </metazone>
  1904. <metazone type="Chamorro">
  1905. <long>
  1906. <standard>Chamorroko ordu estandarra</standard>
  1907. </long>
  1908. </metazone>
  1909. <metazone type="Chatham">
  1910. <long>
  1911. <generic>Chathamgo ordua</generic>
  1912. <standard>Chathamgo ordu estandarra</standard>
  1913. <daylight>Chathamgo udako ordua</daylight>
  1914. </long>
  1915. </metazone>
  1916. <metazone type="Chile">
  1917. <long>
  1918. <generic>Txileko ordua</generic>
  1919. <standard>Txileko ordu estandarra</standard>
  1920. <daylight>Txileko udako ordua</daylight>
  1921. </long>
  1922. </metazone>
  1923. <metazone type="China">
  1924. <long>
  1925. <generic>Txinako ordua</generic>
  1926. <standard>Txinako ordu estandarra</standard>
  1927. <daylight>Txinako udako ordua</daylight>
  1928. </long>
  1929. </metazone>
  1930. <metazone type="Choibalsan">
  1931. <long>
  1932. <generic>Choibalsango ordua</generic>
  1933. <standard>Choibalsango ordu estandarra</standard>
  1934. <daylight>Choibalsango udako ordua</daylight>
  1935. </long>
  1936. </metazone>
  1937. <metazone type="Christmas">
  1938. <long>
  1939. <standard>Christmas uharteko ordua</standard>
  1940. </long>
  1941. </metazone>
  1942. <metazone type="Cocos">
  1943. <long>
  1944. <standard>Cocos uharteetako ordua</standard>
  1945. </long>
  1946. </metazone>
  1947. <metazone type="Colombia">
  1948. <long>
  1949. <generic>Kolonbiako ordua</generic>
  1950. <standard>Kolonbiako ordu estandarra</standard>
  1951. <daylight>Kolonbiako udako ordua</daylight>
  1952. </long>
  1953. </metazone>
  1954. <metazone type="Cook">
  1955. <long>
  1956. <generic>Cook uharteetako ordua</generic>
  1957. <standard>Cook uharteetako ordu estandarra</standard>
  1958. <daylight>Cook uharteetako uda erdialdeko ordua</daylight>
  1959. </long>
  1960. </metazone>
  1961. <metazone type="Cuba">
  1962. <long>
  1963. <generic>Kubako ordua</generic>
  1964. <standard>Kubako ordu estandarra</standard>
  1965. <daylight>Kubako udako ordua</daylight>
  1966. </long>
  1967. </metazone>
  1968. <metazone type="Davis">
  1969. <long>
  1970. <standard>Daviseko ordua</standard>
  1971. </long>
  1972. </metazone>
  1973. <metazone type="DumontDUrville">
  1974. <long>
  1975. <standard>Dumont-d'Urvilleko ordua</standard>
  1976. </long>
  1977. </metazone>
  1978. <metazone type="East_Timor">
  1979. <long>
  1980. <standard>Ekialdeko Timorreko ordua</standard>
  1981. </long>
  1982. </metazone>
  1983. <metazone type="Easter">
  1984. <long>
  1985. <generic>Pazko uharteko ordua</generic>
  1986. <standard>Pazko uharteko ordu estandarra</standard>
  1987. <daylight>Pazko uharteko udako ordua</daylight>
  1988. </long>
  1989. </metazone>
  1990. <metazone type="Ecuador">
  1991. <long>
  1992. <standard>Ekuadorreko ordua</standard>
  1993. </long>
  1994. </metazone>
  1995. <metazone type="Europe_Central">
  1996. <long>
  1997. <generic>Europa erdialdeko ordua</generic>
  1998. <standard>Europa erdialdeko ordu estandarra</standard>
  1999. <daylight>Europa erdialdeko udako ordua</daylight>
  2000. </long>
  2001. <short>
  2002. <generic>CET</generic>
  2003. <standard>CET</standard>
  2004. <daylight>CEST</daylight>
  2005. </short>
  2006. </metazone>
  2007. <metazone type="Europe_Eastern">
  2008. <long>
  2009. <generic>Europa ekialdeko ordua</generic>
  2010. <standard>Europa ekialdeko ordu estandarra</standard>
  2011. <daylight>Europa ekialdeko udako ordua</daylight>
  2012. </long>
  2013. <short>
  2014. <generic>EET</generic>
  2015. <standard>EET</standard>
  2016. <daylight>EEST</daylight>
  2017. </short>
  2018. </metazone>
  2019. <metazone type="Europe_Western">
  2020. <long>
  2021. <generic>Europa mendebaldeko ordua</generic>
  2022. <standard>Europa mendebaldeko ordu estandarra</standard>
  2023. <daylight>Europa mendebaldeko udako ordua</daylight>
  2024. </long>
  2025. <short>
  2026. <generic>WET</generic>
  2027. <standard>WET</standard>
  2028. <daylight>WEST</daylight>
  2029. </short>
  2030. </metazone>
  2031. <metazone type="Falkland">
  2032. <long>
  2033. <generic>Falkland uharteetako ordua</generic>
  2034. <standard>Falkland uharteetako ordu estandarra</standard>
  2035. <daylight>Falkland uharteetako udako ordua</daylight>
  2036. </long>
  2037. </metazone>
  2038. <metazone type="Fiji">
  2039. <long>
  2040. <generic>Fijiko ordua</generic>
  2041. <standard>Fijiko ordu estandarra</standard>
  2042. <daylight>Fijiko udako ordua</daylight>
  2043. </long>
  2044. </metazone>
  2045. <metazone type="French_Guiana">
  2046. <long>
  2047. <standard>Guyana Frantseseko ordua</standard>
  2048. </long>
  2049. </metazone>
  2050. <metazone type="French_Southern">
  2051. <long>
  2052. <standard>Frantziaren lurralde austral eta antartikoetako ordua</standard>
  2053. </long>
  2054. </metazone>
  2055. <metazone type="Galapagos">
  2056. <long>
  2057. <standard>Galapagoetako ordua</standard>
  2058. </long>
  2059. </metazone>
  2060. <metazone type="Gambier">
  2061. <long>
  2062. <standard>Gambierreko ordua</standard>
  2063. </long>
  2064. </metazone>
  2065. <metazone type="Georgia">
  2066. <long>
  2067. <generic>Georgiako ordua</generic>
  2068. <standard>Georgiako ordu estandarra</standard>
  2069. <daylight>Georgiako udako ordua</daylight>
  2070. </long>
  2071. </metazone>
  2072. <metazone type="Gilbert_Islands">
  2073. <long>
  2074. <standard>Gilbert uharteetako ordua</standard>
  2075. </long>
  2076. </metazone>
  2077. <metazone type="GMT">
  2078. <long>
  2079. <standard>Greenwich meridianoko ordua</standard>
  2080. </long>
  2081. <short>
  2082. <standard>GMT</standard>
  2083. </short>
  2084. </metazone>
  2085. <metazone type="Greenland_Eastern">
  2086. <long>
  2087. <generic>Groenlandia ekialdeko ordua</generic>
  2088. <standard>Groenlandia ekialdeko ordu estandarra</standard>
  2089. <daylight>Groenlandia ekialdeko udako ordua</daylight>
  2090. </long>
  2091. </metazone>
  2092. <metazone type="Greenland_Western">
  2093. <long>
  2094. <generic>Groenlandia mendebaldeko ordua</generic>
  2095. <standard>Groenlandia mendebaldeko ordu estandarra</standard>
  2096. <daylight>Groenlandia mendebaldeko udako ordua</daylight>
  2097. </long>
  2098. </metazone>
  2099. <metazone type="Gulf">
  2100. <long>
  2101. <standard>Golkoko ordu estandarra</standard>
  2102. </long>
  2103. </metazone>
  2104. <metazone type="Guyana">
  2105. <long>
  2106. <standard>Guyanako ordua</standard>
  2107. </long>
  2108. </metazone>
  2109. <metazone type="Hawaii_Aleutian">
  2110. <long>
  2111. <generic>Hawaii-Aleutiar uharteetako ordua</generic>
  2112. <standard>Hawaii-Aleutiar uharteetako ordu estandarra</standard>
  2113. <daylight>Hawaii-Aleutiar uharteetako udako ordua</daylight>
  2114. </long>
  2115. </metazone>
  2116. <metazone type="Hong_Kong">
  2117. <long>
  2118. <generic>Hong Kongo ordua</generic>
  2119. <standard>Hong Kongo ordu estandarra</standard>
  2120. <daylight>Hong Kongo udako ordua</daylight>
  2121. </long>
  2122. </metazone>
  2123. <metazone type="Hovd">
  2124. <long>
  2125. <generic>Hovdeko ordua</generic>
  2126. <standard>Hovdeko ordu estandarra</standard>
  2127. <daylight>Hovdeko udako ordua</daylight>
  2128. </long>
  2129. </metazone>
  2130. <metazone type="India">
  2131. <long>
  2132. <standard>Indiako ordua</standard>
  2133. </long>
  2134. </metazone>
  2135. <metazone type="Indian_Ocean">
  2136. <long>
  2137. <standard>Ozeano Indikoko ordua</standard>
  2138. </long>
  2139. </metazone>
  2140. <metazone type="Indochina">
  2141. <long>
  2142. <standard>Indotxinako ordua</standard>
  2143. </long>
  2144. </metazone>
  2145. <metazone type="Indonesia_Central">
  2146. <long>
  2147. <standard>Indonesia erdialdeko ordua</standard>
  2148. </long>
  2149. </metazone>
  2150. <metazone type="Indonesia_Eastern">
  2151. <long>
  2152. <standard>Indonesia ekialdeko ordua</standard>
  2153. </long>
  2154. </metazone>
  2155. <metazone type="Indonesia_Western">
  2156. <long>
  2157. <standard>Indonesia mendebaldeko ordua</standard>
  2158. </long>
  2159. </metazone>
  2160. <metazone type="Iran">
  2161. <long>
  2162. <generic>Irango ordua</generic>
  2163. <standard>Irango ordu estandarra</standard>
  2164. <daylight>Irango udako ordua</daylight>
  2165. </long>
  2166. </metazone>
  2167. <metazone type="Irkutsk">
  2168. <long>
  2169. <generic>Irkutskeko ordua</generic>
  2170. <standard>Irkutskeko ordu estandarra</standard>
  2171. <daylight>Irkutskeko udako ordua</daylight>
  2172. </long>
  2173. </metazone>
  2174. <metazone type="Israel">
  2175. <long>
  2176. <generic>Israelgo ordua</generic>
  2177. <standard>Israelgo ordu estandarra</standard>
  2178. <daylight>Israelgo udako ordua</daylight>
  2179. </long>
  2180. </metazone>
  2181. <metazone type="Japan">
  2182. <long>
  2183. <generic>Japoniako ordua</generic>
  2184. <standard>Japoniako ordu estandarra</standard>
  2185. <daylight>Japoniako udako ordua</daylight>
  2186. </long>
  2187. </metazone>
  2188. <metazone type="Kamchatka">
  2189. <long>
  2190. <generic>Petropavlovsk-Kamchatskiko ordua</generic>
  2191. <standard>Petropavlovsk-Kamchatskiko ordu estandarra</standard>
  2192. <daylight>Petropavlovsk-Kamchatskiko udako ordua</daylight>
  2193. </long>
  2194. </metazone>
  2195. <metazone type="Kazakhstan_Eastern">
  2196. <long>
  2197. <standard>Kazakhstan ekialdeko ordua</standard>
  2198. </long>
  2199. </metazone>
  2200. <metazone type="Kazakhstan_Western">
  2201. <long>
  2202. <standard>Kazakhstan mendebaldeko ordua</standard>
  2203. </long>
  2204. </metazone>
  2205. <metazone type="Korea">
  2206. <long>
  2207. <generic>Koreako ordua</generic>
  2208. <standard>Koreako ordu estandarra</standard>
  2209. <daylight>Koreako udako ordua</daylight>
  2210. </long>
  2211. </metazone>
  2212. <metazone type="Kosrae">
  2213. <long>
  2214. <standard>Kosraeko ordua</standard>
  2215. </long>
  2216. </metazone>
  2217. <metazone type="Krasnoyarsk">
  2218. <long>
  2219. <generic>Krasnoyarskeko ordua</generic>
  2220. <standard>Krasnoyarskeko ordu estandarra</standard>
  2221. <daylight>Krasnoyarskeko udako ordua</daylight>
  2222. </long>
  2223. </metazone>
  2224. <metazone type="Kyrgystan">
  2225. <long>
  2226. <standard>Kirgizistango ordua</standard>
  2227. </long>
  2228. </metazone>
  2229. <metazone type="Line_Islands">
  2230. <long>
  2231. <standard>Line uharteetako ordua</standard>
  2232. </long>
  2233. </metazone>
  2234. <metazone type="Lord_Howe">
  2235. <long>
  2236. <generic>Lord Howeko ordua</generic>
  2237. <standard>Lord Howeko ordu estandarra</standard>
  2238. <daylight>Lord Howeko udako ordua</daylight>
  2239. </long>
  2240. </metazone>
  2241. <metazone type="Macquarie">
  2242. <long>
  2243. <standard>Macquarie uharteko ordua</standard>
  2244. </long>
  2245. </metazone>
  2246. <metazone type="Magadan">
  2247. <long>
  2248. <generic>Magadako ordua</generic>
  2249. <standard>Magadango ordu estandarra</standard>
  2250. <daylight>Magadango udako ordua</daylight>
  2251. </long>
  2252. </metazone>
  2253. <metazone type="Malaysia">
  2254. <long>
  2255. <standard>Malaysiako ordua</standard>
  2256. </long>
  2257. </metazone>
  2258. <metazone type="Maldives">
  2259. <long>
  2260. <standard>Maldivetako ordua</standard>
  2261. </long>
  2262. </metazone>
  2263. <metazone type="Marquesas">
  2264. <long>
  2265. <standard>Markesetako ordua</standard>
  2266. </long>
  2267. </metazone>
  2268. <metazone type="Marshall_Islands">
  2269. <long>
  2270. <standard>Marshall uharteetako ordua</standard>
  2271. </long>
  2272. </metazone>
  2273. <metazone type="Mauritius">
  2274. <long>
  2275. <generic>Maurizioko ordua</generic>
  2276. <standard>Maurizioko ordu estandarra</standard>
  2277. <daylight>Maurizioko udako ordua</daylight>
  2278. </long>
  2279. </metazone>
  2280. <metazone type="Mawson">
  2281. <long>
  2282. <standard>Mawsoneko ordua</standard>
  2283. </long>
  2284. </metazone>
  2285. <metazone type="Mongolia">
  2286. <long>
  2287. <generic>Ulan Batorreko ordua</generic>
  2288. <standard>Ulan Batorreko ordu estandarra</standard>
  2289. <daylight>Ulan Batorreko udako ordua</daylight>
  2290. </long>
  2291. </metazone>
  2292. <metazone type="Moscow">
  2293. <long>
  2294. <generic>Moskuko ordua</generic>
  2295. <standard>Moskuko ordu estandarra</standard>
  2296. <daylight>Moskuko udako ordua</daylight>
  2297. </long>
  2298. </metazone>
  2299. <metazone type="Myanmar">
  2300. <long>
  2301. <standard>Myanmarreko ordua</standard>
  2302. </long>
  2303. </metazone>
  2304. <metazone type="Nauru">
  2305. <long>
  2306. <standard>Nauruko ordua</standard>
  2307. </long>
  2308. </metazone>
  2309. <metazone type="Nepal">
  2310. <long>
  2311. <standard>Nepalgo ordua</standard>
  2312. </long>
  2313. </metazone>
  2314. <metazone type="New_Caledonia">
  2315. <long>
  2316. <generic>Kaledonia Berriako ordua</generic>
  2317. <standard>Kaledonia Berriko ordu estandarra</standard>
  2318. <daylight>Kaledonia Berriko udako ordua</daylight>
  2319. </long>
  2320. </metazone>
  2321. <metazone type="New_Zealand">
  2322. <long>
  2323. <generic>Zeelanda Berriko ordua</generic>
  2324. <standard>Zeelanda Berriko ordu estandarra</standard>
  2325. <daylight>Zeelanda Berriko udako ordua</daylight>
  2326. </long>
  2327. </metazone>
  2328. <metazone type="Newfoundland">
  2329. <long>
  2330. <generic>Ternuako ordua</generic>
  2331. <standard>Ternuako ordu estandarra</standard>
  2332. <daylight>Ternuako udako ordua</daylight>
  2333. </long>
  2334. </metazone>
  2335. <metazone type="Niue">
  2336. <long>
  2337. <standard>Niueko ordua</standard>
  2338. </long>
  2339. </metazone>
  2340. <metazone type="Norfolk">
  2341. <long>
  2342. <standard>Norfolk uharteetako ordua</standard>
  2343. </long>
  2344. </metazone>
  2345. <metazone type="Noronha">
  2346. <long>
  2347. <generic>Fernando de Noronhako ordua</generic>
  2348. <standard>Fernando de Noronhako ordu estandarra</standard>
  2349. <daylight>Fernando de Noronhako udako ordua</daylight>
  2350. </long>
  2351. </metazone>
  2352. <metazone type="Novosibirsk">
  2353. <long>
  2354. <generic>Novosibirskeko ordua</generic>
  2355. <standard>Novosibirskeko ordu estandarra</standard>
  2356. <daylight>Novosibirskeko udako ordua</daylight>
  2357. </long>
  2358. </metazone>
  2359. <metazone type="Omsk">
  2360. <long>
  2361. <generic>Omskeko ordua</generic>
  2362. <standard>Omskeko ordu estandarra</standard>
  2363. <daylight>Omskeko udako ordua</daylight>
  2364. </long>
  2365. </metazone>
  2366. <metazone type="Pakistan">
  2367. <long>
  2368. <generic>Pakistango ordua</generic>
  2369. <standard>Pakistango ordu estandarra</standard>
  2370. <daylight>Pakistango udako ordua</daylight>
  2371. </long>
  2372. </metazone>
  2373. <metazone type="Palau">
  2374. <long>
  2375. <standard>Palauko ordua</standard>
  2376. </long>
  2377. </metazone>
  2378. <metazone type="Papua_New_Guinea">
  2379. <long>
  2380. <standard>Papua Ginea Berriko ordua</standard>
  2381. </long>
  2382. </metazone>
  2383. <metazone type="Paraguay">
  2384. <long>
  2385. <generic>Paraguayko ordua</generic>
  2386. <standard>Paraguayko ordu estandarra</standard>
  2387. <daylight>Paraguayko udako ordua</daylight>
  2388. </long>
  2389. </metazone>
  2390. <metazone type="Peru">
  2391. <long>
  2392. <generic>Peruko ordua</generic>
  2393. <standard>Peruko ordu estandarra</standard>
  2394. <daylight>Peruko udako ordua</daylight>
  2395. </long>
  2396. </metazone>
  2397. <metazone type="Philippines">
  2398. <long>
  2399. <generic>Filipinetako ordua</generic>
  2400. <standard>Filipinetako ordu estandarra</standard>
  2401. <daylight>Filipinetako udako ordua</daylight>
  2402. </long>
  2403. </metazone>
  2404. <metazone type="Phoenix_Islands">
  2405. <long>
  2406. <standard>Phoenix uharteetako ordua</standard>
  2407. </long>
  2408. </metazone>
  2409. <metazone type="Pierre_Miquelon">
  2410. <long>
  2411. <generic>Saint-Pierre eta Mikeluneko ordua</generic>
  2412. <standard>Saint-Pierre eta Mikeluneko ordu estandarra</standard>
  2413. <daylight>Saint-Pierre eta Mikeluneko udako ordua</daylight>
  2414. </long>
  2415. </metazone>
  2416. <metazone type="Pitcairn">
  2417. <long>
  2418. <standard>Pitcairneko ordua</standard>
  2419. </long>
  2420. </metazone>
  2421. <metazone type="Ponape">
  2422. <long>
  2423. <standard>Ponapeko ordua</standard>
  2424. </long>
  2425. </metazone>
  2426. <metazone type="Reunion">
  2427. <long>
  2428. <standard>Reunion uharteetako ordua</standard>
  2429. </long>
  2430. </metazone>
  2431. <metazone type="Rothera">
  2432. <long>
  2433. <standard>Rotherako ordua</standard>
  2434. </long>
  2435. </metazone>
  2436. <metazone type="Sakhalin">
  2437. <long>
  2438. <generic>Sakhalingo ordua</generic>
  2439. <standard>Sakhalingo ordu estandarra</standard>
  2440. <daylight>Sakhalingo udako ordua</daylight>
  2441. </long>
  2442. </metazone>
  2443. <metazone type="Samara">
  2444. <long>
  2445. <generic>Samarako ordua</generic>
  2446. <standard>Samarako ordu estandarra</standard>
  2447. <daylight>Samarako udako ordua</daylight>
  2448. </long>
  2449. </metazone>
  2450. <metazone type="Samoa">
  2451. <long>
  2452. <generic>Samoako ordua</generic>
  2453. <standard>Samoako ordu estandarra</standard>
  2454. <daylight>Samoako udako ordua</daylight>
  2455. </long>
  2456. </metazone>
  2457. <metazone type="Seychelles">
  2458. <long>
  2459. <standard>Seychelle uharteetako ordua</standard>
  2460. </long>
  2461. </metazone>
  2462. <metazone type="Singapore">
  2463. <long>
  2464. <standard>Singapurreko ordu estandarra</standard>
  2465. </long>
  2466. </metazone>
  2467. <metazone type="Solomon">
  2468. <long>
  2469. <standard>Salomon uharteetako ordua</standard>
  2470. </long>
  2471. </metazone>
  2472. <metazone type="South_Georgia">
  2473. <long>
  2474. <standard>Hego Georgiako ordua</standard>
  2475. </long>
  2476. </metazone>
  2477. <metazone type="Suriname">
  2478. <long>
  2479. <standard>Surinamgo ordua</standard>
  2480. </long>
  2481. </metazone>
  2482. <metazone type="Syowa">
  2483. <long>
  2484. <standard>Syowako ordua</standard>
  2485. </long>
  2486. </metazone>
  2487. <metazone type="Tahiti">
  2488. <long>
  2489. <standard>Tahitiko ordua</standard>
  2490. </long>
  2491. </metazone>
  2492. <metazone type="Taipei">
  2493. <long>
  2494. <generic>Taipeiko ordua</generic>
  2495. <standard>Taipeiko ordu estandarra</standard>
  2496. <daylight>Taipeiko udako ordua</daylight>
  2497. </long>
  2498. </metazone>
  2499. <metazone type="Tajikistan">
  2500. <long>
  2501. <standard>Tadjikistango ordua</standard>
  2502. </long>
  2503. </metazone>
  2504. <metazone type="Tokelau">
  2505. <long>
  2506. <standard>Tokelauko ordua</standard>
  2507. </long>
  2508. </metazone>
  2509. <metazone type="Tonga">
  2510. <long>
  2511. <generic>Tongako ordua</generic>
  2512. <standard>Tongako ordu estandarra</standard>
  2513. <daylight>Tongako udako ordua</daylight>
  2514. </long>
  2515. </metazone>
  2516. <metazone type="Truk">
  2517. <long>
  2518. <standard>Chuukeko ordua</standard>
  2519. </long>
  2520. </metazone>
  2521. <metazone type="Turkmenistan">
  2522. <long>
  2523. <generic>Turkmenistango ordua</generic>
  2524. <standard>Turkmenistango ordu estandarra</standard>
  2525. <daylight>Turkmenistango udako ordua</daylight>
  2526. </long>
  2527. </metazone>
  2528. <metazone type="Tuvalu">
  2529. <long>
  2530. <standard>Tuvaluko ordua</standard>
  2531. </long>
  2532. </metazone>
  2533. <metazone type="Uruguay">
  2534. <long>
  2535. <generic>Uruguayko ordua</generic>
  2536. <standard>Uruguayko ordu estandarra</standard>
  2537. <daylight>Uruguayko udako ordua</daylight>
  2538. </long>
  2539. </metazone>
  2540. <metazone type="Uzbekistan">
  2541. <long>
  2542. <generic>Uzbekistango ordua</generic>
  2543. <standard>Uzbekistango ordu estandarra</standard>
  2544. <daylight>Uzbekistango udako ordua</daylight>
  2545. </long>
  2546. </metazone>
  2547. <metazone type="Vanuatu">
  2548. <long>
  2549. <generic>Vanuatuko ordua</generic>
  2550. <standard>Vanuatuko ordu estandarra</standard>
  2551. <daylight>Vanuatuko udako ordua</daylight>
  2552. </long>
  2553. </metazone>
  2554. <metazone type="Venezuela">
  2555. <long>
  2556. <standard>Venezuelako ordua</standard>
  2557. </long>
  2558. </metazone>
  2559. <metazone type="Vladivostok">
  2560. <long>
  2561. <generic>Vladivostokeko ordua</generic>
  2562. <standard>Vladivostokeko ordu estandarra</standard>
  2563. <daylight>Vladivostokeko udako ordua</daylight>
  2564. </long>
  2565. </metazone>
  2566. <metazone type="Volgograd">
  2567. <long>
  2568. <generic>Volgogradeko ordua</generic>
  2569. <standard>Volgogradeko ordu estandarra</standard>
  2570. <daylight>Volgogradeko udako ordua</daylight>
  2571. </long>
  2572. </metazone>
  2573. <metazone type="Vostok">
  2574. <long>
  2575. <standard>Vostokeko ordua</standard>
  2576. </long>
  2577. </metazone>
  2578. <metazone type="Wake">
  2579. <long>
  2580. <standard>Wake uharteko ordua</standard>
  2581. </long>
  2582. </metazone>
  2583. <metazone type="Wallis">
  2584. <long>
  2585. <standard>Wallis eta Futunako ordua</standard>
  2586. </long>
  2587. </metazone>
  2588. <metazone type="Yakutsk">
  2589. <long>
  2590. <generic>Yakutskeko ordua</generic>
  2591. <standard>Yakutskeko ordu estandarra</standard>
  2592. <daylight>Yakutskeko udako ordua</daylight>
  2593. </long>
  2594. </metazone>
  2595. <metazone type="Yekaterinburg">
  2596. <long>
  2597. <generic>Yekaterinburgeko ordua</generic>
  2598. <standard>Jekaterinburgeko ordu estandarra</standard>
  2599. <daylight>Yekaterinburgeko udako ordua</daylight>
  2600. </long>
  2601. </metazone>
  2602. </timeZoneNames>
  2603. </dates>
  2604. <numbers>
  2605. <symbols numberSystem="latn">
  2606. <decimal>,</decimal>
  2607. <group>.</group>
  2608. <list>;</list>
  2609. <percentSign>%</percentSign>
  2610. <plusSign>+</plusSign>
  2611. <minusSign>-</minusSign>
  2612. <exponential>E</exponential>
  2613. <superscriptingExponent>×</superscriptingExponent>
  2614. <perMille>‰</perMille>
  2615. <infinity>∞</infinity>
  2616. <nan>NaN</nan>
  2617. </symbols>
  2618. <decimalFormats numberSystem="latn">
  2619. <decimalFormatLength>
  2620. <decimalFormat>
  2621. <pattern>#,##0.###</pattern>
  2622. </decimalFormat>
  2623. </decimalFormatLength>
  2624. <decimalFormatLength type="long">
  2625. <decimalFormat>
  2626. <pattern type="1000" count="one">0000</pattern>
  2627. <pattern type="1000" count="other">0000</pattern>
  2628. <pattern type="10000" count="one">00000</pattern>
  2629. <pattern type="10000" count="other">00000</pattern>
  2630. <pattern type="100000" count="one">000000</pattern>
  2631. <pattern type="100000" count="other">000000</pattern>
  2632. <pattern type="1000000" count="one">0 milioi</pattern>
  2633. <pattern type="1000000" count="other">0 milioi</pattern>
  2634. <pattern type="10000000" count="one">00 milioi</pattern>
  2635. <pattern type="10000000" count="other">00 milioi</pattern>
  2636. <pattern type="100000000" count="one">000 milioi</pattern>
  2637. <pattern type="100000000" count="other">000 milioi</pattern>
  2638. <pattern type="1000000000" count="one">0000 milioi</pattern>
  2639. <pattern type="1000000000" count="other">0000 milioi</pattern>
  2640. <pattern type="10000000000" count="one">00000 milioi</pattern>
  2641. <pattern type="10000000000" count="other">00000 milioi</pattern>
  2642. <pattern type="100000000000" count="one">000000 milioi</pattern>
  2643. <pattern type="100000000000" count="other">000000 milioi</pattern>
  2644. <pattern type="1000000000000" count="one">0 bilioi</pattern>
  2645. <pattern type="1000000000000" count="other">0 bilioi</pattern>
  2646. <pattern type="10000000000000" count="one">00 bilioi</pattern>
  2647. <pattern type="10000000000000" count="other">00 bilioi</pattern>
  2648. <pattern type="100000000000000" count="one">000 bilioi</pattern>
  2649. <pattern type="100000000000000" count="other">000 bilioi</pattern>
  2650. </decimalFormat>
  2651. </decimalFormatLength>
  2652. <decimalFormatLength type="short">
  2653. <decimalFormat>
  2654. <pattern type="1000" count="one">0000</pattern>
  2655. <pattern type="1000" count="other">0000</pattern>
  2656. <pattern type="10000" count="one">00000</pattern>
  2657. <pattern type="10000" count="other">00000</pattern>
  2658. <pattern type="100000" count="one">000000</pattern>
  2659. <pattern type="100000" count="other">000000</pattern>
  2660. <pattern type="1000000" count="one">0 M</pattern>
  2661. <pattern type="1000000" count="other">0 M</pattern>
  2662. <pattern type="10000000" count="one">00 M</pattern>
  2663. <pattern type="10000000" count="other">00 M</pattern>
  2664. <pattern type="100000000" count="one">000 M</pattern>
  2665. <pattern type="100000000" count="other">000 M</pattern>
  2666. <pattern type="1000000000" count="one">0000 M</pattern>
  2667. <pattern type="1000000000" count="other">0000 M</pattern>
  2668. <pattern type="10000000000" count="one">00000 M</pattern>
  2669. <pattern type="10000000000" count="other">00000 M</pattern>
  2670. <pattern type="100000000000" count="one">000000 M</pattern>
  2671. <pattern type="100000000000" count="other">000000 M</pattern>
  2672. <pattern type="1000000000000" count="one">0 B</pattern>
  2673. <pattern type="1000000000000" count="other">0 B</pattern>
  2674. <pattern type="10000000000000" count="one">00 B</pattern>
  2675. <pattern type="10000000000000" count="other">00 B</pattern>
  2676. <pattern type="100000000000000" count="one">000 B</pattern>
  2677. <pattern type="100000000000000" count="other">000 B</pattern>
  2678. </decimalFormat>
  2679. </decimalFormatLength>
  2680. </decimalFormats>
  2681. <scientificFormats numberSystem="latn">
  2682. <scientificFormatLength>
  2683. <scientificFormat>
  2684. <pattern>#E0</pattern>
  2685. </scientificFormat>
  2686. </scientificFormatLength>
  2687. </scientificFormats>
  2688. <percentFormats numberSystem="latn">
  2689. <percentFormatLength>
  2690. <percentFormat>
  2691. <pattern>% #,##0</pattern>
  2692. </percentFormat>
  2693. </percentFormatLength>
  2694. </percentFormats>
  2695. <currencyFormats numberSystem="latn">
  2696. <currencyFormatLength>
  2697. <currencyFormat type="standard">
  2698. <pattern>#,##0.00 ¤</pattern>
  2699. </currencyFormat>
  2700. <currencyFormat type="accounting">
  2701. <pattern>#,##0.00 ¤;(#,##0.00 ¤)</pattern>
  2702. </currencyFormat>
  2703. </currencyFormatLength>
  2704. <unitPattern count="one">{0} {1}</unitPattern>
  2705. <unitPattern count="other">{0} {1}</unitPattern>
  2706. </currencyFormats>
  2707. <currencies>
  2708. <currency type="AED">
  2709. <displayName>Arabiar Emirerri Batuetako dirhama</displayName>
  2710. <displayName count="one">Arabiar Emirerri Batuetako dirham</displayName>
  2711. <displayName count="other">Arabiar Emirerri Batuetako dirham</displayName>
  2712. </currency>
  2713. <currency type="AFN">
  2714. <displayName>Afganistango afghania</displayName>
  2715. <displayName count="one">Afganistango afghani</displayName>
  2716. <displayName count="other">Afganistango afghani</displayName>
  2717. </currency>
  2718. <currency type="ALL">
  2719. <displayName>Albaniako leka</displayName>
  2720. <displayName count="one">Albaniako lek</displayName>
  2721. <displayName count="other">Albaniako lek</displayName>
  2722. </currency>
  2723. <currency type="AMD">
  2724. <displayName>Armeniako drama</displayName>
  2725. <displayName count="one">Armeniako dram</displayName>
  2726. <displayName count="other">Armeniako dram</displayName>
  2727. </currency>
  2728. <currency type="ANG">
  2729. <displayName>Holandarren Antilletako guilderra</displayName>
  2730. <displayName count="one">Holandarren Antilletako guilder</displayName>
  2731. <displayName count="other">Holandarren Antilletako guilder</displayName>
  2732. </currency>
  2733. <currency type="AOA">
  2734. <displayName>Angolako kwanza</displayName>
  2735. <displayName count="one">Angolako kwanza</displayName>
  2736. <displayName count="other">Angolako kwanza</displayName>
  2737. </currency>
  2738. <currency type="ARS">
  2739. <displayName>Argentinako pesoa</displayName>
  2740. <displayName count="one">Argentinako peso</displayName>
  2741. <displayName count="other">Argentinako peso</displayName>
  2742. </currency>
  2743. <currency type="AUD">
  2744. <displayName>Australiako dolarra</displayName>
  2745. <displayName count="one">Australiako dolar</displayName>
  2746. <displayName count="other">Australiako dolar</displayName>
  2747. <symbol>A$</symbol>
  2748. </currency>
  2749. <currency type="AWG">
  2750. <displayName>Arubeko florina</displayName>
  2751. <displayName count="one">Arubeko florin</displayName>
  2752. <displayName count="other">Arubeko florin</displayName>
  2753. </currency>
  2754. <currency type="AZN">
  2755. <displayName>Azerbaijango manata</displayName>
  2756. <displayName count="one">Azerbaijango manat</displayName>
  2757. <displayName count="other">Azerbaijango manat</displayName>
  2758. </currency>
  2759. <currency type="BAM">
  2760. <displayName>Bosnia-Herzegovinako marko trukakorra</displayName>
  2761. <displayName count="one">Bosnia-Herzegovinako marko trukakor</displayName>
  2762. <displayName count="other">Bosnia-Herzegovinako marko trukakor</displayName>
  2763. </currency>
  2764. <currency type="BBD">
  2765. <displayName>Barbadosetako dolarra</displayName>
  2766. <displayName count="one">Barbadosetako dolar</displayName>
  2767. <displayName count="other">Barbadosetako dolar</displayName>
  2768. </currency>
  2769. <currency type="BDT">
  2770. <displayName>Bangladesheko taka</displayName>
  2771. <displayName count="one">Bangladesheko taka</displayName>
  2772. <displayName count="other">Bangladesheko taka</displayName>
  2773. </currency>
  2774. <currency type="BGN">
  2775. <displayName>Bulgariako leva</displayName>
  2776. <displayName count="one">Bulgariako lev</displayName>
  2777. <displayName count="other">Bulgariako lev</displayName>
  2778. </currency>
  2779. <currency type="BHD">
  2780. <displayName>Bahraingo dinarra</displayName>
  2781. <displayName count="one">Bahraingo dinar</displayName>
  2782. <displayName count="other">Bahraingo dinar</displayName>
  2783. </currency>
  2784. <currency type="BIF">
  2785. <displayName>Burundiko frankoa</displayName>
  2786. <displayName count="one">Burundiko franko</displayName>
  2787. <displayName count="other">Burundiko franko</displayName>
  2788. </currency>
  2789. <currency type="BMD">
  2790. <displayName>Bermudetako dolarra</displayName>
  2791. <displayName count="one">Bermudetako dolar</displayName>
  2792. <displayName count="other">Bermudetako dolar</displayName>
  2793. </currency>
  2794. <currency type="BND">
  2795. <displayName>Bruneiko dolarra</displayName>
  2796. <displayName count="one">Bruneiko dolar</displayName>
  2797. <displayName count="other">Bruneiko dolar</displayName>
  2798. </currency>
  2799. <currency type="BOB">
  2800. <displayName>Boliviako bolivianoa</displayName>
  2801. <displayName count="one">Boliviako boliviano</displayName>
  2802. <displayName count="other">Boliviako boliviano</displayName>
  2803. </currency>
  2804. <currency type="BRL">
  2805. <displayName>Brasilgo erreala</displayName>
  2806. <displayName count="one">Brasilgo erreal</displayName>
  2807. <displayName count="other">Brasilgo erreal</displayName>
  2808. <symbol>R$</symbol>
  2809. </currency>
  2810. <currency type="BSD">
  2811. <displayName>Bahametako dolarra</displayName>
  2812. <displayName count="one">Bahametako dolar</displayName>
  2813. <displayName count="other">Bahametako dolar</displayName>
  2814. </currency>
  2815. <currency type="BTN">
  2816. <displayName>Bhutango ngultruma</displayName>
  2817. <displayName count="one">Bhutango ngultrum</displayName>
  2818. <displayName count="other">Bhutango ngultrum</displayName>
  2819. </currency>
  2820. <currency type="BWP">
  2821. <displayName>Bosniako pula</displayName>
  2822. <displayName count="one">Bosniako pula</displayName>
  2823. <displayName count="other">Bosniako pula</displayName>
  2824. </currency>
  2825. <currency type="BYR">
  2826. <displayName>Bielorrusiako errubloa</displayName>
  2827. <displayName count="one">Bielorrusiako errublo</displayName>
  2828. <displayName count="other">Bielorrusiako errublo</displayName>
  2829. </currency>
  2830. <currency type="BZD">
  2831. <displayName>Belizeko dolarra</displayName>
  2832. <displayName count="one">Belizeko dolar</displayName>
  2833. <displayName count="other">Belizeko dolar</displayName>
  2834. </currency>
  2835. <currency type="CAD">
  2836. <displayName>Kanadako dolarra</displayName>
  2837. <displayName count="one">Kanadako dolar</displayName>
  2838. <displayName count="other">Kanadako dolar</displayName>
  2839. <symbol>CA$</symbol>
  2840. </currency>
  2841. <currency type="CDF">
  2842. <displayName>Kongoko frankoa</displayName>
  2843. <displayName count="one">Kongoko franko</displayName>
  2844. <displayName count="other">Kongoko franko</displayName>
  2845. </currency>
  2846. <currency type="CHF">
  2847. <displayName>Suitzako frankoa</displayName>
  2848. <displayName count="one">Suitzako franko</displayName>
  2849. <displayName count="other">Suitzako franko</displayName>
  2850. </currency>
  2851. <currency type="CLP">
  2852. <displayName>Txileko pesoa</displayName>
  2853. <displayName count="one">Txileko peso</displayName>
  2854. <displayName count="other">Txileko peso</displayName>
  2855. </currency>
  2856. <currency type="CNY">
  2857. <displayName>Txinako yuana</displayName>
  2858. <displayName count="one">Txinako yuan</displayName>
  2859. <displayName count="other">Txinako yuan</displayName>
  2860. <symbol>CN¥</symbol>
  2861. </currency>
  2862. <currency type="COP">
  2863. <displayName>Kolonbiako pesoa</displayName>
  2864. <displayName count="one">Kolonbiako peso</displayName>
  2865. <displayName count="other">Kolonbiako peso</displayName>
  2866. </currency>
  2867. <currency type="CRC">
  2868. <displayName>Costa Ricako colona</displayName>
  2869. <displayName count="one">Costa Ricako colon</displayName>
  2870. <displayName count="other">Costa Ricako colon</displayName>
  2871. </currency>
  2872. <currency type="CUC">
  2873. <displayName>Kubako peso trukakorra</displayName>
  2874. <displayName count="one">Kubako peso trukakor</displayName>
  2875. <displayName count="other">Kubako peso trukakor</displayName>
  2876. </currency>
  2877. <currency type="CUP">
  2878. <displayName>Kubako pesoa</displayName>
  2879. <displayName count="one">Kubako peso</displayName>
  2880. <displayName count="other">Kubako peso</displayName>
  2881. </currency>
  2882. <currency type="CVE">
  2883. <displayName>Cabo Verdeko ezkutua</displayName>
  2884. <displayName count="one">Cabo Verdeko ezkutu</displayName>
  2885. <displayName count="other">Cabo Verdeko ezkutu</displayName>
  2886. </currency>
  2887. <currency type="CZK">
  2888. <displayName>Txekiar Errepublikako koroa</displayName>
  2889. <displayName count="one">Txekiar Errepublikako koroa</displayName>
  2890. <displayName count="other">Txekiar Errepublikako koroa</displayName>
  2891. </currency>
  2892. <currency type="DJF">
  2893. <displayName>Djibouteko frankoa</displayName>
  2894. <displayName count="one">Djibouteko franko</displayName>
  2895. <displayName count="other">Djibouteko franko</displayName>
  2896. </currency>
  2897. <currency type="DKK">
  2898. <displayName>Danimarkako koroa</displayName>
  2899. <displayName count="one">Danimarkako koroa</displayName>
  2900. <displayName count="other">Danimarkako koroa</displayName>
  2901. </currency>
  2902. <currency type="DOP">
  2903. <displayName>Dominikar Errepublikako pesoa</displayName>
  2904. <displayName count="one">Dominikar Errepublikako peso</displayName>
  2905. <displayName count="other">Dominikar Errepublikako peso</displayName>
  2906. </currency>
  2907. <currency type="DZD">
  2908. <displayName>Algeriako dinarra</displayName>
  2909. <displayName count="one">Algeriako dinar</displayName>
  2910. <displayName count="other">Algeriako dinar</displayName>
  2911. </currency>
  2912. <currency type="EGP">
  2913. <displayName>Egiptoko libera</displayName>
  2914. <displayName count="one">Egiptoko libera</displayName>
  2915. <displayName count="other">Egiptoko libera</displayName>
  2916. </currency>
  2917. <currency type="ERN">
  2918. <displayName>Eritreako nakfa</displayName>
  2919. <displayName count="one">Eritreako nakfa</displayName>
  2920. <displayName count="other">Eritreako nakfa</displayName>
  2921. </currency>
  2922. <currency type="ESP">
  2923. <pattern>¤ #,##0.00</pattern>
  2924. <symbol>₧</symbol>
  2925. <decimal>,</decimal>
  2926. <group>.</group>
  2927. </currency>
  2928. <currency type="ETB">
  2929. <displayName>Etiopiako birra</displayName>
  2930. <displayName count="one">Etiopiako birra</displayName>
  2931. <displayName count="other">Etiopiako birra</displayName>
  2932. </currency>
  2933. <currency type="EUR">
  2934. <displayName>Euroa</displayName>
  2935. <displayName count="one">euro</displayName>
  2936. <displayName count="other">euro</displayName>
  2937. <symbol>€</symbol>
  2938. </currency>
  2939. <currency type="FJD">
  2940. <displayName>Fijiko dolarra</displayName>
  2941. <displayName count="one">Fijiko dolar</displayName>
  2942. <displayName count="other">Fijiko dolar</displayName>
  2943. </currency>
  2944. <currency type="FKP">
  2945. <displayName>Falkland uharteetako libera</displayName>
  2946. <displayName count="one">Falkland uharteetako libera</displayName>
  2947. <displayName count="other">Falkland uharteetako libera</displayName>
  2948. </currency>
  2949. <currency type="GBP">
  2950. <displayName>Libera esterlina</displayName>
  2951. <displayName count="one">libera esterlina</displayName>
  2952. <displayName count="other">libera esterlina</displayName>
  2953. <symbol>£</symbol>
  2954. </currency>
  2955. <currency type="GEL">
  2956. <displayName>Georgiako laria</displayName>
  2957. <displayName count="one">Georgiako lari</displayName>
  2958. <displayName count="other">Georgiako lari</displayName>
  2959. </currency>
  2960. <currency type="GHS">
  2961. <displayName>Ghanako cedia</displayName>
  2962. <displayName count="one">Ghanako cedi</displayName>
  2963. <displayName count="other">Ghanako cedi</displayName>
  2964. </currency>
  2965. <currency type="GIP">
  2966. <displayName>Gibraltarreko libera</displayName>
  2967. <displayName count="one">Gibraltarreko libera</displayName>
  2968. <displayName count="other">Gibraltarreko libera</displayName>
  2969. </currency>
  2970. <currency type="GMD">
  2971. <displayName>Ganbiako dalasia</displayName>
  2972. <displayName count="one">Ganbiako dalasi</displayName>
  2973. <displayName count="other">Ganbiako dalasi</displayName>
  2974. </currency>
  2975. <currency type="GNF">
  2976. <displayName>Gineako frankoa</displayName>
  2977. <displayName count="one">Gineako franko</displayName>
  2978. <displayName count="other">Gineako franko</displayName>
  2979. </currency>
  2980. <currency type="GTQ">
  2981. <displayName>Guatemalako quetzala</displayName>
  2982. <displayName count="one">Guatemalako quetzal</displayName>
  2983. <displayName count="other">Guatemalako quetzal</displayName>
  2984. </currency>
  2985. <currency type="GYD">
  2986. <displayName>Guyanako dolarra</displayName>
  2987. <displayName count="one">Guyanako dolar</displayName>
  2988. <displayName count="other">Guyanako dolar</displayName>
  2989. </currency>
  2990. <currency type="HKD">
  2991. <displayName>Hong Kongeko dolarra</displayName>
  2992. <displayName count="one">Hong Kongeko dolar</displayName>
  2993. <displayName count="other">Hong Kongeko dolar</displayName>
  2994. <symbol>HK$</symbol>
  2995. </currency>
  2996. <currency type="HNL">
  2997. <displayName>Hondurasko lempira</displayName>
  2998. <displayName count="one">Hondurasko lempira</displayName>
  2999. <displayName count="other">Hondurasko lempira</displayName>
  3000. </currency>
  3001. <currency type="HRK">
  3002. <displayName>Kroaziako kuna</displayName>
  3003. <displayName count="one">Kroaziako kuna</displayName>
  3004. <displayName count="other">Kroaziako kuna</displayName>
  3005. </currency>
  3006. <currency type="HTG">
  3007. <displayName>Haitiko gourdea</displayName>
  3008. <displayName count="one">Haitiko gourde</displayName>
  3009. <displayName count="other">Haitiko gourde</displayName>
  3010. </currency>
  3011. <currency type="HUF">
  3012. <displayName>Hungariako florina</displayName>
  3013. <displayName count="one">Hungariako florin</displayName>
  3014. <displayName count="other">Hungariako florin</displayName>
  3015. </currency>
  3016. <currency type="IDR">
  3017. <displayName>Indonesiako errupia</displayName>
  3018. <displayName count="one">Indonesiako errupia</displayName>
  3019. <displayName count="other">Indonesiako errupia</displayName>
  3020. </currency>
  3021. <currency type="ILS">
  3022. <displayName>Israeleko sheqel berria</displayName>
  3023. <displayName count="one">Israeleko sheqel berri</displayName>
  3024. <displayName count="other">Israeleko sheqel berri</displayName>
  3025. <symbol>₪</symbol>
  3026. </currency>
  3027. <currency type="INR">
  3028. <displayName>Indiako errupia</displayName>
  3029. <displayName count="one">Indiako errupia</displayName>
  3030. <displayName count="other">Indiako errupia</displayName>
  3031. <symbol>₹</symbol>
  3032. </currency>
  3033. <currency type="IQD">
  3034. <displayName>Irakeko dinarra</displayName>
  3035. <displayName count="one">Irakeko dinar</displayName>
  3036. <displayName count="other">Irakeko dinar</displayName>
  3037. </currency>
  3038. <currency type="IRR">
  3039. <displayName>Irango riala</displayName>
  3040. <displayName count="one">Irango rial</displayName>
  3041. <displayName count="other">Irango rial</displayName>
  3042. </currency>
  3043. <currency type="ISK">
  3044. <displayName>Islandiako koroa</displayName>
  3045. <displayName count="one">Islandiako koroa</displayName>
  3046. <displayName count="other">Islandiako koroa</displayName>
  3047. </currency>
  3048. <currency type="JMD">
  3049. <displayName>Jamaikako dolarra</displayName>
  3050. <displayName count="one">Jamaikako dolar</displayName>
  3051. <displayName count="other">Jamaikako dolar</displayName>
  3052. </currency>
  3053. <currency type="JOD">
  3054. <displayName>Jordaniako dinarra</displayName>
  3055. <displayName count="one">Jordaniako dinar</displayName>
  3056. <displayName count="other">Jordaniako dinar</displayName>
  3057. </currency>
  3058. <currency type="JPY">
  3059. <displayName>Japoniako yena</displayName>
  3060. <displayName count="one">Japoniako yen</displayName>
  3061. <displayName count="other">Japoniako yen</displayName>
  3062. <symbol>JP¥</symbol>
  3063. </currency>
  3064. <currency type="KES">
  3065. <displayName>Kenyako txelina</displayName>
  3066. <displayName count="one">Kenyako txelin</displayName>
  3067. <displayName count="other">Kenyako txelin</displayName>
  3068. </currency>
  3069. <currency type="KGS">
  3070. <displayName>Kirgizistango soma</displayName>
  3071. <displayName count="one">Kirgizistango som</displayName>
  3072. <displayName count="other">Kirgizistango som</displayName>
  3073. </currency>
  3074. <currency type="KHR">
  3075. <displayName>Kanbodiako riela</displayName>
  3076. <displayName count="one">Kanbodiako riel</displayName>
  3077. <displayName count="other">Kanbodiako riel</displayName>
  3078. </currency>
  3079. <currency type="KMF">
  3080. <displayName>Komoreetako frankoa</displayName>
  3081. <displayName count="one">Komoreetako franko</displayName>
  3082. <displayName count="other">Komoreetako franko</displayName>
  3083. </currency>
  3084. <currency type="KPW">
  3085. <displayName>Ipar Koreako wona</displayName>
  3086. <displayName count="one">Ipar Koreako won</displayName>
  3087. <displayName count="other">Ipar Koreako won</displayName>
  3088. </currency>
  3089. <currency type="KRW">
  3090. <displayName>Hego Koreako wona</displayName>
  3091. <displayName count="one">Hego Koreako won</displayName>
  3092. <displayName count="other">Hego Koreako won</displayName>
  3093. <symbol>₩</symbol>
  3094. </currency>
  3095. <currency type="KWD">
  3096. <displayName>Kuwaiteko dinarra</displayName>
  3097. <displayName count="one">Kuwaiteko dinar</displayName>
  3098. <displayName count="other">Kuwaiteko dinar</displayName>
  3099. </currency>
  3100. <currency type="KYD">
  3101. <displayName>Kaiman uharteetako dolarra</displayName>
  3102. <displayName count="one">Kaiman uharteetako dolar</displayName>
  3103. <displayName count="other">Kaiman uharteetako dolar</displayName>
  3104. </currency>
  3105. <currency type="KZT">
  3106. <displayName>Kazakhstango tengea</displayName>
  3107. <displayName count="one">Kazakhstango tenge</displayName>
  3108. <displayName count="other">Kazakhstango tenge</displayName>
  3109. </currency>
  3110. <currency type="LAK">
  3111. <displayName>Laoseko kipa</displayName>
  3112. <displayName count="one">Laoseko kip</displayName>
  3113. <displayName count="other">Laoseko kip</displayName>
  3114. </currency>
  3115. <currency type="LBP">
  3116. <displayName>Libanoko libera</displayName>
  3117. <displayName count="one">Libanoko libera</displayName>
  3118. <displayName count="other">Libanoko libera</displayName>
  3119. </currency>
  3120. <currency type="LKR">
  3121. <displayName>Sri Lankako errupia</displayName>
  3122. <displayName count="one">Sri Lankako errupia</displayName>
  3123. <displayName count="other">Sri Lankako errupia</displayName>
  3124. </currency>
  3125. <currency type="LRD">
  3126. <displayName>Liberiako dolarra</displayName>
  3127. <displayName count="one">Liberiako dolar</displayName>
  3128. <displayName count="other">Liberiako dolar</displayName>
  3129. </currency>
  3130. <currency type="LSL">
  3131. <displayName>Lesothoko lotia</displayName>
  3132. </currency>
  3133. <currency type="LTL">
  3134. <displayName>Lituaniako litasa</displayName>
  3135. <displayName count="one">Lituaniako litas</displayName>
  3136. <displayName count="other">Lituaniako litas</displayName>
  3137. </currency>
  3138. <currency type="LVL">
  3139. <displayName>Letoniako latsa</displayName>
  3140. <displayName count="one">Letoniako lats</displayName>
  3141. <displayName count="other">Letoniako lats</displayName>
  3142. </currency>
  3143. <currency type="LYD">
  3144. <displayName>Libiako dinarra</displayName>
  3145. <displayName count="one">Libiako dinar</displayName>
  3146. <displayName count="other">Libiako dinar</displayName>
  3147. </currency>
  3148. <currency type="MAD">
  3149. <displayName>Marokoko dirhama</displayName>
  3150. <displayName count="one">Marokoko dirham</displayName>
  3151. <displayName count="other">Marokoko dirham</displayName>
  3152. </currency>
  3153. <currency type="MDL">
  3154. <displayName>Moldaviako leua</displayName>
  3155. <displayName count="one">Moldaviako leu</displayName>
  3156. <displayName count="other">Moldaviako leu</displayName>
  3157. </currency>
  3158. <currency type="MGA">
  3159. <displayName>Madagaskarreko ariarya</displayName>
  3160. <displayName count="one">Madagaskarreko ariary</displayName>
  3161. <displayName count="other">Madagaskarreko ariary</displayName>
  3162. </currency>
  3163. <currency type="MKD">
  3164. <displayName>Mazedoniako denara</displayName>
  3165. <displayName count="one">Mazedoniako dinar</displayName>
  3166. <displayName count="other">Mazedoniako dinar</displayName>
  3167. </currency>
  3168. <currency type="MMK">
  3169. <displayName>Myanmarreko kyata</displayName>
  3170. <displayName count="one">Myanmarreko kyat</displayName>
  3171. <displayName count="other">Myanmarreko kyat</displayName>
  3172. </currency>
  3173. <currency type="MNT">
  3174. <displayName>Mongoliako tugrika</displayName>
  3175. <displayName count="one">Mongoliako tugrik</displayName>
  3176. <displayName count="other">Mongoliako tugrik</displayName>
  3177. </currency>
  3178. <currency type="MOP">
  3179. <displayName>Macanako pataca</displayName>
  3180. <displayName count="one">Macanako pataca</displayName>
  3181. <displayName count="other">Macanako pataca</displayName>
  3182. </currency>
  3183. <currency type="MRO">
  3184. <displayName>Mauritaniako ouguiya</displayName>
  3185. <displayName count="one">Mauritaniako ouguiya</displayName>
  3186. <displayName count="other">Mauritaniako ouguiya</displayName>
  3187. </currency>
  3188. <currency type="MUR">
  3189. <displayName>Maurizio uharteetako errupia</displayName>
  3190. <displayName count="one">Maurizio uharteetako errupia</displayName>
  3191. <displayName count="other">Maurizio uharteetako errupia</displayName>
  3192. </currency>
  3193. <currency type="MVR">
  3194. <displayName>Maldivetako rufiyaa</displayName>
  3195. <displayName count="one">Maldivetako rufiyaa</displayName>
  3196. <displayName count="other">Maldivetako rufiyaa</displayName>
  3197. </currency>
  3198. <currency type="MWK">
  3199. <displayName>Malawiko kwacha</displayName>
  3200. <displayName count="one">Malawiko kwacha</displayName>
  3201. <displayName count="other">Malawiko kwacha</displayName>
  3202. </currency>
  3203. <currency type="MXN">
  3204. <displayName>Mexikoko pesoa</displayName>
  3205. <displayName count="one">Mexikoko peso</displayName>
  3206. <displayName count="other">Mexikoko peso</displayName>
  3207. <symbol>MX$</symbol>
  3208. </currency>
  3209. <currency type="MYR">
  3210. <displayName>Malaysiako ringgita</displayName>
  3211. <displayName count="one">Malaysiako ringgit</displayName>
  3212. <displayName count="other">Malaysiako ringgit</displayName>
  3213. </currency>
  3214. <currency type="MZN">
  3215. <displayName>Mozambikeko metikala</displayName>
  3216. <displayName count="one">Mozambikeko metikal</displayName>
  3217. <displayName count="other">Mozambikeko metikal</displayName>
  3218. </currency>
  3219. <currency type="NAD">
  3220. <displayName>Namibiako dolarra</displayName>
  3221. <displayName count="one">Namibiako dolar</displayName>
  3222. <displayName count="other">Namibiako dolar</displayName>
  3223. </currency>
  3224. <currency type="NGN">
  3225. <displayName>Nigeriako naira</displayName>
  3226. <displayName count="one">Nigeriako naira</displayName>
  3227. <displayName count="other">Nigeriako naira</displayName>
  3228. </currency>
  3229. <currency type="NIO">
  3230. <displayName>Nikaraguako cordoba</displayName>
  3231. <displayName count="one">Nikaraguako cordoba</displayName>
  3232. <displayName count="other">Nikaraguako cordoba</displayName>
  3233. </currency>
  3234. <currency type="NOK">
  3235. <displayName>Norvegiako koroa</displayName>
  3236. <displayName count="one">Norvegiako koroa</displayName>
  3237. <displayName count="other">Norvegiako koroa</displayName>
  3238. </currency>
  3239. <currency type="NPR">
  3240. <displayName>Nepalgo errupia</displayName>
  3241. <displayName count="one">Nepalgo errupia</displayName>
  3242. <displayName count="other">Nepalgo errupia</displayName>
  3243. </currency>
  3244. <currency type="NZD">
  3245. <displayName>Zeelanda Berriko dolarra</displayName>
  3246. <displayName count="one">Zeelanda Berriko dolar</displayName>
  3247. <displayName count="other">Zeelanda Berriko dolar</displayName>
  3248. <symbol>NZ$</symbol>
  3249. </currency>
  3250. <currency type="OMR">
  3251. <displayName>Omango riala</displayName>
  3252. <displayName count="one">Omango rial</displayName>
  3253. <displayName count="other">Omango rial</displayName>
  3254. </currency>
  3255. <currency type="PAB">
  3256. <displayName>Panamako balboa</displayName>
  3257. <displayName count="one">Panamako balboa</displayName>
  3258. <displayName count="other">Panamako balboa</displayName>
  3259. </currency>
  3260. <currency type="PEN">
  3261. <displayName>Peruko sol berria</displayName>
  3262. <displayName count="one">Peruko sol berri</displayName>
  3263. <displayName count="other">Peruko sol berri</displayName>
  3264. </currency>
  3265. <currency type="PGK">
  3266. <displayName>Papua Ginea Berriko kina</displayName>
  3267. <displayName count="one">Papua Ginea Berriko kina</displayName>
  3268. <displayName count="other">Papua Ginea Berriko kina</displayName>
  3269. </currency>
  3270. <currency type="PHP">
  3271. <displayName>Filipinetako pesoa</displayName>
  3272. <displayName count="one">Filipinetako peso</displayName>
  3273. <displayName count="other">Filipinetako peso</displayName>
  3274. </currency>
  3275. <currency type="PKR">
  3276. <displayName>Pakistango errupia</displayName>
  3277. <displayName count="one">Pakistango errupia</displayName>
  3278. <displayName count="other">Pakistango errupia</displayName>
  3279. </currency>
  3280. <currency type="PLN">
  3281. <displayName>Poloniako zlotya</displayName>
  3282. <displayName count="one">Poloniako zloty</displayName>
  3283. <displayName count="other">Poloniako zloty</displayName>
  3284. </currency>
  3285. <currency type="PYG">
  3286. <displayName>Paraguaiko guarania</displayName>
  3287. <displayName count="one">Paraguaiko guarani</displayName>
  3288. <displayName count="other">Paraguaiko guarani</displayName>
  3289. </currency>
  3290. <currency type="QAR">
  3291. <displayName>Qatarreko riala</displayName>
  3292. <displayName count="one">Qatarreko rial</displayName>
  3293. <displayName count="other">Qatarreko rial</displayName>
  3294. </currency>
  3295. <currency type="RON">
  3296. <displayName>Errumaniako leua</displayName>
  3297. <displayName count="one">Errumaniako leu</displayName>
  3298. <displayName count="other">Errumaniako leu</displayName>
  3299. </currency>
  3300. <currency type="RSD">
  3301. <displayName>Serbiako dinarra</displayName>
  3302. <displayName count="one">Serbiako dinar</displayName>
  3303. <displayName count="other">Serbiako dinar</displayName>
  3304. </currency>
  3305. <currency type="RUB">
  3306. <displayName>Errusiako errubloa</displayName>
  3307. <displayName count="one">Errusiako errublo</displayName>
  3308. <displayName count="other">Errusiako errublo</displayName>
  3309. </currency>
  3310. <currency type="RWF">
  3311. <displayName>Ruandako frankoa</displayName>
  3312. <displayName count="one">Ruandako franko</displayName>
  3313. <displayName count="other">Ruandako franko</displayName>
  3314. </currency>
  3315. <currency type="SAR">
  3316. <displayName>Saudiko riala</displayName>
  3317. <displayName count="one">Saudiko rial</displayName>
  3318. <displayName count="other">Saudiko rial</displayName>
  3319. </currency>
  3320. <currency type="SBD">
  3321. <displayName>Salomon uharteetako dolarra</displayName>
  3322. <displayName count="one">Salomon uharteetako dolar</displayName>
  3323. <displayName count="other">Salomon uharteetako dolar</displayName>
  3324. </currency>
  3325. <currency type="SCR">
  3326. <displayName>Seychelleetako errupia</displayName>
  3327. <displayName count="one">Seychelleetako errupia</displayName>
  3328. <displayName count="other">Seychelleetako errupia</displayName>
  3329. </currency>
  3330. <currency type="SDG">
  3331. <displayName>Sudango libera</displayName>
  3332. <displayName count="one">Sudango libera</displayName>
  3333. <displayName count="other">Sudango libera</displayName>
  3334. </currency>
  3335. <currency type="SEK">
  3336. <displayName>Suediako koroa</displayName>
  3337. <displayName count="one">Suediako koroa</displayName>
  3338. <displayName count="other">Suediako koroa</displayName>
  3339. </currency>
  3340. <currency type="SGD">
  3341. <displayName>Singapurreko dolarra</displayName>
  3342. <displayName count="one">Singapurreko dolar</displayName>
  3343. <displayName count="other">Singapurreko dolar</displayName>
  3344. </currency>
  3345. <currency type="SHP">
  3346. <displayName>Santa Helenako libera</displayName>
  3347. <displayName count="one">Santa Helenako libera</displayName>
  3348. <displayName count="other">Santa Helenako libera</displayName>
  3349. </currency>
  3350. <currency type="SLL">
  3351. <displayName>Sierra Leonako leona</displayName>
  3352. <displayName count="one">Sierra Leonako leona</displayName>
  3353. <displayName count="other">Sierra Leonako leona</displayName>
  3354. </currency>
  3355. <currency type="SOS">
  3356. <displayName>Somaliako txelina</displayName>
  3357. <displayName count="one">Somaliako txelin</displayName>
  3358. <displayName count="other">Somaliako txelin</displayName>
  3359. </currency>
  3360. <currency type="SRD">
  3361. <displayName>Surinameko dolarra</displayName>
  3362. <displayName count="one">Surinameko dolar</displayName>
  3363. <displayName count="other">Surinameko dolar</displayName>
  3364. </currency>
  3365. <currency type="SSP">
  3366. <displayName>Hego Sudango libera</displayName>
  3367. <displayName count="one">Hego Sudango libera</displayName>
  3368. <displayName count="other">Hego Sudango libera</displayName>
  3369. </currency>
  3370. <currency type="STD">
  3371. <displayName>Sao Tomeko eta Principeko dobra</displayName>
  3372. <displayName count="one">Sao Tomeko eta Principeko dobra</displayName>
  3373. <displayName count="other">Sao Tomeko eta Principeko dobra</displayName>
  3374. </currency>
  3375. <currency type="SYP">
  3376. <displayName>Siriako libera</displayName>
  3377. <displayName count="one">Siriako libera</displayName>
  3378. <displayName count="other">Siriako libera</displayName>
  3379. </currency>
  3380. <currency type="SZL">
  3381. <displayName>Swaziko lilangenia</displayName>
  3382. <displayName count="one">Swaziko lilangeni</displayName>
  3383. <displayName count="other">Swaziko lilangeni</displayName>
  3384. </currency>
  3385. <currency type="THB">
  3386. <displayName>Thailandiako bahta</displayName>
  3387. <displayName count="one">Thailandiako baht</displayName>
  3388. <displayName count="other">Thailandiako baht</displayName>
  3389. <symbol>฿</symbol>
  3390. </currency>
  3391. <currency type="TJS">
  3392. <displayName>Tajikistango somonia</displayName>
  3393. <displayName count="one">Tajikistango somoni</displayName>
  3394. <displayName count="other">Tajikistango somoni</displayName>
  3395. </currency>
  3396. <currency type="TMT">
  3397. <displayName>Turkmenistango manata</displayName>
  3398. <displayName count="one">Turkmenistango manat</displayName>
  3399. <displayName count="other">Turkmenistango manat</displayName>
  3400. </currency>
  3401. <currency type="TND">
  3402. <displayName>Tunisiako dinarra</displayName>
  3403. <displayName count="one">Tunisiako dinar</displayName>
  3404. <displayName count="other">Tunisiako dinar</displayName>
  3405. </currency>
  3406. <currency type="TOP">
  3407. <displayName>Tongako Paʻanga</displayName>
  3408. <displayName count="one">Tongako Paʻanga</displayName>
  3409. <displayName count="other">Tongako Paʻanga</displayName>
  3410. </currency>
  3411. <currency type="TRY">
  3412. <displayName>Turkiako lira</displayName>
  3413. <displayName count="one">Turkiako lira</displayName>
  3414. <displayName count="other">Turkiako lira</displayName>
  3415. </currency>
  3416. <currency type="TTD">
  3417. <displayName>Trinidadeko eta Tobagoko dolarra</displayName>
  3418. <displayName count="one">Trinidadeko eta Tobagoko dolar</displayName>
  3419. <displayName count="other">Trinidadeko eta Tobagoko dolar</displayName>
  3420. </currency>
  3421. <currency type="TWD">
  3422. <displayName>Taiwango dolar berria</displayName>
  3423. <displayName count="one">Taiwango dolar berri</displayName>
  3424. <displayName count="other">Taiwango dolar berri</displayName>
  3425. <symbol>NT$</symbol>
  3426. </currency>
  3427. <currency type="TZS">
  3428. <displayName>Tanzaniako txelina</displayName>
  3429. <displayName count="one">Tanzaniako txelin</displayName>
  3430. <displayName count="other">Tanzaniako txelin</displayName>
  3431. </currency>
  3432. <currency type="UAH">
  3433. <displayName>Ukrainako hryvnia</displayName>
  3434. <displayName count="one">Ukrainako hryvnia</displayName>
  3435. <displayName count="other">Ukrainako hryvnia</displayName>
  3436. </currency>
  3437. <currency type="UGX">
  3438. <displayName>Ugandako txelina</displayName>
  3439. <displayName count="one">Ugandako txelin</displayName>
  3440. <displayName count="other">Ugandako txelin</displayName>
  3441. </currency>
  3442. <currency type="USD">
  3443. <displayName>AEBetako dolarra</displayName>
  3444. <displayName count="one">AEBetako dolar</displayName>
  3445. <displayName count="other">AEBetako dolar</displayName>
  3446. <symbol>US$</symbol>
  3447. </currency>
  3448. <currency type="UYU">
  3449. <displayName>Uruguaiko pesoa</displayName>
  3450. <displayName count="one">Uruguaiko peso</displayName>
  3451. <displayName count="other">Uruguaiko peso</displayName>
  3452. </currency>
  3453. <currency type="UZS">
  3454. <displayName>Uzbekistango soma</displayName>
  3455. <displayName count="one">Uzbekistango som</displayName>
  3456. <displayName count="other">Uzbekistango som</displayName>
  3457. </currency>
  3458. <currency type="VEF">
  3459. <displayName>Venezuelako bolivarra</displayName>
  3460. <displayName count="one">Venezuelako bolivar</displayName>
  3461. <displayName count="other">Venezuelako bolivar</displayName>
  3462. </currency>
  3463. <currency type="VND">
  3464. <displayName>Vietnameko donga</displayName>
  3465. <displayName count="one">Vietnameko dong</displayName>
  3466. <displayName count="other">Vietnameko dong</displayName>
  3467. <symbol>₫</symbol>
  3468. </currency>
  3469. <currency type="VUV">
  3470. <displayName>Vanuatuko vatua</displayName>
  3471. <displayName count="one">Vanuatuko vatu</displayName>
  3472. <displayName count="other">Vanuatuko vatu</displayName>
  3473. </currency>
  3474. <currency type="WST">
  3475. <displayName>Samoko tala</displayName>
  3476. <displayName count="one">Samoko tala</displayName>
  3477. <displayName count="other">Samoko tala</displayName>
  3478. </currency>
  3479. <currency type="XAF">
  3480. <displayName>Afrika erdialdeko frankoa BEAC</displayName>
  3481. <displayName count="one">Afrika erdialdeko franko BEAC</displayName>
  3482. <displayName count="other">Afrika erdialdeko franko BEAC</displayName>
  3483. <symbol>FCFA</symbol>
  3484. </currency>
  3485. <currency type="XCD">
  3486. <displayName>Karibe ekialdeko dolarra</displayName>
  3487. <displayName count="one">Karibe ekialdeko dolar</displayName>
  3488. <displayName count="other">Karibe ekialdeko dolar</displayName>
  3489. <symbol>EC$</symbol>
  3490. </currency>
  3491. <currency type="XOF">
  3492. <displayName>Afrika ekialdeko frankoa BCEAO</displayName>
  3493. <displayName count="one">Afrika ekialdeko franko BCEAO</displayName>
  3494. <displayName count="other">Afrika ekialdeko franko BCEAO</displayName>
  3495. <symbol>CFA</symbol>
  3496. </currency>
  3497. <currency type="XPF">
  3498. <displayName>CFP frankoa</displayName>
  3499. <displayName count="one">CFP franko</displayName>
  3500. <displayName count="other">CFP franko</displayName>
  3501. <symbol>CFPF</symbol>
  3502. </currency>
  3503. <currency type="XXX">
  3504. <displayName>Moneta ezezaguna</displayName>
  3505. <displayName count="one">(moneta ezezaguna)</displayName>
  3506. <displayName count="other">(moneta ezezaguna)</displayName>
  3507. </currency>
  3508. <currency type="YER">
  3509. <displayName>Yemengo riala</displayName>
  3510. <displayName count="one">Yemengo rial</displayName>
  3511. <displayName count="other">Yemengo rial</displayName>
  3512. </currency>
  3513. <currency type="ZAR">
  3514. <displayName>Hegoafrikako randa</displayName>
  3515. <displayName count="one">Hegoafrikako randa</displayName>
  3516. <displayName count="other">Hegoafrikako randa</displayName>
  3517. </currency>
  3518. <currency type="ZMK">
  3519. <displayName>Zambiako kwacha (1968–2012)</displayName>
  3520. </currency>
  3521. <currency type="ZMW">
  3522. <displayName>Zambiako kwacha</displayName>
  3523. <displayName count="one">Zambiako kwacha</displayName>
  3524. <displayName count="other">Zambiako kwacha</displayName>
  3525. </currency>
  3526. </currencies>
  3527. <miscPatterns numberSystem="latn">
  3528. <pattern type="atLeast">{0}+</pattern>
  3529. <pattern type="range">{0}–{1}</pattern>
  3530. </miscPatterns>
  3531. </numbers>
  3532. <units>
  3533. <unitLength type="long">
  3534. <compoundUnit type="per">
  3535. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  3536. </compoundUnit>
  3537. <unit type="acceleration-g-force">
  3538. <unitPattern count="one">{0} grabitate-indar</unitPattern>
  3539. <unitPattern count="other">{0} grabitate-indar</unitPattern>
  3540. </unit>
  3541. <unit type="angle-arc-minute">
  3542. <unitPattern count="one">{0} minutu</unitPattern>
  3543. <unitPattern count="other">{0} minutu</unitPattern>
  3544. </unit>
  3545. <unit type="angle-arc-second">
  3546. <unitPattern count="one">{0} segundo</unitPattern>
  3547. <unitPattern count="other">{0} segundo</unitPattern>
  3548. </unit>
  3549. <unit type="angle-degree">
  3550. <unitPattern count="one">{0} gradu</unitPattern>
  3551. <unitPattern count="other">{0} gradu</unitPattern>
  3552. </unit>
  3553. <unit type="area-acre">
  3554. <unitPattern count="one">{0} akre</unitPattern>
  3555. <unitPattern count="other">{0} akre</unitPattern>
  3556. </unit>
  3557. <unit type="area-hectare">
  3558. <unitPattern count="one">{0} hektarea</unitPattern>
  3559. <unitPattern count="other">{0} hektarea</unitPattern>
  3560. </unit>
  3561. <unit type="area-square-foot">
  3562. <unitPattern count="one">{0} oin karratu</unitPattern>
  3563. <unitPattern count="other">{0} oin karratu</unitPattern>
  3564. </unit>
  3565. <unit type="area-square-kilometer">
  3566. <unitPattern count="one">{0} kilometro karratu</unitPattern>
  3567. <unitPattern count="other">{0} kilometro karratu</unitPattern>
  3568. </unit>
  3569. <unit type="area-square-meter">
  3570. <unitPattern count="one">{0} metro karratu</unitPattern>
  3571. <unitPattern count="other">{0} metro karratu</unitPattern>
  3572. </unit>
  3573. <unit type="area-square-mile">
  3574. <unitPattern count="one">{0} milia karratu</unitPattern>
  3575. <unitPattern count="other">{0} milia karratu</unitPattern>
  3576. </unit>
  3577. <unit type="duration-day">
  3578. <unitPattern count="one">{0} egun</unitPattern>
  3579. <unitPattern count="other">{0} egun</unitPattern>
  3580. </unit>
  3581. <unit type="duration-hour">
  3582. <unitPattern count="one">{0} ordu</unitPattern>
  3583. <unitPattern count="other">{0} ordu</unitPattern>
  3584. </unit>
  3585. <unit type="duration-millisecond">
  3586. <unitPattern count="one">{0} milisegundo</unitPattern>
  3587. <unitPattern count="other">{0} milisegundo</unitPattern>
  3588. </unit>
  3589. <unit type="duration-minute">
  3590. <unitPattern count="one">{0} minutu</unitPattern>
  3591. <unitPattern count="other">{0} minutu</unitPattern>
  3592. </unit>
  3593. <unit type="duration-month">
  3594. <unitPattern count="one">{0} hilabete</unitPattern>
  3595. <unitPattern count="other">{0} hilabete</unitPattern>
  3596. </unit>
  3597. <unit type="duration-second">
  3598. <unitPattern count="one">{0} segundo</unitPattern>
  3599. <unitPattern count="other">{0} segundo</unitPattern>
  3600. </unit>
  3601. <unit type="duration-week">
  3602. <unitPattern count="one">{0} aste</unitPattern>
  3603. <unitPattern count="other">{0} aste</unitPattern>
  3604. </unit>
  3605. <unit type="duration-year">
  3606. <unitPattern count="one">{0} urte</unitPattern>
  3607. <unitPattern count="other">{0} urte</unitPattern>
  3608. </unit>
  3609. <unit type="length-centimeter">
  3610. <unitPattern count="one">{0} zentimetro</unitPattern>
  3611. <unitPattern count="other">{0} zentimetro</unitPattern>
  3612. </unit>
  3613. <unit type="length-foot">
  3614. <unitPattern count="one">{0} oin</unitPattern>
  3615. <unitPattern count="other">{0} oin</unitPattern>
  3616. </unit>
  3617. <unit type="length-inch">
  3618. <unitPattern count="one">{0} hazbete</unitPattern>
  3619. <unitPattern count="other">{0} hazbete</unitPattern>
  3620. </unit>
  3621. <unit type="length-kilometer">
  3622. <unitPattern count="one">{0} kilometro</unitPattern>
  3623. <unitPattern count="other">{0} kilometro</unitPattern>
  3624. </unit>
  3625. <unit type="length-light-year">
  3626. <unitPattern count="one">{0} argi-urte</unitPattern>
  3627. <unitPattern count="other">{0} argi-urte</unitPattern>
  3628. </unit>
  3629. <unit type="length-meter">
  3630. <unitPattern count="one">{0} metro</unitPattern>
  3631. <unitPattern count="other">{0} metro</unitPattern>
  3632. </unit>
  3633. <unit type="length-mile">
  3634. <unitPattern count="one">{0} milia</unitPattern>
  3635. <unitPattern count="other">{0} milia</unitPattern>
  3636. </unit>
  3637. <unit type="length-millimeter">
  3638. <unitPattern count="one">{0} milimetro</unitPattern>
  3639. <unitPattern count="other">{0} milimetro</unitPattern>
  3640. </unit>
  3641. <unit type="length-picometer">
  3642. <unitPattern count="one">{0} pikometro</unitPattern>
  3643. <unitPattern count="other">{0} pikometro</unitPattern>
  3644. </unit>
  3645. <unit type="length-yard">
  3646. <unitPattern count="one">{0} yarda</unitPattern>
  3647. <unitPattern count="other">{0} yarda</unitPattern>
  3648. </unit>
  3649. <unit type="mass-gram">
  3650. <unitPattern count="one">{0} gramo</unitPattern>
  3651. <unitPattern count="other">{0} gramo</unitPattern>
  3652. </unit>
  3653. <unit type="mass-kilogram">
  3654. <unitPattern count="one">{0} kilogramo</unitPattern>
  3655. <unitPattern count="other">{0} kilogramo</unitPattern>
  3656. </unit>
  3657. <unit type="mass-ounce">
  3658. <unitPattern count="one">{0} ontza</unitPattern>
  3659. <unitPattern count="other">{0} ontza</unitPattern>
  3660. </unit>
  3661. <unit type="mass-pound">
  3662. <unitPattern count="one">{0} libra</unitPattern>
  3663. <unitPattern count="other">{0} libra</unitPattern>
  3664. </unit>
  3665. <unit type="power-horsepower">
  3666. <unitPattern count="one">{0} zaldi-potentzia</unitPattern>
  3667. <unitPattern count="other">{0} zaldi-potentzia</unitPattern>
  3668. </unit>
  3669. <unit type="power-kilowatt">
  3670. <unitPattern count="one">{0} kilowatt</unitPattern>
  3671. <unitPattern count="other">{0} kilowatt</unitPattern>
  3672. </unit>
  3673. <unit type="power-watt">
  3674. <unitPattern count="one">{0} watt</unitPattern>
  3675. <unitPattern count="other">{0} watt</unitPattern>
  3676. </unit>
  3677. <unit type="pressure-hectopascal">
  3678. <unitPattern count="one">{0} hektopascal</unitPattern>
  3679. <unitPattern count="other">{0} hektopascal</unitPattern>
  3680. </unit>
  3681. <unit type="pressure-inch-hg">
  3682. <unitPattern count="one">{0} merkurio-hazbete</unitPattern>
  3683. <unitPattern count="other">{0} merkurio-hazbete</unitPattern>
  3684. </unit>
  3685. <unit type="pressure-millibar">
  3686. <unitPattern count="one">{0} milibar</unitPattern>
  3687. <unitPattern count="other">{0} milibar</unitPattern>
  3688. </unit>
  3689. <unit type="speed-kilometer-per-hour">
  3690. <unitPattern count="one">{0} kilometro orduko</unitPattern>
  3691. <unitPattern count="other">{0} kilometro orduko</unitPattern>
  3692. </unit>
  3693. <unit type="speed-meter-per-second">
  3694. <unitPattern count="one">{0} metro segundoko</unitPattern>
  3695. <unitPattern count="other">{0} metro segundoko</unitPattern>
  3696. </unit>
  3697. <unit type="speed-mile-per-hour">
  3698. <unitPattern count="one">{0} milia orduko</unitPattern>
  3699. <unitPattern count="other">{0} milia orduko</unitPattern>
  3700. </unit>
  3701. <unit type="temperature-celsius">
  3702. <unitPattern count="one">{0}Celcius gradu</unitPattern>
  3703. <unitPattern count="other">{0}Celcius gradu</unitPattern>
  3704. </unit>
  3705. <unit type="temperature-fahrenheit">
  3706. <unitPattern count="one">{0}Fahrenheit gradu</unitPattern>
  3707. <unitPattern count="other">{0}Fahrenheit gradu</unitPattern>
  3708. </unit>
  3709. <unit type="volume-cubic-kilometer">
  3710. <unitPattern count="one">{0} kilometro kubiko</unitPattern>
  3711. <unitPattern count="other">{0} kilometro kubiko</unitPattern>
  3712. </unit>
  3713. <unit type="volume-cubic-mile">
  3714. <unitPattern count="one">{0} milia kubiko</unitPattern>
  3715. <unitPattern count="other">{0} milia kubiko</unitPattern>
  3716. </unit>
  3717. <unit type="volume-liter">
  3718. <unitPattern count="one">{0} litro</unitPattern>
  3719. <unitPattern count="other">{0} litro</unitPattern>
  3720. </unit>
  3721. </unitLength>
  3722. <unitLength type="short">
  3723. <compoundUnit type="per">
  3724. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  3725. </compoundUnit>
  3726. <unit type="acceleration-g-force">
  3727. <unitPattern count="one">{0} G</unitPattern>
  3728. <unitPattern count="other">{0} G</unitPattern>
  3729. </unit>
  3730. <unit type="angle-arc-minute">
  3731. <unitPattern count="one">{0}′</unitPattern>
  3732. <unitPattern count="other">{0}′</unitPattern>
  3733. </unit>
  3734. <unit type="angle-arc-second">
  3735. <unitPattern count="one">{0}″</unitPattern>
  3736. <unitPattern count="other">{0}″</unitPattern>
  3737. </unit>
  3738. <unit type="angle-degree">
  3739. <unitPattern count="one">{0}°</unitPattern>
  3740. <unitPattern count="other">{0}°</unitPattern>
  3741. </unit>
  3742. <unit type="area-acre">
  3743. <unitPattern count="one">{0} ac</unitPattern>
  3744. <unitPattern count="other">{0} ac</unitPattern>
  3745. </unit>
  3746. <unit type="area-hectare">
  3747. <unitPattern count="one">{0} ha</unitPattern>
  3748. <unitPattern count="other">{0} ha</unitPattern>
  3749. </unit>
  3750. <unit type="area-square-foot">
  3751. <unitPattern count="one">{0} ft²</unitPattern>
  3752. <unitPattern count="other">{0} ft²</unitPattern>
  3753. </unit>
  3754. <unit type="area-square-kilometer">
  3755. <unitPattern count="one">{0} km²</unitPattern>
  3756. <unitPattern count="other">{0} km²</unitPattern>
  3757. </unit>
  3758. <unit type="area-square-meter">
  3759. <unitPattern count="one">{0} m²</unitPattern>
  3760. <unitPattern count="other">{0} m²</unitPattern>
  3761. </unit>
  3762. <unit type="area-square-mile">
  3763. <unitPattern count="one">{0} mi²</unitPattern>
  3764. <unitPattern count="other">{0} mi²</unitPattern>
  3765. </unit>
  3766. <unit type="duration-day">
  3767. <unitPattern count="one">{0} egun</unitPattern>
  3768. <unitPattern count="other">{0} egun</unitPattern>
  3769. </unit>
  3770. <unit type="duration-hour">
  3771. <unitPattern count="one">{0} h</unitPattern>
  3772. <unitPattern count="other">{0} h</unitPattern>
  3773. </unit>
  3774. <unit type="duration-millisecond">
  3775. <unitPattern count="one">{0} ms</unitPattern>
  3776. <unitPattern count="other">{0} ms</unitPattern>
  3777. </unit>
  3778. <unit type="duration-minute">
  3779. <unitPattern count="one">{0} min</unitPattern>
  3780. <unitPattern count="other">{0} min</unitPattern>
  3781. </unit>
  3782. <unit type="duration-month">
  3783. <unitPattern count="one">{0} hilabete</unitPattern>
  3784. <unitPattern count="other">{0} hilabete</unitPattern>
  3785. </unit>
  3786. <unit type="duration-second">
  3787. <unitPattern count="one">{0} s</unitPattern>
  3788. <unitPattern count="other">{0} s</unitPattern>
  3789. </unit>
  3790. <unit type="duration-week">
  3791. <unitPattern count="one">{0} aste</unitPattern>
  3792. <unitPattern count="other">{0} aste</unitPattern>
  3793. </unit>
  3794. <unit type="duration-year">
  3795. <unitPattern count="one">{0} urte</unitPattern>
  3796. <unitPattern count="other">{0} urte</unitPattern>
  3797. </unit>
  3798. <unit type="length-centimeter">
  3799. <unitPattern count="one">{0} cm</unitPattern>
  3800. <unitPattern count="other">{0} cm</unitPattern>
  3801. </unit>
  3802. <unit type="length-foot">
  3803. <unitPattern count="one">{0} ft</unitPattern>
  3804. <unitPattern count="other">{0} ft</unitPattern>
  3805. </unit>
  3806. <unit type="length-inch">
  3807. <unitPattern count="one">{0} in</unitPattern>
  3808. <unitPattern count="other">{0} in</unitPattern>
  3809. </unit>
  3810. <unit type="length-kilometer">
  3811. <unitPattern count="one">{0} km</unitPattern>
  3812. <unitPattern count="other">{0} km</unitPattern>
  3813. </unit>
  3814. <unit type="length-light-year">
  3815. <unitPattern count="one">{0} ly</unitPattern>
  3816. <unitPattern count="other">{0} ly</unitPattern>
  3817. </unit>
  3818. <unit type="length-meter">
  3819. <unitPattern count="one">{0} m</unitPattern>
  3820. <unitPattern count="other">{0} m</unitPattern>
  3821. </unit>
  3822. <unit type="length-mile">
  3823. <unitPattern count="one">{0} mi</unitPattern>
  3824. <unitPattern count="other">{0} mi</unitPattern>
  3825. </unit>
  3826. <unit type="length-millimeter">
  3827. <unitPattern count="one">{0} mm</unitPattern>
  3828. <unitPattern count="other">{0} mm</unitPattern>
  3829. </unit>
  3830. <unit type="length-picometer">
  3831. <unitPattern count="one">{0} pm</unitPattern>
  3832. <unitPattern count="other">{0} pm</unitPattern>
  3833. </unit>
  3834. <unit type="length-yard">
  3835. <unitPattern count="one">{0} yd</unitPattern>
  3836. <unitPattern count="other">{0} yd</unitPattern>
  3837. </unit>
  3838. <unit type="mass-gram">
  3839. <unitPattern count="one">{0} g</unitPattern>
  3840. <unitPattern count="other">{0} g</unitPattern>
  3841. </unit>
  3842. <unit type="mass-kilogram">
  3843. <unitPattern count="one">{0} kg</unitPattern>
  3844. <unitPattern count="other">{0} kg</unitPattern>
  3845. </unit>
  3846. <unit type="mass-ounce">
  3847. <unitPattern count="one">{0} oz</unitPattern>
  3848. <unitPattern count="other">{0} oz</unitPattern>
  3849. </unit>
  3850. <unit type="mass-pound">
  3851. <unitPattern count="one">{0} lb</unitPattern>
  3852. <unitPattern count="other">{0} lb</unitPattern>
  3853. </unit>
  3854. <unit type="power-horsepower">
  3855. <unitPattern count="one">{0} hp</unitPattern>
  3856. <unitPattern count="other">{0} hp</unitPattern>
  3857. </unit>
  3858. <unit type="power-kilowatt">
  3859. <unitPattern count="one">{0} kW</unitPattern>
  3860. <unitPattern count="other">{0} kW</unitPattern>
  3861. </unit>
  3862. <unit type="power-watt">
  3863. <unitPattern count="one">{0} W</unitPattern>
  3864. <unitPattern count="other">{0} W</unitPattern>
  3865. </unit>
  3866. <unit type="pressure-hectopascal">
  3867. <unitPattern count="one">{0} hPa</unitPattern>
  3868. <unitPattern count="other">{0} hPa</unitPattern>
  3869. </unit>
  3870. <unit type="pressure-inch-hg">
  3871. <unitPattern count="one">{0} inHg</unitPattern>
  3872. <unitPattern count="other">{0} inHg</unitPattern>
  3873. </unit>
  3874. <unit type="pressure-millibar">
  3875. <unitPattern count="one">{0} mb</unitPattern>
  3876. <unitPattern count="other">{0} mb</unitPattern>
  3877. </unit>
  3878. <unit type="speed-kilometer-per-hour">
  3879. <unitPattern count="one">{0} km/h</unitPattern>
  3880. <unitPattern count="other">{0} km/h</unitPattern>
  3881. </unit>
  3882. <unit type="speed-meter-per-second">
  3883. <unitPattern count="one">{0} m/s</unitPattern>
  3884. <unitPattern count="other">{0} m/s</unitPattern>
  3885. </unit>
  3886. <unit type="speed-mile-per-hour">
  3887. <unitPattern count="one">{0} mph</unitPattern>
  3888. <unitPattern count="other">{0} mph</unitPattern>
  3889. </unit>
  3890. <unit type="temperature-celsius">
  3891. <unitPattern count="one">{0}°C</unitPattern>
  3892. <unitPattern count="other">{0}°C</unitPattern>
  3893. </unit>
  3894. <unit type="temperature-fahrenheit">
  3895. <unitPattern count="one">{0}°F</unitPattern>
  3896. <unitPattern count="other">{0}°F</unitPattern>
  3897. </unit>
  3898. <unit type="volume-cubic-kilometer">
  3899. <unitPattern count="one">{0} km³</unitPattern>
  3900. <unitPattern count="other">{0} km³</unitPattern>
  3901. </unit>
  3902. <unit type="volume-cubic-mile">
  3903. <unitPattern count="one">{0} mi³</unitPattern>
  3904. <unitPattern count="other">{0} mi³</unitPattern>
  3905. </unit>
  3906. <unit type="volume-liter">
  3907. <unitPattern count="one">{0} l</unitPattern>
  3908. <unitPattern count="other">{0} l</unitPattern>
  3909. </unit>
  3910. </unitLength>
  3911. <unitLength type="narrow">
  3912. <compoundUnit type="per">
  3913. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  3914. </compoundUnit>
  3915. <unit type="acceleration-g-force">
  3916. <unitPattern count="one">{0} G</unitPattern>
  3917. <unitPattern count="other">{0} G</unitPattern>
  3918. </unit>
  3919. <unit type="angle-arc-minute">
  3920. <unitPattern count="one">{0}′</unitPattern>
  3921. <unitPattern count="other">{0}′</unitPattern>
  3922. </unit>
  3923. <unit type="angle-arc-second">
  3924. <unitPattern count="one">{0}″</unitPattern>
  3925. <unitPattern count="other">{0}″</unitPattern>
  3926. </unit>
  3927. <unit type="angle-degree">
  3928. <unitPattern count="one">{0}°</unitPattern>
  3929. <unitPattern count="other">{0}°</unitPattern>
  3930. </unit>
  3931. <unit type="area-acre">
  3932. <unitPattern count="one">{0} ac</unitPattern>
  3933. <unitPattern count="other">{0} ac</unitPattern>
  3934. </unit>
  3935. <unit type="area-hectare">
  3936. <unitPattern count="one">{0} ha</unitPattern>
  3937. <unitPattern count="other">{0} ha</unitPattern>
  3938. </unit>
  3939. <unit type="area-square-foot">
  3940. <unitPattern count="one">{0} ft²</unitPattern>
  3941. <unitPattern count="other">{0} ft²</unitPattern>
  3942. </unit>
  3943. <unit type="area-square-kilometer">
  3944. <unitPattern count="one">{0} km²</unitPattern>
  3945. <unitPattern count="other">{0} km²</unitPattern>
  3946. </unit>
  3947. <unit type="area-square-meter">
  3948. <unitPattern count="one">{0} m²</unitPattern>
  3949. <unitPattern count="other">{0} m²</unitPattern>
  3950. </unit>
  3951. <unit type="area-square-mile">
  3952. <unitPattern count="one">{0} mi²</unitPattern>
  3953. <unitPattern count="other">{0} mi²</unitPattern>
  3954. </unit>
  3955. <unit type="duration-day">
  3956. <unitPattern count="one">{0} egun</unitPattern>
  3957. <unitPattern count="other">{0} egun</unitPattern>
  3958. </unit>
  3959. <unit type="duration-hour">
  3960. <unitPattern count="one">{0} h</unitPattern>
  3961. <unitPattern count="other">{0} h</unitPattern>
  3962. </unit>
  3963. <unit type="duration-millisecond">
  3964. <unitPattern count="one">{0} ms</unitPattern>
  3965. <unitPattern count="other">{0} ms</unitPattern>
  3966. </unit>
  3967. <unit type="duration-minute">
  3968. <unitPattern count="one">{0} min</unitPattern>
  3969. <unitPattern count="other">{0} min</unitPattern>
  3970. </unit>
  3971. <unit type="duration-month">
  3972. <unitPattern count="one">{0} hil.</unitPattern>
  3973. <unitPattern count="other">{0} hil.</unitPattern>
  3974. </unit>
  3975. <unit type="duration-second">
  3976. <unitPattern count="one">{0} s</unitPattern>
  3977. <unitPattern count="other">{0} s</unitPattern>
  3978. </unit>
  3979. <unit type="duration-week">
  3980. <unitPattern count="one">{0} aste</unitPattern>
  3981. <unitPattern count="other">{0} aste</unitPattern>
  3982. </unit>
  3983. <unit type="duration-year">
  3984. <unitPattern count="one">{0} urte</unitPattern>
  3985. <unitPattern count="other">{0} urte</unitPattern>
  3986. </unit>
  3987. <unit type="length-centimeter">
  3988. <unitPattern count="one">{0} cm</unitPattern>
  3989. <unitPattern count="other">{0} cm</unitPattern>
  3990. </unit>
  3991. <unit type="length-foot">
  3992. <unitPattern count="one">{0} ft</unitPattern>
  3993. <unitPattern count="other">{0} ft</unitPattern>
  3994. </unit>
  3995. <unit type="length-inch">
  3996. <unitPattern count="one">{0} in</unitPattern>
  3997. <unitPattern count="other">{0} in</unitPattern>
  3998. </unit>
  3999. <unit type="length-kilometer">
  4000. <unitPattern count="one">{0} km</unitPattern>
  4001. <unitPattern count="other">{0} km</unitPattern>
  4002. </unit>
  4003. <unit type="length-light-year">
  4004. <unitPattern count="one">{0} ly</unitPattern>
  4005. <unitPattern count="other">{0} ly</unitPattern>
  4006. </unit>
  4007. <unit type="length-meter">
  4008. <unitPattern count="one">{0} m</unitPattern>
  4009. <unitPattern count="other">{0} m</unitPattern>
  4010. </unit>
  4011. <unit type="length-mile">
  4012. <unitPattern count="one">{0} mi</unitPattern>
  4013. <unitPattern count="other">{0} mi</unitPattern>
  4014. </unit>
  4015. <unit type="length-millimeter">
  4016. <unitPattern count="one">{0} mm</unitPattern>
  4017. <unitPattern count="other">{0} mm</unitPattern>
  4018. </unit>
  4019. <unit type="length-picometer">
  4020. <unitPattern count="one">{0} pm</unitPattern>
  4021. <unitPattern count="other">{0} pm</unitPattern>
  4022. </unit>
  4023. <unit type="length-yard">
  4024. <unitPattern count="one">{0} yd</unitPattern>
  4025. <unitPattern count="other">{0} yd</unitPattern>
  4026. </unit>
  4027. <unit type="mass-gram">
  4028. <unitPattern count="one">{0} g</unitPattern>
  4029. <unitPattern count="other">{0} g</unitPattern>
  4030. </unit>
  4031. <unit type="mass-kilogram">
  4032. <unitPattern count="one">{0} kg</unitPattern>
  4033. <unitPattern count="other">{0} kg</unitPattern>
  4034. </unit>
  4035. <unit type="mass-ounce">
  4036. <unitPattern count="one">{0} oz</unitPattern>
  4037. <unitPattern count="other">{0} oz</unitPattern>
  4038. </unit>
  4039. <unit type="mass-pound">
  4040. <unitPattern count="one">{0} lb</unitPattern>
  4041. <unitPattern count="other">{0} lb</unitPattern>
  4042. </unit>
  4043. <unit type="power-horsepower">
  4044. <unitPattern count="one">{0} hp</unitPattern>
  4045. <unitPattern count="other">{0} hp</unitPattern>
  4046. </unit>
  4047. <unit type="power-kilowatt">
  4048. <unitPattern count="one">{0} kW</unitPattern>
  4049. <unitPattern count="other">{0} kW</unitPattern>
  4050. </unit>
  4051. <unit type="power-watt">
  4052. <unitPattern count="one">{0} W</unitPattern>
  4053. <unitPattern count="other">{0} W</unitPattern>
  4054. </unit>
  4055. <unit type="pressure-hectopascal">
  4056. <unitPattern count="one">{0} hPa</unitPattern>
  4057. <unitPattern count="other">{0} hPa</unitPattern>
  4058. </unit>
  4059. <unit type="pressure-inch-hg">
  4060. <unitPattern count="one">{0} inHg</unitPattern>
  4061. <unitPattern count="other">{0} inHg</unitPattern>
  4062. </unit>
  4063. <unit type="pressure-millibar">
  4064. <unitPattern count="one">{0} mb</unitPattern>
  4065. <unitPattern count="other">{0} mb</unitPattern>
  4066. </unit>
  4067. <unit type="speed-kilometer-per-hour">
  4068. <unitPattern count="one">{0} km/h</unitPattern>
  4069. <unitPattern count="other">{0} km/h</unitPattern>
  4070. </unit>
  4071. <unit type="speed-meter-per-second">
  4072. <unitPattern count="one">{0} m/s</unitPattern>
  4073. <unitPattern count="other">{0} m/s</unitPattern>
  4074. </unit>
  4075. <unit type="speed-mile-per-hour">
  4076. <unitPattern count="one">{0} mph</unitPattern>
  4077. <unitPattern count="other">{0} mph</unitPattern>
  4078. </unit>
  4079. <unit type="temperature-celsius">
  4080. <unitPattern count="one">{0}°</unitPattern>
  4081. <unitPattern count="other">{0}°</unitPattern>
  4082. </unit>
  4083. <unit type="temperature-fahrenheit">
  4084. <unitPattern count="one">{0}°F</unitPattern>
  4085. <unitPattern count="other">{0}°F</unitPattern>
  4086. </unit>
  4087. <unit type="volume-cubic-kilometer">
  4088. <unitPattern count="one">{0} km³</unitPattern>
  4089. <unitPattern count="other">{0} km³</unitPattern>
  4090. </unit>
  4091. <unit type="volume-cubic-mile">
  4092. <unitPattern count="one">{0} mi³</unitPattern>
  4093. <unitPattern count="other">{0} mi³</unitPattern>
  4094. </unit>
  4095. <unit type="volume-liter">
  4096. <unitPattern count="one">{0} l</unitPattern>
  4097. <unitPattern count="other">{0} l</unitPattern>
  4098. </unit>
  4099. </unitLength>
  4100. <durationUnit type="hm">
  4101. <durationUnitPattern>h:mm</durationUnitPattern>
  4102. </durationUnit>
  4103. <durationUnit type="hms">
  4104. <durationUnitPattern>h:mm:ss</durationUnitPattern>
  4105. </durationUnit>
  4106. <durationUnit type="ms">
  4107. <durationUnitPattern>m:ss</durationUnitPattern>
  4108. </durationUnit>
  4109. </units>
  4110. <listPatterns>
  4111. <listPattern>
  4112. <listPatternPart type="start">{0}, {1}</listPatternPart>
  4113. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  4114. <listPatternPart type="end">{0} eta {1}</listPatternPart>
  4115. <listPatternPart type="2">{0} eta {1}</listPatternPart>
  4116. </listPattern>
  4117. <listPattern type="unit">
  4118. <listPatternPart type="start">{0}, {1}</listPatternPart>
  4119. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  4120. <listPatternPart type="end">{0} eta {1}</listPatternPart>
  4121. <listPatternPart type="2">{0} eta {1}</listPatternPart>
  4122. </listPattern>
  4123. <listPattern type="unit-short">
  4124. <listPatternPart type="start">{0}, {1}</listPatternPart>
  4125. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  4126. <listPatternPart type="end">{0} eta {1}</listPatternPart>
  4127. <listPatternPart type="2">{0} eta {1}</listPatternPart>
  4128. </listPattern>
  4129. </listPatterns>
  4130. <posix>
  4131. <messages>
  4132. <yesstr>bai:b</yesstr>
  4133. <nostr>ez:e</nostr>
  4134. </messages>
  4135. </posix>
  4136. </ldml>