123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
- <!-- Copyright © 1991-2013 Unicode, Inc.
- CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
- For terms of use, see http://www.unicode.org/copyright.html
- -->
- <ldml>
- <identity>
- <version number="$Revision: 9791 $"/>
- <generation date="$Date: 2014-02-25 15:16:49 -0600 (Tue, 25 Feb 2014) $"/>
- <language type="eu"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>{0}, {1}</localeSeparator>
- <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
- </localeDisplayPattern>
- <languages>
- <language type="ab">abkhazera</language>
- <language type="ach">Acholiera</language>
- <language type="af">afrikaansa</language>
- <language type="ak">Akanera</language>
- <language type="am">amharera</language>
- <language type="ar">arabiera</language>
- <language type="ar_001">arabiera moderno estandarra</language>
- <language type="as">assamera</language>
- <language type="ay">aimara</language>
- <language type="az">azerbaijanera</language>
- <language type="az" alt="short">azeriera</language>
- <language type="be">bielorrusiera</language>
- <language type="bem">Bembera</language>
- <language type="bg">bulgariera</language>
- <language type="bn">bengalera</language>
- <language type="bo">tibetera</language>
- <language type="br">Bretoiera</language>
- <language type="bs">bosniera</language>
- <language type="ca">katalana</language>
- <language type="chr">Txerokiera</language>
- <language type="ckb">Soraniera</language>
- <language type="co">Korsikera</language>
- <language type="cs">txekiera</language>
- <language type="cy">galesera</language>
- <language type="da">daniera</language>
- <language type="de">alemana</language>
- <language type="de_CH">aleman garaia (Suitza)</language>
- <language type="dv">divehiera</language>
- <language type="dz">dzongkha</language>
- <language type="ee">Eweera</language>
- <language type="efi">efikera</language>
- <language type="el">greziera</language>
- <language type="en">ingelesa</language>
- <language type="en_US">ingelesa (AEB)</language>
- <language type="eo">esperantoa</language>
- <language type="es">espainiera</language>
- <language type="es_ES">espainiera (Europa)</language>
- <language type="et">estoniera</language>
- <language type="eu">euskara</language>
- <language type="fa">persiera</language>
- <language type="fi">finlandiera</language>
- <language type="fil">tagaloga</language>
- <language type="fj">fijiera</language>
- <language type="fo">faroera</language>
- <language type="fr">frantsesa</language>
- <language type="fy">frisiera</language>
- <language type="ga">gaelikoa</language>
- <language type="gaa">Ga</language>
- <language type="gd">eskoziako gaelikoa</language>
- <language type="gl">galiziera</language>
- <language type="gn">guaraniera</language>
- <language type="gsw">alemana (Suitza)</language>
- <language type="gu">gujaratera</language>
- <language type="ha">hausa</language>
- <language type="haw">hawaiiera</language>
- <language type="he">hebreera</language>
- <language type="hi">hindia</language>
- <language type="hr">kroaziera</language>
- <language type="ht">haitiera</language>
- <language type="hu">hungariera</language>
- <language type="hy">armeniera</language>
- <language type="ia">Interlingua</language>
- <language type="id">indonesiera</language>
- <language type="ie">interlingue</language>
- <language type="ig">igboera</language>
- <language type="is">islandiera</language>
- <language type="it">italiera</language>
- <language type="ja">japoniera</language>
- <language type="jv">javera</language>
- <language type="ka">georgiera</language>
- <language type="kg">Kikongoa</language>
- <language type="kk">kazakhera</language>
- <language type="km">khemerera</language>
- <language type="kn">kannadera</language>
- <language type="ko">koreera</language>
- <language type="ks">kashmirera</language>
- <language type="ku">kurduera</language>
- <language type="ky">kirgizera</language>
- <language type="la">latina</language>
- <language type="lb">luxenburgera</language>
- <language type="lg">Gandera</language>
- <language type="ln">lingala</language>
- <language type="lo">laosera</language>
- <language type="loz">Loziera</language>
- <language type="lt">lituaniera</language>
- <language type="lua">Luba-lulua</language>
- <language type="lv">letoniera</language>
- <language type="mfe">Mauritaniako kreolera</language>
- <language type="mg">malagasyera</language>
- <language type="mi">maoriera</language>
- <language type="mk">mazedoniera</language>
- <language type="ml">malayalamera</language>
- <language type="mn">mongoliera</language>
- <language type="mr">marathera</language>
- <language type="ms">malaysiera</language>
- <language type="mt">maltera</language>
- <language type="mul">hizkuntza anitzak</language>
- <language type="my">burmatarra</language>
- <language type="nb">bokmala (Norvegia)</language>
- <language type="nd">iparraldeko ndebeleera</language>
- <language type="ne">nepalera</language>
- <language type="nl">nederlandera</language>
- <language type="nl_BE">flandriera</language>
- <language type="nn">nynorsk norvegiera</language>
- <language type="no">norvegiera</language>
- <language type="nso">pediera</language>
- <language type="ny">nyanja</language>
- <language type="nyn">Ankolera</language>
- <language type="oc">Okzitaniera</language>
- <language type="om">Oromoera</language>
- <language type="or">oriyera</language>
- <language type="os">osetiera</language>
- <language type="pa">punjabera</language>
- <language type="pl">poloniera</language>
- <language type="ps">paxtuera</language>
- <language type="ps" alt="variant">pashtoera</language>
- <language type="pt">portugesa</language>
- <language type="pt_PT">portugesa (Europa)</language>
- <language type="qu">quechuera</language>
- <language type="rm">erromantxera</language>
- <language type="rn">rundiera</language>
- <language type="ro">errumaniera</language>
- <language type="ru">errusiera</language>
- <language type="rw">kinyaruanda</language>
- <language type="sa">sanskritoa</language>
- <language type="sd">sindhia</language>
- <language type="se">iparraldeko samiera</language>
- <language type="sg">sangoera</language>
- <language type="sh">serbokroaziera</language>
- <language type="si">sinhala</language>
- <language type="sk">eslovakiera</language>
- <language type="sl">esloveniera</language>
- <language type="sm">samoera</language>
- <language type="sn">shonera</language>
- <language type="so">somaliera</language>
- <language type="sq">albaniera</language>
- <language type="sr">serbiera</language>
- <language type="ss">swatiera</language>
- <language type="st">hegoaldeko sothoera</language>
- <language type="su">sundanera</language>
- <language type="sv">suediera</language>
- <language type="sw">swahili</language>
- <language type="ta">tamilera</language>
- <language type="te">teluguera</language>
- <language type="tet">tetuma</language>
- <language type="tg">tajikistanera</language>
- <language type="th">thailandiera</language>
- <language type="ti">tigriñera</language>
- <language type="tk">turkmeniera</language>
- <language type="tl">tagalog</language>
- <language type="tlh">Klingonera</language>
- <language type="tn">tswanera</language>
- <language type="to">tongera</language>
- <language type="tpi">tok pisina</language>
- <language type="tr">turkiera</language>
- <language type="ts">tsongera</language>
- <language type="tt">tatarera</language>
- <language type="tum">Tumbukera</language>
- <language type="tw">twia</language>
- <language type="ty">tahitiera</language>
- <language type="ug">uigurrera</language>
- <language type="uk">ukrainera</language>
- <language type="und">hizkuntza ezezaguna</language>
- <language type="ur">urdua</language>
- <language type="uz">uzbekera</language>
- <language type="ve">vendera</language>
- <language type="vi">vietnamera</language>
- <language type="wo">wolofera</language>
- <language type="xh">xhosera</language>
- <language type="yi">Jiddisha</language>
- <language type="yo">yorubera</language>
- <language type="zgh">tamazight estandarra</language>
- <language type="zh">txinera</language>
- <language type="zh_Hans">txinera soildua</language>
- <language type="zh_Hant">txinera tradizionala</language>
- <language type="zu">zuluera</language>
- <language type="zxx">ez dago eduki linguistikorik</language>
- </languages>
- <scripts>
- <script type="Arab">arabiarra</script>
- <script type="Arab" alt="variant">persiar-arabiarra</script>
- <script type="Armn">armeniera</script>
- <script type="Beng">bengalera</script>
- <script type="Bopo">bopomofoa</script>
- <script type="Brai">braillea</script>
- <script type="Cyrl">zirilikoa</script>
- <script type="Deva">devanagaria</script>
- <script type="Ethi">etiopiarra</script>
- <script type="Geor">georgiera</script>
- <script type="Grek">greziera</script>
- <script type="Gujr">gujaratera</script>
- <script type="Guru">gurmukhia</script>
- <script type="Hang">hangula</script>
- <script type="Hani">idazkera txinatarra</script>
- <script type="Hans">sinplifikatua</script>
- <script type="Hans" alt="stand-alone">idazkera txinatar sinplifikatua</script>
- <script type="Hant">tradizionala</script>
- <script type="Hant" alt="stand-alone">idazkera txinatar tradizionala</script>
- <script type="Hebr">hebreera</script>
- <script type="Hira">hiragana</script>
- <script type="Jpan">japoniera</script>
- <script type="Kana">katakana</script>
- <script type="Khmr">khemerera</script>
- <script type="Knda">kannadera</script>
- <script type="Kore">koreera</script>
- <script type="Laoo">laosera</script>
- <script type="Latn">latina</script>
- <script type="Mlym">malayalamera</script>
- <script type="Mong">mongoliera</script>
- <script type="Mymr">birmaniera</script>
- <script type="Orya">oriya</script>
- <script type="Sinh">sinhala</script>
- <script type="Taml">tamilera</script>
- <script type="Telu">teluguera</script>
- <script type="Thaa">thaana</script>
- <script type="Thai">thailandiera</script>
- <script type="Tibt">tibetera</script>
- <script type="Zsym">ikurrak</script>
- <script type="Zxxx">idatzi gabea</script>
- <script type="Zyyy">ohikoa</script>
- <script type="Zzzz">idazkera ezezaguna</script>
- </scripts>
- <territories>
- <territory type="001">Mundua</territory>
- <territory type="002">Afrika</territory>
- <territory type="003">Ipar Amerika</territory>
- <territory type="005">Hego Amerika</territory>
- <territory type="009">Ozeania</territory>
- <territory type="011">Afrika mendebaldea</territory>
- <territory type="013">Erdialdeko Amerika</territory>
- <territory type="014">Afrika ekialdea</territory>
- <territory type="015">Afrika iparraldea</territory>
- <territory type="017">Erdialdeko Afrika</territory>
- <territory type="018">Afrika hegoaldea</territory>
- <territory type="019">Amerika</territory>
- <territory type="021">Amerika iparraldea</territory>
- <territory type="029">Karibea</territory>
- <territory type="030">Asia ekialdea</territory>
- <territory type="034">Asia hegoaldea</territory>
- <territory type="035">Asia hego-ekialdea</territory>
- <territory type="039">Europa hegoaldea</territory>
- <territory type="053">Australasia</territory>
- <territory type="054">Melanesia</territory>
- <territory type="057">Mikronesia eskualdea</territory>
- <territory type="061">Polinesia</territory>
- <territory type="142">Asia</territory>
- <territory type="143">Asia erdialdea</territory>
- <territory type="145">Asia mendebaldea</territory>
- <territory type="150">Europa</territory>
- <territory type="151">Europa ekialdea</territory>
- <territory type="154">Europa iparraldea</territory>
- <territory type="155">Europa mendebaldea</territory>
- <territory type="419">Latinoamerika</territory>
- <territory type="AC">Ascension uhartea</territory>
- <territory type="AD">Andorra</territory>
- <territory type="AE">Arabiar Emirrerri Batuak</territory>
- <territory type="AF">Afganistan</territory>
- <territory type="AG">Antigua eta Barbuda</territory>
- <territory type="AI">Angila</territory>
- <territory type="AL">Albania</territory>
- <territory type="AM">Armenia</territory>
- <territory type="AN">Holandarren Antillak</territory>
- <territory type="AO">Angola</territory>
- <territory type="AQ">Antartika</territory>
- <territory type="AR">Argentina</territory>
- <territory type="AS">Amerikar Samoa</territory>
- <territory type="AT">Austria</territory>
- <territory type="AU">Australia</territory>
- <territory type="AW">Aruba</territory>
- <territory type="AX">Aland uharteak</territory>
- <territory type="AZ">Azerbaijan</territory>
- <territory type="BA">Bosnia-Herzegovina</territory>
- <territory type="BB">Barbados</territory>
- <territory type="BD">Bangladesh</territory>
- <territory type="BE">Belgika</territory>
- <territory type="BF">Burkina Faso</territory>
- <territory type="BG">Bulgaria</territory>
- <territory type="BH">Bahrain</territory>
- <territory type="BI">Burundi</territory>
- <territory type="BJ">Benin</territory>
- <territory type="BL">San Bartolome</territory>
- <territory type="BM">Bermuda</territory>
- <territory type="BN">Brunei</territory>
- <territory type="BO">Bolivia</territory>
- <territory type="BQ">Karibeko Herbehereak</territory>
- <territory type="BR">Brasil</territory>
- <territory type="BS">Bahamak</territory>
- <territory type="BT">Bhutan</territory>
- <territory type="BV">Bouvet Uhartea</territory>
- <territory type="BW">Botswana</territory>
- <territory type="BY">Bielorrusia</territory>
- <territory type="BZ">Belize</territory>
- <territory type="CA">Kanada</territory>
- <territory type="CC">Cocos (Keeling) uharteak</territory>
- <territory type="CD">Kongoko Errepublika Demokratikoa</territory>
- <territory type="CD" alt="variant">Kongo (KED)</territory>
- <territory type="CF">Afrika Erdiko Errepublika</territory>
- <territory type="CG">Kongo (Brazzaville)</territory>
- <territory type="CG" alt="variant">Kongo (errepublika)</territory>
- <territory type="CH">Suitza</territory>
- <territory type="CI">Boli Kosta</territory>
- <territory type="CK">Cook uharteak</territory>
- <territory type="CL">Txile</territory>
- <territory type="CM">Kamerun</territory>
- <territory type="CN">Txina</territory>
- <territory type="CO">Kolonbia</territory>
- <territory type="CP">Clipperton uhartea</territory>
- <territory type="CR">Costa Rica</territory>
- <territory type="CU">Kuba</territory>
- <territory type="CV">Cabo Verde</territory>
- <territory type="CW">Curaçao</territory>
- <territory type="CX">Christmas uhartea</territory>
- <territory type="CY">Zipre</territory>
- <territory type="CZ">Txekiar Errepublika</territory>
- <territory type="DE">Alemania</territory>
- <territory type="DG">Diego Garcia</territory>
- <territory type="DJ">Djibuti</territory>
- <territory type="DK">Danimarka</territory>
- <territory type="DM">Dominika</territory>
- <territory type="DO">Dominikar Errepublika</territory>
- <territory type="DZ">Aljeria</territory>
- <territory type="EA">Ceuta eta Melilla</territory>
- <territory type="EC">Ekuador</territory>
- <territory type="EE">Estonia</territory>
- <territory type="EG">Egipto</territory>
- <territory type="EH">Mendebaldeko Sahara</territory>
- <territory type="ER">Eritrea</territory>
- <territory type="ES">Espainia</territory>
- <territory type="ET">Etiopia</territory>
- <territory type="EU">Europar Batasuna</territory>
- <territory type="FI">Finlandia</territory>
- <territory type="FJ">Fiji</territory>
- <territory type="FK">Malvinak</territory>
- <territory type="FK" alt="variant">Falkland uharteak (Malvina uharteak)</territory>
- <territory type="FM">Mikronesia</territory>
- <territory type="FO">Faroe uharteak</territory>
- <territory type="FR">Frantzia</territory>
- <territory type="GA">Gabon</territory>
- <territory type="GB">Erresuma Batua</territory>
- <territory type="GD">Grenada</territory>
- <territory type="GE">Georgia</territory>
- <territory type="GF">Guyana Frantsesa</territory>
- <territory type="GG">Guernsey</territory>
- <territory type="GH">Ghana</territory>
- <territory type="GI">Gibraltar</territory>
- <territory type="GL">Groenlandia</territory>
- <territory type="GM">Gambia</territory>
- <territory type="GN">Ginea</territory>
- <territory type="GP">Guadalupe</territory>
- <territory type="GQ">Ekuatore Ginea</territory>
- <territory type="GR">Grezia</territory>
- <territory type="GS">Hegoaldeko Georgia eta Hegoaldeko Sandwich uharteak</territory>
- <territory type="GT">Guatemala</territory>
- <territory type="GU">Guam</territory>
- <territory type="GW">Ginea-Bissau</territory>
- <territory type="GY">Guyana</territory>
- <territory type="HK">Hong Kong AEB Txina</territory>
- <territory type="HK" alt="short">Hong Kong</territory>
- <territory type="HM">Heard eta McDonald uharteak</territory>
- <territory type="HN">Honduras</territory>
- <territory type="HR">Kroazia</territory>
- <territory type="HT">Haiti</territory>
- <territory type="HU">Hungaria</territory>
- <territory type="IC">Kanariak</territory>
- <territory type="ID">Indonesia</territory>
- <territory type="IE">Irlanda</territory>
- <territory type="IL">Israel</territory>
- <territory type="IM">Man uhartea</territory>
- <territory type="IN">India</territory>
- <territory type="IO">Indiako Ozeanoko lurralde britainiarra</territory>
- <territory type="IQ">Irak</territory>
- <territory type="IR">Iran</territory>
- <territory type="IS">Islandia</territory>
- <territory type="IT">Italia</territory>
- <territory type="JE">Jersey</territory>
- <territory type="JM">Jamaika</territory>
- <territory type="JO">Jordania</territory>
- <territory type="JP">Japonia</territory>
- <territory type="KE">Kenya</territory>
- <territory type="KG">Kirgizistan</territory>
- <territory type="KH">Kanbodia</territory>
- <territory type="KI">Kiribati</territory>
- <territory type="KM">Komoreak</territory>
- <territory type="KN">Saint Kitts eta Nevis</territory>
- <territory type="KP">Ipar Korea</territory>
- <territory type="KR">Hego Korea</territory>
- <territory type="KW">Kuwait</territory>
- <territory type="KY">Kaiman uharteak</territory>
- <territory type="KZ">Kazakhstan</territory>
- <territory type="LA">Laos</territory>
- <territory type="LB">Libano</territory>
- <territory type="LC">Santa Luzia</territory>
- <territory type="LI">Liechtenstein</territory>
- <territory type="LK">Sri Lanka</territory>
- <territory type="LR">Liberia</territory>
- <territory type="LS">Lesotho</territory>
- <territory type="LT">Lituania</territory>
- <territory type="LU">Luxenburgo</territory>
- <territory type="LV">Letonia</territory>
- <territory type="LY">Libia</territory>
- <territory type="MA">Maroko</territory>
- <territory type="MC">Monako</territory>
- <territory type="MD">Moldavia</territory>
- <territory type="ME">Montenegro</territory>
- <territory type="MF">Saint Martin</territory>
- <territory type="MG">Madagaskar</territory>
- <territory type="MH">Marshall uharteak</territory>
- <territory type="MK">Mazedonia</territory>
- <territory type="MK" alt="variant">Mazedonia (Mazedoniako Yugoslaviar Errepublika ohia)</territory>
- <territory type="ML">Mali</territory>
- <territory type="MM">Myanmar</territory>
- <territory type="MN">Mongolia</territory>
- <territory type="MO">Macau AEB Txina</territory>
- <territory type="MO" alt="short">Macau</territory>
- <territory type="MP">Iparraldeko Mariana uharteak</territory>
- <territory type="MQ">Martinika</territory>
- <territory type="MR">Mauritania</territory>
- <territory type="MS">Montserrat</territory>
- <territory type="MT">Malta</territory>
- <territory type="MU">Maurizio</territory>
- <territory type="MV">Maldivak</territory>
- <territory type="MW">Malawi</territory>
- <territory type="MX">Mexiko</territory>
- <territory type="MY">Malaysia</territory>
- <territory type="MZ">Mozambike</territory>
- <territory type="NA">Namibia</territory>
- <territory type="NC">Kaledonia Berria</territory>
- <territory type="NE">Niger</territory>
- <territory type="NF">Norfolk uhartea</territory>
- <territory type="NG">Nigeria</territory>
- <territory type="NI">Nikaragua</territory>
- <territory type="NL">Herbehereak</territory>
- <territory type="NO">Norvegia</territory>
- <territory type="NP">Nepal</territory>
- <territory type="NR">Nauru</territory>
- <territory type="NU">Niue</territory>
- <territory type="NZ">Zeelanda Berria</territory>
- <territory type="OM">Oman</territory>
- <territory type="PA">Panama</territory>
- <territory type="PE">Peru</territory>
- <territory type="PF">Polinesia Frantsesa</territory>
- <territory type="PG">Papua Ginea Berria</territory>
- <territory type="PH">Filipinak</territory>
- <territory type="PK">Pakistan</territory>
- <territory type="PL">Polonia</territory>
- <territory type="PM">Saint-Pierre eta Mikelune</territory>
- <territory type="PN">Pitcairn uharteak</territory>
- <territory type="PR">Puerto Rico</territory>
- <territory type="PS">Palestinako Lurraldeak</territory>
- <territory type="PS" alt="short">Palestina</territory>
- <territory type="PT">Portugal</territory>
- <territory type="PW">Palau</territory>
- <territory type="PY">Paraguai</territory>
- <territory type="QA">Qatar</territory>
- <territory type="QO">Mugaz kanpoko Ozeania</territory>
- <territory type="RE">Reunion</territory>
- <territory type="RO">Errumania</territory>
- <territory type="RS">Serbia</territory>
- <territory type="RU">Errusia</territory>
- <territory type="RW">Ruanda</territory>
- <territory type="SA">Saudi Arabia</territory>
- <territory type="SB">Salomon uharteak</territory>
- <territory type="SC">Seychelleak</territory>
- <territory type="SD">Sudan</territory>
- <territory type="SE">Suedia</territory>
- <territory type="SG">Singapur</territory>
- <territory type="SH">Saint Helena</territory>
- <territory type="SI">Eslovenia</territory>
- <territory type="SJ">Svalbard eta Jan Mayen uharteak</territory>
- <territory type="SK">Eslovakia</territory>
- <territory type="SL">Sierra Leona</territory>
- <territory type="SM">San Marino</territory>
- <territory type="SN">Senegal</territory>
- <territory type="SO">Somalia</territory>
- <territory type="SR">Surinam</territory>
- <territory type="SS">Hego Sudan</territory>
- <territory type="ST">Sao Tome eta Principe</territory>
- <territory type="SV">El Salvador</territory>
- <territory type="SX">Sint Maarten</territory>
- <territory type="SY">Siria</territory>
- <territory type="SZ">Swazilandia</territory>
- <territory type="TA">Tristan da Cunha</territory>
- <territory type="TC">Turk eta Caicos uharteak</territory>
- <territory type="TD">Txad</territory>
- <territory type="TF">Hegoaldeko lurralde frantsesak</territory>
- <territory type="TG">Togo</territory>
- <territory type="TH">Thailandia</territory>
- <territory type="TJ">Tadjikistan</territory>
- <territory type="TK">Tokelau</territory>
- <territory type="TL">Ekialdeko Timor</territory>
- <territory type="TL" alt="variant">Timor ekialdea</territory>
- <territory type="TM">Turkmenistan</territory>
- <territory type="TN">Tunisia</territory>
- <territory type="TO">Tonga</territory>
- <territory type="TR">Turkia</territory>
- <territory type="TT">Trinidad eta Tobago</territory>
- <territory type="TV">Tuvalu</territory>
- <territory type="TW">Taiwan</territory>
- <territory type="TZ">Tanzania</territory>
- <territory type="UA">Ukraina</territory>
- <territory type="UG">Uganda</territory>
- <territory type="UM">Ameriketako Estatu Batuetako Kanpoaldeko Uharte Txikiak</territory>
- <territory type="US">Ameriketako Estatu Batuak</territory>
- <territory type="US" alt="short">AEB</territory>
- <territory type="UY">Uruguai</territory>
- <territory type="UZ">Uzbekistan</territory>
- <territory type="VA">Vatikano Hiria</territory>
- <territory type="VC">Saint Vincent eta Grenadinak</territory>
- <territory type="VE">Venezuela</territory>
- <territory type="VG">Birjina uharte britainiarrak</territory>
- <territory type="VI">Birjina uharte amerikarrak</territory>
- <territory type="VN">Vietnam</territory>
- <territory type="VU">Vanuatu</territory>
- <territory type="WF">Wallis eta Futuna</territory>
- <territory type="WS">Samoa</territory>
- <territory type="XK">Kosovo</territory>
- <territory type="YE">Yemen</territory>
- <territory type="YT">Mayotte</territory>
- <territory type="ZA">Hegoafrika</territory>
- <territory type="ZM">Zambia</territory>
- <territory type="ZW">Zimbabwe</territory>
- <territory type="ZZ">Eskualde ezezaguna</territory>
- </territories>
- <variants>
- <variant type="POLYTON">POLITON</variant>
- <variant type="REVISED">BERRIKUSIA</variant>
- <variant type="SAAHO">SAHO</variant>
- <variant type="SCOTLAND">ESKOZIAR INGELESA</variant>
- <variant type="VALENCIA">VALENTZIERA</variant>
- </variants>
- <keys>
- <key type="calendar">Egutegia</key>
- <key type="colAlternate">Egin ez ikusi ikurren ordenari</key>
- <key type="colBackwards">Azentuen alderantzizko ordena</key>
- <key type="colCaseFirst">Maiuskula/Minuskula ordena</key>
- <key type="colCaseLevel">Maiuskulak eta minuskulak bereizten dituen ordena</key>
- <key type="colHiraganaQuaternary">Kana ordena</key>
- <key type="collation">Ordenatzeko irizpidea</key>
- <key type="colNormalization">Araututako ordena</key>
- <key type="colNumeric">Zenbakizko ordena</key>
- <key type="colStrength">Ordenaren sendotasuna</key>
- <key type="currency">Moneta</key>
- <key type="numbers">Zenbakiak</key>
- <key type="timezone">Ordu-zona</key>
- <key type="va">Eskualdeko ezarpenen aldaera</key>
- <key type="variableTop">Ordenatu ikur gisa</key>
- <key type="x">Erabilera pribatua</key>
- </keys>
- <types>
- <type type="arab" key="numbers">Digitu arabiar-hindikoak</type>
- <type type="arabext" key="numbers">Digitu arabiar-hindiko hedatuak</type>
- <type type="armn" key="numbers">Zenbaki armeniarrak</type>
- <type type="armnlow" key="numbers">Zenbaki armeniarrak minuskulaz</type>
- <type type="beng" key="numbers">Digitu bengalarrak</type>
- <type type="big5han" key="collation">Txinera tradizionalaren alfabetoa-Big5</type>
- <type type="buddhist" key="calendar">Egutegi budista</type>
- <type type="chinese" key="calendar">Txinatar egutegia</type>
- <type type="coptic" key="calendar">Egutegi coptiarra</type>
- <type type="deva" key="numbers">Digitu devanagariak</type>
- <type type="dictionary" key="collation">Hurrenkera alfabetikoa</type>
- <type type="ducet" key="collation">Unicode hurrenkera lehenetsia</type>
- <type type="ethi" key="numbers">Zenbaki etiopiarrak</type>
- <type type="ethiopic" key="calendar">Egutegi etiopiarra</type>
- <type type="ethiopic-amete-alem" key="calendar">Amete Alem egutegi etiopiarra</type>
- <type type="finance" key="numbers">Finantza-zenbakiak</type>
- <type type="fullwide" key="numbers">Zabalera osoko digituak</type>
- <type type="gb2312han" key="collation">Txinera sinplifikatuaren alfabetoa -GB2312</type>
- <type type="geor" key="numbers">Zenbaki georgiarrak</type>
- <type type="gregorian" key="calendar">Egutegi gregoriarra</type>
- <type type="grek" key="numbers">Zenbaki grekoak</type>
- <type type="greklow" key="numbers">Zenbaki grekoak minuskulaz</type>
- <type type="gujr" key="numbers">Digitu gujaratarrak</type>
- <type type="guru" key="numbers">Digitu gurmukhiak</type>
- <type type="hanidec" key="numbers">Zenbaki hamartar txinatarrak</type>
- <type type="hans" key="numbers">Zenbaki txinatar sinplifikatuak</type>
- <type type="hansfin" key="numbers">Finantzetarako zenbaki txinatar sinplifikatuak</type>
- <type type="hant" key="numbers">Zenbaki txinatar tradizionalak</type>
- <type type="hantfin" key="numbers">Finantzetarako zenbaki txinatar tradizionalak</type>
- <type type="hebr" key="numbers">Zenbaki hebrearrak</type>
- <type type="hebrew" key="calendar">Hebrear egutegia</type>
- <type type="identical" key="colStrength">Ordenatu guztiak</type>
- <type type="indian" key="calendar">Indiar egutegia</type>
- <type type="islamic" key="calendar">Islamiar egutegia</type>
- <type type="islamic-civil" key="calendar">Islamiar egutegi zibila</type>
- <type type="japanese" key="calendar">Japoniar egutegia</type>
- <type type="jpan" key="numbers">Zenbaki japoniarrak</type>
- <type type="jpanfin" key="numbers">Finantzetarako zenbaki japoniarrak</type>
- <type type="khmr" key="numbers">Digitu khmerarrak</type>
- <type type="knda" key="numbers">Digitu kannadarrak</type>
- <type type="laoo" key="numbers">Digitu laostarrak</type>
- <type type="latn" key="numbers">Digitu mendebaldarrak</type>
- <type type="lower" key="colCaseFirst">Ordenatu minuskulak lehenik</type>
- <type type="mlym" key="numbers">Digitu malayalamarrak</type>
- <type type="mong" key="numbers">Digitu mongoliarrak</type>
- <type type="mymr" key="numbers">Digitu birmaniarrak</type>
- <type type="native" key="numbers">Zenbaki-sistema</type>
- <type type="no" key="colBackwards">Ordenatu azentuak modu normalean</type>
- <type type="no" key="colCaseFirst">Ordenatu maiuskulak modu normalean</type>
- <type type="no" key="colCaseLevel">Ordenatu maiuskulak eta minuskulak bereizi gabe</type>
- <type type="no" key="colHiraganaQuaternary">Ordenatu kanak bereizita</type>
- <type type="no" key="colNormalization">Ordenatu arauak kontuan hartu gabe</type>
- <type type="no" key="colNumeric">Ordenatu digituak banaka</type>
- <type type="non-ignorable" key="colAlternate">Ordenatu ikurrak</type>
- <type type="orya" key="numbers">Digitu oriyarrak</type>
- <type type="persian" key="calendar">Egutegi persiarra</type>
- <type type="phonebook" key="collation">Telefonoen zerrenda</type>
- <type type="phonetic" key="collation">Ordenatzeko irizpide fonetikoa</type>
- <type type="pinyin" key="collation">Pinyin hurrenkera</type>
- <type type="primary" key="colStrength">Ordenatu oinarrizko hizkiak soilik</type>
- <type type="quaternary" key="colStrength">Ordenatu azentuak / maiuskula eta minuskulak / zabalera / kanak</type>
- <type type="reformed" key="collation">Erreformaren araberako hurrenkera</type>
- <type type="roc" key="calendar">Txinako Errepublikako egutegia</type>
- <type type="roman" key="numbers">Zenbaki erromatarrak</type>
- <type type="romanlow" key="numbers">Zenbaki erromatarrak minuskulaz</type>
- <type type="search" key="collation">Bilaketa orokorra</type>
- <type type="searchjl" key="collation">Bilatu hangularen lehen kontsonantearen arabera</type>
- <type type="secondary" key="colStrength">Ordenatu azentuak</type>
- <type type="shifted" key="colAlternate">Ordenatu ikurrei ez ikusi eginda</type>
- <type type="standard" key="collation">Ordenatzeko irizpide estandarra</type>
- <type type="stroke" key="collation">Tarteen araberako hurrenkera</type>
- <type type="taml" key="numbers">Zenbaki tamilar tradizionalak</type>
- <type type="tamldec" key="numbers">Digitu tamilarrak</type>
- <type type="telu" key="numbers">Digitu teluguarrak</type>
- <type type="tertiary" key="colStrength">Ordenatu azentuak / maiuskula eta minuskulak / zabalera</type>
- <type type="thai" key="numbers">Digitu thailandiarrak</type>
- <type type="tibt" key="numbers">Digitu tibetarrak</type>
- <type type="traditional" key="collation">Tradizionala</type>
- <type type="traditional" key="numbers">Zenbaki tradizionalak</type>
- <type type="unihan" key="collation">Radical trazuen hurrenkera</type>
- <type type="upper" key="colCaseFirst">Ordenatu maiuskulak lehenik</type>
- <type type="vaii" key="numbers">Vai digituak</type>
- <type type="yes" key="colBackwards">Ordenatu azentuak alderantziz</type>
- <type type="yes" key="colCaseLevel">Ordenatu maiuskulak eta minuskulak bereizita</type>
- <type type="yes" key="colHiraganaQuaternary">Ordenatu kanak desberdin</type>
- <type type="yes" key="colNormalization">Ordenatu Unicode arauen arabera</type>
- <type type="yes" key="colNumeric">Ordenatu digituak zenbakien arabera</type>
- </types>
- <transformNames>
- <transformName type="BGN">BGN bihurketa</transformName>
- <transformName type="Numeric">Zenbakizko bihurketa</transformName>
- <transformName type="Tone">Tonu-bihurketa</transformName>
- <transformName type="UNGEGN">UNGEGN bihurketa</transformName>
- <transformName type="x-Accents">Azentu-bihurketa</transformName>
- <transformName type="x-Fullwidth">Zabalera osoko karaktere-bihurketa</transformName>
- <transformName type="x-Halfwidth">Zabalera erdiko karaktere-bihurketa</transformName>
- <transformName type="x-Jamo">Jamo-bihurketa</transformName>
- <transformName type="x-Pinyin">Pinyina</transformName>
- <transformName type="x-Publishing">Argitalpen-bihurketa</transformName>
- </transformNames>
- <measurementSystemNames>
- <measurementSystemName type="metric">Sistema metrikoa</measurementSystemName>
- <measurementSystemName type="UK">Erresuma Batuko sistema</measurementSystemName>
- <measurementSystemName type="US">AEBetako sistema</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">{0}</codePattern>
- <codePattern type="script">{0}</codePattern>
- <codePattern type="territory">{0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <characters>
- <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>
- <exemplarCharacters type="auxiliary">[á à ă â å ä ã ā æ ç é è ĕ ê ë ē í ì ĭ î ï ī ñ ó ò ŏ ô ö ø ō œ ú ù ŭ û ü ū ÿ]</exemplarCharacters>
- <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>
- <ellipsis type="final">{0}…</ellipsis>
- <ellipsis type="initial">…{0}</ellipsis>
- <ellipsis type="medial">{0}…{1}</ellipsis>
- <ellipsis type="word-final">{0}…</ellipsis>
- <ellipsis type="word-initial">…{0}</ellipsis>
- <ellipsis type="word-medial">{0}…{1}</ellipsis>
- <moreInformation>?</moreInformation>
- </characters>
- <delimiters>
- <quotationStart>«</quotationStart>
- <quotationEnd>»</quotationEnd>
- <alternateQuotationStart>“</alternateQuotationStart>
- <alternateQuotationEnd>”</alternateQuotationEnd>
- </delimiters>
- <dates>
- <calendars>
- <calendar type="buddhist">
- <eras>
- <eraAbbr>
- <era type="0">BG</era>
- </eraAbbr>
- </eras>
- </calendar>
- <calendar type="generic">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>G. 'aroko' y. 'urteko' MMMM d, EEEE</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>G. 'aroko' y. 'urteko' MMMM d</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>G. 'aroko' y('e')'ko' MMM d</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>GGGGG y-MM-dd</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">d, EEEE</dateFormatItem>
- <dateFormatItem id="Gy">G. 'aroko' y. 'urtea'</dateFormatItem>
- <dateFormatItem id="GyMMM">G. 'aroko' y('e')'ko' MMMM</dateFormatItem>
- <dateFormatItem id="GyMMMd">G. 'aroko' y('e')'ko' MMMM d</dateFormatItem>
- <dateFormatItem id="GyMMMEd">G. 'aroko' y('e')'ko' MMMM d, EEEE</dateFormatItem>
- <dateFormatItem id="H">HH</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">MM/dd</dateFormatItem>
- <dateFormatItem id="MEd">MM/dd, EEEE</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">MMM d</dateFormatItem>
- <dateFormatItem id="MMMEd">MMM d, EEEE</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">y/MM</dateFormatItem>
- <dateFormatItem id="yMd">y/MM/dd</dateFormatItem>
- <dateFormatItem id="yMEd">y/MM/dd, EEEE</dateFormatItem>
- <dateFormatItem id="yMMM">y('e')'ko' MMMM</dateFormatItem>
- <dateFormatItem id="yMMMd">y('e')'ko' MMMM d</dateFormatItem>
- <dateFormatItem id="yMMMEd">y('e')'ko' MMMM d, EEEE</dateFormatItem>
- <dateFormatItem id="yQQQ">y QQQ</dateFormatItem>
- <dateFormatItem id="yQQQQ">y('e')'ko' QQQQ</dateFormatItem>
- <dateFormatItem id="yyyy">G y</dateFormatItem>
- <dateFormatItem id="yyyyM">G y/MM</dateFormatItem>
- <dateFormatItem id="yyyyMd">G y/MM/dd</dateFormatItem>
- <dateFormatItem id="yyyyMEd">G y/MM/dd, EEEE</dateFormatItem>
- <dateFormatItem id="yyyyMMM">G y MMM</dateFormatItem>
- <dateFormatItem id="yyyyMMMd">G y MMM d</dateFormatItem>
- <dateFormatItem id="yyyyMMMEd">G y MMM d, EEEE</dateFormatItem>
- <dateFormatItem id="yyyyMMMM">G y('e')'ko' MMMM</dateFormatItem>
- <dateFormatItem id="yyyyMMMMd">G y('e')'ko' MMMM d</dateFormatItem>
- <dateFormatItem id="yyyyMMMMEd">G y('e')'ko' MMMM d, EEEE</dateFormatItem>
- <dateFormatItem id="yyyyQQQ">G y QQQ</dateFormatItem>
- <dateFormatItem id="yyyyQQQQ">G y('e')'ko' QQQQ</dateFormatItem>
- </availableFormats>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">dd–dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a – h a</greatestDifference>
- <greatestDifference id="h">h–h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH–HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">:h:mm a – h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">h a – h a v</greatestDifference>
- <greatestDifference id="h">h–h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH–HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">MM–MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">MM/dd – MM/dd</greatestDifference>
- <greatestDifference id="M">MM/dd – MM/dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">MM/dd, EEEE – MM/dd, EEEE</greatestDifference>
- <greatestDifference id="M">MM/dd, EEEE – MM/dd, EEEE</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM–MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">MMMM d–d</greatestDifference>
- <greatestDifference id="M">MMMM d – MMMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">MMMM d, EEEE – MMMM d, EEEE</greatestDifference>
- <greatestDifference id="M">MMMM d, EEEE – MMMM d, EEEE</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">G y–y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">G y/MM – y/MM</greatestDifference>
- <greatestDifference id="y">G y/MM – y/MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">G y/MM/dd – y/MM/dd</greatestDifference>
- <greatestDifference id="M">G y/MM/dd – y/MM/dd</greatestDifference>
- <greatestDifference id="y">G y/MM/dd – y/MM/dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">G y/MM/dd, EEEE – y/MM/dd, EEEE</greatestDifference>
- <greatestDifference id="M">G y/MM/dd, EEEE – y/MM/dd, EEEE</greatestDifference>
- <greatestDifference id="y">G y/MM/dd, EEEE – y/MM/dd, EEEE</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">G y('e')'ko' MMMM–MMMM</greatestDifference>
- <greatestDifference id="y">G y('e')'ko' MMMM – y('e')'ko' MMMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">G y('e')'ko' MMMM dd–dd</greatestDifference>
- <greatestDifference id="M">G y('e')'ko' MMMM dd – MMMM dd</greatestDifference>
- <greatestDifference id="y">G y('e')'ko' MMMM dd – y('e')'ko' MMMM dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">G y('e')'ko' MMMM dd, EEEE – MMMM dd, EEEE</greatestDifference>
- <greatestDifference id="M">G y('e')'ko' MMMM dd, EEEE – MMMM dd, EEEE</greatestDifference>
- <greatestDifference id="y">G y('e')'ko' MMMM dd, EEEE – MMMM dd, EEEE</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">G y('e')'ko' MMMM – MMMM</greatestDifference>
- <greatestDifference id="y">G y('e')'ko' MMMM – y('e')'ko' MMMM</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="gregorian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">urt.</month>
- <month type="2">ots.</month>
- <month type="3">mar.</month>
- <month type="4">api.</month>
- <month type="5">mai.</month>
- <month type="6">eka.</month>
- <month type="7">uzt.</month>
- <month type="8">abu.</month>
- <month type="9">ira.</month>
- <month type="10">urr.</month>
- <month type="11">aza.</month>
- <month type="12">abe.</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">U</month>
- <month type="2">O</month>
- <month type="3">M</month>
- <month type="4">A</month>
- <month type="5">M</month>
- <month type="6">E</month>
- <month type="7">U</month>
- <month type="8">A</month>
- <month type="9">I</month>
- <month type="10">U</month>
- <month type="11">A</month>
- <month type="12">A</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">urtarrilak</month>
- <month type="2">otsailak</month>
- <month type="3">martxoak</month>
- <month type="4">apirilak</month>
- <month type="5">maiatzak</month>
- <month type="6">ekainak</month>
- <month type="7">uztailak</month>
- <month type="8">abuztuak</month>
- <month type="9">irailak</month>
- <month type="10">urriak</month>
- <month type="11">azaroak</month>
- <month type="12">abenduak</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="abbreviated">
- <month type="1">urt.</month>
- <month type="2">ots.</month>
- <month type="3">mar.</month>
- <month type="4">api.</month>
- <month type="5">mai.</month>
- <month type="6">eka.</month>
- <month type="7">uzt.</month>
- <month type="8">abu.</month>
- <month type="9">ira.</month>
- <month type="10">urr.</month>
- <month type="11">aza.</month>
- <month type="12">abe.</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">U</month>
- <month type="2">O</month>
- <month type="3">M</month>
- <month type="4">A</month>
- <month type="5">M</month>
- <month type="6">E</month>
- <month type="7">U</month>
- <month type="8">A</month>
- <month type="9">I</month>
- <month type="10">U</month>
- <month type="11">A</month>
- <month type="12">A</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">urtarrila</month>
- <month type="2">otsaila</month>
- <month type="3">martxoa</month>
- <month type="4">apirila</month>
- <month type="5">maiatza</month>
- <month type="6">ekaina</month>
- <month type="7">uztaila</month>
- <month type="8">abuztua</month>
- <month type="9">iraila</month>
- <month type="10">urria</month>
- <month type="11">azaroa</month>
- <month type="12">abendua</month>
- </monthWidth>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">ig.</day>
- <day type="mon">al.</day>
- <day type="tue">ar.</day>
- <day type="wed">az.</day>
- <day type="thu">og.</day>
- <day type="fri">or.</day>
- <day type="sat">lr.</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">I</day>
- <day type="mon">A</day>
- <day type="tue">A</day>
- <day type="wed">A</day>
- <day type="thu">O</day>
- <day type="fri">O</day>
- <day type="sat">L</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">ig.</day>
- <day type="mon">al.</day>
- <day type="tue">ar.</day>
- <day type="wed">az.</day>
- <day type="thu">og.</day>
- <day type="fri">or.</day>
- <day type="sat">lr.</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">igandea</day>
- <day type="mon">astelehena</day>
- <day type="tue">asteartea</day>
- <day type="wed">asteazkena</day>
- <day type="thu">osteguna</day>
- <day type="fri">ostirala</day>
- <day type="sat">larunbata</day>
- </dayWidth>
- </dayContext>
- <dayContext type="stand-alone">
- <dayWidth type="abbreviated">
- <day type="sun">ig.</day>
- <day type="mon">al.</day>
- <day type="tue">ar.</day>
- <day type="wed">az.</day>
- <day type="thu">og.</day>
- <day type="fri">or.</day>
- <day type="sat">lr.</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">I</day>
- <day type="mon">A</day>
- <day type="tue">A</day>
- <day type="wed">A</day>
- <day type="thu">O</day>
- <day type="fri">O</day>
- <day type="sat">L</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">ig.</day>
- <day type="mon">al.</day>
- <day type="tue">ar.</day>
- <day type="wed">az.</day>
- <day type="thu">og.</day>
- <day type="fri">or.</day>
- <day type="sat">lr.</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">igandea</day>
- <day type="mon">astelehena</day>
- <day type="tue">asteartea</day>
- <day type="wed">asteazkena</day>
- <day type="thu">osteguna</day>
- <day type="fri">ostirala</day>
- <day type="sat">larunbata</day>
- </dayWidth>
- </dayContext>
- </days>
- <quarters>
- <quarterContext type="format">
- <quarterWidth type="abbreviated">
- <quarter type="1">1Hh</quarter>
- <quarter type="2">2Hh</quarter>
- <quarter type="3">3Hh</quarter>
- <quarter type="4">4Hh</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">1. hiruhilekoa</quarter>
- <quarter type="2">2. hiruhilekoa</quarter>
- <quarter type="3">3. hiruhilekoa</quarter>
- <quarter type="4">4. hiruhilekoa</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="abbreviated">
- <quarter type="1">1Hh</quarter>
- <quarter type="2">2Hh</quarter>
- <quarter type="3">3Hh</quarter>
- <quarter type="4">4Hh</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">1. hiruhilekoa</quarter>
- <quarter type="2">2. hiruhilekoa</quarter>
- <quarter type="3">3. hiruhilekoa</quarter>
- <quarter type="4">4. hiruhilekoa</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <dayPeriods>
- <dayPeriodContext type="format">
- <dayPeriodWidth type="abbreviated">
- <dayPeriod type="am">AM</dayPeriod>
- <dayPeriod type="pm">PM</dayPeriod>
- </dayPeriodWidth>
- <dayPeriodWidth type="narrow">
- <dayPeriod type="am">a</dayPeriod>
- <dayPeriod type="pm">p</dayPeriod>
- </dayPeriodWidth>
- <dayPeriodWidth type="wide">
- <dayPeriod type="am">AM</dayPeriod>
- <dayPeriod type="pm">PM</dayPeriod>
- </dayPeriodWidth>
- </dayPeriodContext>
- </dayPeriods>
- <eras>
- <eraAbbr>
- <era type="0">K.a.</era>
- <era type="1">K.o.</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>y('e')'ko' MMMM d, EEEE</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>y('e')'ko' MMMM d</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>y MMM d</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>y-MM-dd</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>HH:mm:ss zzzz</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>HH:mm:ss z</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>HH:mm:ss</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>HH:mm</pattern>
- </timeFormat>
- </timeFormatLength>
- </timeFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">d, E</dateFormatItem>
- <dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
- <dateFormatItem id="EHm">E HH:mm</dateFormatItem>
- <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
- <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
- <dateFormatItem id="Gy">G y</dateFormatItem>
- <dateFormatItem id="GyMMM">G y. 'urteko' MMM</dateFormatItem>
- <dateFormatItem id="GyMMMd">G y. 'urteko' MMM d</dateFormatItem>
- <dateFormatItem id="GyMMMEd">G y. 'urteko' MMM d, E</dateFormatItem>
- <dateFormatItem id="h">h a</dateFormatItem>
- <dateFormatItem id="H">HH</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">M/d</dateFormatItem>
- <dateFormatItem id="MEd">M/d, E</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">MMM d</dateFormatItem>
- <dateFormatItem id="MMMEd">MMM d, E</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">y/M</dateFormatItem>
- <dateFormatItem id="yMd">y/M/d</dateFormatItem>
- <dateFormatItem id="yMEd">y/M/d, E</dateFormatItem>
- <dateFormatItem id="yMMM">y MMM</dateFormatItem>
- <dateFormatItem id="yMMMd">y MMM d</dateFormatItem>
- <dateFormatItem id="yMMMEd">y MMM d, E</dateFormatItem>
- <dateFormatItem id="yMMMM">y('e')'ko' MMMM</dateFormatItem>
- <dateFormatItem id="yMMMMd">y('e')'ko' MMMM d</dateFormatItem>
- <dateFormatItem id="yMMMMEd">y('e')'ko' MMMM d, E</dateFormatItem>
- <dateFormatItem id="yQQQ">y('e')'ko' QQQ</dateFormatItem>
- <dateFormatItem id="yQQQQ">y('e')'ko' QQQQ</dateFormatItem>
- </availableFormats>
- <appendItems>
- <appendItem request="Timezone">{0} ({1})</appendItem>
- </appendItems>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d–d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a – h a</greatestDifference>
- <greatestDifference id="h">h–h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH–HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">h a – h a v</greatestDifference>
- <greatestDifference id="h">h–h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH–HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M–M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">M/d – M/d</greatestDifference>
- <greatestDifference id="M">M/d – M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">M/d, E – M/d, E</greatestDifference>
- <greatestDifference id="M">M/d, E – M/d, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM–MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">MMM d–d</greatestDifference>
- <greatestDifference id="M">MMM d – MMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">MMM d, E – MMM d, E</greatestDifference>
- <greatestDifference id="M">MMM d, E – MMM d, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y–y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">y/M – y/M</greatestDifference>
- <greatestDifference id="y">y/M – y/M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">y/M/d – y/M/d</greatestDifference>
- <greatestDifference id="M">y/M/d – y/M/d</greatestDifference>
- <greatestDifference id="y">y/M/d – y/M/d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">y/M/d, E – y/M/d, E</greatestDifference>
- <greatestDifference id="M">y/M/d, E – y/M/d, E</greatestDifference>
- <greatestDifference id="y">y/M/d, E – y/M/d, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">y('e')'ko' MMM–MMM</greatestDifference>
- <greatestDifference id="y">y('e')'ko' MMM – y('e')'ko' MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">y('e')'ko' MMM d–d</greatestDifference>
- <greatestDifference id="M">y('e')'ko' MMM d – MMM d</greatestDifference>
- <greatestDifference id="y">y('e')'ko' MMM d – y('e')'ko' MMM d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">y('e')'ko' MMM d, E – y('e')'ko' MMM d, E</greatestDifference>
- <greatestDifference id="M">y('e')'ko' MMM d, E – MMM d, E</greatestDifference>
- <greatestDifference id="y">y('e')'ko' MMM d, E – y('e')'ko' MMM d, E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">y('e')'ko' MMMM–MMMM</greatestDifference>
- <greatestDifference id="y">y('e')'ko' MMMM – y('e')'ko' MMMM</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="roc">
- <eras>
- <eraAbbr>
- <era type="0">R.O.C. aurretik</era>
- <era type="1">R.O.C.</era>
- </eraAbbr>
- </eras>
- </calendar>
- </calendars>
- <fields>
- <field type="era">
- <displayName>Aroa</displayName>
- </field>
- <field type="year">
- <displayName>Urtea</displayName>
- <relative type="-1">aurreko urtea</relative>
- <relative type="0">aurten</relative>
- <relative type="1">hurrengo urtea</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} urte barru</relativeTimePattern>
- <relativeTimePattern count="other">{0} urte barru</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Duela {0} urte</relativeTimePattern>
- <relativeTimePattern count="other">Duela {0} urte</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="month">
- <displayName>Hilabetea</displayName>
- <relative type="-1">aurreko hilabetea</relative>
- <relative type="0">hilabete hau</relative>
- <relative type="1">hurrengo hilabetea</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} hilabete barru</relativeTimePattern>
- <relativeTimePattern count="other">{0} hilabete barru</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Duela {0} hilabete</relativeTimePattern>
- <relativeTimePattern count="other">Duela {0} hilabete</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="week">
- <displayName>Astea</displayName>
- <relative type="-1">aurreko astea</relative>
- <relative type="0">aste hau</relative>
- <relative type="1">hurrengo astea</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} aste barru</relativeTimePattern>
- <relativeTimePattern count="other">{0} aste barru</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Duela {0} aste</relativeTimePattern>
- <relativeTimePattern count="other">Duela {0} aste</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="day">
- <displayName>Eguna</displayName>
- <relative type="-2">herenegun</relative>
- <relative type="-1">atzo</relative>
- <relative type="0">gaur</relative>
- <relative type="1">bihar</relative>
- <relative type="2">etzi</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} egun barru</relativeTimePattern>
- <relativeTimePattern count="other">{0} egun barru</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Duela {0} egun</relativeTimePattern>
- <relativeTimePattern count="other">Duela {0} egun</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="weekday">
- <displayName>Asteguna</displayName>
- </field>
- <field type="sun">
- <relative type="-1">aurreko igandea</relative>
- <relative type="0">igande hau</relative>
- <relative type="1">hurrengo igandea</relative>
- </field>
- <field type="mon">
- <relative type="-1">aurreko astelehena</relative>
- <relative type="0">astelehen hau</relative>
- <relative type="1">hurrengo astelehena</relative>
- </field>
- <field type="tue">
- <relative type="-1">aurreko asteartea</relative>
- <relative type="0">astearte hau</relative>
- <relative type="1">hurrengo asteartea</relative>
- </field>
- <field type="wed">
- <relative type="-1">aurreko asteazkena</relative>
- <relative type="0">asteazken hau</relative>
- <relative type="1">hurrengo asteazkena</relative>
- </field>
- <field type="thu">
- <relative type="-1">aurreko osteguna</relative>
- <relative type="0">ostegun hau</relative>
- <relative type="1">hurrengo osteguna</relative>
- </field>
- <field type="fri">
- <relative type="-1">aurreko ostirala</relative>
- <relative type="0">ostiral hau</relative>
- <relative type="1">hurrengo ostirala</relative>
- </field>
- <field type="sat">
- <relative type="-1">aurreko larunbata</relative>
- <relative type="0">larunbat hau</relative>
- <relative type="1">hurrengo larunbata</relative>
- </field>
- <field type="dayperiod">
- <displayName>AM//PM</displayName>
- </field>
- <field type="hour">
- <displayName>Ordua</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} ordu barru</relativeTimePattern>
- <relativeTimePattern count="other">{0} ordu barru</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Duela {0} ordu</relativeTimePattern>
- <relativeTimePattern count="other">Duela {0} ordu</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="minute">
- <displayName>Minutua</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} minutu barru</relativeTimePattern>
- <relativeTimePattern count="other">{0} minutu barru</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Duela {0} minutu</relativeTimePattern>
- <relativeTimePattern count="other">Duela {0} minutu</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="second">
- <displayName>Segundoa</displayName>
- <relative type="0">orain</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">{0} segundo barru</relativeTimePattern>
- <relativeTimePattern count="other">{0} segundo barru</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Duela {0} segundo</relativeTimePattern>
- <relativeTimePattern count="other">Duela {0} segundo</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="zone">
- <displayName>Ordu-zona</displayName>
- </field>
- </fields>
- <timeZoneNames>
- <hourFormat>+HH:mm;-HH:mm</hourFormat>
- <gmtFormat>GMT{0}</gmtFormat>
- <gmtZeroFormat>GMT</gmtZeroFormat>
- <regionFormat>{0}</regionFormat>
- <regionFormat type="daylight">{0} (udako ordua)</regionFormat>
- <regionFormat type="standard">{0} (ordu estandarra)</regionFormat>
- <fallbackFormat>{1} ({0})</fallbackFormat>
- <zone type="Etc/Unknown">
- <exemplarCity>Hiri ezezaguna</exemplarCity>
- </zone>
- <zone type="Europe/Tirane">
- <exemplarCity>Tirana</exemplarCity>
- </zone>
- <zone type="Antarctica/DumontDUrville">
- <exemplarCity>Dumont d’Urville</exemplarCity>
- </zone>
- <zone type="Europe/Vienna">
- <exemplarCity>Viena</exemplarCity>
- </zone>
- <zone type="Australia/Adelaide">
- <exemplarCity>Adelaida</exemplarCity>
- </zone>
- <zone type="Europe/Brussels">
- <exemplarCity>Brusela</exemplarCity>
- </zone>
- <zone type="America/St_Barthelemy">
- <exemplarCity>Saint Barthélemy</exemplarCity>
- </zone>
- <zone type="America/Coral_Harbour">
- <exemplarCity>Atikokan</exemplarCity>
- </zone>
- <zone type="America/St_Johns">
- <exemplarCity>St. John's</exemplarCity>
- </zone>
- <zone type="Atlantic/Cape_Verde">
- <exemplarCity>Cabo Verde</exemplarCity>
- </zone>
- <zone type="America/Curacao">
- <exemplarCity>Curaçao</exemplarCity>
- </zone>
- <zone type="Europe/Prague">
- <exemplarCity>Praga</exemplarCity>
- </zone>
- <zone type="Europe/Copenhagen">
- <exemplarCity>Kopenhage</exemplarCity>
- </zone>
- <zone type="America/Dominica">
- <exemplarCity>Dominika</exemplarCity>
- </zone>
- <zone type="Africa/Algiers">
- <exemplarCity>Aljer</exemplarCity>
- </zone>
- <zone type="Pacific/Galapagos">
- <exemplarCity>Galapagoak</exemplarCity>
- </zone>
- <zone type="Africa/Cairo">
- <exemplarCity>Kairo</exemplarCity>
- </zone>
- <zone type="Africa/Asmera">
- <exemplarCity>Asmara</exemplarCity>
- </zone>
- <zone type="Atlantic/Canary">
- <exemplarCity>Kanariak</exemplarCity>
- </zone>
- <zone type="Europe/Madrid">
- <exemplarCity>Madril</exemplarCity>
- </zone>
- <zone type="Africa/Addis_Ababa">
- <exemplarCity>Addis Abeba</exemplarCity>
- </zone>
- <zone type="Pacific/Truk">
- <exemplarCity>Chuuk</exemplarCity>
- </zone>
- <zone type="Pacific/Ponape">
- <exemplarCity>Pohnpei</exemplarCity>
- </zone>
- <zone type="Atlantic/Faeroe">
- <exemplarCity>Faroe</exemplarCity>
- </zone>
- <zone type="Europe/London">
- <long>
- <daylight>Londresko udako ordua</daylight>
- </long>
- <exemplarCity>Londres</exemplarCity>
- </zone>
- <zone type="America/Godthab">
- <exemplarCity>Nuuk</exemplarCity>
- </zone>
- <zone type="America/Scoresbysund">
- <exemplarCity>Ittoqqortoormiit</exemplarCity>
- </zone>
- <zone type="America/Guadeloupe">
- <exemplarCity>Guadalupe</exemplarCity>
- </zone>
- <zone type="Europe/Athens">
- <exemplarCity>Atenas</exemplarCity>
- </zone>
- <zone type="Europe/Dublin">
- <long>
- <daylight>Dublingo udako ordua</daylight>
- </long>
- </zone>
- <zone type="Europe/Isle_of_Man">
- <exemplarCity>Man uhartea</exemplarCity>
- </zone>
- <zone type="Asia/Calcutta">
- <exemplarCity>Kolkata</exemplarCity>
- </zone>
- <zone type="Europe/Rome">
- <exemplarCity>Erroma</exemplarCity>
- </zone>
- <zone type="America/Jamaica">
- <exemplarCity>Jamaika</exemplarCity>
- </zone>
- <zone type="Asia/Tokyo">
- <exemplarCity>Tokio</exemplarCity>
- </zone>
- <zone type="America/St_Kitts">
- <exemplarCity>St. Kitts</exemplarCity>
- </zone>
- <zone type="Asia/Seoul">
- <exemplarCity>Seul</exemplarCity>
- </zone>
- <zone type="America/St_Lucia">
- <exemplarCity>St. Lucia</exemplarCity>
- </zone>
- <zone type="Europe/Luxembourg">
- <exemplarCity>Luxenburgo</exemplarCity>
- </zone>
- <zone type="Europe/Monaco">
- <exemplarCity>Monako</exemplarCity>
- </zone>
- <zone type="Asia/Rangoon">
- <exemplarCity>Rangun</exemplarCity>
- </zone>
- <zone type="Asia/Ulaanbaatar">
- <exemplarCity>Ulan Bator</exemplarCity>
- </zone>
- <zone type="America/Martinique">
- <exemplarCity>Martinika</exemplarCity>
- </zone>
- <zone type="Indian/Mauritius">
- <exemplarCity>Maurizio</exemplarCity>
- </zone>
- <zone type="Indian/Maldives">
- <exemplarCity>Maldivak</exemplarCity>
- </zone>
- <zone type="America/Mexico_City">
- <exemplarCity>Mexico Hiria</exemplarCity>
- </zone>
- <zone type="Asia/Katmandu">
- <exemplarCity>Kathmandu</exemplarCity>
- </zone>
- <zone type="Europe/Warsaw">
- <exemplarCity>Varsovia</exemplarCity>
- </zone>
- <zone type="America/Miquelon">
- <exemplarCity>Mikelune</exemplarCity>
- </zone>
- <zone type="Atlantic/Azores">
- <exemplarCity>Azoreak</exemplarCity>
- </zone>
- <zone type="Europe/Lisbon">
- <exemplarCity>Lisboa</exemplarCity>
- </zone>
- <zone type="America/Asuncion">
- <exemplarCity>Asunción</exemplarCity>
- </zone>
- <zone type="Europe/Bucharest">
- <exemplarCity>Bukarest</exemplarCity>
- </zone>
- <zone type="Europe/Belgrade">
- <exemplarCity>Belgrado</exemplarCity>
- </zone>
- <zone type="Europe/Moscow">
- <exemplarCity>Mosku</exemplarCity>
- </zone>
- <zone type="Asia/Singapore">
- <exemplarCity>Singapur</exemplarCity>
- </zone>
- <zone type="Atlantic/St_Helena">
- <exemplarCity>St. Helena</exemplarCity>
- </zone>
- <zone type="Africa/Sao_Tome">
- <exemplarCity>São Tomé</exemplarCity>
- </zone>
- <zone type="America/Lower_Princes">
- <exemplarCity>Lower Prince's Quarter</exemplarCity>
- </zone>
- <zone type="Asia/Damascus">
- <exemplarCity>Damasko</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Beulah">
- <exemplarCity>Beulah, Ipar Dakota</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/New_Salem">
- <exemplarCity>New Salem, Ipar Dakota</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Center">
- <exemplarCity>Erdialdea, Ipar Dakota</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vincennes">
- <exemplarCity>Vincennes, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Petersburg">
- <exemplarCity>Petersburg, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Tell_City">
- <exemplarCity>Tell City, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Knox">
- <exemplarCity>Knox, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Winamac">
- <exemplarCity>Winamac, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Marengo">
- <exemplarCity>Marengo, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vevay">
- <exemplarCity>Vevay, Indiana</exemplarCity>
- </zone>
- <zone type="America/Kentucky/Monticello">
- <exemplarCity>Monticello, Kentucky</exemplarCity>
- </zone>
- <zone type="Europe/Vatican">
- <exemplarCity>Vaticano Hiria</exemplarCity>
- </zone>
- <zone type="America/St_Vincent">
- <exemplarCity>St. Vincent</exemplarCity>
- </zone>
- <zone type="America/St_Thomas">
- <exemplarCity>St. Thomas</exemplarCity>
- </zone>
- <zone type="Asia/Saigon">
- <exemplarCity>Ho Chi Minh</exemplarCity>
- </zone>
- <zone type="Africa/Johannesburg">
- <exemplarCity>Johannesburgo</exemplarCity>
- </zone>
- <metazone type="Afghanistan">
- <long>
- <standard>Afganistango ordua</standard>
- </long>
- </metazone>
- <metazone type="Africa_Central">
- <long>
- <standard>Afrika erdialdeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Africa_Eastern">
- <long>
- <standard>Afrika ekialdeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Africa_Southern">
- <long>
- <standard>Afrika hegoaldeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Africa_Western">
- <long>
- <generic>Afrika mendebaldeko ordua</generic>
- <standard>Afrika mendebaldeko ordu estandarra</standard>
- <daylight>Afrika mendebaldeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Alaska">
- <long>
- <generic>Alaskako ordua</generic>
- <standard>Alaskako ordu estandarra</standard>
- <daylight>Alaskako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Amazon">
- <long>
- <generic>Amazoniako ordua</generic>
- <standard>Amazoniako ordu estandarra</standard>
- <daylight>Amazoniako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="America_Central">
- <long>
- <generic>Ipar Amerikako erdialdeko ordua</generic>
- <standard>Ipar Amerikako erdialdeko ordu estandarra</standard>
- <daylight>Ipar Amerikako erdialdeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="America_Eastern">
- <long>
- <generic>Ipar Amerikako ekialdeko ordua</generic>
- <standard>Ipar Amerikako ekialdeko ordu estandarra</standard>
- <daylight>Ipar Amerikako ekialdeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="America_Mountain">
- <long>
- <generic>Ipar Amerikako mendialdeko ordua</generic>
- <standard>Ipar Amerikako mendialdeko ordu estandarra</standard>
- <daylight>Ipar Amerikako mendialdeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="America_Pacific">
- <long>
- <generic>Ipar Amerikako Pazifikoko ordua</generic>
- <standard>Ipar Amerikako Pazifikoko ordu estandarra</standard>
- <daylight>Ipar Amerikako Pazifikoko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Anadyr">
- <long>
- <generic>Anadyrreko ordua</generic>
- <standard>Anadyrreko ordu estandarra</standard>
- <daylight>Anadyrreko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Arabian">
- <long>
- <generic>Arabiako ordua</generic>
- <standard>Arabiako ordu estandarra</standard>
- <daylight>Arabiako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Argentina">
- <long>
- <generic>Argentinako ordua</generic>
- <standard>Argentinako ordu estandarra</standard>
- <daylight>Argentinako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Argentina_Western">
- <long>
- <generic>Argentina mendebaldeko ordua</generic>
- <standard>Argentina mendebaldeko ordu estandarra</standard>
- <daylight>Argentina mendebaldeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Armenia">
- <long>
- <generic>Armeniako ordua</generic>
- <standard>Armeniako ordu estandarra</standard>
- <daylight>Armeniako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Atlantic">
- <long>
- <generic>Atlantikoko ordua</generic>
- <standard>Atlantikoko ordu estandarra</standard>
- <daylight>Atlantikoko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Central">
- <long>
- <generic>Australia erdialdeko ordua</generic>
- <standard>Australia erdialdeko ordu estandarra</standard>
- <daylight>Australia erdialdeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Australia_CentralWestern">
- <long>
- <generic>Australia erdi-mendebaldeko ordua</generic>
- <standard>Australia erdi-mendebaldeko ordu estandarra</standard>
- <daylight>Australia erdi-mendebaldeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Eastern">
- <long>
- <generic>Australia ekialdeko ordua</generic>
- <standard>Australia ekialdeko ordu estandarra</standard>
- <daylight>Australia ekialdeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Western">
- <long>
- <generic>Australia mendebaldeko ordua</generic>
- <standard>Australia mendebaldeko ordu estandarra</standard>
- <daylight>Australia mendebaldeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Azerbaijan">
- <long>
- <generic>Azerbaijango ordua</generic>
- <standard>Azerbaijango ordu estandarra</standard>
- <daylight>Azerbaijango udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Azores">
- <long>
- <generic>Azoreetako ordua</generic>
- <standard>Azoreetako ordu estandarra</standard>
- <daylight>Azoreetako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Bangladesh">
- <long>
- <generic>Bangladesheko ordua</generic>
- <standard>Bangladesheko ordu estandarra</standard>
- <daylight>Bangladesheko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Bhutan">
- <long>
- <standard>Bhutango ordua</standard>
- </long>
- </metazone>
- <metazone type="Bolivia">
- <long>
- <standard>Boliviako ordua</standard>
- </long>
- </metazone>
- <metazone type="Brasilia">
- <long>
- <generic>Brasiliako ordua</generic>
- <standard>Brasiliako ordu estandarra</standard>
- <daylight>Brasiliako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Brunei">
- <long>
- <standard>Brunei Darussalamgo ordua</standard>
- </long>
- </metazone>
- <metazone type="Cape_Verde">
- <long>
- <generic>Cabo Verdeko ordua</generic>
- <standard>Cabo Verdeko ordu estandarra</standard>
- <daylight>Cabo Verdeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Chamorro">
- <long>
- <standard>Chamorroko ordu estandarra</standard>
- </long>
- </metazone>
- <metazone type="Chatham">
- <long>
- <generic>Chathamgo ordua</generic>
- <standard>Chathamgo ordu estandarra</standard>
- <daylight>Chathamgo udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Chile">
- <long>
- <generic>Txileko ordua</generic>
- <standard>Txileko ordu estandarra</standard>
- <daylight>Txileko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="China">
- <long>
- <generic>Txinako ordua</generic>
- <standard>Txinako ordu estandarra</standard>
- <daylight>Txinako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Choibalsan">
- <long>
- <generic>Choibalsango ordua</generic>
- <standard>Choibalsango ordu estandarra</standard>
- <daylight>Choibalsango udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Christmas">
- <long>
- <standard>Christmas uharteko ordua</standard>
- </long>
- </metazone>
- <metazone type="Cocos">
- <long>
- <standard>Cocos uharteetako ordua</standard>
- </long>
- </metazone>
- <metazone type="Colombia">
- <long>
- <generic>Kolonbiako ordua</generic>
- <standard>Kolonbiako ordu estandarra</standard>
- <daylight>Kolonbiako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Cook">
- <long>
- <generic>Cook uharteetako ordua</generic>
- <standard>Cook uharteetako ordu estandarra</standard>
- <daylight>Cook uharteetako uda erdialdeko ordua</daylight>
- </long>
- </metazone>
- <metazone type="Cuba">
- <long>
- <generic>Kubako ordua</generic>
- <standard>Kubako ordu estandarra</standard>
- <daylight>Kubako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Davis">
- <long>
- <standard>Daviseko ordua</standard>
- </long>
- </metazone>
- <metazone type="DumontDUrville">
- <long>
- <standard>Dumont-d'Urvilleko ordua</standard>
- </long>
- </metazone>
- <metazone type="East_Timor">
- <long>
- <standard>Ekialdeko Timorreko ordua</standard>
- </long>
- </metazone>
- <metazone type="Easter">
- <long>
- <generic>Pazko uharteko ordua</generic>
- <standard>Pazko uharteko ordu estandarra</standard>
- <daylight>Pazko uharteko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Ecuador">
- <long>
- <standard>Ekuadorreko ordua</standard>
- </long>
- </metazone>
- <metazone type="Europe_Central">
- <long>
- <generic>Europa erdialdeko ordua</generic>
- <standard>Europa erdialdeko ordu estandarra</standard>
- <daylight>Europa erdialdeko udako ordua</daylight>
- </long>
- <short>
- <generic>CET</generic>
- <standard>CET</standard>
- <daylight>CEST</daylight>
- </short>
- </metazone>
- <metazone type="Europe_Eastern">
- <long>
- <generic>Europa ekialdeko ordua</generic>
- <standard>Europa ekialdeko ordu estandarra</standard>
- <daylight>Europa ekialdeko udako ordua</daylight>
- </long>
- <short>
- <generic>EET</generic>
- <standard>EET</standard>
- <daylight>EEST</daylight>
- </short>
- </metazone>
- <metazone type="Europe_Western">
- <long>
- <generic>Europa mendebaldeko ordua</generic>
- <standard>Europa mendebaldeko ordu estandarra</standard>
- <daylight>Europa mendebaldeko udako ordua</daylight>
- </long>
- <short>
- <generic>WET</generic>
- <standard>WET</standard>
- <daylight>WEST</daylight>
- </short>
- </metazone>
- <metazone type="Falkland">
- <long>
- <generic>Falkland uharteetako ordua</generic>
- <standard>Falkland uharteetako ordu estandarra</standard>
- <daylight>Falkland uharteetako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Fiji">
- <long>
- <generic>Fijiko ordua</generic>
- <standard>Fijiko ordu estandarra</standard>
- <daylight>Fijiko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="French_Guiana">
- <long>
- <standard>Guyana Frantseseko ordua</standard>
- </long>
- </metazone>
- <metazone type="French_Southern">
- <long>
- <standard>Frantziaren lurralde austral eta antartikoetako ordua</standard>
- </long>
- </metazone>
- <metazone type="Galapagos">
- <long>
- <standard>Galapagoetako ordua</standard>
- </long>
- </metazone>
- <metazone type="Gambier">
- <long>
- <standard>Gambierreko ordua</standard>
- </long>
- </metazone>
- <metazone type="Georgia">
- <long>
- <generic>Georgiako ordua</generic>
- <standard>Georgiako ordu estandarra</standard>
- <daylight>Georgiako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Gilbert_Islands">
- <long>
- <standard>Gilbert uharteetako ordua</standard>
- </long>
- </metazone>
- <metazone type="GMT">
- <long>
- <standard>Greenwich meridianoko ordua</standard>
- </long>
- <short>
- <standard>GMT</standard>
- </short>
- </metazone>
- <metazone type="Greenland_Eastern">
- <long>
- <generic>Groenlandia ekialdeko ordua</generic>
- <standard>Groenlandia ekialdeko ordu estandarra</standard>
- <daylight>Groenlandia ekialdeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Western">
- <long>
- <generic>Groenlandia mendebaldeko ordua</generic>
- <standard>Groenlandia mendebaldeko ordu estandarra</standard>
- <daylight>Groenlandia mendebaldeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Gulf">
- <long>
- <standard>Golkoko ordu estandarra</standard>
- </long>
- </metazone>
- <metazone type="Guyana">
- <long>
- <standard>Guyanako ordua</standard>
- </long>
- </metazone>
- <metazone type="Hawaii_Aleutian">
- <long>
- <generic>Hawaii-Aleutiar uharteetako ordua</generic>
- <standard>Hawaii-Aleutiar uharteetako ordu estandarra</standard>
- <daylight>Hawaii-Aleutiar uharteetako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Hong_Kong">
- <long>
- <generic>Hong Kongo ordua</generic>
- <standard>Hong Kongo ordu estandarra</standard>
- <daylight>Hong Kongo udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Hovd">
- <long>
- <generic>Hovdeko ordua</generic>
- <standard>Hovdeko ordu estandarra</standard>
- <daylight>Hovdeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="India">
- <long>
- <standard>Indiako ordua</standard>
- </long>
- </metazone>
- <metazone type="Indian_Ocean">
- <long>
- <standard>Ozeano Indikoko ordua</standard>
- </long>
- </metazone>
- <metazone type="Indochina">
- <long>
- <standard>Indotxinako ordua</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Central">
- <long>
- <standard>Indonesia erdialdeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Eastern">
- <long>
- <standard>Indonesia ekialdeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Western">
- <long>
- <standard>Indonesia mendebaldeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Iran">
- <long>
- <generic>Irango ordua</generic>
- <standard>Irango ordu estandarra</standard>
- <daylight>Irango udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Irkutsk">
- <long>
- <generic>Irkutskeko ordua</generic>
- <standard>Irkutskeko ordu estandarra</standard>
- <daylight>Irkutskeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Israel">
- <long>
- <generic>Israelgo ordua</generic>
- <standard>Israelgo ordu estandarra</standard>
- <daylight>Israelgo udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Japan">
- <long>
- <generic>Japoniako ordua</generic>
- <standard>Japoniako ordu estandarra</standard>
- <daylight>Japoniako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Kamchatka">
- <long>
- <generic>Petropavlovsk-Kamchatskiko ordua</generic>
- <standard>Petropavlovsk-Kamchatskiko ordu estandarra</standard>
- <daylight>Petropavlovsk-Kamchatskiko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Eastern">
- <long>
- <standard>Kazakhstan ekialdeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Western">
- <long>
- <standard>Kazakhstan mendebaldeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Korea">
- <long>
- <generic>Koreako ordua</generic>
- <standard>Koreako ordu estandarra</standard>
- <daylight>Koreako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Kosrae">
- <long>
- <standard>Kosraeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Krasnoyarsk">
- <long>
- <generic>Krasnoyarskeko ordua</generic>
- <standard>Krasnoyarskeko ordu estandarra</standard>
- <daylight>Krasnoyarskeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Kyrgystan">
- <long>
- <standard>Kirgizistango ordua</standard>
- </long>
- </metazone>
- <metazone type="Line_Islands">
- <long>
- <standard>Line uharteetako ordua</standard>
- </long>
- </metazone>
- <metazone type="Lord_Howe">
- <long>
- <generic>Lord Howeko ordua</generic>
- <standard>Lord Howeko ordu estandarra</standard>
- <daylight>Lord Howeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Macquarie">
- <long>
- <standard>Macquarie uharteko ordua</standard>
- </long>
- </metazone>
- <metazone type="Magadan">
- <long>
- <generic>Magadako ordua</generic>
- <standard>Magadango ordu estandarra</standard>
- <daylight>Magadango udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Malaysia">
- <long>
- <standard>Malaysiako ordua</standard>
- </long>
- </metazone>
- <metazone type="Maldives">
- <long>
- <standard>Maldivetako ordua</standard>
- </long>
- </metazone>
- <metazone type="Marquesas">
- <long>
- <standard>Markesetako ordua</standard>
- </long>
- </metazone>
- <metazone type="Marshall_Islands">
- <long>
- <standard>Marshall uharteetako ordua</standard>
- </long>
- </metazone>
- <metazone type="Mauritius">
- <long>
- <generic>Maurizioko ordua</generic>
- <standard>Maurizioko ordu estandarra</standard>
- <daylight>Maurizioko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Mawson">
- <long>
- <standard>Mawsoneko ordua</standard>
- </long>
- </metazone>
- <metazone type="Mongolia">
- <long>
- <generic>Ulan Batorreko ordua</generic>
- <standard>Ulan Batorreko ordu estandarra</standard>
- <daylight>Ulan Batorreko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Moscow">
- <long>
- <generic>Moskuko ordua</generic>
- <standard>Moskuko ordu estandarra</standard>
- <daylight>Moskuko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Myanmar">
- <long>
- <standard>Myanmarreko ordua</standard>
- </long>
- </metazone>
- <metazone type="Nauru">
- <long>
- <standard>Nauruko ordua</standard>
- </long>
- </metazone>
- <metazone type="Nepal">
- <long>
- <standard>Nepalgo ordua</standard>
- </long>
- </metazone>
- <metazone type="New_Caledonia">
- <long>
- <generic>Kaledonia Berriako ordua</generic>
- <standard>Kaledonia Berriko ordu estandarra</standard>
- <daylight>Kaledonia Berriko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="New_Zealand">
- <long>
- <generic>Zeelanda Berriko ordua</generic>
- <standard>Zeelanda Berriko ordu estandarra</standard>
- <daylight>Zeelanda Berriko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Newfoundland">
- <long>
- <generic>Ternuako ordua</generic>
- <standard>Ternuako ordu estandarra</standard>
- <daylight>Ternuako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Niue">
- <long>
- <standard>Niueko ordua</standard>
- </long>
- </metazone>
- <metazone type="Norfolk">
- <long>
- <standard>Norfolk uharteetako ordua</standard>
- </long>
- </metazone>
- <metazone type="Noronha">
- <long>
- <generic>Fernando de Noronhako ordua</generic>
- <standard>Fernando de Noronhako ordu estandarra</standard>
- <daylight>Fernando de Noronhako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Novosibirsk">
- <long>
- <generic>Novosibirskeko ordua</generic>
- <standard>Novosibirskeko ordu estandarra</standard>
- <daylight>Novosibirskeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Omsk">
- <long>
- <generic>Omskeko ordua</generic>
- <standard>Omskeko ordu estandarra</standard>
- <daylight>Omskeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Pakistan">
- <long>
- <generic>Pakistango ordua</generic>
- <standard>Pakistango ordu estandarra</standard>
- <daylight>Pakistango udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Palau">
- <long>
- <standard>Palauko ordua</standard>
- </long>
- </metazone>
- <metazone type="Papua_New_Guinea">
- <long>
- <standard>Papua Ginea Berriko ordua</standard>
- </long>
- </metazone>
- <metazone type="Paraguay">
- <long>
- <generic>Paraguayko ordua</generic>
- <standard>Paraguayko ordu estandarra</standard>
- <daylight>Paraguayko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Peru">
- <long>
- <generic>Peruko ordua</generic>
- <standard>Peruko ordu estandarra</standard>
- <daylight>Peruko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Philippines">
- <long>
- <generic>Filipinetako ordua</generic>
- <standard>Filipinetako ordu estandarra</standard>
- <daylight>Filipinetako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Phoenix_Islands">
- <long>
- <standard>Phoenix uharteetako ordua</standard>
- </long>
- </metazone>
- <metazone type="Pierre_Miquelon">
- <long>
- <generic>Saint-Pierre eta Mikeluneko ordua</generic>
- <standard>Saint-Pierre eta Mikeluneko ordu estandarra</standard>
- <daylight>Saint-Pierre eta Mikeluneko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Pitcairn">
- <long>
- <standard>Pitcairneko ordua</standard>
- </long>
- </metazone>
- <metazone type="Ponape">
- <long>
- <standard>Ponapeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Reunion">
- <long>
- <standard>Reunion uharteetako ordua</standard>
- </long>
- </metazone>
- <metazone type="Rothera">
- <long>
- <standard>Rotherako ordua</standard>
- </long>
- </metazone>
- <metazone type="Sakhalin">
- <long>
- <generic>Sakhalingo ordua</generic>
- <standard>Sakhalingo ordu estandarra</standard>
- <daylight>Sakhalingo udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Samara">
- <long>
- <generic>Samarako ordua</generic>
- <standard>Samarako ordu estandarra</standard>
- <daylight>Samarako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Samoa">
- <long>
- <generic>Samoako ordua</generic>
- <standard>Samoako ordu estandarra</standard>
- <daylight>Samoako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Seychelles">
- <long>
- <standard>Seychelle uharteetako ordua</standard>
- </long>
- </metazone>
- <metazone type="Singapore">
- <long>
- <standard>Singapurreko ordu estandarra</standard>
- </long>
- </metazone>
- <metazone type="Solomon">
- <long>
- <standard>Salomon uharteetako ordua</standard>
- </long>
- </metazone>
- <metazone type="South_Georgia">
- <long>
- <standard>Hego Georgiako ordua</standard>
- </long>
- </metazone>
- <metazone type="Suriname">
- <long>
- <standard>Surinamgo ordua</standard>
- </long>
- </metazone>
- <metazone type="Syowa">
- <long>
- <standard>Syowako ordua</standard>
- </long>
- </metazone>
- <metazone type="Tahiti">
- <long>
- <standard>Tahitiko ordua</standard>
- </long>
- </metazone>
- <metazone type="Taipei">
- <long>
- <generic>Taipeiko ordua</generic>
- <standard>Taipeiko ordu estandarra</standard>
- <daylight>Taipeiko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Tajikistan">
- <long>
- <standard>Tadjikistango ordua</standard>
- </long>
- </metazone>
- <metazone type="Tokelau">
- <long>
- <standard>Tokelauko ordua</standard>
- </long>
- </metazone>
- <metazone type="Tonga">
- <long>
- <generic>Tongako ordua</generic>
- <standard>Tongako ordu estandarra</standard>
- <daylight>Tongako udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Truk">
- <long>
- <standard>Chuukeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Turkmenistan">
- <long>
- <generic>Turkmenistango ordua</generic>
- <standard>Turkmenistango ordu estandarra</standard>
- <daylight>Turkmenistango udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Tuvalu">
- <long>
- <standard>Tuvaluko ordua</standard>
- </long>
- </metazone>
- <metazone type="Uruguay">
- <long>
- <generic>Uruguayko ordua</generic>
- <standard>Uruguayko ordu estandarra</standard>
- <daylight>Uruguayko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Uzbekistan">
- <long>
- <generic>Uzbekistango ordua</generic>
- <standard>Uzbekistango ordu estandarra</standard>
- <daylight>Uzbekistango udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Vanuatu">
- <long>
- <generic>Vanuatuko ordua</generic>
- <standard>Vanuatuko ordu estandarra</standard>
- <daylight>Vanuatuko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Venezuela">
- <long>
- <standard>Venezuelako ordua</standard>
- </long>
- </metazone>
- <metazone type="Vladivostok">
- <long>
- <generic>Vladivostokeko ordua</generic>
- <standard>Vladivostokeko ordu estandarra</standard>
- <daylight>Vladivostokeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Volgograd">
- <long>
- <generic>Volgogradeko ordua</generic>
- <standard>Volgogradeko ordu estandarra</standard>
- <daylight>Volgogradeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Vostok">
- <long>
- <standard>Vostokeko ordua</standard>
- </long>
- </metazone>
- <metazone type="Wake">
- <long>
- <standard>Wake uharteko ordua</standard>
- </long>
- </metazone>
- <metazone type="Wallis">
- <long>
- <standard>Wallis eta Futunako ordua</standard>
- </long>
- </metazone>
- <metazone type="Yakutsk">
- <long>
- <generic>Yakutskeko ordua</generic>
- <standard>Yakutskeko ordu estandarra</standard>
- <daylight>Yakutskeko udako ordua</daylight>
- </long>
- </metazone>
- <metazone type="Yekaterinburg">
- <long>
- <generic>Yekaterinburgeko ordua</generic>
- <standard>Jekaterinburgeko ordu estandarra</standard>
- <daylight>Yekaterinburgeko udako ordua</daylight>
- </long>
- </metazone>
- </timeZoneNames>
- </dates>
- <numbers>
- <symbols numberSystem="latn">
- <decimal>,</decimal>
- <group>.</group>
- <list>;</list>
- <percentSign>%</percentSign>
- <plusSign>+</plusSign>
- <minusSign>-</minusSign>
- <exponential>E</exponential>
- <superscriptingExponent>×</superscriptingExponent>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>NaN</nan>
- </symbols>
- <decimalFormats numberSystem="latn">
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="long">
- <decimalFormat>
- <pattern type="1000" count="one">0000</pattern>
- <pattern type="1000" count="other">0000</pattern>
- <pattern type="10000" count="one">00000</pattern>
- <pattern type="10000" count="other">00000</pattern>
- <pattern type="100000" count="one">000000</pattern>
- <pattern type="100000" count="other">000000</pattern>
- <pattern type="1000000" count="one">0 milioi</pattern>
- <pattern type="1000000" count="other">0 milioi</pattern>
- <pattern type="10000000" count="one">00 milioi</pattern>
- <pattern type="10000000" count="other">00 milioi</pattern>
- <pattern type="100000000" count="one">000 milioi</pattern>
- <pattern type="100000000" count="other">000 milioi</pattern>
- <pattern type="1000000000" count="one">0000 milioi</pattern>
- <pattern type="1000000000" count="other">0000 milioi</pattern>
- <pattern type="10000000000" count="one">00000 milioi</pattern>
- <pattern type="10000000000" count="other">00000 milioi</pattern>
- <pattern type="100000000000" count="one">000000 milioi</pattern>
- <pattern type="100000000000" count="other">000000 milioi</pattern>
- <pattern type="1000000000000" count="one">0 bilioi</pattern>
- <pattern type="1000000000000" count="other">0 bilioi</pattern>
- <pattern type="10000000000000" count="one">00 bilioi</pattern>
- <pattern type="10000000000000" count="other">00 bilioi</pattern>
- <pattern type="100000000000000" count="one">000 bilioi</pattern>
- <pattern type="100000000000000" count="other">000 bilioi</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="short">
- <decimalFormat>
- <pattern type="1000" count="one">0000</pattern>
- <pattern type="1000" count="other">0000</pattern>
- <pattern type="10000" count="one">00000</pattern>
- <pattern type="10000" count="other">00000</pattern>
- <pattern type="100000" count="one">000000</pattern>
- <pattern type="100000" count="other">000000</pattern>
- <pattern type="1000000" count="one">0 M</pattern>
- <pattern type="1000000" count="other">0 M</pattern>
- <pattern type="10000000" count="one">00 M</pattern>
- <pattern type="10000000" count="other">00 M</pattern>
- <pattern type="100000000" count="one">000 M</pattern>
- <pattern type="100000000" count="other">000 M</pattern>
- <pattern type="1000000000" count="one">0000 M</pattern>
- <pattern type="1000000000" count="other">0000 M</pattern>
- <pattern type="10000000000" count="one">00000 M</pattern>
- <pattern type="10000000000" count="other">00000 M</pattern>
- <pattern type="100000000000" count="one">000000 M</pattern>
- <pattern type="100000000000" count="other">000000 M</pattern>
- <pattern type="1000000000000" count="one">0 B</pattern>
- <pattern type="1000000000000" count="other">0 B</pattern>
- <pattern type="10000000000000" count="one">00 B</pattern>
- <pattern type="10000000000000" count="other">00 B</pattern>
- <pattern type="100000000000000" count="one">000 B</pattern>
- <pattern type="100000000000000" count="other">000 B</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <scientificFormats numberSystem="latn">
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <percentFormats numberSystem="latn">
- <percentFormatLength>
- <percentFormat>
- <pattern>% #,##0</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <currencyFormats numberSystem="latn">
- <currencyFormatLength>
- <currencyFormat type="standard">
- <pattern>#,##0.00 ¤</pattern>
- </currencyFormat>
- <currencyFormat type="accounting">
- <pattern>#,##0.00 ¤;(#,##0.00 ¤)</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="one">{0} {1}</unitPattern>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="AED">
- <displayName>Arabiar Emirerri Batuetako dirhama</displayName>
- <displayName count="one">Arabiar Emirerri Batuetako dirham</displayName>
- <displayName count="other">Arabiar Emirerri Batuetako dirham</displayName>
- </currency>
- <currency type="AFN">
- <displayName>Afganistango afghania</displayName>
- <displayName count="one">Afganistango afghani</displayName>
- <displayName count="other">Afganistango afghani</displayName>
- </currency>
- <currency type="ALL">
- <displayName>Albaniako leka</displayName>
- <displayName count="one">Albaniako lek</displayName>
- <displayName count="other">Albaniako lek</displayName>
- </currency>
- <currency type="AMD">
- <displayName>Armeniako drama</displayName>
- <displayName count="one">Armeniako dram</displayName>
- <displayName count="other">Armeniako dram</displayName>
- </currency>
- <currency type="ANG">
- <displayName>Holandarren Antilletako guilderra</displayName>
- <displayName count="one">Holandarren Antilletako guilder</displayName>
- <displayName count="other">Holandarren Antilletako guilder</displayName>
- </currency>
- <currency type="AOA">
- <displayName>Angolako kwanza</displayName>
- <displayName count="one">Angolako kwanza</displayName>
- <displayName count="other">Angolako kwanza</displayName>
- </currency>
- <currency type="ARS">
- <displayName>Argentinako pesoa</displayName>
- <displayName count="one">Argentinako peso</displayName>
- <displayName count="other">Argentinako peso</displayName>
- </currency>
- <currency type="AUD">
- <displayName>Australiako dolarra</displayName>
- <displayName count="one">Australiako dolar</displayName>
- <displayName count="other">Australiako dolar</displayName>
- <symbol>A$</symbol>
- </currency>
- <currency type="AWG">
- <displayName>Arubeko florina</displayName>
- <displayName count="one">Arubeko florin</displayName>
- <displayName count="other">Arubeko florin</displayName>
- </currency>
- <currency type="AZN">
- <displayName>Azerbaijango manata</displayName>
- <displayName count="one">Azerbaijango manat</displayName>
- <displayName count="other">Azerbaijango manat</displayName>
- </currency>
- <currency type="BAM">
- <displayName>Bosnia-Herzegovinako marko trukakorra</displayName>
- <displayName count="one">Bosnia-Herzegovinako marko trukakor</displayName>
- <displayName count="other">Bosnia-Herzegovinako marko trukakor</displayName>
- </currency>
- <currency type="BBD">
- <displayName>Barbadosetako dolarra</displayName>
- <displayName count="one">Barbadosetako dolar</displayName>
- <displayName count="other">Barbadosetako dolar</displayName>
- </currency>
- <currency type="BDT">
- <displayName>Bangladesheko taka</displayName>
- <displayName count="one">Bangladesheko taka</displayName>
- <displayName count="other">Bangladesheko taka</displayName>
- </currency>
- <currency type="BGN">
- <displayName>Bulgariako leva</displayName>
- <displayName count="one">Bulgariako lev</displayName>
- <displayName count="other">Bulgariako lev</displayName>
- </currency>
- <currency type="BHD">
- <displayName>Bahraingo dinarra</displayName>
- <displayName count="one">Bahraingo dinar</displayName>
- <displayName count="other">Bahraingo dinar</displayName>
- </currency>
- <currency type="BIF">
- <displayName>Burundiko frankoa</displayName>
- <displayName count="one">Burundiko franko</displayName>
- <displayName count="other">Burundiko franko</displayName>
- </currency>
- <currency type="BMD">
- <displayName>Bermudetako dolarra</displayName>
- <displayName count="one">Bermudetako dolar</displayName>
- <displayName count="other">Bermudetako dolar</displayName>
- </currency>
- <currency type="BND">
- <displayName>Bruneiko dolarra</displayName>
- <displayName count="one">Bruneiko dolar</displayName>
- <displayName count="other">Bruneiko dolar</displayName>
- </currency>
- <currency type="BOB">
- <displayName>Boliviako bolivianoa</displayName>
- <displayName count="one">Boliviako boliviano</displayName>
- <displayName count="other">Boliviako boliviano</displayName>
- </currency>
- <currency type="BRL">
- <displayName>Brasilgo erreala</displayName>
- <displayName count="one">Brasilgo erreal</displayName>
- <displayName count="other">Brasilgo erreal</displayName>
- <symbol>R$</symbol>
- </currency>
- <currency type="BSD">
- <displayName>Bahametako dolarra</displayName>
- <displayName count="one">Bahametako dolar</displayName>
- <displayName count="other">Bahametako dolar</displayName>
- </currency>
- <currency type="BTN">
- <displayName>Bhutango ngultruma</displayName>
- <displayName count="one">Bhutango ngultrum</displayName>
- <displayName count="other">Bhutango ngultrum</displayName>
- </currency>
- <currency type="BWP">
- <displayName>Bosniako pula</displayName>
- <displayName count="one">Bosniako pula</displayName>
- <displayName count="other">Bosniako pula</displayName>
- </currency>
- <currency type="BYR">
- <displayName>Bielorrusiako errubloa</displayName>
- <displayName count="one">Bielorrusiako errublo</displayName>
- <displayName count="other">Bielorrusiako errublo</displayName>
- </currency>
- <currency type="BZD">
- <displayName>Belizeko dolarra</displayName>
- <displayName count="one">Belizeko dolar</displayName>
- <displayName count="other">Belizeko dolar</displayName>
- </currency>
- <currency type="CAD">
- <displayName>Kanadako dolarra</displayName>
- <displayName count="one">Kanadako dolar</displayName>
- <displayName count="other">Kanadako dolar</displayName>
- <symbol>CA$</symbol>
- </currency>
- <currency type="CDF">
- <displayName>Kongoko frankoa</displayName>
- <displayName count="one">Kongoko franko</displayName>
- <displayName count="other">Kongoko franko</displayName>
- </currency>
- <currency type="CHF">
- <displayName>Suitzako frankoa</displayName>
- <displayName count="one">Suitzako franko</displayName>
- <displayName count="other">Suitzako franko</displayName>
- </currency>
- <currency type="CLP">
- <displayName>Txileko pesoa</displayName>
- <displayName count="one">Txileko peso</displayName>
- <displayName count="other">Txileko peso</displayName>
- </currency>
- <currency type="CNY">
- <displayName>Txinako yuana</displayName>
- <displayName count="one">Txinako yuan</displayName>
- <displayName count="other">Txinako yuan</displayName>
- <symbol>CN¥</symbol>
- </currency>
- <currency type="COP">
- <displayName>Kolonbiako pesoa</displayName>
- <displayName count="one">Kolonbiako peso</displayName>
- <displayName count="other">Kolonbiako peso</displayName>
- </currency>
- <currency type="CRC">
- <displayName>Costa Ricako colona</displayName>
- <displayName count="one">Costa Ricako colon</displayName>
- <displayName count="other">Costa Ricako colon</displayName>
- </currency>
- <currency type="CUC">
- <displayName>Kubako peso trukakorra</displayName>
- <displayName count="one">Kubako peso trukakor</displayName>
- <displayName count="other">Kubako peso trukakor</displayName>
- </currency>
- <currency type="CUP">
- <displayName>Kubako pesoa</displayName>
- <displayName count="one">Kubako peso</displayName>
- <displayName count="other">Kubako peso</displayName>
- </currency>
- <currency type="CVE">
- <displayName>Cabo Verdeko ezkutua</displayName>
- <displayName count="one">Cabo Verdeko ezkutu</displayName>
- <displayName count="other">Cabo Verdeko ezkutu</displayName>
- </currency>
- <currency type="CZK">
- <displayName>Txekiar Errepublikako koroa</displayName>
- <displayName count="one">Txekiar Errepublikako koroa</displayName>
- <displayName count="other">Txekiar Errepublikako koroa</displayName>
- </currency>
- <currency type="DJF">
- <displayName>Djibouteko frankoa</displayName>
- <displayName count="one">Djibouteko franko</displayName>
- <displayName count="other">Djibouteko franko</displayName>
- </currency>
- <currency type="DKK">
- <displayName>Danimarkako koroa</displayName>
- <displayName count="one">Danimarkako koroa</displayName>
- <displayName count="other">Danimarkako koroa</displayName>
- </currency>
- <currency type="DOP">
- <displayName>Dominikar Errepublikako pesoa</displayName>
- <displayName count="one">Dominikar Errepublikako peso</displayName>
- <displayName count="other">Dominikar Errepublikako peso</displayName>
- </currency>
- <currency type="DZD">
- <displayName>Algeriako dinarra</displayName>
- <displayName count="one">Algeriako dinar</displayName>
- <displayName count="other">Algeriako dinar</displayName>
- </currency>
- <currency type="EGP">
- <displayName>Egiptoko libera</displayName>
- <displayName count="one">Egiptoko libera</displayName>
- <displayName count="other">Egiptoko libera</displayName>
- </currency>
- <currency type="ERN">
- <displayName>Eritreako nakfa</displayName>
- <displayName count="one">Eritreako nakfa</displayName>
- <displayName count="other">Eritreako nakfa</displayName>
- </currency>
- <currency type="ESP">
- <pattern>¤ #,##0.00</pattern>
- <symbol>₧</symbol>
- <decimal>,</decimal>
- <group>.</group>
- </currency>
- <currency type="ETB">
- <displayName>Etiopiako birra</displayName>
- <displayName count="one">Etiopiako birra</displayName>
- <displayName count="other">Etiopiako birra</displayName>
- </currency>
- <currency type="EUR">
- <displayName>Euroa</displayName>
- <displayName count="one">euro</displayName>
- <displayName count="other">euro</displayName>
- <symbol>€</symbol>
- </currency>
- <currency type="FJD">
- <displayName>Fijiko dolarra</displayName>
- <displayName count="one">Fijiko dolar</displayName>
- <displayName count="other">Fijiko dolar</displayName>
- </currency>
- <currency type="FKP">
- <displayName>Falkland uharteetako libera</displayName>
- <displayName count="one">Falkland uharteetako libera</displayName>
- <displayName count="other">Falkland uharteetako libera</displayName>
- </currency>
- <currency type="GBP">
- <displayName>Libera esterlina</displayName>
- <displayName count="one">libera esterlina</displayName>
- <displayName count="other">libera esterlina</displayName>
- <symbol>£</symbol>
- </currency>
- <currency type="GEL">
- <displayName>Georgiako laria</displayName>
- <displayName count="one">Georgiako lari</displayName>
- <displayName count="other">Georgiako lari</displayName>
- </currency>
- <currency type="GHS">
- <displayName>Ghanako cedia</displayName>
- <displayName count="one">Ghanako cedi</displayName>
- <displayName count="other">Ghanako cedi</displayName>
- </currency>
- <currency type="GIP">
- <displayName>Gibraltarreko libera</displayName>
- <displayName count="one">Gibraltarreko libera</displayName>
- <displayName count="other">Gibraltarreko libera</displayName>
- </currency>
- <currency type="GMD">
- <displayName>Ganbiako dalasia</displayName>
- <displayName count="one">Ganbiako dalasi</displayName>
- <displayName count="other">Ganbiako dalasi</displayName>
- </currency>
- <currency type="GNF">
- <displayName>Gineako frankoa</displayName>
- <displayName count="one">Gineako franko</displayName>
- <displayName count="other">Gineako franko</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>Guatemalako quetzala</displayName>
- <displayName count="one">Guatemalako quetzal</displayName>
- <displayName count="other">Guatemalako quetzal</displayName>
- </currency>
- <currency type="GYD">
- <displayName>Guyanako dolarra</displayName>
- <displayName count="one">Guyanako dolar</displayName>
- <displayName count="other">Guyanako dolar</displayName>
- </currency>
- <currency type="HKD">
- <displayName>Hong Kongeko dolarra</displayName>
- <displayName count="one">Hong Kongeko dolar</displayName>
- <displayName count="other">Hong Kongeko dolar</displayName>
- <symbol>HK$</symbol>
- </currency>
- <currency type="HNL">
- <displayName>Hondurasko lempira</displayName>
- <displayName count="one">Hondurasko lempira</displayName>
- <displayName count="other">Hondurasko lempira</displayName>
- </currency>
- <currency type="HRK">
- <displayName>Kroaziako kuna</displayName>
- <displayName count="one">Kroaziako kuna</displayName>
- <displayName count="other">Kroaziako kuna</displayName>
- </currency>
- <currency type="HTG">
- <displayName>Haitiko gourdea</displayName>
- <displayName count="one">Haitiko gourde</displayName>
- <displayName count="other">Haitiko gourde</displayName>
- </currency>
- <currency type="HUF">
- <displayName>Hungariako florina</displayName>
- <displayName count="one">Hungariako florin</displayName>
- <displayName count="other">Hungariako florin</displayName>
- </currency>
- <currency type="IDR">
- <displayName>Indonesiako errupia</displayName>
- <displayName count="one">Indonesiako errupia</displayName>
- <displayName count="other">Indonesiako errupia</displayName>
- </currency>
- <currency type="ILS">
- <displayName>Israeleko sheqel berria</displayName>
- <displayName count="one">Israeleko sheqel berri</displayName>
- <displayName count="other">Israeleko sheqel berri</displayName>
- <symbol>₪</symbol>
- </currency>
- <currency type="INR">
- <displayName>Indiako errupia</displayName>
- <displayName count="one">Indiako errupia</displayName>
- <displayName count="other">Indiako errupia</displayName>
- <symbol>₹</symbol>
- </currency>
- <currency type="IQD">
- <displayName>Irakeko dinarra</displayName>
- <displayName count="one">Irakeko dinar</displayName>
- <displayName count="other">Irakeko dinar</displayName>
- </currency>
- <currency type="IRR">
- <displayName>Irango riala</displayName>
- <displayName count="one">Irango rial</displayName>
- <displayName count="other">Irango rial</displayName>
- </currency>
- <currency type="ISK">
- <displayName>Islandiako koroa</displayName>
- <displayName count="one">Islandiako koroa</displayName>
- <displayName count="other">Islandiako koroa</displayName>
- </currency>
- <currency type="JMD">
- <displayName>Jamaikako dolarra</displayName>
- <displayName count="one">Jamaikako dolar</displayName>
- <displayName count="other">Jamaikako dolar</displayName>
- </currency>
- <currency type="JOD">
- <displayName>Jordaniako dinarra</displayName>
- <displayName count="one">Jordaniako dinar</displayName>
- <displayName count="other">Jordaniako dinar</displayName>
- </currency>
- <currency type="JPY">
- <displayName>Japoniako yena</displayName>
- <displayName count="one">Japoniako yen</displayName>
- <displayName count="other">Japoniako yen</displayName>
- <symbol>JP¥</symbol>
- </currency>
- <currency type="KES">
- <displayName>Kenyako txelina</displayName>
- <displayName count="one">Kenyako txelin</displayName>
- <displayName count="other">Kenyako txelin</displayName>
- </currency>
- <currency type="KGS">
- <displayName>Kirgizistango soma</displayName>
- <displayName count="one">Kirgizistango som</displayName>
- <displayName count="other">Kirgizistango som</displayName>
- </currency>
- <currency type="KHR">
- <displayName>Kanbodiako riela</displayName>
- <displayName count="one">Kanbodiako riel</displayName>
- <displayName count="other">Kanbodiako riel</displayName>
- </currency>
- <currency type="KMF">
- <displayName>Komoreetako frankoa</displayName>
- <displayName count="one">Komoreetako franko</displayName>
- <displayName count="other">Komoreetako franko</displayName>
- </currency>
- <currency type="KPW">
- <displayName>Ipar Koreako wona</displayName>
- <displayName count="one">Ipar Koreako won</displayName>
- <displayName count="other">Ipar Koreako won</displayName>
- </currency>
- <currency type="KRW">
- <displayName>Hego Koreako wona</displayName>
- <displayName count="one">Hego Koreako won</displayName>
- <displayName count="other">Hego Koreako won</displayName>
- <symbol>₩</symbol>
- </currency>
- <currency type="KWD">
- <displayName>Kuwaiteko dinarra</displayName>
- <displayName count="one">Kuwaiteko dinar</displayName>
- <displayName count="other">Kuwaiteko dinar</displayName>
- </currency>
- <currency type="KYD">
- <displayName>Kaiman uharteetako dolarra</displayName>
- <displayName count="one">Kaiman uharteetako dolar</displayName>
- <displayName count="other">Kaiman uharteetako dolar</displayName>
- </currency>
- <currency type="KZT">
- <displayName>Kazakhstango tengea</displayName>
- <displayName count="one">Kazakhstango tenge</displayName>
- <displayName count="other">Kazakhstango tenge</displayName>
- </currency>
- <currency type="LAK">
- <displayName>Laoseko kipa</displayName>
- <displayName count="one">Laoseko kip</displayName>
- <displayName count="other">Laoseko kip</displayName>
- </currency>
- <currency type="LBP">
- <displayName>Libanoko libera</displayName>
- <displayName count="one">Libanoko libera</displayName>
- <displayName count="other">Libanoko libera</displayName>
- </currency>
- <currency type="LKR">
- <displayName>Sri Lankako errupia</displayName>
- <displayName count="one">Sri Lankako errupia</displayName>
- <displayName count="other">Sri Lankako errupia</displayName>
- </currency>
- <currency type="LRD">
- <displayName>Liberiako dolarra</displayName>
- <displayName count="one">Liberiako dolar</displayName>
- <displayName count="other">Liberiako dolar</displayName>
- </currency>
- <currency type="LSL">
- <displayName>Lesothoko lotia</displayName>
- </currency>
- <currency type="LTL">
- <displayName>Lituaniako litasa</displayName>
- <displayName count="one">Lituaniako litas</displayName>
- <displayName count="other">Lituaniako litas</displayName>
- </currency>
- <currency type="LVL">
- <displayName>Letoniako latsa</displayName>
- <displayName count="one">Letoniako lats</displayName>
- <displayName count="other">Letoniako lats</displayName>
- </currency>
- <currency type="LYD">
- <displayName>Libiako dinarra</displayName>
- <displayName count="one">Libiako dinar</displayName>
- <displayName count="other">Libiako dinar</displayName>
- </currency>
- <currency type="MAD">
- <displayName>Marokoko dirhama</displayName>
- <displayName count="one">Marokoko dirham</displayName>
- <displayName count="other">Marokoko dirham</displayName>
- </currency>
- <currency type="MDL">
- <displayName>Moldaviako leua</displayName>
- <displayName count="one">Moldaviako leu</displayName>
- <displayName count="other">Moldaviako leu</displayName>
- </currency>
- <currency type="MGA">
- <displayName>Madagaskarreko ariarya</displayName>
- <displayName count="one">Madagaskarreko ariary</displayName>
- <displayName count="other">Madagaskarreko ariary</displayName>
- </currency>
- <currency type="MKD">
- <displayName>Mazedoniako denara</displayName>
- <displayName count="one">Mazedoniako dinar</displayName>
- <displayName count="other">Mazedoniako dinar</displayName>
- </currency>
- <currency type="MMK">
- <displayName>Myanmarreko kyata</displayName>
- <displayName count="one">Myanmarreko kyat</displayName>
- <displayName count="other">Myanmarreko kyat</displayName>
- </currency>
- <currency type="MNT">
- <displayName>Mongoliako tugrika</displayName>
- <displayName count="one">Mongoliako tugrik</displayName>
- <displayName count="other">Mongoliako tugrik</displayName>
- </currency>
- <currency type="MOP">
- <displayName>Macanako pataca</displayName>
- <displayName count="one">Macanako pataca</displayName>
- <displayName count="other">Macanako pataca</displayName>
- </currency>
- <currency type="MRO">
- <displayName>Mauritaniako ouguiya</displayName>
- <displayName count="one">Mauritaniako ouguiya</displayName>
- <displayName count="other">Mauritaniako ouguiya</displayName>
- </currency>
- <currency type="MUR">
- <displayName>Maurizio uharteetako errupia</displayName>
- <displayName count="one">Maurizio uharteetako errupia</displayName>
- <displayName count="other">Maurizio uharteetako errupia</displayName>
- </currency>
- <currency type="MVR">
- <displayName>Maldivetako rufiyaa</displayName>
- <displayName count="one">Maldivetako rufiyaa</displayName>
- <displayName count="other">Maldivetako rufiyaa</displayName>
- </currency>
- <currency type="MWK">
- <displayName>Malawiko kwacha</displayName>
- <displayName count="one">Malawiko kwacha</displayName>
- <displayName count="other">Malawiko kwacha</displayName>
- </currency>
- <currency type="MXN">
- <displayName>Mexikoko pesoa</displayName>
- <displayName count="one">Mexikoko peso</displayName>
- <displayName count="other">Mexikoko peso</displayName>
- <symbol>MX$</symbol>
- </currency>
- <currency type="MYR">
- <displayName>Malaysiako ringgita</displayName>
- <displayName count="one">Malaysiako ringgit</displayName>
- <displayName count="other">Malaysiako ringgit</displayName>
- </currency>
- <currency type="MZN">
- <displayName>Mozambikeko metikala</displayName>
- <displayName count="one">Mozambikeko metikal</displayName>
- <displayName count="other">Mozambikeko metikal</displayName>
- </currency>
- <currency type="NAD">
- <displayName>Namibiako dolarra</displayName>
- <displayName count="one">Namibiako dolar</displayName>
- <displayName count="other">Namibiako dolar</displayName>
- </currency>
- <currency type="NGN">
- <displayName>Nigeriako naira</displayName>
- <displayName count="one">Nigeriako naira</displayName>
- <displayName count="other">Nigeriako naira</displayName>
- </currency>
- <currency type="NIO">
- <displayName>Nikaraguako cordoba</displayName>
- <displayName count="one">Nikaraguako cordoba</displayName>
- <displayName count="other">Nikaraguako cordoba</displayName>
- </currency>
- <currency type="NOK">
- <displayName>Norvegiako koroa</displayName>
- <displayName count="one">Norvegiako koroa</displayName>
- <displayName count="other">Norvegiako koroa</displayName>
- </currency>
- <currency type="NPR">
- <displayName>Nepalgo errupia</displayName>
- <displayName count="one">Nepalgo errupia</displayName>
- <displayName count="other">Nepalgo errupia</displayName>
- </currency>
- <currency type="NZD">
- <displayName>Zeelanda Berriko dolarra</displayName>
- <displayName count="one">Zeelanda Berriko dolar</displayName>
- <displayName count="other">Zeelanda Berriko dolar</displayName>
- <symbol>NZ$</symbol>
- </currency>
- <currency type="OMR">
- <displayName>Omango riala</displayName>
- <displayName count="one">Omango rial</displayName>
- <displayName count="other">Omango rial</displayName>
- </currency>
- <currency type="PAB">
- <displayName>Panamako balboa</displayName>
- <displayName count="one">Panamako balboa</displayName>
- <displayName count="other">Panamako balboa</displayName>
- </currency>
- <currency type="PEN">
- <displayName>Peruko sol berria</displayName>
- <displayName count="one">Peruko sol berri</displayName>
- <displayName count="other">Peruko sol berri</displayName>
- </currency>
- <currency type="PGK">
- <displayName>Papua Ginea Berriko kina</displayName>
- <displayName count="one">Papua Ginea Berriko kina</displayName>
- <displayName count="other">Papua Ginea Berriko kina</displayName>
- </currency>
- <currency type="PHP">
- <displayName>Filipinetako pesoa</displayName>
- <displayName count="one">Filipinetako peso</displayName>
- <displayName count="other">Filipinetako peso</displayName>
- </currency>
- <currency type="PKR">
- <displayName>Pakistango errupia</displayName>
- <displayName count="one">Pakistango errupia</displayName>
- <displayName count="other">Pakistango errupia</displayName>
- </currency>
- <currency type="PLN">
- <displayName>Poloniako zlotya</displayName>
- <displayName count="one">Poloniako zloty</displayName>
- <displayName count="other">Poloniako zloty</displayName>
- </currency>
- <currency type="PYG">
- <displayName>Paraguaiko guarania</displayName>
- <displayName count="one">Paraguaiko guarani</displayName>
- <displayName count="other">Paraguaiko guarani</displayName>
- </currency>
- <currency type="QAR">
- <displayName>Qatarreko riala</displayName>
- <displayName count="one">Qatarreko rial</displayName>
- <displayName count="other">Qatarreko rial</displayName>
- </currency>
- <currency type="RON">
- <displayName>Errumaniako leua</displayName>
- <displayName count="one">Errumaniako leu</displayName>
- <displayName count="other">Errumaniako leu</displayName>
- </currency>
- <currency type="RSD">
- <displayName>Serbiako dinarra</displayName>
- <displayName count="one">Serbiako dinar</displayName>
- <displayName count="other">Serbiako dinar</displayName>
- </currency>
- <currency type="RUB">
- <displayName>Errusiako errubloa</displayName>
- <displayName count="one">Errusiako errublo</displayName>
- <displayName count="other">Errusiako errublo</displayName>
- </currency>
- <currency type="RWF">
- <displayName>Ruandako frankoa</displayName>
- <displayName count="one">Ruandako franko</displayName>
- <displayName count="other">Ruandako franko</displayName>
- </currency>
- <currency type="SAR">
- <displayName>Saudiko riala</displayName>
- <displayName count="one">Saudiko rial</displayName>
- <displayName count="other">Saudiko rial</displayName>
- </currency>
- <currency type="SBD">
- <displayName>Salomon uharteetako dolarra</displayName>
- <displayName count="one">Salomon uharteetako dolar</displayName>
- <displayName count="other">Salomon uharteetako dolar</displayName>
- </currency>
- <currency type="SCR">
- <displayName>Seychelleetako errupia</displayName>
- <displayName count="one">Seychelleetako errupia</displayName>
- <displayName count="other">Seychelleetako errupia</displayName>
- </currency>
- <currency type="SDG">
- <displayName>Sudango libera</displayName>
- <displayName count="one">Sudango libera</displayName>
- <displayName count="other">Sudango libera</displayName>
- </currency>
- <currency type="SEK">
- <displayName>Suediako koroa</displayName>
- <displayName count="one">Suediako koroa</displayName>
- <displayName count="other">Suediako koroa</displayName>
- </currency>
- <currency type="SGD">
- <displayName>Singapurreko dolarra</displayName>
- <displayName count="one">Singapurreko dolar</displayName>
- <displayName count="other">Singapurreko dolar</displayName>
- </currency>
- <currency type="SHP">
- <displayName>Santa Helenako libera</displayName>
- <displayName count="one">Santa Helenako libera</displayName>
- <displayName count="other">Santa Helenako libera</displayName>
- </currency>
- <currency type="SLL">
- <displayName>Sierra Leonako leona</displayName>
- <displayName count="one">Sierra Leonako leona</displayName>
- <displayName count="other">Sierra Leonako leona</displayName>
- </currency>
- <currency type="SOS">
- <displayName>Somaliako txelina</displayName>
- <displayName count="one">Somaliako txelin</displayName>
- <displayName count="other">Somaliako txelin</displayName>
- </currency>
- <currency type="SRD">
- <displayName>Surinameko dolarra</displayName>
- <displayName count="one">Surinameko dolar</displayName>
- <displayName count="other">Surinameko dolar</displayName>
- </currency>
- <currency type="SSP">
- <displayName>Hego Sudango libera</displayName>
- <displayName count="one">Hego Sudango libera</displayName>
- <displayName count="other">Hego Sudango libera</displayName>
- </currency>
- <currency type="STD">
- <displayName>Sao Tomeko eta Principeko dobra</displayName>
- <displayName count="one">Sao Tomeko eta Principeko dobra</displayName>
- <displayName count="other">Sao Tomeko eta Principeko dobra</displayName>
- </currency>
- <currency type="SYP">
- <displayName>Siriako libera</displayName>
- <displayName count="one">Siriako libera</displayName>
- <displayName count="other">Siriako libera</displayName>
- </currency>
- <currency type="SZL">
- <displayName>Swaziko lilangenia</displayName>
- <displayName count="one">Swaziko lilangeni</displayName>
- <displayName count="other">Swaziko lilangeni</displayName>
- </currency>
- <currency type="THB">
- <displayName>Thailandiako bahta</displayName>
- <displayName count="one">Thailandiako baht</displayName>
- <displayName count="other">Thailandiako baht</displayName>
- <symbol>฿</symbol>
- </currency>
- <currency type="TJS">
- <displayName>Tajikistango somonia</displayName>
- <displayName count="one">Tajikistango somoni</displayName>
- <displayName count="other">Tajikistango somoni</displayName>
- </currency>
- <currency type="TMT">
- <displayName>Turkmenistango manata</displayName>
- <displayName count="one">Turkmenistango manat</displayName>
- <displayName count="other">Turkmenistango manat</displayName>
- </currency>
- <currency type="TND">
- <displayName>Tunisiako dinarra</displayName>
- <displayName count="one">Tunisiako dinar</displayName>
- <displayName count="other">Tunisiako dinar</displayName>
- </currency>
- <currency type="TOP">
- <displayName>Tongako Paʻanga</displayName>
- <displayName count="one">Tongako Paʻanga</displayName>
- <displayName count="other">Tongako Paʻanga</displayName>
- </currency>
- <currency type="TRY">
- <displayName>Turkiako lira</displayName>
- <displayName count="one">Turkiako lira</displayName>
- <displayName count="other">Turkiako lira</displayName>
- </currency>
- <currency type="TTD">
- <displayName>Trinidadeko eta Tobagoko dolarra</displayName>
- <displayName count="one">Trinidadeko eta Tobagoko dolar</displayName>
- <displayName count="other">Trinidadeko eta Tobagoko dolar</displayName>
- </currency>
- <currency type="TWD">
- <displayName>Taiwango dolar berria</displayName>
- <displayName count="one">Taiwango dolar berri</displayName>
- <displayName count="other">Taiwango dolar berri</displayName>
- <symbol>NT$</symbol>
- </currency>
- <currency type="TZS">
- <displayName>Tanzaniako txelina</displayName>
- <displayName count="one">Tanzaniako txelin</displayName>
- <displayName count="other">Tanzaniako txelin</displayName>
- </currency>
- <currency type="UAH">
- <displayName>Ukrainako hryvnia</displayName>
- <displayName count="one">Ukrainako hryvnia</displayName>
- <displayName count="other">Ukrainako hryvnia</displayName>
- </currency>
- <currency type="UGX">
- <displayName>Ugandako txelina</displayName>
- <displayName count="one">Ugandako txelin</displayName>
- <displayName count="other">Ugandako txelin</displayName>
- </currency>
- <currency type="USD">
- <displayName>AEBetako dolarra</displayName>
- <displayName count="one">AEBetako dolar</displayName>
- <displayName count="other">AEBetako dolar</displayName>
- <symbol>US$</symbol>
- </currency>
- <currency type="UYU">
- <displayName>Uruguaiko pesoa</displayName>
- <displayName count="one">Uruguaiko peso</displayName>
- <displayName count="other">Uruguaiko peso</displayName>
- </currency>
- <currency type="UZS">
- <displayName>Uzbekistango soma</displayName>
- <displayName count="one">Uzbekistango som</displayName>
- <displayName count="other">Uzbekistango som</displayName>
- </currency>
- <currency type="VEF">
- <displayName>Venezuelako bolivarra</displayName>
- <displayName count="one">Venezuelako bolivar</displayName>
- <displayName count="other">Venezuelako bolivar</displayName>
- </currency>
- <currency type="VND">
- <displayName>Vietnameko donga</displayName>
- <displayName count="one">Vietnameko dong</displayName>
- <displayName count="other">Vietnameko dong</displayName>
- <symbol>₫</symbol>
- </currency>
- <currency type="VUV">
- <displayName>Vanuatuko vatua</displayName>
- <displayName count="one">Vanuatuko vatu</displayName>
- <displayName count="other">Vanuatuko vatu</displayName>
- </currency>
- <currency type="WST">
- <displayName>Samoko tala</displayName>
- <displayName count="one">Samoko tala</displayName>
- <displayName count="other">Samoko tala</displayName>
- </currency>
- <currency type="XAF">
- <displayName>Afrika erdialdeko frankoa BEAC</displayName>
- <displayName count="one">Afrika erdialdeko franko BEAC</displayName>
- <displayName count="other">Afrika erdialdeko franko BEAC</displayName>
- <symbol>FCFA</symbol>
- </currency>
- <currency type="XCD">
- <displayName>Karibe ekialdeko dolarra</displayName>
- <displayName count="one">Karibe ekialdeko dolar</displayName>
- <displayName count="other">Karibe ekialdeko dolar</displayName>
- <symbol>EC$</symbol>
- </currency>
- <currency type="XOF">
- <displayName>Afrika ekialdeko frankoa BCEAO</displayName>
- <displayName count="one">Afrika ekialdeko franko BCEAO</displayName>
- <displayName count="other">Afrika ekialdeko franko BCEAO</displayName>
- <symbol>CFA</symbol>
- </currency>
- <currency type="XPF">
- <displayName>CFP frankoa</displayName>
- <displayName count="one">CFP franko</displayName>
- <displayName count="other">CFP franko</displayName>
- <symbol>CFPF</symbol>
- </currency>
- <currency type="XXX">
- <displayName>Moneta ezezaguna</displayName>
- <displayName count="one">(moneta ezezaguna)</displayName>
- <displayName count="other">(moneta ezezaguna)</displayName>
- </currency>
- <currency type="YER">
- <displayName>Yemengo riala</displayName>
- <displayName count="one">Yemengo rial</displayName>
- <displayName count="other">Yemengo rial</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>Hegoafrikako randa</displayName>
- <displayName count="one">Hegoafrikako randa</displayName>
- <displayName count="other">Hegoafrikako randa</displayName>
- </currency>
- <currency type="ZMK">
- <displayName>Zambiako kwacha (1968–2012)</displayName>
- </currency>
- <currency type="ZMW">
- <displayName>Zambiako kwacha</displayName>
- <displayName count="one">Zambiako kwacha</displayName>
- <displayName count="other">Zambiako kwacha</displayName>
- </currency>
- </currencies>
- <miscPatterns numberSystem="latn">
- <pattern type="atLeast">{0}+</pattern>
- <pattern type="range">{0}–{1}</pattern>
- </miscPatterns>
- </numbers>
- <units>
- <unitLength type="long">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} grabitate-indar</unitPattern>
- <unitPattern count="other">{0} grabitate-indar</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0} minutu</unitPattern>
- <unitPattern count="other">{0} minutu</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0} segundo</unitPattern>
- <unitPattern count="other">{0} segundo</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0} gradu</unitPattern>
- <unitPattern count="other">{0} gradu</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} akre</unitPattern>
- <unitPattern count="other">{0} akre</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} hektarea</unitPattern>
- <unitPattern count="other">{0} hektarea</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} oin karratu</unitPattern>
- <unitPattern count="other">{0} oin karratu</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} kilometro karratu</unitPattern>
- <unitPattern count="other">{0} kilometro karratu</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} metro karratu</unitPattern>
- <unitPattern count="other">{0} metro karratu</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} milia karratu</unitPattern>
- <unitPattern count="other">{0} milia karratu</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} egun</unitPattern>
- <unitPattern count="other">{0} egun</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} ordu</unitPattern>
- <unitPattern count="other">{0} ordu</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} milisegundo</unitPattern>
- <unitPattern count="other">{0} milisegundo</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} minutu</unitPattern>
- <unitPattern count="other">{0} minutu</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} hilabete</unitPattern>
- <unitPattern count="other">{0} hilabete</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} segundo</unitPattern>
- <unitPattern count="other">{0} segundo</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} aste</unitPattern>
- <unitPattern count="other">{0} aste</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} urte</unitPattern>
- <unitPattern count="other">{0} urte</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} zentimetro</unitPattern>
- <unitPattern count="other">{0} zentimetro</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} oin</unitPattern>
- <unitPattern count="other">{0} oin</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} hazbete</unitPattern>
- <unitPattern count="other">{0} hazbete</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} kilometro</unitPattern>
- <unitPattern count="other">{0} kilometro</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} argi-urte</unitPattern>
- <unitPattern count="other">{0} argi-urte</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} metro</unitPattern>
- <unitPattern count="other">{0} metro</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} milia</unitPattern>
- <unitPattern count="other">{0} milia</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} milimetro</unitPattern>
- <unitPattern count="other">{0} milimetro</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} pikometro</unitPattern>
- <unitPattern count="other">{0} pikometro</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} yarda</unitPattern>
- <unitPattern count="other">{0} yarda</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} gramo</unitPattern>
- <unitPattern count="other">{0} gramo</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} kilogramo</unitPattern>
- <unitPattern count="other">{0} kilogramo</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} ontza</unitPattern>
- <unitPattern count="other">{0} ontza</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} libra</unitPattern>
- <unitPattern count="other">{0} libra</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} zaldi-potentzia</unitPattern>
- <unitPattern count="other">{0} zaldi-potentzia</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} kilowatt</unitPattern>
- <unitPattern count="other">{0} kilowatt</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} watt</unitPattern>
- <unitPattern count="other">{0} watt</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} hektopascal</unitPattern>
- <unitPattern count="other">{0} hektopascal</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} merkurio-hazbete</unitPattern>
- <unitPattern count="other">{0} merkurio-hazbete</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} milibar</unitPattern>
- <unitPattern count="other">{0} milibar</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} kilometro orduko</unitPattern>
- <unitPattern count="other">{0} kilometro orduko</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} metro segundoko</unitPattern>
- <unitPattern count="other">{0} metro segundoko</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} milia orduko</unitPattern>
- <unitPattern count="other">{0} milia orduko</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}Celcius gradu</unitPattern>
- <unitPattern count="other">{0}Celcius gradu</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}Fahrenheit gradu</unitPattern>
- <unitPattern count="other">{0}Fahrenheit gradu</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} kilometro kubiko</unitPattern>
- <unitPattern count="other">{0} kilometro kubiko</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} milia kubiko</unitPattern>
- <unitPattern count="other">{0} milia kubiko</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} litro</unitPattern>
- <unitPattern count="other">{0} litro</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="short">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} G</unitPattern>
- <unitPattern count="other">{0} G</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0}′</unitPattern>
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0}″</unitPattern>
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} ac</unitPattern>
- <unitPattern count="other">{0} ac</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} ha</unitPattern>
- <unitPattern count="other">{0} ha</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} ft²</unitPattern>
- <unitPattern count="other">{0} ft²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} km²</unitPattern>
- <unitPattern count="other">{0} km²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} m²</unitPattern>
- <unitPattern count="other">{0} m²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} mi²</unitPattern>
- <unitPattern count="other">{0} mi²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} egun</unitPattern>
- <unitPattern count="other">{0} egun</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} h</unitPattern>
- <unitPattern count="other">{0} h</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} ms</unitPattern>
- <unitPattern count="other">{0} ms</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} min</unitPattern>
- <unitPattern count="other">{0} min</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} hilabete</unitPattern>
- <unitPattern count="other">{0} hilabete</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} s</unitPattern>
- <unitPattern count="other">{0} s</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} aste</unitPattern>
- <unitPattern count="other">{0} aste</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} urte</unitPattern>
- <unitPattern count="other">{0} urte</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} cm</unitPattern>
- <unitPattern count="other">{0} cm</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} ft</unitPattern>
- <unitPattern count="other">{0} ft</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} in</unitPattern>
- <unitPattern count="other">{0} in</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} km</unitPattern>
- <unitPattern count="other">{0} km</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} ly</unitPattern>
- <unitPattern count="other">{0} ly</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} m</unitPattern>
- <unitPattern count="other">{0} m</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} mi</unitPattern>
- <unitPattern count="other">{0} mi</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} mm</unitPattern>
- <unitPattern count="other">{0} mm</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} pm</unitPattern>
- <unitPattern count="other">{0} pm</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} yd</unitPattern>
- <unitPattern count="other">{0} yd</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} g</unitPattern>
- <unitPattern count="other">{0} g</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} kg</unitPattern>
- <unitPattern count="other">{0} kg</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} oz</unitPattern>
- <unitPattern count="other">{0} oz</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} lb</unitPattern>
- <unitPattern count="other">{0} lb</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} hp</unitPattern>
- <unitPattern count="other">{0} hp</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} kW</unitPattern>
- <unitPattern count="other">{0} kW</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} W</unitPattern>
- <unitPattern count="other">{0} W</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} hPa</unitPattern>
- <unitPattern count="other">{0} hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} inHg</unitPattern>
- <unitPattern count="other">{0} inHg</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} mb</unitPattern>
- <unitPattern count="other">{0} mb</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} km/h</unitPattern>
- <unitPattern count="other">{0} km/h</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} m/s</unitPattern>
- <unitPattern count="other">{0} m/s</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} mph</unitPattern>
- <unitPattern count="other">{0} mph</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°C</unitPattern>
- <unitPattern count="other">{0}°C</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°F</unitPattern>
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} km³</unitPattern>
- <unitPattern count="other">{0} km³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} mi³</unitPattern>
- <unitPattern count="other">{0} mi³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} l</unitPattern>
- <unitPattern count="other">{0} l</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="narrow">
- <compoundUnit type="per">
- <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} G</unitPattern>
- <unitPattern count="other">{0} G</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0}′</unitPattern>
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0}″</unitPattern>
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} ac</unitPattern>
- <unitPattern count="other">{0} ac</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} ha</unitPattern>
- <unitPattern count="other">{0} ha</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} ft²</unitPattern>
- <unitPattern count="other">{0} ft²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} km²</unitPattern>
- <unitPattern count="other">{0} km²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} m²</unitPattern>
- <unitPattern count="other">{0} m²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} mi²</unitPattern>
- <unitPattern count="other">{0} mi²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} egun</unitPattern>
- <unitPattern count="other">{0} egun</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} h</unitPattern>
- <unitPattern count="other">{0} h</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} ms</unitPattern>
- <unitPattern count="other">{0} ms</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} min</unitPattern>
- <unitPattern count="other">{0} min</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} hil.</unitPattern>
- <unitPattern count="other">{0} hil.</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} s</unitPattern>
- <unitPattern count="other">{0} s</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} aste</unitPattern>
- <unitPattern count="other">{0} aste</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} urte</unitPattern>
- <unitPattern count="other">{0} urte</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} cm</unitPattern>
- <unitPattern count="other">{0} cm</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} ft</unitPattern>
- <unitPattern count="other">{0} ft</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} in</unitPattern>
- <unitPattern count="other">{0} in</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} km</unitPattern>
- <unitPattern count="other">{0} km</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} ly</unitPattern>
- <unitPattern count="other">{0} ly</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} m</unitPattern>
- <unitPattern count="other">{0} m</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} mi</unitPattern>
- <unitPattern count="other">{0} mi</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} mm</unitPattern>
- <unitPattern count="other">{0} mm</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} pm</unitPattern>
- <unitPattern count="other">{0} pm</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} yd</unitPattern>
- <unitPattern count="other">{0} yd</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} g</unitPattern>
- <unitPattern count="other">{0} g</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} kg</unitPattern>
- <unitPattern count="other">{0} kg</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} oz</unitPattern>
- <unitPattern count="other">{0} oz</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} lb</unitPattern>
- <unitPattern count="other">{0} lb</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} hp</unitPattern>
- <unitPattern count="other">{0} hp</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} kW</unitPattern>
- <unitPattern count="other">{0} kW</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} W</unitPattern>
- <unitPattern count="other">{0} W</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} hPa</unitPattern>
- <unitPattern count="other">{0} hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} inHg</unitPattern>
- <unitPattern count="other">{0} inHg</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} mb</unitPattern>
- <unitPattern count="other">{0} mb</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} km/h</unitPattern>
- <unitPattern count="other">{0} km/h</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} m/s</unitPattern>
- <unitPattern count="other">{0} m/s</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} mph</unitPattern>
- <unitPattern count="other">{0} mph</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°F</unitPattern>
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} km³</unitPattern>
- <unitPattern count="other">{0} km³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} mi³</unitPattern>
- <unitPattern count="other">{0} mi³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} l</unitPattern>
- <unitPattern count="other">{0} l</unitPattern>
- </unit>
- </unitLength>
- <durationUnit type="hm">
- <durationUnitPattern>h:mm</durationUnitPattern>
- </durationUnit>
- <durationUnit type="hms">
- <durationUnitPattern>h:mm:ss</durationUnitPattern>
- </durationUnit>
- <durationUnit type="ms">
- <durationUnitPattern>m:ss</durationUnitPattern>
- </durationUnit>
- </units>
- <listPatterns>
- <listPattern>
- <listPatternPart type="start">{0}, {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0} eta {1}</listPatternPart>
- <listPatternPart type="2">{0} eta {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit">
- <listPatternPart type="start">{0}, {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0} eta {1}</listPatternPart>
- <listPatternPart type="2">{0} eta {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit-short">
- <listPatternPart type="start">{0}, {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0} eta {1}</listPatternPart>
- <listPatternPart type="2">{0} eta {1}</listPatternPart>
- </listPattern>
- </listPatterns>
- <posix>
- <messages>
- <yesstr>bai:b</yesstr>
- <nostr>ez:e</nostr>
- </messages>
- </posix>
- </ldml>
|